/*
 * Delamu-inspired visual system for Ripple Shadow.
 * Keeps the existing CMS content while applying a stronger retail layout,
 * bold typography, generous whitespace and restrained logo-blue accents.
 */

:root{
  --rs-navy:#233786;
  --rs-navy-dark:#17275f;
  --rs-cyan:#20a9d6;
  --rs-cyan-bright:#65c8e8;
  --rs-cyan-pale:#edf8fc;
  --rs-ink:#171a22;
  --rs-muted:#66707a;
  --rs-soft:#f5f6f6;
  --rs-line:#e4e7e9;
  --rs-white:#fff;
  --rs-shadow:0 18px 50px rgba(20,27,51,.09);
  --brand:#20a9d6;
  --brand-dark:#168cb4;
  --brand-deep:#233786;
  --brand-pale:#edf8fc;
  --navy:#17275f;
  --ink:#171a22;
  --muted:#66707a;
  --line:#e4e7e9;
  --soft:#f5f6f6;
  --brand-500:#20a9d6;
  --brand-400:#65c8e8;
  --brand-200:#bce7f4;
  --brand-50:#edf8fc;
  --ink-900:#171a22;
  --ink-600:#66707a;
  --ink-500:#74808a;
  --ink-400:#92999f;
  --border:#e4e7e9;
  --surface:#f5f6f6;
  --radius-sm:6px;
  --radius-md:9px;
  --radius-lg:12px;
}

html{font-size:16px}
body{
  color:var(--rs-ink);
  background:var(--rs-white);
  font-family:"Montserrat","Aptos","Segoe UI",Arial,sans-serif;
  font-size:16px;
  font-weight:500;
  line-height:1.65;
  letter-spacing:-.006em;
}
h1,h2,h3,h4,h5,h6,
.section-heading h2,.inner-heading h1,.product-meta h1,.article-wrap>h1{
  font-family:"Montserrat","Aptos Display","Segoe UI",Arial,sans-serif;
  font-weight:800;
}
.container{width:min(1340px,calc(100% - 56px))}

/* Layered retail header */
.topbar{
  height:32px;
  color:rgba(255,255,255,.92);
  background:var(--rs-navy);
  border:0;
  font-size:11px;
  font-weight:600;
  letter-spacing:.02em;
}
.topbar a,.topbar span{color:inherit}
.topbar a:hover{color:#fff;text-decoration:underline;text-underline-offset:3px}
.site-header{
  top:0;
  height:84px;
  background:rgba(255,255,255,.98);
  border-bottom:1px solid var(--rs-line);
  box-shadow:none;
  backdrop-filter:blur(16px);
}
.header-inner{height:100%}
.brand{
  width:104px;
  height:84px;
  flex:0 0 104px;
  justify-content:flex-start;
}
.brand-logo{
  width:74px;
  height:74px;
  flex:0 0 74px;
  object-fit:contain;
}
.brand-logo img{width:100%;height:100%;object-fit:contain}
.navigation{
  gap:20px;
  height:100%;
}
.navigation>a,.nav-item>a,.navigation a{
  color:#1d2027;
  font-size:12px;
  font-weight:750;
  letter-spacing:.01em;
}
.navigation>a:after,.nav-item>a:after{
  right:50%;
  bottom:20px;
  left:50%;
  height:2px;
  background:var(--rs-cyan);
  transition:left .25s ease,right .25s ease;
}
.navigation>a:hover:after,.navigation>a.active:after,.nav-item:hover>a:after{
  right:0;
  left:0;
}
.navigation>a:hover,.nav-item>a:hover,.navigation a.active{color:var(--rs-navy)}
.nav-dropdown{
  top:calc(100% - 8px);
  padding:18px;
  border:1px solid var(--rs-line);
  border-top:3px solid var(--rs-cyan);
  border-radius:0 0 8px 8px;
  box-shadow:var(--rs-shadow);
}
.nav-dropdown a{font-size:12px}
.nav-dropdown a:hover{background:var(--rs-cyan-pale)}
.header-cta,.button{
  min-height:44px;
  padding:0 23px;
  border-radius:999px;
  background:var(--rs-navy);
  color:#fff;
  font-size:12px;
  font-weight:800;
  letter-spacing:.035em;
  box-shadow:none;
}
.header-cta{margin-left:20px}
.header-cta:hover,.button:hover{
  color:#fff;
  background:var(--rs-cyan);
  transform:translateY(-1px);
  box-shadow:0 9px 24px rgba(32,169,214,.2);
}
.button-light{color:var(--rs-navy);background:#fff}
.button-outline,.button-secondary{color:var(--rs-navy);background:#fff;border:1px solid var(--rs-navy)}
.button-outline-light{color:#fff;background:transparent;border:1px solid rgba(255,255,255,.55)}
.menu-button span{background:var(--rs-navy)}

/* Reference-style circular collection navigation */
.category-rail{
  position:relative;
  z-index:2;
  padding:17px 0 22px;
  background:#fff;
  border-bottom:1px solid #f0f1f2;
}
.category-rail-inner{
  display:grid;
  grid-template-columns:repeat(6,minmax(0,1fr));
  gap:18px;
  align-items:start;
}
.category-rail a{
  display:flex;
  min-width:0;
  flex-direction:column;
  align-items:center;
  gap:9px;
  color:#25282e;
  text-align:center;
  font-size:11px;
  font-weight:700;
}
.category-rail .rail-image{
  display:block;
  width:72px;
  height:72px;
  overflow:hidden;
  border:1px solid #edf0f1;
  border-radius:50%;
  background:linear-gradient(145deg,#fafafa,#eef4f6);
  transition:transform .3s ease,border-color .3s ease,box-shadow .3s ease;
}
.category-rail img{width:100%;height:100%;object-fit:cover}
.category-rail a:hover .rail-image{
  transform:translateY(-3px);
  border-color:rgba(32,169,214,.45);
  box-shadow:0 10px 24px rgba(24,44,67,.1);
}
.category-rail a:hover{color:var(--rs-navy)}

/* Homepage hero: wide inset campaign card */
.hero{
  width:min(1340px,calc(100% - 56px));
  height:clamp(540px,43vw,680px);
  margin:0 auto 86px;
  border-radius:10px;
  background:#20252b;
  box-shadow:0 18px 50px rgba(19,28,42,.1);
}
.hero.hero-light .hero-shade,
.hero-shade{
  background:linear-gradient(180deg,rgba(9,14,22,.12),rgba(9,14,22,.34) 48%,rgba(9,14,22,.56));
}
.hero-slide img{object-position:center 52%}
.hero-copy{
  width:min(84%,900px);
  padding:82px 0 92px;
}
.hero-kicker,.hero.hero-light .hero-kicker{
  margin-bottom:13px;
  color:#c9f1ff;
  font-size:12px;
  font-weight:800;
  letter-spacing:.12em;
  text-shadow:0 2px 12px rgba(0,0,0,.24);
}
.hero h1,.hero.hero-light h1{
  max-width:900px;
  color:#fff;
  font-size:clamp(46px,4.2vw,68px);
  font-weight:850;
  letter-spacing:-.045em;
  line-height:1.02;
  text-shadow:0 3px 22px rgba(0,0,0,.24);
}
.hero h1 span,.hero.hero-light h1 span{color:#8bdcf3}
.hero-lede,.hero.hero-light .hero-lede{
  max-width:710px;
  margin:24px auto 15px;
  color:rgba(255,255,255,.94);
  font-size:17px;
  font-weight:650;
  line-height:1.58;
  text-shadow:0 2px 12px rgba(0,0,0,.25);
}
.hero-proof,.hero.hero-light .hero-proof{
  margin-bottom:29px;
  color:rgba(255,255,255,.82);
  font-size:11px;
  font-weight:750;
}
.hero-proof span,.hero.hero-light .hero-proof span{color:#9be3f6}
.hero-quote{
  min-width:164px;
  height:46px;
  border:2px solid #fff;
  color:var(--rs-ink);
  background:#fff;
}
.hero-quote:hover{border-color:var(--rs-cyan);background:var(--rs-cyan);color:#fff}
.hero-dots-centered{bottom:24px}
.hero-dots-centered button,.hero.hero-light .hero-dots-centered button{
  width:18px;
  height:3px;
  border:0;
  border-radius:2px;
  background:rgba(255,255,255,.5);
}
.hero-dots-centered button.active,.hero.hero-light .hero-dots-centered button.active{
  width:34px;
  background:var(--rs-cyan-bright);
}

/* Typography and whitespace */
.section{padding:104px 0}
.section-heading{max-width:760px;margin-bottom:48px}
.section-heading .eyebrow,.eyebrow{
  margin-bottom:14px;
  color:var(--rs-navy);
  font-size:11px;
  font-weight:850;
  letter-spacing:.13em;
}
.section-heading h2,.manufacturing h2,.warehouse h2,.inquiry h2{
  color:var(--rs-ink);
  font-size:clamp(38px,3.3vw,52px);
  font-weight:820;
  letter-spacing:-.045em;
  line-height:1.06;
}
.section-heading>p:last-child{
  margin-top:18px;
  color:var(--rs-muted);
  font-size:15px;
  font-weight:500;
  line-height:1.75;
}
.text-link{
  color:var(--rs-navy);
  border-color:var(--rs-navy);
  font-size:11px;
  font-weight:850;
}

/* Editorial image grids and product cards */
.split-grid{grid-template-columns:minmax(0,1.04fr) minmax(0,.96fr);gap:72px}
.about-copy,.quality-copy{padding-left:0}
.image-frame,.about-video,.quality-carousel{border-radius:10px}
.about-image,.about-video,.about-video video{height:600px;min-height:600px}
.about-copy>p{font-size:15px;line-height:1.82}
.trust-strip{
  border-top:1px solid var(--rs-line);
  border-bottom:1px solid var(--rs-line);
  background:#fff;
}
.trust-items div{
  color:#505963;
  font-size:11px;
  font-weight:700;
}
.trust-items span{color:var(--rs-cyan);font-weight:850}
.category-grid{gap:20px}
.category-card{
  border-radius:9px;
  box-shadow:none;
}
.category-card img{transition:transform .65s cubic-bezier(.2,.7,.2,1),filter .4s ease}
.category-card:hover img{transform:scale(1.045);filter:saturate(1.04)}
.category-overlay{background:linear-gradient(180deg,transparent 35%,rgba(13,18,28,.66))}
.category-card small{font-size:10px;font-weight:700}
.category-card h3{font-size:24px;font-weight:800}
.category-card p{font-weight:800}

.featured,.quality{background:var(--rs-soft)}
.product-tabs{gap:24px}
.product-tabs button{
  color:#7d848b;
  border-bottom-width:2px;
  font-size:11px;
  font-weight:750;
}
.product-tabs button.selected{color:var(--rs-navy);border-color:var(--rs-cyan)}
.product-grid{gap:34px 22px}
.product-image,.product-card-media{
  border-radius:8px;
  background:#ecefef;
}
.product-image>img,.product-card-media img{transition:transform .55s cubic-bezier(.2,.7,.2,1)}
.product-card:hover .product-image>img,.product-card:hover .product-card-media img{transform:scale(1.045)}
.product-actions{right:10px;bottom:10px;left:10px;gap:6px}
.product-actions a{
  padding:12px 8px;
  border-radius:999px;
  font-size:10px;
  font-weight:800;
}
.product-actions a:last-child{background:var(--rs-navy)}
.product-card>p,.product-card small{
  color:var(--rs-navy);
  font-size:10px;
  font-weight:800;
}
.product-card h3{
  color:var(--rs-ink);
  font-size:17px;
  font-weight:750;
  line-height:1.42;
}

/* Data and capability sections */
.stats{
  padding:58px 0;
  color:#fff;
  background:var(--rs-navy);
  border:0;
}
.stats-grid div{border-color:rgba(255,255,255,.18)}
.stats-grid strong{color:#fff;font-weight:820}
.stats-grid span{color:rgba(255,255,255,.75);font-weight:650}
.oem{background:var(--rs-cyan-pale)}
.oem-timeline::before{background:#b8dfec}
.oem-timeline span{
  width:40px;
  height:40px;
  color:var(--rs-navy);
  background:#fff;
  border-color:#9bd4e7;
  font-weight:850;
  box-shadow:0 6px 16px rgba(32,169,214,.08);
}
.oem-timeline strong{font-size:13px;font-weight:750}
.support-list span{
  padding:10px 16px;
  color:#45505a;
  background:rgba(255,255,255,.65);
  border-color:#b8dfec;
  font-weight:650;
}
.advantage-grid{gap:14px;border:0}
.advantage-grid article{
  min-height:224px;
  padding:34px;
  border:1px solid var(--rs-line);
  border-radius:8px;
  background:#fff;
  transition:transform .3s ease,box-shadow .3s ease,border-color .3s ease;
}
.advantage-grid article:hover{
  transform:translateY(-5px);
  border-color:#c5e5ef;
  box-shadow:var(--rs-shadow);
}
.advantage-grid article>span{color:var(--rs-cyan);font-weight:850}
.advantage-grid h3{margin-top:34px;font-size:20px;font-weight:800}
.advantage-grid p{font-size:13px}
.manufacturing,.warehouse{
  width:min(1440px,100%);
  margin-inline:auto;
}
.manufacturing-copy h2,.warehouse-copy h2{color:#fff;font-weight:820}
.manufacturing-copy .eyebrow,.warehouse-copy .eyebrow{color:var(--rs-cyan-bright)}
.manufacturing-image::after{background:linear-gradient(90deg,rgba(12,22,51,.92),rgba(18,37,75,.63) 48%,rgba(8,18,31,.24))}
.manufacturing-metrics strong{font-weight:800}
.development-grid{gap:76px}
.innovation-list strong,.quality-list strong{font-weight:750}
.quality-carousel{box-shadow:0 22px 60px rgba(20,27,51,.1)}
.global{background:var(--rs-navy-dark)}
.global .section-heading h2{color:#fff}
.global .section-heading .eyebrow,.global-service>p:first-child{color:var(--rs-cyan-bright)}
.global-service h3{font-weight:750}
.cert-mark{border-color:#a8dce9}
.cert-mark span{color:var(--rs-navy);font-weight:800}
.partner-strip{background:#fafafa}
.insight-grid article>div{border-radius:8px;overflow:hidden}
.insight-grid h3,.insight-large h3{font-weight:800}
.insight-grid article>p,.insight-grid article>a{color:var(--rs-navy);font-weight:800}
.inquiry{background:var(--rs-navy)}
.inquiry .eyebrow{color:var(--rs-cyan-bright)}
.inquiry h2{color:#fff;font-weight:820}

/* Inner pages */
.inner-banner{
  background:linear-gradient(180deg,#fff 0%,#f7f8f8 100%);
  border-bottom:1px solid var(--rs-line);
}
.inner-banner .breadcrumb,.detail-breadcrumb .breadcrumb{
  padding:14px 0;
  color:#7a8188;
  border-color:var(--rs-line);
  font-size:12px;
  font-weight:600;
}
.breadcrumb a{color:var(--rs-navy)}
.inner-heading{min-height:190px;padding:42px 0}
.inner-heading h1{
  color:var(--rs-ink);
  font-size:clamp(40px,4vw,58px);
  font-weight:820;
  letter-spacing:-.05em;
}
.inner-heading>p{color:var(--rs-muted);font-size:16px;font-weight:500}
.detail-breadcrumb{background:#f7f8f8;border-color:var(--rs-line)}
.content-section{padding:82px 0 108px}
.section-head h2,.listing-head h2{font-size:36px;font-weight:820}
.listing-head>strong{color:var(--rs-navy);background:var(--rs-cyan-pale)}
.rich-content{color:#3f4851;font-size:16px}
.rich-content h2{color:var(--rs-ink);font-weight:800}
.rich-content h3{color:var(--rs-ink);font-weight:750}
.rich-content th{color:var(--rs-navy);background:var(--rs-cyan-pale)}
.page-layout{grid-template-columns:250px minmax(0,1fr);gap:64px}
.section-sidebar,.product-sidebar{
  overflow:hidden;
  border:1px solid var(--rs-line);
  border-radius:8px;
  background:#fff;
}
.section-sidebar strong,.sidebar-title{
  color:#fff;
  background:var(--rs-navy);
  font-weight:800;
}
.section-sidebar a,.product-sidebar nav a{font-weight:700}
.section-sidebar a:hover,.product-sidebar nav a:hover,.product-sidebar nav a.active{
  color:var(--rs-navy);
  background:var(--rs-cyan-pale);
  box-shadow:inset 4px 0 var(--rs-cyan);
}
.products-layout{grid-template-columns:260px minmax(0,1fr);gap:44px}
.sidebar-help{border-radius:7px;background:#fafafa}
.sidebar-help a{color:var(--rs-navy)}
.product-card-media>span{
  color:var(--rs-navy);
  border-radius:999px;
}
.product-card-actions a{
  border-color:var(--rs-navy);
  border-radius:999px;
  color:var(--rs-navy);
  font-weight:800;
}
.product-card-actions a:last-child{background:var(--rs-navy)}
.product-card-actions a:hover{border-color:var(--rs-cyan);background:var(--rs-cyan)}
.pagination a,.pagination span{border-radius:999px;font-weight:700}
.pagination .page-num-current,.pagination a:hover{border-color:var(--rs-navy);background:var(--rs-navy)}
.product-page{background:#f7f8f8}
.product-main-image{overflow:hidden;border-radius:9px;background:#ecefef}
.product-meta h1{font-weight:820}
.trade-facts,.spec-table,.detail-body{border-radius:8px}
.trade-facts small{color:var(--rs-navy)}
.detail-tabs a{color:var(--rs-navy);font-weight:800}
.detail-tabs a:first-child{border-top-color:var(--rs-cyan);background:var(--rs-cyan-pale)}
.news-card{
  border-color:var(--rs-line);
  border-radius:8px;
}
.news-card time,.news-card span{color:var(--rs-navy);font-weight:800}
.news-card h3{font-weight:800}
.article-wrap>h1{font-weight:820}
.article-cover{border-radius:9px}
.faq-intro,.contact-details{
  border-left:0;
  border-top:4px solid var(--rs-cyan);
  border-radius:8px;
  background:var(--rs-cyan-pale);
}
.faq-intro h2,.contact-details h2{font-weight:820}
.faq-list details{overflow:hidden;border-radius:7px}
.faq-list summary{font-weight:750}
.faq-list summary:after{color:var(--rs-navy)}
.faq-list details[open] summary{color:var(--rs-navy);background:var(--rs-cyan-pale)}
.field label{font-weight:800}
.field input,.field textarea,.field select,.search-form input{
  border-color:#cfd5d9;
  border-radius:7px;
}
.field input:focus,.field textarea:focus,.search-form input:focus{
  outline:3px solid rgba(32,169,214,.14);
  border-color:var(--rs-cyan);
}
.catalog-feature{
  border-color:var(--rs-line);
  border-radius:10px;
  box-shadow:var(--rs-shadow);
}
.catalog-cover{border-radius:8px}
.catalog-cover>span{border-radius:999px;background:var(--rs-navy)}
.catalog-copy h2{font-weight:820}
.catalog-stats strong{color:var(--rs-navy);font-weight:820}
.catalog-help{border-color:var(--rs-cyan);background:var(--rs-cyan-pale)}

/* Footer */
.footer-cta{background:var(--rs-navy)}
.footer-cta h2{font-weight:820}
.site-footer,footer{
  color:#fff;
  background:var(--rs-navy-dark);
}
.footer-grid h3{color:var(--rs-cyan-bright);font-weight:800}
.footer-grid strong{font-weight:820}
.footer-bottom{border-color:rgba(255,255,255,.14)}
.floating-contact a{background:var(--rs-navy)}
.floating-contact a:first-child{background:var(--rs-cyan)}

@media(max-width:1160px){
  .container{width:min(100% - 44px,1340px)}
  .navigation{gap:13px}
  .navigation>a,.nav-item>a,.navigation a{font-size:11px}
  .header-cta{display:none}
  .category-rail-inner{gap:10px}
  .split-grid{gap:48px}
}

@media(max-width:980px){
  .site-header{height:76px}
  .brand{width:84px;height:76px;flex-basis:84px}
  .brand-logo{width:66px;height:66px;flex-basis:66px}
  .navigation{
    top:76px;
    padding:12px 24px 24px;
    border-bottom:1px solid var(--rs-line);
    box-shadow:var(--rs-shadow);
  }
  .navigation>a,.nav-item>a,.navigation a{font-size:15px;font-weight:750}
  .category-rail{padding:14px 0 17px}
  .category-rail-inner{
    display:flex;
    overflow-x:auto;
    scroll-snap-type:x proximity;
    scrollbar-width:none;
  }
  .category-rail-inner::-webkit-scrollbar{display:none}
  .category-rail a{min-width:118px;scroll-snap-align:start}
  .category-rail .rail-image{width:64px;height:64px}
  .hero{width:calc(100% - 32px)}
  .split-grid{grid-template-columns:1fr}
  .about-copy,.quality-copy{padding-top:8px}
}

@media(max-width:700px){
  .container{width:calc(100% - 32px)}
  .topbar{display:none}
  .site-header{height:70px}
  .brand{height:70px}
  .brand-logo{width:60px;height:60px;flex-basis:60px}
  .navigation{top:70px}
  .category-rail{padding:12px 0 15px}
  .category-rail a{min-width:94px;font-size:10px}
  .category-rail .rail-image{width:58px;height:58px}
  .hero{
    width:calc(100% - 20px);
    height:570px;
    margin-bottom:54px;
    border-radius:8px;
  }
  .hero-copy{width:calc(100% - 32px);padding:68px 0 84px}
  .hero-kicker,.hero.hero-light .hero-kicker{font-size:10px}
  .hero h1,.hero.hero-light h1{max-width:360px;font-size:36px;line-height:1.06}
  .hero-lede,.hero.hero-light .hero-lede{max-width:340px;font-size:15px}
  .hero-proof,.hero.hero-light .hero-proof{font-size:10px;line-height:1.7}
  .section{padding:70px 0}
  .section-heading{margin-bottom:34px}
  .section-heading h2,.manufacturing h2,.warehouse h2,.inquiry h2{font-size:36px}
  .section-heading>p:last-child{font-size:14px}
  .about-image,.about-video,.about-video video{height:390px;min-height:390px}
  .category-grid{gap:12px}
  .category-card h3{font-size:19px}
  .product-grid{gap:28px 12px}
  .product-card h3{font-size:15px}
  .stats-grid strong{font-size:35px}
  .advantage-grid{gap:10px}
  .advantage-grid article{padding:27px}
  .inner-heading{min-height:0;padding:34px 0 40px}
  .inner-heading h1{font-size:38px}
  .content-section{padding:55px 0 76px}
  .section-head h2,.listing-head h2{font-size:30px}
  .product-grid,.news-grid{gap:30px 12px}
}

@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{scroll-behavior:auto!important;transition-duration:.01ms!important;animation-duration:.01ms!important}
}

/* Ensure the compact navigation control stays visible on tablet and mobile. */
@media(max-width:980px){
  .header-inner{position:relative}
  .menu-button{
    display:block!important;
    position:absolute!important;
    z-index:5;
    top:50%;
    right:0;
    width:42px;
    height:42px;
    margin:0;
    padding:9px;
    border:0;
    border-radius:50%;
    background:var(--rs-navy)!important;
    transform:translateY(-50%);
  }
  .menu-button span{
    display:block!important;
    width:24px;
    height:2px;
    margin:6px 0;
    border-radius:2px;
    background:#fff!important;
  }
}
@media(min-width:981px){.menu-button{display:none!important}}


/* Reference-accurate type and three-level commerce header */
@font-face{
  font-family:"RS Montserrat";
  src:url("../fonts/montserrat-semibold.woff2") format("woff2");
  font-style:normal;
  font-weight:600;
  font-display:swap;
}
@font-face{
  font-family:"RS Montserrat";
  src:url("../fonts/montserrat-bold.woff2") format("woff2");
  font-style:normal;
  font-weight:700 900;
  font-display:swap;
}
@font-face{
  font-family:"RS Playfair";
  src:url("../fonts/playfair-display.woff2") format("woff2");
  font-style:normal;
  font-weight:400;
  font-display:swap;
}

body{
  font-family:"RS Montserrat","Montserrat","Segoe UI",Arial,sans-serif;
  font-weight:600;
}
h1,h2,h3,h4,h5,h6,
.section-heading h2,.inner-heading h1,.product-meta h1,.article-wrap>h1{
  font-family:"RS Montserrat","Montserrat","Segoe UI",Arial,sans-serif;
  font-weight:700;
}
.topbar{height:30px}
.site-header{
  height:128px;
  overflow:visible;
  background:#fff;
}
.header-primary{
  position:relative;
  display:flex;
  height:79px;
  align-items:center;
  gap:28px;
}
.header-primary .brand{
  width:108px;
  height:79px;
  flex:0 0 108px;
}
.header-primary .brand-logo{
  width:72px;
  height:72px;
  flex:0 0 72px;
}
.header-search{
  display:flex;
  width:min(520px,42vw);
  height:42px;
  align-items:center;
  overflow:hidden;
  border:1px solid #eceeef;
  border-radius:999px;
  background:#f4f4f3;
}
.search-category{
  display:flex;
  height:22px;
  padding:0 15px 0 18px;
  align-items:center;
  border-right:1px solid #dfe2e3;
  color:#2c3035;
  font-size:10px;
  font-weight:700;
  white-space:nowrap;
}
.header-search input{
  min-width:0;
  height:100%;
  padding:0 14px;
  flex:1;
  border:0;
  outline:0;
  color:#20242a;
  background:transparent;
  font-family:inherit;
  font-size:11px;
}
.header-search input::placeholder{color:#92979b}
.header-search button{
  width:46px;
  height:42px;
  padding:0;
  border:0;
  color:var(--rs-navy);
  background:transparent;
  font-family:"Segoe UI Symbol",sans-serif;
  font-size:25px;
  font-weight:400;
  cursor:pointer;
}
.header-search:focus-within{
  border-color:#b5dce9;
  background:#fff;
  box-shadow:0 0 0 3px rgba(32,169,214,.1);
}
.header-utilities{
  display:flex;
  min-width:0;
  margin-left:auto;
  align-items:center;
  justify-content:flex-end;
  gap:24px;
}
.header-utility{
  display:flex;
  min-width:0;
  flex-direction:column;
  line-height:1.2;
}
.header-utility small{
  margin-bottom:5px;
  color:#8a9095;
  font-size:8px;
  font-weight:700;
  letter-spacing:.1em;
}
.header-utility strong{
  max-width:180px;
  overflow:hidden;
  color:#25292e;
  font-size:10px;
  font-weight:700;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.header-utility:hover strong{color:var(--rs-cyan)}
.header-primary .header-cta{
  min-height:40px;
  margin-left:0;
  padding:0 20px;
  font-size:10px;
}
.nav-bar{
  height:49px;
  border-top:1px solid #f0f1f1;
  border-bottom:1px solid var(--rs-line);
  background:#fff;
}
.nav-shell{
  display:flex;
  height:100%;
  align-items:center;
}
.nav-bar .navigation{
  height:100%;
  flex:0 1 auto;
  justify-content:flex-start;
  gap:31px;
}
.nav-bar .navigation>a,
.nav-bar .nav-item>a{
  height:100%;
  color:#1f2227;
  font-size:11px;
  font-weight:700;
}
.nav-bar .navigation>a:after,
.nav-bar .nav-item>a:after{bottom:0}
.nav-bar .nav-dropdown{top:100%}
.nav-bar .navigation>a:hover,
.nav-bar .nav-item>a:hover{color:var(--rs-navy)}
.category-rail{
  padding-top:15px;
  padding-bottom:18px;
}
.category-rail a{
  font-family:"RS Playfair",Georgia,serif;
  font-size:12px;
  font-weight:400;
  letter-spacing:0;
}
.category-rail .rail-image{width:68px;height:68px}
.hero{margin-top:0}
.section-heading h2,
.manufacturing h2,.warehouse h2,.inquiry h2{
  font-weight:700;
}
.partner-strip p,.global-service h3{
  font-family:"RS Playfair",Georgia,serif;
  font-weight:400;
}

@media(max-width:1240px){
  .header-primary{gap:18px}
  .header-search{width:min(430px,39vw)}
  .header-utilities{gap:14px}
  .header-utility:first-of-type{display:none}
  .nav-bar .navigation{gap:20px}
}

@media(max-width:980px){
  .site-header{height:72px}
  .header-primary{height:72px}
  .header-primary .brand{width:82px;height:72px;flex-basis:82px}
  .header-primary .brand-logo{width:62px;height:62px;flex-basis:62px}
  .header-search,.header-utilities{display:none}
  .nav-bar{height:0;border:0}
  .nav-shell{width:100%;height:0}
  .nav-bar .navigation{
    position:absolute;
    z-index:80;
    top:72px;
    right:0;
    left:0;
    display:none;
    width:100%;
    height:auto;
    max-height:calc(100vh - 72px);
    padding:12px 24px 28px;
    overflow:auto;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    background:#fff;
    border-top:1px solid var(--rs-line);
    border-bottom:1px solid var(--rs-line);
    box-shadow:var(--rs-shadow);
  }
  .nav-bar .navigation.is-open{display:flex}
  .nav-bar .navigation>a,.nav-bar .nav-item>a{
    height:auto;
    padding:14px 0;
    border-bottom:1px solid var(--rs-line);
    font-size:14px;
  }
  .nav-bar .navigation>a:after,.nav-bar .nav-item>a:after{display:none}
  .nav-bar .nav-item{height:auto}
  .nav-bar .nav-dropdown{
    position:static;
    visibility:visible;
    width:auto;
    padding:4px 0 8px 18px;
    border:0;
    box-shadow:none;
    opacity:1;
    transform:none;
  }
  .nav-bar .nav-dropdown strong{display:none}
  .nav-bar .nav-dropdown a{padding:8px 0}
  .category-rail a{font-size:11px}
}

@media(max-width:700px){
  .site-header{height:68px}
  .header-primary{height:68px}
  .header-primary .brand{height:68px}
  .header-primary .brand-logo{width:58px;height:58px;flex-basis:58px}
  .nav-bar .navigation{top:68px;max-height:calc(100vh - 68px)}
}

/* Keep commerce dropdowns closed until the matching navigation item is active. */
@media(min-width:981px){
  .nav-bar .nav-dropdown{
    position:absolute!important;
    visibility:hidden!important;
    opacity:0!important;
    transform:translateY(8px)!important;
    pointer-events:none;
  }
  .nav-bar .nav-item:hover>.nav-dropdown,
  .nav-bar .nav-item:focus-within>.nav-dropdown{
    visibility:visible!important;
    opacity:1!important;
    transform:translateY(0)!important;
    pointer-events:auto;
  }
}
@media(max-width:980px){
  .nav-bar .nav-dropdown{
    position:static!important;
    visibility:visible!important;
    opacity:1!important;
    transform:none!important;
    pointer-events:auto;
  }
}
/* Exact 1920 × 680 artwork carousel. Artwork already contains its own typography. */
.hero{
  width:min(1920px,100%);
  height:auto;
  min-height:0;
  aspect-ratio:1920/680;
  margin:0 auto 86px;
  border-radius:0;
  box-shadow:none;
}
.hero-copy{display:none!important}
.hero-shade{display:none!important}
.hero-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}
.hero-dots-centered{bottom:18px}
@media(max-width:700px){
  .hero{
    width:100%;
    height:260px;
    aspect-ratio:auto;
    margin-bottom:54px;
  }
  .hero-slide img{object-position:center}
}
/* Homepage banner carousel controls and visible cross-slide motion. */
.hero-slide{
  z-index:0;
  visibility:hidden;
  opacity:0;
  transform:translateX(2%) scale(1.012);
  transition:opacity .9s ease,transform 1.15s cubic-bezier(.2,.7,.2,1),visibility 0s linear .9s;
}
.hero-slide.active{
  z-index:1;
  visibility:visible;
  opacity:1;
  transform:translateX(0) scale(1);
  transition-delay:0s;
}
.hero-arrow{
  position:absolute;
  z-index:6;
  top:50%;
  display:grid;
  width:48px;
  height:48px;
  padding:0 0 4px;
  place-items:center;
  border:1px solid rgba(255,255,255,.72);
  border-radius:50%;
  background:rgba(12,28,38,.34);
  color:#fff;
  box-shadow:0 8px 24px rgba(12,28,38,.18);
  font:400 38px/1 Arial,sans-serif;
  cursor:pointer;
  transform:translateY(-50%);
  transition:background .2s ease,transform .2s ease;
  backdrop-filter:blur(5px);
}
.hero-arrow:hover,.hero-arrow:focus-visible{background:rgba(35,55,134,.9);transform:translateY(-50%) scale(1.06)}
.hero-prev{left:clamp(14px,2.5vw,48px)}
.hero-next{right:clamp(14px,2.5vw,48px)}
.hero-dots-centered{z-index:7}
@media(max-width:700px){
  .hero-arrow{width:38px;height:38px;font-size:30px}
  .hero-prev{left:10px}.hero-next{right:10px}
}
/* Delamu proportion pass: 1700px canvas, 135px desktop gutters, matching type scale. */
@font-face{font-family:"Delamu Playfair";src:url("../fonts/delamu-playfair-regular.woff2") format("woff2");font-style:normal;font-weight:400;font-display:swap}
@font-face{font-family:"Delamu Playfair";src:url("../fonts/delamu-playfair-semibold.woff2") format("woff2");font-style:normal;font-weight:600;font-display:swap}
@font-face{font-family:"Delamu Playfair";src:url("../fonts/delamu-playfair-bold.woff2") format("woff2");font-style:normal;font-weight:700;font-display:swap}
@font-face{font-family:"Delamu Montserrat";src:url("../fonts/delamu-montserrat-semibold.woff2") format("woff2");font-style:normal;font-weight:600;font-display:swap}
@font-face{font-family:"Delamu Montserrat";src:url("../fonts/delamu-montserrat-bold.woff2") format("woff2");font-style:normal;font-weight:700;font-display:swap}

html{font-size:17px}
body{
  font-family:"Delamu Playfair","Playfair Display",Georgia,serif;
  font-size:15px;
  font-weight:400;
  line-height:1.6;
  letter-spacing:0;
}
button,input,select,textarea{font-family:"Delamu Playfair","Playfair Display",Georgia,serif}
h1,h2,h3,h4,h5,h6,
.section-heading h2,.inner-heading h1,.product-meta h1,.article-wrap>h1{
  font-family:"Delamu Montserrat","Montserrat","Segoe UI",Arial,sans-serif;
  font-weight:700;
  letter-spacing:0;
}
h1,.inner-heading h1,.product-meta h1,.article-wrap>h1{font-size:40px;line-height:1.2}
h2,.section-heading h2,.manufacturing h2,.warehouse h2,.inquiry h2{font-size:32px;line-height:1.3125;font-weight:700}
h3{font-size:28px;line-height:1.35}
.button,.header-cta,.text-link,.product-actions a{
  font-family:"Delamu Playfair","Playfair Display",Georgia,serif;
  font-size:15px;
  font-weight:700;
}
.eyebrow{
  font-family:"Delamu Montserrat","Montserrat","Segoe UI",Arial,sans-serif;
  font-size:12px;
  font-weight:700;
}
.container{width:calc(100% - 32px);max-width:1700px}
.hero{width:calc(100% - 32px);max-width:1700px;border-radius:9px}

.topbar{
  height:48px;
  font-family:"Delamu Playfair","Playfair Display",Georgia,serif;
  font-size:12px;
  font-weight:400;
}
.topbar-inner{height:48px}

@media(min-width:768px){
  .container{width:calc(100% - 48px)}
  .hero{width:calc(100% - 48px)}
}
@media(min-width:981px){
  .site-header{height:190px}
  .header-primary{height:126px;gap:34px}
  .header-primary .brand{width:118px;height:126px;flex-basis:118px}
  .header-primary .brand-logo{width:90px;height:90px;flex-basis:90px}
  .header-search{width:min(600px,39vw);height:48px}
  .search-category{height:26px;padding-inline:20px 17px;font-size:13px;font-weight:600}
  .header-search input{padding-inline:17px;font-size:14px;font-weight:400}
  .header-search button{width:52px;height:48px}
  .header-utilities{gap:30px}
  .header-utility small{margin-bottom:6px;font-size:10px;font-weight:600}
  .header-utility strong{max-width:210px;font-size:13px;font-weight:600}
  .header-primary .header-cta{min-height:46px;padding-inline:24px;font-size:13px}
  .nav-bar{height:64px}
  .nav-bar .navigation{gap:36px}
  .nav-bar .navigation>a,.nav-bar .nav-item>a{
    font-family:"Delamu Playfair","Playfair Display",Georgia,serif;
    font-size:15px;
    font-weight:700;
    line-height:1.6;
  }
  .nav-dropdown a{font-family:"Delamu Playfair","Playfair Display",Georgia,serif;font-size:14px;font-weight:600}
  .category-rail{padding-top:18px;padding-bottom:21px}
  .category-rail a{gap:10px;font-family:"Delamu Playfair","Playfair Display",Georgia,serif;font-size:13px;font-weight:400;line-height:1.6}
  .category-rail .rail-image{width:80px;height:80px}
}
@media(min-width:1280px){
  .container{width:calc(100% - 100px)}
  .hero{width:calc(100% - 100px)}
}
@media(min-width:1536px){
  .container{width:min(1700px,calc(100% - 270px))}
  .hero{width:min(1700px,calc(100% - 270px))}
}
.product-card h3{
  font-family:"Delamu Montserrat","Montserrat","Segoe UI",Arial,sans-serif;
  font-size:15px;
  font-weight:600;
  line-height:1.6;
}
.product-card>p,.product-card small{font-family:"Delamu Playfair","Playfair Display",Georgia,serif;font-size:13px;font-weight:400}
.partner-strip p,.global-service h3{font-family:"Delamu Playfair","Playfair Display",Georgia,serif}
@media(max-width:980px){
  .topbar{height:36px;font-size:11px}.topbar-inner{height:36px}
  h1,.inner-heading h1,.product-meta h1,.article-wrap>h1{font-size:28px}
  h2,.section-heading h2,.manufacturing h2,.warehouse h2,.inquiry h2{font-size:24px}
  h3{font-size:20px}
  .hero{width:calc(100% - 32px);border-radius:7px}
  .nav-bar .navigation>a,.nav-bar .nav-item>a{font-family:"Delamu Playfair","Playfair Display",Georgia,serif;font-size:15px;font-weight:700}
}
/* Dedeer typography pass: Poppins scale and weights, layout proportions unchanged. */
@font-face{font-family:"Dedeer Poppins";src:url("../fonts/dedeer-poppins-light.ttf") format("truetype");font-style:normal;font-weight:300;font-display:swap}
@font-face{font-family:"Dedeer Poppins";src:url("../fonts/dedeer-poppins-regular.ttf") format("truetype");font-style:normal;font-weight:400;font-display:swap}
@font-face{font-family:"Dedeer Poppins";src:url("../fonts/dedeer-poppins-medium.ttf") format("truetype");font-style:normal;font-weight:500;font-display:swap}
@font-face{font-family:"Dedeer Poppins";src:url("../fonts/dedeer-poppins-semibold.ttf") format("truetype");font-style:normal;font-weight:600 700;font-display:swap}

body{
  font-family:"Dedeer Poppins",Poppins,Arial,"Microsoft YaHei",sans-serif;
  font-size:16px;
  font-weight:400;
  line-height:1.65;
  letter-spacing:0;
}
button,input,select,textarea{font-family:"Dedeer Poppins",Poppins,Arial,"Microsoft YaHei",sans-serif}
h1,h2,h3,h4,h5,h6,
.section-heading h2,.inner-heading h1,.product-meta h1,.article-wrap>h1{
  font-family:"Dedeer Poppins",Poppins,Arial,"Microsoft YaHei",sans-serif;
  letter-spacing:0;
}
h1,.inner-heading h1,.product-meta h1,.article-wrap>h1{font-size:44px;line-height:1.15;font-weight:700}
h2,.section-heading h2,.manufacturing h2,.warehouse h2,.inquiry h2{font-size:44px;line-height:1.1;font-weight:700}
h3{font-size:28px;line-height:1.4;font-weight:400}
p{font-family:"Dedeer Poppins",Poppins,Arial,"Microsoft YaHei",sans-serif}
.section-heading>p:not(.eyebrow),.about-copy>p,.manufacturing-description,.warehouse-copy>p,.inquiry-inner>p{
  font-size:18px;
  line-height:32px;
  font-weight:400;
}
.eyebrow{
  font-family:"Dedeer Poppins",Poppins,Arial,"Microsoft YaHei",sans-serif;
  font-size:14px;
  font-weight:500;
  letter-spacing:.04em;
}
.button,.header-cta,.text-link,.product-actions a{
  font-family:"Dedeer Poppins",Poppins,Arial,"Microsoft YaHei",sans-serif;
  font-size:18px;
  font-weight:400;
}
.topbar{
  font-family:"Dedeer Poppins",Poppins,Arial,"Microsoft YaHei",sans-serif;
  font-size:14px;
  font-weight:400;
}
.header-search,.header-search input,.search-category,.header-utility,.header-primary .header-cta{
  font-family:"Dedeer Poppins",Poppins,Arial,"Microsoft YaHei",sans-serif;
}
.search-category,.header-search input{font-size:14px;font-weight:400}
.header-utility small{font-size:10px;font-weight:500}
.header-utility strong{font-size:13px;font-weight:500}
.header-primary .header-cta{font-size:14px;font-weight:500}
.nav-bar .navigation>a,.nav-bar .nav-item>a{
  font-family:"Dedeer Poppins",Poppins,Arial,"Microsoft YaHei",sans-serif;
  font-size:20px;
  font-weight:400;
  line-height:1.4;
}
.nav-dropdown a{
  font-family:"Dedeer Poppins",Poppins,Arial,"Microsoft YaHei",sans-serif;
  font-size:16px;
  font-weight:400;
}
.category-rail a{
  font-family:"Dedeer Poppins",Poppins,Arial,"Microsoft YaHei",sans-serif;
  font-size:14px;
  font-weight:400;
}
.product-card h3{
  font-family:"Dedeer Poppins",Poppins,Arial,"Microsoft YaHei",sans-serif;
  font-size:28px;
  font-weight:400;
  line-height:1.4;
}
.product-card>p,.product-card small{
  font-family:"Dedeer Poppins",Poppins,Arial,"Microsoft YaHei",sans-serif;
  font-size:16px;
  font-weight:400;
  line-height:1.6;
}
.insight-grid h3,.insight-large h3{font-family:"Dedeer Poppins",Poppins,Arial,"Microsoft YaHei",sans-serif;font-size:20px;font-weight:400;line-height:1.4}
.insight-grid article>p,.insight-grid article>a{font-family:"Dedeer Poppins",Poppins,Arial,"Microsoft YaHei",sans-serif;font-size:16px;font-weight:400}
.partner-strip p,.global-service h3{font-family:"Dedeer Poppins",Poppins,Arial,"Microsoft YaHei",sans-serif}
@media(max-width:1240px) and (min-width:981px){
  .nav-bar .navigation{gap:22px}
  .nav-bar .navigation>a,.nav-bar .nav-item>a{font-size:16px}
}
@media(max-width:980px){
  body{font-size:15px}
  h1,.inner-heading h1,.product-meta h1,.article-wrap>h1{font-size:32px}
  h2,.section-heading h2,.manufacturing h2,.warehouse h2,.inquiry h2{font-size:32px}
  h3,.product-card h3{font-size:22px}
  .section-heading>p:not(.eyebrow),.about-copy>p,.manufacturing-description,.warehouse-copy>p,.inquiry-inner>p{font-size:16px;line-height:1.75}
  .nav-bar .navigation>a,.nav-bar .nav-item>a{font-family:"Dedeer Poppins",Poppins,Arial,"Microsoft YaHei",sans-serif;font-size:16px;font-weight:400}
  .button,.header-cta,.text-link,.product-actions a{font-size:15px}
}
/* Even navigation distribution inside the content canvas only. */
@media(min-width:981px){
  .nav-shell{align-items:center}
  .nav-bar .navigation{
    width:100%;
    flex:1 1 100%;
    align-items:center;
    justify-content:space-between;
    gap:0;
  }
  .nav-bar .navigation>a,
  .nav-bar .navigation>.nav-item{
    display:flex;
    height:100%;
    flex:0 0 auto;
    align-items:center;
    justify-content:center;
  }
  .nav-bar .nav-item>a{
    display:flex;
    height:100%;
    align-items:center;
    justify-content:center;
  }
}
/* Optical vertical centering for the header quote button. */
.header-primary .header-cta{
  display:inline-flex;
  height:46px;
  min-height:46px;
  padding:1px 24px 0;
  box-sizing:border-box;
  align-items:center;
  justify-content:center;
  line-height:1;
  white-space:nowrap;
}
/* Clean dropdown rows and optically centered navigation chevrons. */
.nav-bar .nav-item>a{gap:7px}
.nav-bar .nav-arrow{
  position:relative;
  display:inline-flex;
  width:14px;
  height:14px;
  margin:0;
  flex:0 0 14px;
  align-items:center;
  justify-content:center;
  color:currentColor;
  font-size:0;
  line-height:0;
  vertical-align:middle;
}
.nav-bar .nav-arrow::before{
  content:"";
  width:6px;
  height:6px;
  border-right:1.5px solid currentColor;
  border-bottom:1.5px solid currentColor;
  transform:translateY(-2px) rotate(45deg);
}
@media(min-width:981px){
  .nav-bar .nav-dropdown{
    z-index:100;
    display:flex;
    width:380px;
    padding:14px;
    flex-direction:column;
    align-items:stretch;
    gap:2px;
    overflow:hidden;
    background:#fff;
  }
  .nav-bar .nav-products>.nav-dropdown{left:-18px}
  .nav-bar .nav-dropdown-compact{left:-18px;width:250px}
  .nav-bar .nav-dropdown strong{
    display:block;
    width:100%;
    padding:8px 14px 10px;
    box-sizing:border-box;
  }
  .nav-bar .nav-dropdown a{
    display:grid;
    width:100%;
    min-height:44px;
    padding:11px 14px;
    box-sizing:border-box;
    grid-template-columns:minmax(0,1fr) auto;
    align-items:center;
    gap:14px;
    border-radius:5px;
    line-height:1.35;
    text-align:left;
    white-space:normal;
  }
  .nav-bar .nav-dropdown a span{
    min-width:24px;
    margin:0;
    justify-self:end;
    color:#87919a;
    text-align:right;
  }
  .nav-bar .nav-dropdown-compact a{display:flex;justify-content:flex-start}
}
@media(max-width:980px){
  .nav-bar .nav-item>a{justify-content:space-between;gap:12px}
  .nav-bar .nav-arrow{display:inline-flex}
  .nav-bar .nav-dropdown a{display:flex;justify-content:space-between;align-items:center}
}
/* Anchor each desktop dropdown to its own navigation item. */
@media(min-width:981px){
  .nav-bar .navigation>.nav-item{position:relative}
  .nav-bar .nav-item>.nav-dropdown{top:100%;right:auto}
  .nav-bar .nav-products>.nav-dropdown{left:-18px}
  .nav-bar .nav-item:not(.nav-products)>.nav-dropdown{left:-18px}
}
/* Full-bleed 1920 × 680 homepage banner; page content keeps its own gutters. */
.hero{
  width:100%!important;
  max-width:1920px!important;
  border-radius:0!important;
}
/* Ripple palette pass: ocean blue, mist blue and warm natural neutrals. */
:root{
  --rs-navy:#2E5B8A;
  --rs-navy-dark:#234767;
  --rs-cyan:#A8D0E9;
  --rs-cyan-bright:#CBE4F3;
  --rs-cyan-pale:#EDF5FA;
  --rs-ink:#24364B;
  --rs-muted:#687583;
  --rs-soft:#F7F6F3;
  --rs-line:#EDEAE6;
  --rs-white:#FFFFFF;
  --rs-shadow:0 18px 48px rgba(46,91,138,.11);
  --brand:#2E5B8A;
  --brand-dark:#244A70;
  --brand-deep:#2E5B8A;
  --brand-pale:#EDF5FA;
  --navy:#234767;
  --ink:#24364B;
  --muted:#687583;
  --line:#EDEAE6;
  --soft:#F7F6F3;
  --brand-500:#2E5B8A;
  --brand-400:#6F9CC2;
  --brand-200:#A8D0E9;
  --brand-50:#EDF5FA;
  --ink-900:#24364B;
  --ink-600:#687583;
  --ink-500:#7D8792;
  --ink-400:#9CA3AA;
  --border:#DED6CB;
  --surface:#F7F6F3;
}
html,body{background:#F7F6F3}
body{color:#24364B}
a{color:#24364B}
a:hover{color:#2E5B8A}
.topbar{background:#2E5B8A;color:#fff}
.site-header,.header-primary,.nav-bar{background:#F7F6F3}
.site-header,.nav-bar{border-color:#EDEAE6}
.header-search{border-color:#DED6CB;background:#fff}
.header-search:focus-within{border-color:#A8D0E9;background:#fff;box-shadow:0 0 0 3px rgba(168,208,233,.25)}
.search-category{border-color:#EDEAE6;color:#24364B}
.header-search input{color:#24364B}
.header-search input::placeholder{color:#8D969F}
.header-search button{color:#2E5B8A}
.header-utility small{color:#7D8792}
.header-utility strong{color:#24364B}
.header-utility:hover strong{color:#2E5B8A}
.header-primary .header-cta,.button-primary,.button:not(.button-light):not(.button-outline):not(.button-outline-light){background:#2E5B8A;color:#fff}
.header-primary .header-cta:hover,.button-primary:hover,.button:not(.button-light):not(.button-outline):not(.button-outline-light):hover{background:#244A70;color:#fff}
.nav-bar .navigation>a,.nav-bar .nav-item>a{color:#24364B}
.nav-bar .navigation>a:hover,.nav-bar .nav-item>a:hover,.nav-bar .navigation>a.active{color:#2E5B8A}
.nav-bar .navigation>a:after,.nav-bar .nav-item>a:after{background:#A8D0E9}
.nav-bar .nav-dropdown{border-color:#EDEAE6;border-top-color:#A8D0E9;box-shadow:0 18px 42px rgba(46,91,138,.13)}
.nav-bar .nav-dropdown a{color:#24364B}
.nav-bar .nav-dropdown a:hover{background:#EDF5FA;color:#2E5B8A}
.nav-bar .nav-dropdown strong{color:#2E5B8A}
.category-rail{background:#fff;border-color:#EDEAE6}
.category-rail a{color:#24364B}
.category-rail .rail-image{border-color:#EDEAE6;background:linear-gradient(145deg,#fff,#EDF5FA)}
.category-rail a:hover .rail-image{border-color:#A8D0E9;box-shadow:0 10px 28px rgba(46,91,138,.14)}
.hero-arrow{border-color:rgba(255,255,255,.8);background:rgba(46,91,138,.55)}
.hero-arrow:hover,.hero-arrow:focus-visible{background:#2E5B8A}
.hero-dots-centered button.active,.hero.hero-light .hero-dots-centered button.active{background:#2E5B8A;border-color:#2E5B8A}
.about,.featured,.development,.quality,.insights{background:#F7F6F3}
.collections,.advantages,.responsibility{background:#fff}
.section-heading h2,.about-copy h2,.quality-copy h2,.innovation-copy h2{color:#24364B}
.section-heading>p:not(.eyebrow),.about-copy>p,.quality-copy p,.manufacturing-description{color:#687583}
.eyebrow{color:#2E5B8A}
.text-link{color:#2E5B8A}
.text-link:hover{color:#244A70}
.category-card,.product-card,.advantage-grid article,.insight-grid article,.global-service,.faq-list details,.contact-form,.catalog-feature{background:#fff;border-color:#EDEAE6;box-shadow:0 14px 38px rgba(46,91,138,.08)}
.product-card h3,.category-card h3,.insight-grid h3{color:#24364B}
.product-card>p,.product-card small,.insight-grid article>p,.insight-grid article>a{color:#2E5B8A}
.product-tabs button{color:#687583;border-color:#DED6CB;background:#fff}
.product-tabs button.selected,.product-tabs button:hover{color:#fff;border-color:#2E5B8A;background:#2E5B8A}
.product-actions a:first-child{background:#2E5B8A;color:#fff}
.product-actions a:last-child{border-color:#2E5B8A;background:#fff;color:#2E5B8A}
.stats{background:#2E5B8A}
.stats-grid div{border-color:rgba(255,255,255,.22)}
.oem{background:#EDF5FA}
.oem-timeline::before{background:#A8D0E9}
.oem-timeline span{color:#2E5B8A;border-color:#A8D0E9;background:#fff;box-shadow:0 7px 18px rgba(46,91,138,.1)}
.support-list span{color:#526273;border-color:#D8E8F1;background:rgba(255,255,255,.78)}
.advantage-grid article>span,.innovation-list article>span,.quality-list article>span{color:#2E5B8A;background:#EDF5FA;border-color:#A8D0E9}
.manufacturing-copy .eyebrow,.warehouse-copy .eyebrow{color:#CBE4F3}
.global,.inquiry{background:#2E5B8A}
.global-service{background:rgba(255,255,255,.09);border-color:rgba(255,255,255,.2);box-shadow:none}
.global-service h3,.global-service p{color:#fff}
.partner-strip{background:#EDEAE6;color:#24364B}
.cert-mark{border-color:#A8D0E9;background:#EDF5FA}
.cert-mark span{color:#2E5B8A}
.inner-banner{background:linear-gradient(180deg,#F7F6F3 0%,#EDF5FA 100%);border-color:#EDEAE6}
.product-sidebar,.section-sidebar,.trade-facts,.spec-table,.rich-content table{border-color:#EDEAE6;background:#fff}
.sidebar-title,.section-sidebar strong{background:#2E5B8A;color:#fff}
.product-sidebar nav a:hover,.section-sidebar a:hover{background:#EDF5FA;color:#2E5B8A}
.field input,.field textarea,.field select,.search-form input{border-color:#DED6CB;background:#fff;color:#24364B}
.field input:focus,.field textarea:focus,.field select:focus,.search-form input:focus{border-color:#A8D0E9;box-shadow:0 0 0 3px rgba(168,208,233,.22)}
footer{background:#234767}
footer h3{color:#A8D0E9}
footer p,footer a{color:#DDE8F0}
.footer-bottom{border-color:rgba(255,255,255,.16);color:#B7C8D6}
.floating-contact a:first-child,.floating-contact a:last-child{background:#2E5B8A;color:#fff}
.mobile-contact a:first-child{background:#2E5B8A;color:#fff}
.mobile-contact a:last-child{background:#A8D0E9;color:#24364B}
::selection{background:#A8D0E9;color:#24364B}
/* Ripple studio palette v2: slate, muted blue, mist and sand. */
:root{
  --rs-navy:#2C3E50;
  --rs-navy-dark:#233342;
  --rs-cyan:#5D7FA6;
  --rs-cyan-bright:#AFC6DB;
  --rs-cyan-pale:#DCE8F3;
  --rs-ink:#2C3E50;
  --rs-muted:#657689;
  --rs-soft:#F7F9FC;
  --rs-line:#DCE8F3;
  --rs-white:#FFFFFF;
  --rs-shadow:0 18px 48px rgba(44,62,80,.1);
  --brand:#5D7FA6;
  --brand-dark:#496B91;
  --brand-deep:#2C3E50;
  --brand-pale:#DCE8F3;
  --navy:#233342;
  --ink:#2C3E50;
  --muted:#657689;
  --line:#DCE8F3;
  --soft:#F7F9FC;
  --brand-500:#5D7FA6;
  --brand-400:#829FBE;
  --brand-200:#DCE8F3;
  --brand-50:#F1F6FA;
  --ink-900:#2C3E50;
  --ink-600:#657689;
  --ink-500:#7B8998;
  --ink-400:#9CA8B3;
  --border:#DCE8F3;
  --surface:#F7F9FC;
}
html,body{background:#F7F9FC}
body,a{color:#2C3E50}
a:hover{color:#5D7FA6}
.topbar{background:#2C3E50;color:#fff}
.site-header,.header-primary,.nav-bar{background:#F7F9FC}
.site-header,.nav-bar{border-color:#DCE8F3}
.header-search{border-color:#DCE8F3;background:#fff}
.header-search:focus-within{border-color:#5D7FA6;background:#fff;box-shadow:0 0 0 3px rgba(93,127,166,.16)}
.search-category{border-color:#DCE8F3;color:#2C3E50}
.header-search input{color:#2C3E50}
.header-search input::placeholder{color:#8795A3}
.header-search button{color:#5D7FA6}
.header-utility small{color:#7B8998}
.header-utility strong{color:#2C3E50}
.header-utility:hover strong{color:#5D7FA6}
.header-primary .header-cta{border:1px solid #D3BE9A;background:#E6DAC6;color:#2C3E50;box-shadow:0 7px 18px rgba(117,92,52,.1)}
.header-primary .header-cta:hover{border-color:#C8AF83;background:#DCCBAF;color:#2C3E50}
.button-primary,.button:not(.button-light):not(.button-outline):not(.button-outline-light){background:#2C3E50;color:#fff}
.button-primary:hover,.button:not(.button-light):not(.button-outline):not(.button-outline-light):hover{background:#5D7FA6;color:#fff}
.button-outline{border-color:#5D7FA6;background:#fff;color:#2C3E50}
.nav-bar .navigation>a,.nav-bar .nav-item>a{color:#2C3E50}
.nav-bar .navigation>a:hover,.nav-bar .nav-item>a:hover,.nav-bar .navigation>a.active{color:#5D7FA6}
.nav-bar .navigation>a:after,.nav-bar .nav-item>a:after{background:#5D7FA6}
.nav-bar .nav-dropdown{border-color:#DCE8F3;border-top-color:#5D7FA6;box-shadow:0 18px 42px rgba(44,62,80,.13)}
.nav-bar .nav-dropdown a{color:#2C3E50}
.nav-bar .nav-dropdown a:hover{background:#F1F6FA;color:#5D7FA6}
.nav-bar .nav-dropdown strong{color:#5D7FA6}
.category-rail{background:#fff;border-color:#DCE8F3}
.category-rail a{color:#2C3E50}
.category-rail .rail-image{border-color:#DCE8F3;background:linear-gradient(145deg,#fff,#F1F6FA)}
.category-rail a:hover .rail-image{border-color:#5D7FA6;box-shadow:0 10px 28px rgba(93,127,166,.15)}
.hero-arrow{border-color:rgba(255,255,255,.82);background:rgba(44,62,80,.5)}
.hero-arrow:hover,.hero-arrow:focus-visible{background:#2C3E50}
.hero-dots-centered button.active,.hero.hero-light .hero-dots-centered button.active{background:#5D7FA6;border-color:#5D7FA6}
.about,.featured,.development,.quality,.insights{background:#F7F9FC}
.collections,.advantages,.responsibility{background:#fff}
.section-heading h2,.about-copy h2,.quality-copy h2,.innovation-copy h2{color:#2C3E50}
.section-heading>p:not(.eyebrow),.about-copy>p,.quality-copy p,.manufacturing-description{color:#657689}
.eyebrow{color:#9B7B49}
.text-link{color:#5D7FA6}
.text-link:hover{color:#2C3E50}
.category-card,.product-card,.advantage-grid article,.insight-grid article,.faq-list details,.contact-form,.catalog-feature{background:#fff;border-color:#DCE8F3;box-shadow:0 14px 38px rgba(44,62,80,.075)}
.product-card h3,.category-card h3,.insight-grid h3{color:#2C3E50}
.product-card>p,.product-card small,.insight-grid article>p,.insight-grid article>a{color:#5D7FA6}
.product-tabs button{color:#657689;border-color:#DCE8F3;background:#fff}
.product-tabs button.selected,.product-tabs button:hover{color:#fff;border-color:#5D7FA6;background:#5D7FA6}
.product-actions a:first-child{background:#2C3E50;color:#fff}
.product-actions a:last-child{border-color:#5D7FA6;background:#fff;color:#5D7FA6}
.stats{border-top:0;border-bottom:0;background:#fff;color:#2C3E50}
.stats-grid div{border-color:#DCE8F3}
.stats-grid strong{color:#2C3E50}
.stats-grid span{color:#5D7FA6}
.oem{background:#DCE8F3}
.oem-timeline::before{background:#AFC6DB}
.oem-timeline span{color:#2C3E50;border-color:#AFC6DB;background:#fff;box-shadow:0 7px 18px rgba(44,62,80,.09)}
.support-list span{color:#526579;border-color:#C8D9E8;background:rgba(255,255,255,.75)}
.advantage-grid article>span,.innovation-list article>span,.quality-list article>span{color:#5D7FA6;border-color:#AFC6DB;background:#F1F6FA}
.manufacturing-copy .eyebrow,.warehouse-copy .eyebrow{color:#E6DAC6}
.global{background:#DCE8F3;color:#2C3E50}
.global .section-heading h2,.global .section-heading p{color:#2C3E50}
.global-service{background:rgba(255,255,255,.72);border-color:#AFC6DB;box-shadow:0 12px 32px rgba(44,62,80,.08)}
.global-service h3{color:#2C3E50}
.global-service p{color:#657689}
.inquiry{background:#5D7FA6}
.inquiry .eyebrow{color:#E6DAC6}
.inquiry h2,.inquiry p{color:#fff}
.inquiry .button-light{background:#E6DAC6;color:#2C3E50}
.inquiry .button-light:hover{background:#fff;color:#2C3E50}
.partner-strip{background:#F0EADF;color:#2C3E50}
.cert-mark{border-color:#AFC6DB;background:#F1F6FA}
.cert-mark span{color:#5D7FA6}
.inner-banner{background:linear-gradient(180deg,#F7F9FC 0%,#DCE8F3 100%);border-color:#DCE8F3}
.product-sidebar,.section-sidebar,.trade-facts,.spec-table,.rich-content table{border-color:#DCE8F3;background:#fff}
.sidebar-title,.section-sidebar strong{background:#2C3E50;color:#fff}
.product-sidebar nav a:hover,.section-sidebar a:hover{background:#F1F6FA;color:#5D7FA6}
.field input,.field textarea,.field select,.search-form input{border-color:#DCE8F3;background:#fff;color:#2C3E50}
.field input:focus,.field textarea:focus,.field select:focus,.search-form input:focus{border-color:#5D7FA6;box-shadow:0 0 0 3px rgba(93,127,166,.16)}
footer{background:#F7F9FC;border-top:1px solid #DCE8F3}
footer h3{color:#2C3E50}
footer p,footer a{color:#657689}
footer a:hover{color:#5D7FA6}
.footer-bottom{border-color:#DCE8F3;color:#7B8998}
.floating-contact a:first-child{background:#2C3E50;color:#fff}
.floating-contact a:last-child{background:#5D7FA6;color:#fff}
.mobile-contact a:first-child{background:#2C3E50;color:#fff}
.mobile-contact a:last-child{background:#E6DAC6;color:#2C3E50}
::selection{background:#DCE8F3;color:#2C3E50}
/* Final transparent logo sizing and alignment */
.header-primary .brand{
  width:150px;
  height:126px;
  flex:0 0 150px;
  justify-content:flex-start;
}
.header-primary .brand-logo{
  display:block;
  width:124px;
  height:118px;
  flex:0 0 124px;
  object-fit:contain;
}
.footer-brand img{
  width:124px;
  height:118px;
  object-fit:contain;
}
@media(max-width:980px){
  .header-primary .brand{width:108px;height:72px;flex-basis:108px}
  .header-primary .brand-logo{width:92px;height:68px;flex-basis:92px}
}
@media(max-width:767px){
  .header-primary .brand{width:94px;height:68px;flex-basis:94px}
  .header-primary .brand-logo{width:84px;height:64px;flex-basis:84px}
}
/* Full-bleed hero: edge-to-edge through 1920px, centered above 1920px. */
body main > .hero{
  position:relative;
  left:50%;
  width:min(100vw,1920px)!important;
  max-width:1920px!important;
  margin:0 0 86px!important;
  border-radius:0!important;
  transform:translateX(-50%);
}
body main > .hero .hero-slide img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}
@media(max-width:700px){
  body main > .hero{margin-bottom:54px!important}
}
/* Full-width 1920px home carousel */
.hero{
  width:100%;
  max-width:1920px;
  margin-right:auto;
  margin-left:auto;
  border-radius:0;
}
/* Exact 100px gap between hero and About Senrun */
body main > .hero{
  margin-bottom:0!important;
}
body main > .about{
  padding-top:100px!important;
}
/* DELAMU-style Featured Products / New Arrivals */
.featured-arrivals{
  padding:92px 0 108px;
  overflow:hidden;
  background:#fff;
}
.featured-arrivals .container{position:relative}
.arrivals-header{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:48px;
  margin-bottom:42px;
}
.featured-arrivals .arrivals-heading{
  max-width:720px;
  margin:0;
}
.featured-arrivals .arrivals-heading .eyebrow{
  margin-bottom:12px;
  color:#5D7FA6;
  font-size:11px;
  letter-spacing:.16em;
}
.featured-arrivals .arrivals-heading h2{
  margin:0;
  color:#2C3E50;
  font-family:"Delamu Playfair","Playfair Display",Georgia,serif;
  font-size:clamp(38px,3vw,52px);
  font-weight:600;
  letter-spacing:-.035em;
  line-height:1.08;
}
.featured-arrivals .arrivals-intro{
  max-width:620px;
  margin:17px 0 0;
  color:#657689;
  font-size:14px;
  line-height:1.7;
}
.featured-arrivals .arrivals-tabs{
  position:static;
  display:flex;
  flex:0 0 auto;
  align-items:flex-end;
  gap:30px;
  border:0;
}
.featured-arrivals .arrivals-tabs button{
  padding:0 0 10px!important;
  border:0!important;
  border-bottom:2px solid transparent!important;
  border-radius:0!important;
  color:#7B8998!important;
  background:transparent!important;
  font-size:13px;
  font-weight:600;
  letter-spacing:.01em;
}
.featured-arrivals .arrivals-tabs button:hover,
.featured-arrivals .arrivals-tabs button.selected{
  color:#2C3E50!important;
  border-bottom-color:#5D7FA6!important;
  background:transparent!important;
}
.featured-panel[hidden]{display:none!important}
.featured-panel.is-active{animation:arrivalsFade .42s ease both}
@keyframes arrivalsFade{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:none}}
.featured-arrivals .arrivals-grid{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:24px 18px;
  align-items:start;
}
.arrival-story-card,
.featured-arrivals .arrival-product-card{
  min-width:0;
  border:0!important;
  border-radius:0;
  background:transparent!important;
  box-shadow:none!important;
}
.arrival-story-card>a{
  position:relative;
  display:block;
  aspect-ratio:1;
  overflow:hidden;
  background:#EFEAE3;
}
.arrival-story-card img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .7s cubic-bezier(.2,.7,.2,1);
}
.arrival-story-card:hover img{transform:scale(1.045)}
.arrival-story-shade{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(20,28,34,.02) 30%,rgba(25,34,42,.67) 100%);
}
.arrival-story-copy{
  position:absolute;
  right:22px;
  bottom:22px;
  left:22px;
  z-index:2;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  color:#fff;
}
.arrival-story-copy small{
  margin-bottom:8px;
  font-size:9px;
  font-style:normal;
  font-weight:700;
  letter-spacing:.14em;
}
.arrival-story-copy strong{
  max-width:240px;
  font-family:"Delamu Playfair","Playfair Display",Georgia,serif;
  font-size:clamp(20px,1.5vw,28px);
  font-weight:600;
  line-height:1.12;
}
.arrival-story-copy em{
  display:inline-flex;
  gap:9px;
  margin-top:17px;
  padding-bottom:5px;
  border-bottom:1px solid rgba(255,255,255,.78);
  font-size:10px;
  font-style:normal;
  font-weight:700;
  letter-spacing:.07em;
  text-transform:uppercase;
}
.arrival-story-copy b{font-size:14px;transition:transform .25s ease}
.arrival-story-card:hover .arrival-story-copy b{transform:translateX(4px)}
.featured-arrivals .product-image{
  position:relative;
  aspect-ratio:1;
  overflow:hidden;
  border-radius:0;
  background:#F5F3EF;
}
.featured-arrivals .product-image>a{display:block;width:100%;height:100%}
.featured-arrivals .product-image img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}
.arrival-badge{
  position:absolute;
  top:12px;
  left:12px;
  z-index:2;
  padding:6px 9px;
  border-radius:999px;
  color:#2C3E50;
  background:rgba(255,255,255,.9);
  font-size:8px;
  font-weight:800;
  letter-spacing:.11em;
  backdrop-filter:blur(8px);
}
.arrival-badge-popular{color:#fff;background:rgba(44,62,80,.86)}
.featured-arrivals .product-actions{
  right:10px;
  bottom:10px;
  left:10px;
  gap:6px;
}
.featured-arrivals .product-actions a{
  padding:11px 7px;
  border:0;
  border-radius:3px;
  font-size:9px;
  letter-spacing:.06em;
}
.featured-arrivals .arrival-product-card>p{
  margin:17px 0 6px;
  color:#5D7FA6;
  font-size:10px;
  font-weight:500;
  letter-spacing:.03em;
  text-transform:none;
}
.featured-arrivals .arrival-product-card h3{
  min-height:46px;
  margin:0 0 6px;
  color:#2C3E50;
  font-family:"Delamu Playfair","Playfair Display",Georgia,serif;
  font-size:17px;
  font-weight:600;
  line-height:1.35;
}
.featured-arrivals .arrival-product-card h3 a:hover{color:#5D7FA6}
.featured-arrivals .arrival-product-card small{
  display:block;
  overflow:hidden;
  color:#7B8998;
  font-size:9px;
  font-weight:500;
  letter-spacing:.04em;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.arrivals-progress{
  height:2px;
  margin-top:42px;
  overflow:hidden;
  background:#DCE8F3;
}
.arrivals-progress span{display:block;width:20%;height:100%;background:#5D7FA6}
@media(max-width:1100px){
  .featured-arrivals .arrivals-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
}
@media(max-width:767px){
  .featured-arrivals{padding:72px 0 82px}
  .arrivals-header{align-items:flex-start;flex-direction:column;gap:24px;margin-bottom:30px}
  .featured-arrivals .arrivals-tabs{width:100%;gap:24px;overflow-x:auto}
  .featured-arrivals .arrivals-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:28px 12px}
  .arrival-story-copy{right:15px;bottom:15px;left:15px}
  .arrival-story-copy strong{font-size:19px}
  .arrival-story-copy em{margin-top:11px;font-size:8px}
  .featured-arrivals .arrival-product-card h3{min-height:42px;font-size:15px}
  .featured-arrivals .product-actions{display:none}
}
/* 1920px factory banners: flush with viewport edges at 1920, centered on wider screens. */
body main > .manufacturing,
body main > .warehouse{
  width:100%!important;
  max-width:1920px!important;
  margin-right:auto!important;
  margin-left:auto!important;
  overflow:hidden;
}
body main > .manufacturing .manufacturing-image,
body main > .manufacturing .manufacturing-image img,
body main > .warehouse > img{
  width:100%;
}
/* DeDeer-inspired site footer */
footer.dedeer-footer.site-footer,footer.dedeer-footer{padding:0!important;color:#fff;background:#1f3947 url("../img/dedeer-footer-bg.webp") center/cover no-repeat;border-top:0}
.dedeer-footer-main{padding-top:58px}.dedeer-footer-columns{display:grid;grid-template-columns:1.18fr 1.18fr 1.18fr .72fr;gap:0}.dedeer-footer-column{min-width:0;padding:0 48px 22px 0}.dedeer-footer-column+.dedeer-footer-column{padding-left:48px;border-left:1px solid rgba(255,255,255,.13)}.dedeer-footer-column nav{display:flex;flex-direction:column;align-items:flex-start}
.dedeer-footer .dedeer-footer-title{display:inline-block;position:relative;margin:0 0 28px;padding:0 0 9px;color:#fff!important;font-size:19px;font-weight:700;line-height:1.2;letter-spacing:0;text-transform:none}.dedeer-footer .dedeer-footer-title::after{content:"";position:absolute;left:0;bottom:0;width:22px;height:2px;border-radius:2px;background:#A8D0E9}
.dedeer-footer-column nav a{display:block;max-width:100%;margin:0 0 10px;color:rgba(255,255,255,.76)!important;font-size:14px;line-height:1.65;overflow:hidden;text-overflow:ellipsis}.dedeer-footer-column nav a:hover{color:#fff!important;transform:translateX(3px);text-decoration:none}.dedeer-footer-news nav a{display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:1;white-space:normal}
.dedeer-footer-qr{padding-right:0!important}.dedeer-qr-frame{width:148px;padding:8px;background:#fff;border-radius:2px;box-shadow:0 12px 28px rgba(6,25,39,.18)}.dedeer-qr-frame img{display:block;width:100%;height:auto}.dedeer-footer-qr p{margin:13px 0 0!important;color:rgba(255,255,255,.62)!important;font-size:12px!important;line-height:1.6!important}
.dedeer-contact-row{padding:31px 0 34px;border-top:1px solid rgba(255,255,255,.16)}.dedeer-contact-row>.dedeer-footer-title{margin-bottom:24px}.dedeer-contact-list{display:grid;grid-template-columns:1fr 1fr 1.8fr;gap:42px}.dedeer-contact-item{display:grid;grid-template-columns:34px 1fr;gap:12px;align-items:start;min-width:0}.dedeer-contact-icon{display:grid;place-items:center;width:30px;height:30px;margin-top:1px;border:1px solid rgba(168,208,233,.58);border-radius:50%;color:#A8D0E9;font-size:12px;font-weight:800}
.dedeer-contact-item strong{display:block;margin:0 0 5px;color:rgba(255,255,255,.62);font-size:12px;font-weight:600;letter-spacing:.05em;text-transform:uppercase}.dedeer-contact-item a,.dedeer-contact-item p{display:block;margin:0!important;color:#fff!important;font-size:14px!important;line-height:1.65!important;overflow-wrap:anywhere}.dedeer-contact-item a:hover{color:#A8D0E9!important;text-decoration:none}
.dedeer-brand-row{display:flex;align-items:center;justify-content:space-between;min-height:112px;border-top:1px solid rgba(255,255,255,.16)}.dedeer-footer-logo{display:flex;align-items:center;width:150px;height:98px}.dedeer-footer-logo img{display:block;width:104px!important;height:92px!important;object-fit:contain}.dedeer-socials{display:flex;align-items:center;gap:10px}.dedeer-socials a{display:grid!important;place-items:center;width:46px;height:46px;margin:0!important;border:1px solid rgba(255,255,255,.26);border-radius:50%;color:rgba(255,255,255,.82)!important;font-size:11px!important;font-weight:700;letter-spacing:.05em}.dedeer-socials a:hover{color:#234767!important;background:#A8D0E9;border-color:#A8D0E9;text-decoration:none}
.dedeer-copyright{padding:18px 0;background:#152f45;color:rgba(255,255,255,.56)}.dedeer-copyright .container{display:flex;align-items:center;justify-content:space-between;gap:28px}.dedeer-copyright span,.dedeer-copyright a{margin:0;color:rgba(255,255,255,.56)!important;font-size:12px;line-height:1.5}.dedeer-copyright nav{display:flex;flex-wrap:wrap;justify-content:flex-end;gap:18px}.dedeer-copyright a:hover{color:#fff!important;text-decoration:none}
@media(max-width:1100px){.dedeer-footer-columns{grid-template-columns:repeat(2,1fr);gap:34px 0}.dedeer-footer-column:nth-child(3){padding-left:0;border-left:0}.dedeer-contact-list{grid-template-columns:1fr 1fr}.dedeer-contact-address{grid-column:1/-1}}
@media(max-width:700px){.dedeer-footer-main{padding-top:44px}.dedeer-footer-columns{grid-template-columns:1fr 1fr;gap:34px 20px}.dedeer-footer-column,.dedeer-footer-column+.dedeer-footer-column{padding:0;border-left:0}.dedeer-footer .dedeer-footer-title{margin-bottom:21px;font-size:16px}.dedeer-footer-column nav a{font-size:13px}.dedeer-qr-frame{width:118px}.dedeer-contact-row{margin-top:6px}.dedeer-contact-list{grid-template-columns:1fr;gap:22px}.dedeer-contact-address{grid-column:auto}.dedeer-brand-row{min-height:98px}.dedeer-footer-logo img{width:84px!important;height:76px!important}.dedeer-socials a{width:39px;height:39px}.dedeer-copyright .container{flex-direction:column;align-items:flex-start;gap:10px}.dedeer-copyright nav{justify-content:flex-start;gap:14px}}

/* Exact DELAMU New Arrivals proportions with Ripple Shadow product content. */
.featured-arrivals{padding:64px 0 76px;background:#fff}
.featured-arrivals>.container{width:min(1700px,calc(100% - 80px));max-width:1700px}
.featured-arrivals .arrivals-header{align-items:flex-end;gap:48px;margin-bottom:32px}
.featured-arrivals .arrivals-heading{max-width:620px}
.featured-arrivals .arrivals-heading h2{font-family:"Dedeer Poppins",Poppins,Arial,sans-serif;font-size:32px;font-weight:700;letter-spacing:-.025em;line-height:1.15}
.featured-arrivals .arrivals-intro{margin-top:12px;color:#69737d;font-size:12px;line-height:1.55}
.featured-arrivals .arrivals-tabs{gap:28px}
.featured-arrivals .arrivals-tabs button{padding-bottom:7px!important;font-size:11px;font-weight:500}
.featured-arrivals .arrivals-grid{grid-template-columns:repeat(5,minmax(0,1fr));gap:30px;align-items:start}
.featured-arrivals .arrival-story-card>a,.featured-arrivals .product-image{aspect-ratio:1/1}
.featured-arrivals .arrival-story-card img{object-position:center center}
.featured-arrivals .arrival-story-shade{background:linear-gradient(125deg,rgba(20,26,30,.52) 0,rgba(20,26,30,.08) 48%,rgba(20,26,30,.18) 100%)}
.featured-arrivals .arrival-story-copy{inset:0;right:0;bottom:0;left:0;padding:24px;align-items:flex-start;color:#fff;text-shadow:0 1px 12px rgba(0,0,0,.18)}
.featured-arrivals .arrival-story-copy small{margin-bottom:8px;font-size:9px;font-weight:600;letter-spacing:.04em}
.featured-arrivals .arrival-story-copy strong{max-width:255px;font-family:"Dedeer Poppins",Poppins,Arial,sans-serif;font-size:28px;font-weight:700;letter-spacing:-.03em;line-height:1.08}
.featured-arrivals .arrival-story-copy em{margin-top:auto;padding:11px 20px;border:0;border-radius:999px;color:#2C3E50;background:#fff;font-size:10px;font-weight:600;letter-spacing:0;text-transform:none;text-shadow:none;box-shadow:0 6px 18px rgba(0,0,0,.08)}
.featured-arrivals .product-image img{transition:transform .55s cubic-bezier(.2,.7,.2,1)}
.featured-arrivals .arrival-product-card:hover .product-image img{transform:scale(1.035)}
.featured-arrivals .product-actions{right:12px;bottom:12px;left:12px}
.featured-arrivals .product-actions a,.featured-arrivals .product-actions a:last-child{padding:12px 8px;border-radius:4px;color:#2C3E50;background:rgba(255,255,255,.96);font-size:10px;font-weight:600;letter-spacing:0}
.featured-arrivals .arrival-product-card>p{margin:18px 0 5px;color:#7A7A7A;font-size:8px;font-weight:500;letter-spacing:.07em;text-transform:uppercase}
.featured-arrivals .arrival-product-card h3{min-height:0;margin:0 0 6px;font-family:"Dedeer Poppins",Poppins,Arial,sans-serif;font-size:13px;font-weight:500;letter-spacing:-.01em;line-height:1.45}
.featured-arrivals .arrival-product-card small{color:#252525;font-size:10px;font-weight:500;letter-spacing:0}
.featured-arrivals .arrivals-progress{height:1px;margin-top:42px;background:#E2E2E2}
.featured-arrivals .arrivals-progress span{width:20%;background:#252525}
@media(max-width:1100px){.featured-arrivals>.container{width:calc(100% - 48px)}.featured-arrivals .arrivals-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:30px}}
@media(max-width:767px){.featured-arrivals{padding:52px 0 64px}.featured-arrivals>.container{width:calc(100% - 32px)}.featured-arrivals .arrivals-header{gap:22px;margin-bottom:26px}.featured-arrivals .arrivals-heading h2{font-size:27px}.featured-arrivals .arrivals-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:28px 12px}.featured-arrivals .arrival-story-copy{padding:16px}.featured-arrivals .arrival-story-copy strong{font-size:19px}.featured-arrivals .arrival-story-copy em{padding:9px 13px;font-size:8px}}/* DeDeer-style floating contact icons */
body .floating-contact.dedeer-floating-contact{
  position:fixed!important;
  z-index:9999!important;
  right:5px!important;
  top:40%!important;
  bottom:auto!important;
  transform:translateY(-50%)!important;
  display:flex!important;
  flex-direction:column!important;
  width:78px!important;
  padding:0!important;
  gap:0!important;
  overflow:hidden!important;
  border:1px solid #e7ecef!important;
  border-radius:5px!important;
  background:#fff!important;
  box-shadow:0 8px 24px rgba(44,62,80,.12)!important;
}
body .floating-contact.dedeer-floating-contact .floating-contact-item{
  box-sizing:border-box!important;
  width:76px!important;
  min-height:74px!important;
  height:auto!important;
  padding:9px 4px 7px!important;
  border:0!important;
  border-radius:0!important;
  background:#fff!important;
  color:#5b6872!important;
  display:flex!important;
  flex-direction:column!important;
  align-items:center!important;
  justify-content:center!important;
  gap:3px!important;
  font-family:inherit!important;
  font-size:11px!important;
  font-weight:500!important;
  line-height:1.25!important;
  letter-spacing:0!important;
  text-align:center!important;
  text-decoration:none!important;
  transition:background-color .22s ease,color .22s ease!important;
}
body .floating-contact.dedeer-floating-contact .floating-contact-item + .floating-contact-item{
  border-top:1px solid #edf1f3!important;
}
body .floating-contact.dedeer-floating-contact .floating-contact-item img{
  display:block!important;
  width:28px!important;
  height:28px!important;
  object-fit:contain!important;
  margin:0 auto!important;
  transform:scale(.86);
  transition:transform .22s ease,filter .22s ease!important;
}
body .floating-contact.dedeer-floating-contact .floating-contact-item span{
  display:block!important;
  white-space:nowrap!important;
}
body .floating-contact.dedeer-floating-contact .floating-contact-item:hover,
body .floating-contact.dedeer-floating-contact .floating-contact-item:focus-visible{
  background:#5D7FA6!important;
  color:#fff!important;
}
body .floating-contact.dedeer-floating-contact .floating-contact-item:hover img,
body .floating-contact.dedeer-floating-contact .floating-contact-item:focus-visible img{
  transform:scale(.94);
  filter:brightness(0) invert(1);
}
@media (max-width:768px){
  body .floating-contact.dedeer-floating-contact{display:none!important}
}/* WHY CHOOSE US — reference-inspired animated global supply module */
.advantages.why-choose-us{
  position:relative;
  isolation:isolate;
  overflow:hidden;
  padding:96px 0 104px!important;
  background:
    radial-gradient(circle at 79% 20%,rgba(168,208,233,.42),transparent 34%),
    radial-gradient(circle at 9% 88%,rgba(93,127,166,.12),transparent 27%),
    linear-gradient(112deg,#f9fcff 0%,#edf6ff 49%,#dcecfb 100%)!important;
}
.advantages.why-choose-us::before{
  content:"";
  position:absolute;
  z-index:-1;
  left:-13%;
  bottom:-330px;
  width:720px;
  height:520px;
  border:1px solid rgba(93,127,166,.18);
  border-radius:50%;
  box-shadow:0 0 0 24px rgba(168,208,233,.06),0 0 0 52px rgba(168,208,233,.05),0 0 0 82px rgba(168,208,233,.04);
  transform:rotate(13deg);
}
.why-choose-inner{position:relative;z-index:2}
.why-choose-heading{position:relative;z-index:2;max-width:650px!important;margin-bottom:38px!important}
.why-choose-heading .eyebrow{color:#2E5B8A!important;font-weight:800!important;letter-spacing:.14em!important}
.why-choose-heading h2{max-width:650px;margin-top:14px!important;color:#183753!important;font-size:clamp(38px,3.25vw,56px)!important;font-weight:760!important;line-height:1.08!important;letter-spacing:-.035em!important}
.why-choose-heading>p:last-child{max-width:560px;margin-top:18px!important;color:#45637d!important;font-size:15px!important;line-height:1.7!important}
.why-globe-visual{position:absolute;z-index:0;top:-72px;right:-34px;width:min(61vw,880px);height:auto;pointer-events:none;opacity:.72;mix-blend-mode:multiply}
.why-globe-svg{display:block;width:100%;height:auto;overflow:visible}
.why-globe-rotation{transform-box:view-box;transform-origin:405px 294px;animation:whyGlobeTurn 28s linear infinite}
.why-globe-rotation circle,.why-globe-rotation ellipse{fill:rgba(255,255,255,.16);stroke:rgba(255,255,255,.9);stroke-width:1.4}
.why-continent{fill:rgba(255,255,255,.42);stroke:rgba(255,255,255,.86);stroke-width:1.2}
.why-network{fill:none;stroke:rgba(255,255,255,.9);stroke-width:1.4;stroke-linecap:round}
.why-network path{stroke-dasharray:7 8;animation:whyRouteFlow 7s linear infinite}
.why-network path:nth-child(2){animation-duration:10s;animation-direction:reverse}.why-network path:nth-child(3){animation-duration:8.5s}
.why-network circle{fill:#fff;stroke:rgba(168,208,233,.8);stroke-width:5;animation:whyNodePulse 2.4s ease-in-out infinite}
.why-network circle:nth-of-type(even){animation-delay:-1.2s}
@keyframes whyGlobeTurn{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}
@keyframes whyRouteFlow{to{stroke-dashoffset:-150}}
@keyframes whyNodePulse{0%,100%{opacity:.58;transform:scale(.8)}50%{opacity:1;transform:scale(1.15)}}
.why-card-grid{position:relative;z-index:3;display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:16px!important;border:0!important}
.why-card-grid .why-card{
  position:relative;
  display:grid;
  grid-template-columns:108px minmax(0,1fr);
  align-items:center;
  min-height:210px!important;
  padding:42px 32px 28px 34px!important;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.9)!important;
  border-radius:14px!important;
  background:linear-gradient(135deg,rgba(255,255,255,.92),rgba(247,251,255,.78))!important;
  box-shadow:0 14px 34px rgba(53,91,126,.13),inset 0 1px 0 rgba(255,255,255,.95)!important;
  backdrop-filter:blur(9px);
  -webkit-backdrop-filter:blur(9px);
  transition:transform .35s ease,box-shadow .35s ease,border-color .35s ease!important;
}
.why-card-grid .why-card::after{content:"";position:absolute;right:-46px;bottom:-60px;width:150px;height:150px;border-radius:50%;background:radial-gradient(circle,rgba(168,208,233,.23),transparent 67%);pointer-events:none}
.why-card-grid .why-card:hover{transform:translateY(-6px)!important;border-color:rgba(168,208,233,.95)!important;box-shadow:0 22px 48px rgba(46,91,138,.18),inset 0 1px 0 #fff!important}
.why-card-number{position:absolute;top:22px;left:22px;display:grid!important;place-items:center;width:42px;height:36px;padding:0!important;border:1px solid rgba(168,208,233,.34)!important;border-radius:9px!important;background:linear-gradient(135deg,rgba(220,232,243,.78),rgba(255,255,255,.75))!important;color:#2E5B8A!important;font-size:17px!important;font-weight:800!important;letter-spacing:-.02em!important;box-shadow:inset 0 1px 0 rgba(255,255,255,.88)}
.why-card-icon{display:grid;place-items:center;width:86px;height:86px;border:1px solid rgba(168,208,233,.55);border-radius:50%;color:#3475b8;background:radial-gradient(circle at 34% 28%,rgba(255,255,255,.96),rgba(220,235,249,.6));box-shadow:inset 0 0 18px rgba(93,127,166,.08),0 9px 22px rgba(46,91,138,.08)}
.why-card-icon svg{width:48px;height:48px;fill:none;stroke:currentColor;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.why-card-copy{min-width:0;padding-left:2px}
.why-card-grid .why-card h3{margin:0 0 10px!important;color:#183753!important;font-size:20px!important;font-weight:760!important;line-height:1.25!important;letter-spacing:-.015em!important}
.why-card-grid .why-card p{max-width:320px!important;margin:0!important;color:#526d83!important;font-size:13px!important;line-height:1.65!important}
.why-motion-ready .why-card{opacity:0;transform:translateX(-72px)!important;filter:blur(3px);transition:opacity .68s cubic-bezier(.22,.72,.2,1) var(--card-delay),transform .68s cubic-bezier(.22,.72,.2,1) var(--card-delay),filter .68s ease var(--card-delay),box-shadow .35s ease,border-color .35s ease!important}
.why-motion-ready.cards-visible .why-card{opacity:1;transform:translateX(0)!important;filter:blur(0)}
.why-motion-ready.cards-visible .why-card:hover{transform:translateY(-6px)!important}
@media (max-width:1100px){.why-globe-visual{top:-10px;right:-170px;width:820px;opacity:.52}.why-card-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}}
@media (max-width:767px){.advantages.why-choose-us{padding:70px 0 76px!important}.why-choose-heading{margin-bottom:30px!important}.why-choose-heading h2{font-size:38px!important}.why-globe-visual{top:10px;right:-260px;width:660px;opacity:.35}.why-card-grid{grid-template-columns:1fr!important;gap:12px!important}.why-card-grid .why-card{grid-template-columns:82px 1fr;min-height:164px!important;padding:42px 22px 22px 24px!important}.why-card-icon{width:68px;height:68px}.why-card-icon svg{width:38px;height:38px}.why-card-grid .why-card h3{font-size:18px!important}.why-card-number{top:16px;left:18px;width:36px;height:31px;font-size:14px!important}}
@media (prefers-reduced-motion:reduce){.why-globe-rotation,.why-network path,.why-network circle{animation:none!important}.why-motion-ready .why-card{opacity:1!important;transform:none!important;filter:none!important;transition:none!important}}/* Generated transparent luminous globe asset */
.why-globe-visual.why-globe-generated{
  top:-88px;
  right:-78px;
  width:min(66vw,980px);
  opacity:.64;
  mix-blend-mode:normal;
  filter:drop-shadow(0 0 34px rgba(141,190,235,.22));
}
.why-globe-image{
  display:block;
  width:100%;
  height:auto;
  transform-origin:50% 50%;
  will-change:transform,filter;
  animation:whyGeneratedGlobeTurn 64s linear infinite,whyGeneratedGlobeGlow 6s ease-in-out infinite;
}
@keyframes whyGeneratedGlobeTurn{
  from{transform:rotate(0deg) scale(1.01)}
  to{transform:rotate(360deg) scale(1.01)}
}
@keyframes whyGeneratedGlobeGlow{
  0%,100%{filter:brightness(.98) saturate(.9);opacity:.9}
  50%{filter:brightness(1.12) saturate(1.08);opacity:1}
}
@media (max-width:1100px){.why-globe-visual.why-globe-generated{top:-22px;right:-210px;width:860px;opacity:.5}}
@media (max-width:767px){.why-globe-visual.why-globe-generated{top:18px;right:-270px;width:690px;opacity:.34}}
@media (prefers-reduced-motion:reduce){.why-globe-image{animation:none!important}}/* DELAMU-inspired Everything Finds Its Perfect Place replacement for INSIGHTS */
@font-face{font-family:"PerfectPlace Montserrat";src:url("../fonts/delamu-montserrat-700.woff2") format("woff2");font-style:normal;font-weight:700;font-display:swap}
@font-face{font-family:"PerfectPlace Playfair";src:url("../fonts/delamu-playfair-400.woff2") format("woff2");font-style:normal;font-weight:400;font-display:swap}
@font-face{font-family:"PerfectPlace Playfair";src:url("../fonts/delamu-playfair-700.woff2") format("woff2");font-style:normal;font-weight:700;font-display:swap}
.perfect-place-section{padding:60px 0;background:#fff;color:#000}
.perfect-place-inner{width:calc(100% - 270px);max-width:1700px;margin:0 auto}
.perfect-place-header{display:flex;justify-content:center;padding-bottom:24px;text-align:center}
.perfect-place-header h2{max-width:720px;margin:0;color:#000;font-family:"PerfectPlace Montserrat",Montserrat,sans-serif;font-size:32px;font-weight:700;line-height:1.3125;letter-spacing:0}
.perfect-place-pills{display:flex;justify-content:center;gap:12px;width:100%;overflow:visible}
.perfect-place-pills>span{display:inline-flex;align-items:center;gap:8px;min-height:48px;padding:8px 20px;border:1px solid #000;border-radius:100px;background:#000;color:#fff;font-family:"PerfectPlace Playfair","Times New Roman",serif;font-size:15px;font-weight:700;line-height:1.6;white-space:nowrap;transition:color .4s ease,background-color .4s ease}
.perfect-place-pills>span svg{flex:0 0 auto;width:20px;height:20px;fill:none;stroke:currentColor;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round}
.perfect-place-pills>span:hover{background:#fff;color:#000}
.perfect-place-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:30px;margin-top:40px}
.perfect-place-card{min-width:0;background:transparent}
.perfect-place-image{position:relative;overflow:hidden;width:100%;aspect-ratio:4/5;border-radius:10px;background:#ededed}
.perfect-place-image img{position:absolute;inset:0;display:block;width:100%;height:100%;object-fit:cover;transition:transform 1s cubic-bezier(.3,1,.3,1)}
.perfect-place-card:hover .perfect-place-image img{transform:scale(1.045)}
.perfect-place-info{padding-top:20px;text-align:left}
.perfect-place-info h3{margin:0;color:#000;font-family:"PerfectPlace Montserrat",Montserrat,sans-serif;font-size:22px;font-weight:700;line-height:1.2;letter-spacing:0}
.perfect-place-info p{margin:10px 0 0;color:#666;font-family:"PerfectPlace Playfair","Times New Roman",serif;font-size:15px;font-weight:400;line-height:1.6;letter-spacing:0}
@media (max-width:1200px){.perfect-place-inner{width:calc(100% - 64px)}.perfect-place-grid{gap:24px}.perfect-place-info h3{font-size:19px}}
@media (max-width:767px){.perfect-place-section{padding:45px 0 52px}.perfect-place-inner{width:calc(100% - 32px)}.perfect-place-header{padding-bottom:24px}.perfect-place-header h2{font-size:22.4px;line-height:1.2}.perfect-place-pills{justify-content:flex-start;gap:8px;margin-inline:-16px;width:calc(100% + 32px);padding:0 16px;overflow-x:auto;scrollbar-width:none}.perfect-place-pills::-webkit-scrollbar{display:none}.perfect-place-pills>span{min-height:44px;padding:7px 16px;font-size:14px}.perfect-place-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:28px 12px;margin-top:40px}.perfect-place-info{padding-top:16px}.perfect-place-info h3{font-size:15.4px;line-height:1.3}.perfect-place-info p{margin-top:7px;font-size:13px;line-height:1.5}}/* DeDeer-matched footer white logo, social icons and copyright colors */
.dedeer-footer-logo img{filter:drop-shadow(0 2px 9px rgba(0,0,0,.18))}
.dedeer-footer .dedeer-socials{display:flex;align-items:center;gap:14px}
.dedeer-footer .dedeer-socials .dedeer-social-link{display:grid!important;place-items:center;width:53px!important;height:53px!important;margin:0!important;padding:0!important;border:1px solid transparent!important;border-radius:50%!important;background:transparent!important;color:rgba(255,255,255,.6)!important;transition:border-color .25s ease!important}
.dedeer-footer .dedeer-social-icon{display:grid;place-items:center;width:43px;height:43px;border-radius:50%;color:inherit;background:transparent;transition:color .25s ease,background-color .25s ease,transform .25s ease}
.dedeer-footer .dedeer-social-icon svg{display:block;width:22px;height:22px}
.dedeer-footer .dedeer-social-link:hover,.dedeer-footer .dedeer-social-link:focus-visible{border-color:#A8D0E9!important;color:#fff!important}
.dedeer-footer .dedeer-social-link:hover .dedeer-social-icon,.dedeer-footer .dedeer-social-link:focus-visible .dedeer-social-icon{background:#A8D0E9;color:#234767;transform:scale(1.02)}
.dedeer-copyright{padding:17px 0!important;background:#4a4a4a!important;color:rgba(255,255,255,.5)!important}
.dedeer-copyright span,.dedeer-copyright a{color:rgba(255,255,255,.5)!important;font-size:16px!important;line-height:1.5!important}
.dedeer-copyright a:hover{color:#fff!important}
@media(max-width:700px){.dedeer-footer .dedeer-socials{gap:7px}.dedeer-footer .dedeer-socials .dedeer-social-link{width:45px!important;height:45px!important}.dedeer-footer .dedeer-social-icon{width:38px;height:38px}.dedeer-footer .dedeer-social-icon svg{width:20px;height:20px}.dedeer-copyright span,.dedeer-copyright a{font-size:14px!important}}
/* RESPONSIBLE MANUFACTURING + TRUSTED BY reference redesign */
.responsible-showcase{position:relative;overflow:hidden;background:#fbfaf7;color:#162c40}
.responsible-main{position:relative;min-height:690px;overflow:hidden;background:linear-gradient(100deg,#fff 0%,#fbfaf7 58%,#f1ece5 100%)}
.responsible-inner{position:relative;min-height:690px}
.responsible-worldmap{position:absolute;z-index:0;top:65px;left:39%;width:min(48vw,800px);color:#b6c9d8;opacity:.17;pointer-events:none}
.responsible-worldmap svg{display:block;width:100%;height:auto}
.responsible-left{position:relative;z-index:3;display:flex;align-items:center;gap:58px;min-height:690px;width:min(59%,950px);padding:58px 0 66px}
.responsible-badge{flex:0 0 210px;display:flex;align-items:center;justify-content:center;flex-direction:column;width:210px;height:210px;border:1.5px solid #76a8d5;border-radius:50%;background:linear-gradient(145deg,rgba(255,255,255,.96),rgba(222,235,246,.62));box-shadow:inset 0 0 32px rgba(113,165,214,.08);color:#2f66aa;text-align:center}
.responsible-badge strong{font-size:43px;font-weight:760;line-height:1;letter-spacing:.01em}
.responsible-badge span{margin-top:19px;font-size:15px;font-weight:600;line-height:1;text-transform:uppercase;letter-spacing:.17em}
.responsible-copy{max-width:605px}
.responsible-eyebrow{position:relative;margin:0 0 35px;color:#2467ba;font-size:21px;font-weight:600;line-height:1.25;letter-spacing:.075em;text-transform:uppercase}
.responsible-eyebrow::after{content:"";position:absolute;left:0;bottom:-17px;width:46px;height:2px;background:#2b74c9}
.responsible-copy h2{max-width:650px;margin:0;color:#10283b;font-size:clamp(50px,3.35vw,68px);font-weight:760;line-height:1.1;letter-spacing:-.045em;text-wrap:balance}
.responsible-description{max-width:585px;margin:34px 0 0;color:#506479;font-size:18px;font-weight:400;line-height:1.72}
.responsible-link{display:inline-flex;align-items:center;gap:18px;margin-top:45px;padding:0 0 10px;border-bottom:2px solid #2b74c9;color:#2467ba;font-size:16px;font-weight:650;line-height:1.2;letter-spacing:.12em;text-transform:uppercase;text-decoration:none}
.responsible-link span{font-size:26px;font-weight:400;line-height:.7;transition:transform .25s ease}
.responsible-link:hover span{transform:translateX(6px)}
.responsible-products{position:absolute;z-index:2;right:-92px;bottom:-17px;width:min(59vw,1000px);margin:0;pointer-events:none}
.responsible-products::before{content:"";position:absolute;z-index:-1;right:5%;bottom:4%;width:88%;height:24%;border-radius:50%;background:radial-gradient(ellipse,rgba(64,47,35,.15),transparent 70%);filter:blur(18px)}
.responsible-products img{display:block;width:100%;height:auto;filter:drop-shadow(0 18px 24px rgba(64,48,38,.1))}
.responsible-trust{position:relative;z-index:4;min-height:118px;background:linear-gradient(90deg,#f6f1eb,#f1e9df 52%,#f6f2ed)}
.responsible-trust-inner{display:grid;grid-template-columns:200px minmax(0,1fr) auto;align-items:center;min-height:118px}
.responsible-trust-inner>span{color:#2d67ae;font-size:14px;font-weight:650;letter-spacing:.105em;text-transform:uppercase}
.responsible-trust-inner>strong{display:flex;align-items:center;min-height:48px;padding:0 70px;border-left:1px solid rgba(106,89,75,.42);border-right:1px solid rgba(106,89,75,.42);color:#1d2d3b;font-size:26px;font-weight:500;line-height:1.3}
.responsible-trust-inner>small{padding-left:72px;color:#53677a;font-size:14px;font-weight:520;line-height:1.4;letter-spacing:.11em;text-align:right;text-transform:uppercase;white-space:nowrap}
.responsible-motion-ready .responsible-left{opacity:0;transform:translateX(-100px);filter:blur(2px)}
.responsible-motion-ready .responsible-products{opacity:0;transform:translateX(130px);filter:blur(4px)}
.responsible-motion-ready .responsible-trust-inner{opacity:0;transform:translateY(24px)}
.responsible-motion-ready.responsible-visible .responsible-left{opacity:1;transform:translateX(0);filter:blur(0);transition:opacity .82s cubic-bezier(.22,.72,.2,1),transform .82s cubic-bezier(.22,.72,.2,1),filter .7s ease}
.responsible-motion-ready.responsible-visible .responsible-products{opacity:1;transform:translateX(0);filter:blur(0);transition:opacity .9s cubic-bezier(.22,.72,.2,1) .12s,transform .9s cubic-bezier(.22,.72,.2,1) .12s,filter .72s ease .12s}
.responsible-motion-ready.responsible-visible .responsible-trust-inner{opacity:1;transform:translateY(0);transition:opacity .65s ease .38s,transform .65s cubic-bezier(.22,.72,.2,1) .38s}
@media(max-width:1450px){.responsible-left{gap:36px;width:62%}.responsible-badge{flex-basis:180px;width:180px;height:180px}.responsible-badge strong{font-size:38px}.responsible-copy h2{font-size:54px}.responsible-products{right:-120px;width:min(61vw,920px)}.responsible-trust-inner{grid-template-columns:160px minmax(0,1fr) auto}.responsible-trust-inner>strong{padding:0 40px;font-size:22px}.responsible-trust-inner>small{padding-left:40px;font-size:12px}}
@media(max-width:1100px){.responsible-main,.responsible-inner{min-height:760px}.responsible-left{align-items:flex-start;gap:28px;width:78%;min-height:0;padding:72px 0 0}.responsible-badge{flex-basis:150px;width:150px;height:150px}.responsible-badge strong{font-size:32px}.responsible-badge span{margin-top:13px;font-size:12px}.responsible-copy h2{font-size:46px}.responsible-description{margin-top:25px;font-size:16px}.responsible-products{right:-105px;bottom:-10px;width:760px;opacity:.88}.responsible-trust-inner{grid-template-columns:130px 1fr}.responsible-trust-inner>strong{border-right:0;padding:0 30px;font-size:20px}.responsible-trust-inner>small{grid-column:1/-1;padding:12px 0 20px;text-align:center;white-space:normal}}
@media(max-width:767px){.responsible-main{min-height:850px}.responsible-inner{min-height:850px}.responsible-worldmap{top:210px;left:5%;width:120%;opacity:.12}.responsible-left{display:block;width:100%;padding:54px 0 0}.responsible-badge{width:116px;height:116px;margin:0 0 31px}.responsible-badge strong{font-size:27px}.responsible-badge span{margin-top:10px;font-size:9px}.responsible-copy{max-width:100%}.responsible-eyebrow{margin-bottom:27px;font-size:15px}.responsible-eyebrow::after{bottom:-12px;width:37px}.responsible-copy h2{font-size:39px;line-height:1.08}.responsible-description{max-width:94%;margin-top:22px;font-size:15px;line-height:1.62}.responsible-link{margin-top:28px;font-size:12px}.responsible-products{right:-95px;bottom:-2px;width:590px}.responsible-trust{min-height:165px}.responsible-trust-inner{display:flex;min-height:165px;flex-direction:column;align-items:flex-start;justify-content:center;gap:14px}.responsible-trust-inner>strong{min-height:0;padding:0;border:0;font-size:20px}.responsible-trust-inner>small{padding:0;text-align:left;font-size:10px}.responsible-motion-ready .responsible-left{transform:translateX(-52px)}.responsible-motion-ready .responsible-products{transform:translateX(70px)}}
@media(prefers-reduced-motion:reduce){.responsible-motion-ready .responsible-left,.responsible-motion-ready .responsible-products,.responsible-motion-ready .responsible-trust-inner{opacity:1!important;transform:none!important;filter:none!important;transition:none!important}}
/* SMART WAREHOUSING balanced capability layout */
.warehouse#smart-warehousing{min-height:780px;isolation:isolate}
.warehouse#smart-warehousing>img{z-index:-2;object-position:center 56%;transform:scale(1.01)}
.warehouse#smart-warehousing::after{z-index:-1;background:linear-gradient(90deg,rgba(8,28,40,.9) 0%,rgba(8,28,40,.7) 42%,rgba(8,28,40,.18) 76%,rgba(8,28,40,.1) 100%),linear-gradient(0deg,rgba(5,21,31,.78) 0%,transparent 48%)}
.warehouse-content{position:relative;z-index:2;display:flex;min-height:780px;flex-direction:column;justify-content:space-between;padding-top:92px;padding-bottom:54px}
.warehouse#smart-warehousing .warehouse-copy{max-width:650px;padding-top:0}
.warehouse#smart-warehousing .warehouse-copy .eyebrow{margin-bottom:19px;color:#b9dff0;font-size:14px;font-weight:700;letter-spacing:.16em}
.warehouse#smart-warehousing .warehouse-copy h2{margin:0;color:#fff;font-size:clamp(52px,4vw,70px);font-weight:790;line-height:1.04;letter-spacing:-.035em}
.warehouse#smart-warehousing .warehouse-copy>p:last-child{max-width:590px;margin-top:27px;color:rgba(255,255,255,.83);font-size:16px;font-weight:450;line-height:1.72;letter-spacing:.01em}
.warehouse-capabilities{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px;width:100%;margin-top:70px}
.warehouse-capabilities article{position:relative;display:grid;grid-template-columns:58px minmax(0,1fr);gap:18px;align-items:center;min-height:154px;padding:25px 22px;border:1px solid rgba(196,225,239,.3);border-radius:12px;background:linear-gradient(145deg,rgba(13,43,58,.78),rgba(18,55,71,.54));box-shadow:0 16px 32px rgba(0,15,23,.2),inset 0 1px 0 rgba(255,255,255,.14);backdrop-filter:blur(9px);-webkit-backdrop-filter:blur(9px);transition:transform .35s ease,border-color .35s ease,background-color .35s ease}
.warehouse-capabilities article::before{content:"";position:absolute;top:0;left:22px;width:42px;height:2px;background:#87cce8;box-shadow:0 0 13px rgba(135,204,232,.65)}
.warehouse-capabilities article:hover{transform:translateY(-7px);border-color:rgba(168,216,237,.66);background:linear-gradient(145deg,rgba(16,52,69,.9),rgba(30,72,88,.7))}
.warehouse-capability-icon{display:grid;place-items:center;width:58px;height:58px;border:1px solid rgba(178,221,239,.44);border-radius:50%;background:rgba(192,229,244,.08);color:#aadaef}
.warehouse-capability-icon svg{display:block;width:35px;height:35px;fill:none;stroke:currentColor;stroke-width:1.55;stroke-linecap:round;stroke-linejoin:round}
.warehouse-capabilities h3{margin:0 0 8px;color:#fff;font-size:17px;font-weight:720;line-height:1.25;letter-spacing:.005em}
.warehouse-capabilities p{margin:0;color:rgba(235,247,252,.68);font-size:12.5px;font-weight:430;line-height:1.55}
@media(max-width:1180px){.warehouse#smart-warehousing,.warehouse-content{min-height:900px}.warehouse-content{padding-top:78px;padding-bottom:42px}.warehouse-capabilities{grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;margin-top:54px}.warehouse-capabilities article{min-height:132px}.warehouse#smart-warehousing::after{background:linear-gradient(90deg,rgba(8,28,40,.92),rgba(8,28,40,.57) 72%,rgba(8,28,40,.25)),linear-gradient(0deg,rgba(5,21,31,.82),transparent 58%)}}
@media(max-width:767px){.warehouse#smart-warehousing,.warehouse-content{min-height:1040px}.warehouse#smart-warehousing>img{object-position:62% center}.warehouse-content{padding-top:62px;padding-bottom:34px}.warehouse#smart-warehousing .warehouse-copy h2{font-size:43px}.warehouse#smart-warehousing .warehouse-copy>p:last-child{margin-top:22px;font-size:15px;line-height:1.62}.warehouse-capabilities{grid-template-columns:1fr;gap:10px;margin-top:38px}.warehouse-capabilities article{grid-template-columns:50px 1fr;gap:15px;min-height:110px;padding:18px}.warehouse-capability-icon{width:50px;height:50px}.warehouse-capability-icon svg{width:30px;height:30px}.warehouse-capabilities h3{font-size:16px}.warehouse-capabilities p{font-size:12px}.warehouse#smart-warehousing::after{background:linear-gradient(90deg,rgba(6,25,37,.93),rgba(6,25,37,.68)),linear-gradient(0deg,rgba(5,21,31,.86),transparent 64%)}}
/* START A CONVERSATION global partnership redesign */
.inquiry.inquiry-partnership{position:relative;display:grid;height:748px;min-height:748px;overflow:hidden;padding:0;background:#dce8f3;color:#2e5b8a;isolation:isolate}
.inquiry-partnership .inquiry-background{position:absolute;z-index:-3;inset:0;display:block;width:100%;height:100%;object-fit:cover;object-position:center 52%;transform:scale(1.015);animation:inquiryBackgroundBreath 18s ease-in-out infinite alternate}
.inquiry-partnership .inquiry-overlay{position:absolute;z-index:-2;inset:0;background:radial-gradient(circle at 50% 38%,rgba(255,255,255,.92) 0%,rgba(247,251,253,.76) 25%,rgba(228,239,247,.52) 50%,rgba(185,211,230,.35) 72%,rgba(75,112,145,.2) 100%),linear-gradient(180deg,rgba(233,243,249,.25),rgba(244,247,248,.42))}
.inquiry-partnership .inquiry-lines{z-index:-1;top:50%;left:50%;width:min(46vw,790px);height:min(46vw,790px);border:1px solid rgba(46,91,138,.11);transform:translate(-50%,-50%);box-shadow:0 0 0 82px rgba(46,91,138,.045),0 0 0 164px rgba(46,91,138,.025)}
.inquiry-partnership .inquiry-inner{position:relative;z-index:2;display:flex;height:100%;min-height:748px;max-width:980px;flex-direction:column;align-items:center;justify-content:center;padding:82px 0 76px;text-align:center}
.inquiry-partnership .inquiry-inner>.eyebrow{margin:0 0 25px;color:#a6855c;font-size:17px;font-weight:700;line-height:1.3;letter-spacing:.14em;text-transform:uppercase}
.inquiry-partnership .inquiry-inner h2{max-width:830px;margin:0;color:#2e5b8a;font-size:clamp(50px,3.55vw,68px);font-weight:780;line-height:1.08;letter-spacing:-.04em;text-shadow:0 1px 0 rgba(255,255,255,.72)}
.inquiry-partnership .inquiry-inner>p:nth-child(3){max-width:760px;margin:34px 0 39px;color:#536a80;font-size:18px;font-weight:470;line-height:1.7;letter-spacing:0;text-shadow:0 1px 10px rgba(255,255,255,.76)}
.inquiry-partnership .inquiry-actions{display:flex;align-items:center;justify-content:center;gap:15px}
.inquiry-partnership .inquiry-actions .button{display:inline-flex;align-items:center;justify-content:center;min-width:230px;height:58px;padding:0 31px;border-radius:999px;font-size:15px;font-weight:650;line-height:1;letter-spacing:.095em;text-transform:uppercase;box-shadow:0 10px 24px rgba(48,77,103,.08);transition:transform .28s ease,box-shadow .28s ease,background-color .28s ease,border-color .28s ease}
.inquiry-partnership .inquiry-actions .button-light{border:1px solid #dfcda9;background:#e6dac6;color:#2c3e50}
.inquiry-partnership .inquiry-actions .button-light:hover{background:#f1e8d8;color:#2c3e50;transform:translateY(-3px);box-shadow:0 15px 30px rgba(76,81,78,.13)}
.inquiry-partnership .inquiry-actions .button-outline-light{border:1px solid rgba(44,62,80,.68);background:rgba(255,255,255,.28);color:#2c3e50;backdrop-filter:blur(5px);-webkit-backdrop-filter:blur(5px)}
.inquiry-partnership .inquiry-actions .button-outline-light:hover{border-color:#2e5b8a;background:rgba(255,255,255,.68);color:#2e5b8a;transform:translateY(-3px);box-shadow:0 15px 30px rgba(46,91,138,.12)}
@keyframes inquiryBackgroundBreath{from{transform:scale(1.015)}to{transform:scale(1.035)}}
@media(max-width:900px){.inquiry.inquiry-partnership,.inquiry-partnership .inquiry-inner{height:auto;min-height:690px}.inquiry-partnership .inquiry-inner{padding:84px 0 76px}.inquiry-partnership .inquiry-lines{width:620px;height:620px}.inquiry-partnership .inquiry-inner h2{font-size:52px}.inquiry-partnership .inquiry-background{object-position:center 50%}}
@media(max-width:767px){.inquiry.inquiry-partnership,.inquiry-partnership .inquiry-inner{height:auto;min-height:680px}.inquiry-partnership .inquiry-background{object-position:center 53%}.inquiry-partnership .inquiry-overlay{background:radial-gradient(circle at 50% 36%,rgba(255,255,255,.94),rgba(235,244,249,.7) 50%,rgba(122,159,190,.38) 100%)}.inquiry-partnership .inquiry-inner{width:calc(100% - 32px);padding:72px 0 62px}.inquiry-partnership .inquiry-inner>.eyebrow{margin-bottom:20px;font-size:13px}.inquiry-partnership .inquiry-inner h2{font-size:40px;line-height:1.1}.inquiry-partnership .inquiry-inner>p:nth-child(3){margin:27px 0 31px;font-size:15px;line-height:1.65}.inquiry-partnership .inquiry-actions{width:100%;flex-direction:column;gap:11px}.inquiry-partnership .inquiry-actions .button{width:min(100%,320px);height:54px;font-size:13px}.inquiry-partnership .inquiry-lines{width:500px;height:500px;box-shadow:0 0 0 58px rgba(46,91,138,.04),0 0 0 116px rgba(46,91,138,.022)}}
@media(prefers-reduced-motion:reduce){.inquiry-partnership .inquiry-background{animation:none!important;transform:none!important}}
/* SMART WAREHOUSING requested height, warm cards and entrance motion */
@media(min-width:1181px){
  .warehouse#smart-warehousing,.warehouse#smart-warehousing .warehouse-content{height:628px;min-height:628px}
  .warehouse#smart-warehousing .warehouse-content{justify-content:center;padding-top:0;padding-bottom:0}
  .warehouse#smart-warehousing .warehouse-capabilities{margin-top:34px}
}
.warehouse#smart-warehousing .warehouse-capabilities article{border-color:rgba(255,255,255,.48);background:rgba(230,218,198,.5);box-shadow:0 16px 34px rgba(0,18,28,.18),inset 0 1px 0 rgba(255,255,255,.48);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px)}
.warehouse#smart-warehousing .warehouse-capabilities article::before{background:#2e5b8a;box-shadow:0 0 12px rgba(46,91,138,.32)}
.warehouse#smart-warehousing .warehouse-capability-icon{border-color:rgba(46,91,138,.3);background:rgba(255,255,255,.36);color:#2e5b8a}
.warehouse#smart-warehousing .warehouse-capabilities h3{color:#243b4f;text-shadow:0 1px 0 rgba(255,255,255,.36)}
.warehouse#smart-warehousing .warehouse-capabilities p{color:rgba(35,56,73,.8)}
.warehouse#smart-warehousing .warehouse-capabilities article:hover{border-color:rgba(255,255,255,.7);background:rgba(230,218,198,.68);box-shadow:0 20px 38px rgba(0,18,28,.22),inset 0 1px 0 rgba(255,255,255,.62)}
.warehouse-motion-ready .warehouse-copy{opacity:0;transform:translateX(-92px);filter:blur(2px)}
.warehouse-motion-ready .warehouse-capabilities article{opacity:0;transform:translateY(58px);filter:blur(2px)}
.warehouse-motion-ready.warehouse-visible .warehouse-copy{opacity:1;transform:translateX(0);filter:blur(0);transition:opacity .78s cubic-bezier(.22,.72,.2,1),transform .78s cubic-bezier(.22,.72,.2,1),filter .64s ease}
.warehouse-motion-ready.warehouse-visible .warehouse-capabilities article{opacity:1;transform:translateY(0);filter:blur(0);transition:opacity .66s cubic-bezier(.22,.72,.2,1),transform .66s cubic-bezier(.22,.72,.2,1),filter .55s ease,background-color .35s ease,border-color .35s ease,box-shadow .35s ease}
.warehouse-motion-ready.warehouse-visible .warehouse-capabilities article:nth-child(1){transition-delay:.16s}
.warehouse-motion-ready.warehouse-visible .warehouse-capabilities article:nth-child(2){transition-delay:.25s}
.warehouse-motion-ready.warehouse-visible .warehouse-capabilities article:nth-child(3){transition-delay:.34s}
.warehouse-motion-ready.warehouse-visible .warehouse-capabilities article:nth-child(4){transition-delay:.43s}
.warehouse-motion-ready.warehouse-visible .warehouse-capabilities article:hover{transform:translateY(-7px)}
@media(max-width:1180px){.warehouse#smart-warehousing .warehouse-capabilities{margin-top:42px}}
@media(max-width:767px){.warehouse#smart-warehousing .warehouse-capabilities{margin-top:30px}.warehouse-motion-ready .warehouse-copy{transform:translateX(-48px)}.warehouse-motion-ready .warehouse-capabilities article{transform:translateY(34px)}}
@media(prefers-reduced-motion:reduce){.warehouse-motion-ready .warehouse-copy,.warehouse-motion-ready .warehouse-capabilities article{opacity:1!important;transform:none!important;filter:none!important;transition:none!important}}
/* Joybos-inspired scroll entrances for previously static sections */
.joybos-motion-group .joybos-motion-item{will-change:opacity,transform}
.joybos-motion-group:not(.joybos-in-view) .joybos-motion-item{opacity:0;transform:translate3d(0,44px,0)}
.joybos-motion-group.joybos-in-view .joybos-motion-item{opacity:1;transform:translate3d(0,0,0);transition:opacity .46s ease var(--joybos-delay,0s),transform .46s cubic-bezier(.2,.72,.2,1) var(--joybos-delay,0s)}
.joybos-motion-group.joybos-replay-reset .joybos-motion-item{transition:none!important}
@media(max-width:767px){.joybos-motion-group:not(.joybos-in-view) .joybos-motion-item{transform:translate3d(0,30px,0)}.joybos-motion-group.joybos-in-view .joybos-motion-item{transition-duration:.4s}}
@media(prefers-reduced-motion:reduce){.joybos-motion-group .joybos-motion-item{opacity:1!important;transform:none!important;transition:none!important;will-change:auto!important}}
/* Requested entrances: Featured, Innovation, Quality and Conversation */
.feature-motion-ready .arrivals-heading,
.feature-motion-ready .arrivals-tabs,
.feature-motion-ready .featured-panel.is-active .arrival-story-card,
.feature-motion-ready .featured-panel.is-active .arrival-product-card,
.development-motion-ready .innovation-copy,
.development-motion-ready .development-carousel,
.development-motion-ready .innovation-list article,
.quality-motion-ready .quality-grid>.quality-carousel,
.quality-motion-ready .quality-copy,
.quality-motion-ready .quality-list article,
.inquiry-motion-ready .inquiry-background,
.inquiry-motion-ready .inquiry-lines,
.inquiry-motion-ready .inquiry-inner>.eyebrow,
.inquiry-motion-ready .inquiry-inner>h2,
.inquiry-motion-ready .inquiry-inner>p:nth-child(3),
.inquiry-motion-ready .inquiry-actions .button{will-change:opacity,transform,filter}
.feature-motion-ready:not(.feature-motion-visible) .arrivals-heading{opacity:0;transform:translate3d(-64px,20px,0)}
.feature-motion-ready:not(.feature-motion-visible) .arrivals-tabs{opacity:0;transform:translate3d(64px,20px,0)}
.feature-motion-ready:not(.feature-motion-visible) .featured-panel.is-active .arrival-story-card{opacity:0;transform:translate3d(0,48px,0) scale(.975);filter:blur(2px)}
.feature-motion-ready:not(.feature-motion-visible) .featured-panel.is-active .arrival-product-card{opacity:0;transform:translate3d(0,52px,0);filter:blur(2px)}
.feature-motion-ready.feature-motion-visible .arrivals-heading,
.feature-motion-ready.feature-motion-visible .arrivals-tabs,
.feature-motion-ready.feature-motion-visible .featured-panel.is-active .arrival-story-card,
.feature-motion-ready.feature-motion-visible .featured-panel.is-active .arrival-product-card{opacity:1;transform:translate3d(0,0,0) scale(1);filter:none;transition:opacity .64s ease,transform .72s cubic-bezier(.2,.72,.2,1),filter .64s ease}
.feature-motion-ready.feature-motion-visible .arrivals-tabs{transition-delay:.08s}
.feature-motion-ready.feature-motion-visible .featured-panel.is-active .arrival-story-card{transition-delay:.14s}
.feature-motion-ready.feature-motion-visible .featured-panel.is-active .arrival-product-card:nth-child(2){transition-delay:.22s}
.feature-motion-ready.feature-motion-visible .featured-panel.is-active .arrival-product-card:nth-child(3){transition-delay:.30s}
.feature-motion-ready.feature-motion-visible .featured-panel.is-active .arrival-product-card:nth-child(4){transition-delay:.38s}
.feature-motion-ready.feature-motion-visible .featured-panel.is-active .arrival-product-card:nth-child(5){transition-delay:.46s}
.development-motion-ready:not(.development-motion-visible) .innovation-copy{opacity:0;transform:translate3d(-84px,0,0)}
.development-motion-ready:not(.development-motion-visible) .development-carousel{opacity:0;transform:translate3d(84px,0,0) scale(.985);filter:blur(2px)}
.development-motion-ready:not(.development-motion-visible) .innovation-list article{opacity:0;transform:translate3d(-26px,18px,0)}
.development-motion-ready.development-motion-visible .innovation-copy,
.development-motion-ready.development-motion-visible .development-carousel,
.development-motion-ready.development-motion-visible .innovation-list article{opacity:1;transform:translate3d(0,0,0) scale(1);filter:none;transition:opacity .68s ease,transform .8s cubic-bezier(.2,.72,.2,1),filter .68s ease}
.development-motion-ready.development-motion-visible .development-carousel{transition-delay:.12s}
.development-motion-ready.development-motion-visible .innovation-list article:nth-child(1){transition-delay:.16s}
.development-motion-ready.development-motion-visible .innovation-list article:nth-child(2){transition-delay:.23s}
.development-motion-ready.development-motion-visible .innovation-list article:nth-child(3){transition-delay:.30s}
.development-motion-ready.development-motion-visible .innovation-list article:nth-child(4){transition-delay:.37s}
.development-motion-ready.development-motion-visible .innovation-list article:nth-child(5){transition-delay:.44s}
.development-motion-ready.development-motion-visible .innovation-list article:nth-child(6){transition-delay:.51s}
.quality-motion-ready:not(.quality-motion-visible) .quality-grid>.quality-carousel{opacity:0;transform:translate3d(-84px,0,0) scale(.985);filter:blur(2px)}
.quality-motion-ready:not(.quality-motion-visible) .quality-copy{opacity:0;transform:translate3d(84px,0,0)}
.quality-motion-ready:not(.quality-motion-visible) .quality-list article{opacity:0;transform:translate3d(26px,18px,0)}
.quality-motion-ready.quality-motion-visible .quality-grid>.quality-carousel,
.quality-motion-ready.quality-motion-visible .quality-copy,
.quality-motion-ready.quality-motion-visible .quality-list article{opacity:1;transform:translate3d(0,0,0) scale(1);filter:none;transition:opacity .68s ease,transform .8s cubic-bezier(.2,.72,.2,1),filter .68s ease}
.quality-motion-ready.quality-motion-visible .quality-copy{transition-delay:.12s}
.quality-motion-ready.quality-motion-visible .quality-list article:nth-child(1){transition-delay:.16s}
.quality-motion-ready.quality-motion-visible .quality-list article:nth-child(2){transition-delay:.24s}
.quality-motion-ready.quality-motion-visible .quality-list article:nth-child(3){transition-delay:.32s}
.quality-motion-ready.quality-motion-visible .quality-list article:nth-child(4){transition-delay:.40s}
.quality-motion-ready.quality-motion-visible .quality-list article:nth-child(5){transition-delay:.48s}
.inquiry-motion-ready:not(.inquiry-motion-visible) .inquiry-background{opacity:0;filter:blur(4px)}
.inquiry-motion-ready:not(.inquiry-motion-visible) .inquiry-lines{opacity:0;transform:translate(-50%,-50%) scale(.78)}
.inquiry-motion-ready:not(.inquiry-motion-visible) .inquiry-inner>.eyebrow,
.inquiry-motion-ready:not(.inquiry-motion-visible) .inquiry-inner>h2,
.inquiry-motion-ready:not(.inquiry-motion-visible) .inquiry-inner>p:nth-child(3),
.inquiry-motion-ready:not(.inquiry-motion-visible) .inquiry-actions .button{opacity:0;transform:translate3d(0,36px,0)}
.inquiry-motion-ready.inquiry-motion-visible .inquiry-background{opacity:1;filter:none;transition:opacity 1s ease,filter 1s ease}
.inquiry-motion-ready.inquiry-motion-visible .inquiry-lines{opacity:1;transform:translate(-50%,-50%) scale(1);transition:opacity .8s ease .08s,transform 1s cubic-bezier(.2,.72,.2,1) .08s}
.inquiry-motion-ready.inquiry-motion-visible .inquiry-inner>.eyebrow,
.inquiry-motion-ready.inquiry-motion-visible .inquiry-inner>h2,
.inquiry-motion-ready.inquiry-motion-visible .inquiry-inner>p:nth-child(3),
.inquiry-motion-ready.inquiry-motion-visible .inquiry-actions .button{opacity:1;transform:translate3d(0,0,0);transition:opacity .62s ease,transform .72s cubic-bezier(.2,.72,.2,1)}
.inquiry-motion-ready.inquiry-motion-visible .inquiry-inner>.eyebrow{transition-delay:.14s}
.inquiry-motion-ready.inquiry-motion-visible .inquiry-inner>h2{transition-delay:.24s}
.inquiry-motion-ready.inquiry-motion-visible .inquiry-inner>p:nth-child(3){transition-delay:.34s}
.inquiry-motion-ready.inquiry-motion-visible .inquiry-actions .button:first-child{transition-delay:.44s}
.inquiry-motion-ready.inquiry-motion-visible .inquiry-actions .button:last-child{transition-delay:.52s}
.section-motion-reset .arrivals-heading,.section-motion-reset .arrivals-tabs,.section-motion-reset .arrival-story-card,.section-motion-reset .arrival-product-card,.section-motion-reset .innovation-copy,.section-motion-reset .development-carousel,.section-motion-reset .quality-grid>.quality-carousel,.section-motion-reset .quality-copy,.section-motion-reset .inquiry-background,.section-motion-reset .inquiry-lines,.section-motion-reset .inquiry-inner>*{transition:none!important}
@media(max-width:767px){
  .feature-motion-ready:not(.feature-motion-visible) .arrivals-heading,
  .development-motion-ready:not(.development-motion-visible) .innovation-copy,
  .quality-motion-ready:not(.quality-motion-visible) .quality-grid>.quality-carousel{transform:translate3d(-38px,18px,0)}
  .feature-motion-ready:not(.feature-motion-visible) .arrivals-tabs,
  .development-motion-ready:not(.development-motion-visible) .development-carousel,
  .quality-motion-ready:not(.quality-motion-visible) .quality-copy{transform:translate3d(38px,18px,0)}
  .feature-motion-ready:not(.feature-motion-visible) .featured-panel.is-active .arrival-story-card,
  .feature-motion-ready:not(.feature-motion-visible) .featured-panel.is-active .arrival-product-card,
  .inquiry-motion-ready:not(.inquiry-motion-visible) .inquiry-inner>.eyebrow,
  .inquiry-motion-ready:not(.inquiry-motion-visible) .inquiry-inner>h2,
  .inquiry-motion-ready:not(.inquiry-motion-visible) .inquiry-inner>p:nth-child(3),
  .inquiry-motion-ready:not(.inquiry-motion-visible) .inquiry-actions .button{transform:translate3d(0,30px,0)}
}
@media(prefers-reduced-motion:reduce){
  .feature-motion-ready .arrivals-heading,.feature-motion-ready .arrivals-tabs,.feature-motion-ready .arrival-story-card,.feature-motion-ready .arrival-product-card,
  .development-motion-ready .innovation-copy,.development-motion-ready .development-carousel,.development-motion-ready .innovation-list article,
  .quality-motion-ready .quality-grid>.quality-carousel,.quality-motion-ready .quality-copy,.quality-motion-ready .quality-list article,
  .inquiry-motion-ready .inquiry-background,.inquiry-motion-ready .inquiry-lines,.inquiry-motion-ready .inquiry-inner>*{opacity:1!important;transform:none!important;filter:none!important;transition:none!important;will-change:auto!important}
  .inquiry-motion-ready .inquiry-lines{transform:translate(-50%,-50%)!important}
}
/* Catalog page refresh with corrected product imagery */
.catalog-page.content-section{padding:72px 0 0;background:#fff}
.catalog-page .catalog-main{padding-bottom:96px}
.catalog-page .catalog-feature{gap:52px;padding:28px;border-radius:0;box-shadow:0 18px 48px rgba(44,62,80,.075)}
.catalog-cover-products{min-width:0;border-radius:0;background:#f2f0ed}
.catalog-cover-products .catalog-cover-grid{display:grid;width:100%;aspect-ratio:1125/717;grid-template-columns:1.28fr .72fr;grid-template-rows:1fr 1fr;gap:10px;padding:10px;background:#f2f0ed}
.catalog-cover-products figure{min-width:0;min-height:0;margin:0;overflow:hidden;background:#f7f6f3}
.catalog-cover-products .catalog-cover-primary{grid-row:1/3}
.catalog-cover-products img{display:block;width:100%;height:100%;aspect-ratio:auto;object-fit:cover;transition:transform .65s cubic-bezier(.2,.7,.2,1)}
.catalog-cover-products:hover img{transform:scale(1.025)}
.catalog-page .catalog-inside{margin-top:92px}
.catalog-page .catalog-inside .section-head{margin-bottom:38px}
.catalog-page .catalog-preview-grid{gap:28px}
.catalog-preview-card{display:grid;grid-template-columns:minmax(0,1.08fr) minmax(245px,.92fr);min-width:0;overflow:hidden;border:1px solid #e5e7e7;background:#fff;box-shadow:0 14px 36px rgba(41,64,80,.07)}
.catalog-preview-card>img{display:block;width:100%;height:100%;min-height:350px;border:0;object-fit:cover;background:#f5f4f1;box-shadow:none;transition:transform .6s cubic-bezier(.2,.7,.2,1)}
.catalog-preview-card:hover>img{transform:scale(1.025)}
.catalog-preview-card>div{display:flex;min-width:0;flex-direction:column;justify-content:center;padding:34px 30px}
.catalog-preview-card span{color:#2e5b8a;font-size:9px;font-weight:700;letter-spacing:.15em;line-height:1.5}
.catalog-preview-card h3{margin:14px 0 13px;color:#2c3e50;font-size:23px;font-weight:620;line-height:1.3;letter-spacing:-.02em}
.catalog-preview-card p{margin:0;color:#70808c;font-size:12px;line-height:1.75}
.catalog-page .catalog-featured-products{margin:0;padding:96px 0 110px;background:#f5f6f6}
.catalog-page .catalog-featured-products .products-recommendation-card img{object-position:center}
.catalog-page .catalog-featured-products .products-recommendation-card h3{min-height:53px}
@media(max-width:1180px){
  .catalog-page .catalog-feature{grid-template-columns:1fr;gap:38px}
  .catalog-cover-products .catalog-cover-grid{max-height:650px}
  .catalog-preview-card{grid-template-columns:1fr}
  .catalog-preview-card>img{height:340px;min-height:0}
  .catalog-preview-card>div{min-height:210px}
}
@media(max-width:700px){
  .catalog-page.content-section{padding-top:48px}
  .catalog-page .catalog-main{padding-bottom:72px}
  .catalog-page .catalog-feature{gap:30px;padding:14px}
  .catalog-cover-products .catalog-cover-grid{gap:6px;padding:6px}
  .catalog-cover-products>span{right:12px;bottom:12px;font-size:9px}
  .catalog-page .catalog-inside{margin-top:68px}
  .catalog-preview-card>img{height:300px}
  .catalog-preview-card>div{min-height:0;padding:28px 24px 31px}
  .catalog-preview-card h3{font-size:20px}
  .catalog-page .catalog-featured-products{padding:66px 0 74px}
}
@media(max-width:430px){
  .catalog-cover-products .catalog-cover-grid{grid-template-columns:1fr 1fr;grid-template-rows:1.4fr .8fr;aspect-ratio:4/5}
  .catalog-cover-products .catalog-cover-primary{grid-column:1/3;grid-row:auto}
  .catalog-preview-card>img{height:270px}
}
/* WhatsApp hover: preserve the original green icon instead of turning it white. */
body .floating-contact.dedeer-floating-contact .floating-whatsapp:hover,
body .floating-contact.dedeer-floating-contact .floating-whatsapp:focus-visible{
  background:#f1fbf5!important;
  color:#159447!important;
}
body .floating-contact.dedeer-floating-contact .floating-whatsapp:hover img,
body .floating-contact.dedeer-floating-contact .floating-whatsapp:focus-visible img{
  filter:none!important;
}