/* ═══════════════════════════════════════════
   DESIGN TOKENS & BASE
═══════════════════════════════════════════ */
:root {
  --blue: #4A7EA5; --blue-dark: #2D5E83; --blue-deeper: #1B3F5C;
  --blue-light: #EAF2F8; --blue-mid: #C2D9EA;
  --accent: #A0523A; --accent-dark: #803D28; --accent-light: #FAF0EB;
  --warm: #C4A882; --sage: #6A8C70; --sage-light: #EBF2EC;
  --bg: #FDFAF6; --surface: #F3EEE6; --surface-2: #EDE7DD;
  --rule: #E4DDD4; --text: #1C1916; --text-2: #6B6258; --text-3: #A09088;
  --white: #FFFFFF;
  --r-sm: 6px; --r: 12px; --r-lg: 20px; --r-xl: 28px;
  --sh-sm: 0 2px 8px rgba(28,25,22,.07);
  --sh: 0 8px 32px rgba(28,25,22,.10);
  --sh-lg: 0 24px 64px rgba(28,25,22,.13);
  --ease: 0.25s ease;
  --font-d: 'Cormorant Garamond', Georgia, serif;
  --font-b: 'DM Sans', system-ui, sans-serif;
  --font-m: 'DM Mono', monospace;
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:16px}
body{font-family:var(--font-b);background:var(--bg);color:var(--text);line-height:1.65;overflow-x:hidden}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
button,input{cursor:pointer;border:none;background:none;font-family:var(--font-b);outline:none}
ul{list-style:none}
.sr-only {position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;}

/* TYPOGRAPHY */
.d-xl  {font-family:var(--font-d);font-weight:400;font-size:clamp(3rem,7vw,6.5rem);line-height:1.03;letter-spacing:-.025em}
.d-lg  {font-family:var(--font-d);font-weight:400;font-size:clamp(2.2rem,4.5vw,3.8rem);line-height:1.08;letter-spacing:-.02em}
.d-md  {font-family:var(--font-d);font-weight:400;font-size:clamp(1.6rem,3vw,2.6rem);line-height:1.15;letter-spacing:-.01em}
.d-sm  {font-family:var(--font-d);font-weight:400;font-size:clamp(1.25rem,2.5vw,1.9rem);line-height:1.2}
.label {font-family:var(--font-m);font-size:11px;font-weight:500;letter-spacing:.16em;text-transform:uppercase;color:var(--text-3)}
.body-lg{font-size:1.08rem;color:var(--text-2);line-height:1.8}
.mono  {font-family:var(--font-m)}

/* LAYOUT */
.wrap        {max-width:1300px;margin:0 auto;padding:0 2rem}
.wrap-narrow {max-width:860px;margin:0 auto;padding:0 2rem}
section      {padding:5.5rem 0}

/* BUTTONS */
.btn{display:inline-flex;align-items:center;gap:8px;padding:13px 26px;border-radius:var(--r-sm);font-size:14px;font-weight:600;letter-spacing:.02em;transition:all var(--ease);white-space:nowrap;cursor:pointer;min-height:44px;touch-action:manipulation}
.btn-primary{background:var(--blue);color:#fff}
.btn-primary:hover{background:var(--blue-dark);transform:translateY(-1px);box-shadow:var(--sh)}
.btn-primary:disabled{opacity:0.7;cursor:not-allowed;transform:none;box-shadow:none}
.btn-accent{background:var(--accent);color:#fff}
.btn-accent:hover{background:var(--accent-dark);transform:translateY(-1px);box-shadow:var(--sh)}
.btn-outline{background:transparent;color:var(--text);border:1.5px solid var(--rule)}
.btn-outline:hover{border-color:var(--text-2);background:var(--surface)}
.btn-ghost{background:rgba(255,255,255,.14);color:#fff;border:1.5px solid rgba(255,255,255,.35);backdrop-filter:blur(8px)}
.btn-ghost:hover{background:rgba(255,255,255,.25)}
.btn-lg{padding:17px 34px;font-size:15px;border-radius:8px}
.btn-sm{padding:9px 18px;font-size:13px}

/* MOBILE FAB */
.mob-fab {display:none;position:fixed;bottom:1.5rem;right:1.5rem;z-index:90;background:var(--accent);color:#fff;padding:15px 24px;border-radius:50px;font-weight:600;font-size:15px;box-shadow:var(--sh-lg);transition:transform var(--ease);align-items:center;gap:8px;}
.mob-fab:active {transform:scale(0.96);}

/* ANNOUNCEMENT BAR */
.announce{background:var(--blue-deeper);color:rgba(255,255,255,.9);text-align:center;padding:11px 1rem;font-size:13px;font-weight:500;position:relative;z-index:101}
.announce a{color:#fff;text-decoration:underline;text-underline-offset:2px}
.announce .lang-switch-top{position:absolute;right:1.5rem;top:50%;transform:translateY(-50%);display:flex;gap:8px;align-items:center}
.lsb{font-size:12px;font-weight:600;padding:3px 10px;border-radius:50px;cursor:pointer;transition:all var(--ease);color:rgba(255,255,255,.6)}
.lsb:hover{color:#fff;}
.lsb.on{background:rgba(255,255,255,.2);color:#fff}

/* NAVIGATION */
.nav{position:sticky;top:0;z-index:100;background:var(--white);border-bottom:1px solid var(--rule);box-shadow:var(--sh-sm)}
.nav-inner{display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:1.5rem;height:74px}
.logo{display:flex;align-items:center;gap:11px;flex-shrink:0}
.logo-img{height:46px;width:auto;mix-blend-mode:multiply;display:block}
.nav-center{display:flex;align-items:center;gap:0.5rem;justify-content:center}
.nav-link{padding:8px 13px;font-size:14px;font-weight:500;color:var(--text-2);border-radius:var(--r-sm);transition:all var(--ease);position:relative}
.nav-link:hover{color:var(--text);background:var(--surface)}
.nav-link.has-drop::after{content:'▾';font-size:10px;margin-left:4px;opacity:.5}
.nav-right{display:flex;align-items:center;gap:.75rem;flex-shrink:0}
.nav-search-btn{display:flex;align-items:center;gap:8px;padding:9px 16px;border-radius:50px;background:var(--surface);border:1.5px solid var(--rule);font-size:13px;color:var(--text-3);transition:all var(--ease);cursor:pointer;min-width:180px}
.nav-search-btn:hover{border-color:var(--blue-mid);background:#fff}
.nav-search-btn svg{flex-shrink:0}
.lang-pill{display:flex;background:var(--surface);border-radius:50px;padding:3px;gap:0}
.lpb{padding:5px 11px;font-size:12px;font-weight:600;border-radius:50px;color:var(--text-3);transition:all var(--ease);cursor:pointer}
.lpb:hover{color:var(--blue);}
.lpb.on{background:#fff;color:var(--blue);box-shadow:var(--sh-sm)}
.cart-wrap{position:relative}
.cart-ico{display:flex;align-items:center;justify-content:center;width:40px;height:40px;border-radius:var(--r-sm);color:var(--text-2);transition:all var(--ease)}
.cart-ico:hover{background:var(--surface);color:var(--text)}
.cart-dot{position:absolute;top:5px;right:5px;width:14px;height:14px;background:var(--accent);border-radius:50%;font-size:9px;font-weight:700;color:#fff;display:none;align-items:center;justify-content:center;transition:transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275)}

/* SEARCH OVERLAY */
.search-overlay{position:fixed;inset:0;z-index:200;background:rgba(28,25,22,.5);backdrop-filter:blur(4px);opacity:0;pointer-events:none;transition:opacity var(--ease)}
.search-overlay.open{opacity:1;pointer-events:all}
.search-box{position:absolute;top:20px;left:50%;transform:translateX(-50%);width:90%;max-width:640px;background:#fff;border-radius:var(--r-lg);box-shadow:var(--sh-lg);overflow:hidden}
.search-input-wrap{display:flex;align-items:center;gap:12px;padding:1rem 1.5rem;border-bottom:1px solid var(--rule)}
.search-input-wrap input{flex:1;font-size:1.1rem;font-family:var(--font-b);color:var(--text);border:none;outline:none}
.search-input-wrap input::placeholder{color:var(--text-3)}
.search-close{padding:6px;border-radius:var(--r-sm);color:var(--text-2);transition:background var(--ease);cursor:pointer}
.search-close:hover{background:var(--surface)}
.search-hints{padding:1.25rem 1.5rem}
.search-hints p{font-size:11px;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:var(--text-3);margin-bottom:.75rem}
.search-tags{display:flex;flex-wrap:wrap;gap:8px}
.search-tag{padding:7px 14px;background:var(--surface);border-radius:50px;font-size:13px;color:var(--text-2);cursor:pointer;transition:all var(--ease)}
.search-tag:hover{background:var(--blue-light);color:var(--blue)}

/* HERO */
.hero{position:relative;min-height:93vh;display:flex;align-items:center;background:var(--blue-deeper);overflow:hidden}
.hero-media{position:absolute;inset:0}
.hero-media img{width:100%;height:100%;object-fit:cover;opacity:.38}
.hero-grad{position:absolute;inset:0;background:linear-gradient(120deg,rgba(27,63,92,.92) 0%,rgba(27,63,92,.7) 55%,rgba(74,126,165,.35) 100%)}
.hero-content{position:relative;z-index:2;color:#fff;padding:3rem 0 5rem}
.hero-eyebrow{display:flex;align-items:center;gap:12px;margin-bottom:1.75rem}
.hero-eyebrow-line{width:36px;height:1px;background:rgba(255,255,255,.4)}
.hero-tabs{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:2.5rem;margin-top:2rem}
.htab{padding:9px 20px;border-radius:50px;font-size:13px;font-weight:500;background:rgba(255,255,255,.1);color:rgba(255,255,255,.65);border:1px solid rgba(255,255,255,.18);cursor:pointer;transition:all var(--ease)}
.htab:hover,.htab.on{background:#fff;color:var(--text);border-color:#fff}
.hero-title{margin-bottom:1.25rem;max-width:760px}
.hero-title em{font-style:italic;color:rgba(196,130,107,.95)}
.hero-sub{font-size:1.1rem;color:rgba(255,255,255,.72);max-width:540px;line-height:1.75;margin-bottom:2.5rem}
.hero-ctas{display:flex;gap:1rem;flex-wrap:wrap}

/* QUICK INTENT & TRUST */
.quick-intent{background:#fff;border-bottom:1px solid var(--rule);padding:0}
.qi-grid{display:grid;grid-template-columns:repeat(4,1fr)}
.qi-card{display:flex;align-items:center;gap:16px;padding:2.25rem 2rem;border-right:1px solid var(--rule);transition:all var(--ease);color:var(--text)}
.qi-card:last-child{border-right:none}
.qi-card:hover{background:var(--blue-light)}
.qi-card:hover .qi-ico{background:var(--blue);color:#fff}
.qi-ico{width:50px;height:50px;border-radius:var(--r-sm);background:var(--surface);display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:all var(--ease);color:var(--blue)}
.qi-title{font-weight:600;font-size:15px;margin-bottom:4px}
.qi-sub{font-size:12px;color:var(--text-3);line-height:1.5}

.trust-bar{background:var(--blue);padding:0}
.trust-grid{display:grid;grid-template-columns:repeat(4,1fr)}
.titem{padding:1.75rem 1.5rem;text-align:center;border-right:1px solid rgba(255,255,255,.12);color:#fff}
.titem:last-child{border-right:none}
.titem svg{margin:0 auto .75rem;opacity:.7}
.titem-title{font-weight:600;font-size:14px;margin-bottom:3px}
.titem-sub{font-size:12px;opacity:.6}

/* CATEGORY SHOWCASE (BENTO BOX) */
.categories{background:var(--bg)}
.sec-header{text-align:center;margin-bottom:3.5rem}
.sec-header .label{margin-bottom:.75rem}
.cat-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.cat-card{position:relative;border-radius:var(--r-lg);overflow:hidden;background:var(--surface-2);cursor:pointer;aspect-ratio:4/3}
.cat-img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transition:transform .6s ease;display:block}
.cat-card:hover .cat-img{transform:scale(1.06)}
.cat-over{position:absolute;inset:0;background:linear-gradient(to top,rgba(28,25,22,.78) 0%,rgba(28,25,22,.1) 55%,transparent 100%)}
.cat-body{position:absolute;bottom:0;left:0;right:0;padding:1.5rem 1.75rem;color:#fff}
.cat-name{font-family:var(--font-d);font-size:1.6rem;font-weight:500;margin-bottom:4px}
.cat-count{font-size:12px;opacity:.65;margin-bottom:10px}
.cat-btn{display:inline-flex;align-items:center;gap:6px;font-size:12px;font-weight:600;letter-spacing:.07em;text-transform:uppercase;opacity:0;transform:translateY(6px);transition:all var(--ease)}
.cat-card:hover .cat-btn{opacity:1;transform:translateY(0)}

.span-2 { grid-column: span 2; aspect-ratio: 16/9; }

/* SIGNATURE FEATURE */
.feature{background:var(--blue-deeper);color:#fff;position:relative;overflow:hidden;padding:0}
.feature-inner{display:grid;grid-template-columns:1fr 1fr;min-height:580px}
.feature-content{padding:5rem 4rem 5rem 0;display:flex;flex-direction:column;justify-content:center;position:relative;z-index:2}
.feature-badge{display:inline-flex;align-items:center;gap:8px;background:rgba(196,130,107,.18);border:1px solid rgba(196,130,107,.35);color:#E8A898;padding:6px 16px;border-radius:50px;font-size:12px;font-weight:600;letter-spacing:.1em;margin-bottom:1.75rem}
.feature-title{margin-bottom:1.25rem}
.feature-title em{font-style:italic;color:rgba(196,130,107,.95)}
.feature-body{color:rgba(255,255,255,.68);line-height:1.8;margin-bottom:2rem;font-size:1.05rem}
.feature-pts{display:flex;flex-direction:column;gap:12px;margin-bottom:2.5rem}
.feature-pt{display:flex;align-items:center;gap:12px;font-size:14px;color:rgba(255,255,255,.8)}
.feature-pt-dot{width:20px;height:20px;border-radius:50%;background:rgba(196,130,107,.25);border:1px solid rgba(196,130,107,.5);flex-shrink:0}
.feature-photo{position:relative;overflow:hidden}
.feat-ph{width:100%;height:100%;background:linear-gradient(135deg,rgba(45,94,131,.5),rgba(106,140,112,.3));min-height:580px;display:flex;align-items:center;justify-content:center}

/* HOW IT WORKS & REVIEWS */
.how{background:#fff}
.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;position:relative}
.steps::before{content:'';position:absolute;top:32px;left:calc(33.33% + 1.5rem);right:calc(33.33% + 1.5rem);height:1px;background:var(--rule)}
.step{text-align:center;padding:0 1rem}
.step-n{width:64px;height:64px;border-radius:50%;background:var(--blue-light);color:var(--blue);font-family:var(--font-d);font-size:1.6rem;font-weight:500;display:flex;align-items:center;justify-content:center;margin:0 auto 1.5rem;border:2px solid var(--blue-mid);position:relative;z-index:1}
.step-title{font-weight:600;font-size:1.05rem;margin-bottom:.5rem}
.step-body{font-size:14px;color:var(--text-2);line-height:1.7}

.reviews{background:var(--surface)}
.reviews-head{display:flex;align-items:flex-start;justify-content:space-between;margin-bottom:3rem;gap:1.5rem;flex-wrap:wrap}
.reviews-score{display:flex;align-items:center;gap:2rem}
.score-big{font-family:var(--font-d);font-size:4.5rem;font-weight:500;line-height:1;color:var(--text)}
.score-right{display:flex;flex-direction:column;gap:4px}
.stars{color:#E8952A;font-size:1.3rem;letter-spacing:2px}
.score-lbl{font-size:13px;color:var(--text-2)}
.rev-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem}
.rev-card{background:#fff;border-radius:var(--r-lg);padding:1.75rem;border:1px solid var(--rule);box-shadow:var(--sh-sm);display:flex;flex-direction:column;gap:1rem}
.rev-stars{color:#E8952A;font-size:.95rem}
.rev-text{font-size:14px;color:var(--text-2);line-height:1.75;font-style:italic;flex:1}
.rev-meta{display:flex;align-items:center;gap:10px}
.rev-av{width:38px;height:38px;border-radius:50%;background:var(--blue-light);color:var(--blue);font-size:13px;font-weight:600;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.rev-name{font-weight:600;font-size:13px}
.rev-event{font-size:12px;color:var(--text-3)}
.rev-date{font-size:11px;color:var(--text-3);font-family:var(--font-m)}

/* INSPIRATION FEED & EMAIL */
.inspo{background:var(--bg)}
.inspo-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.1rem}
.inspo-card{position:relative;border-radius:var(--r);overflow:hidden;aspect-ratio:3/4;cursor:pointer;background:var(--surface-2)}
.inspo-card img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease}
.inspo-card:hover img{transform:scale(1.06)}
.inspo-over{position:absolute;inset:0;background:rgba(28,25,22,0);transition:background var(--ease);display:flex;flex-direction:column;justify-content:flex-end;padding:1.25rem}
.inspo-card:hover .inspo-over{background:rgba(28,25,22,.58)}
.inspo-info{opacity:0;transform:translateY(8px);transition:all var(--ease);color:#fff}
.inspo-card:hover .inspo-info{opacity:1;transform:translateY(0)}
.inspo-tag{font-family:var(--font-m);font-size:10px;letter-spacing:.12em;text-transform:uppercase;opacity:.7;margin-bottom:5px}
.inspo-title{font-family:var(--font-d);font-size:1.25rem;margin-bottom:10px}
.inspo-shop{display:inline-flex;align-items:center;gap:6px;font-size:12px;font-weight:600;background:rgba(255,255,255,.18);border:1px solid rgba(255,255,255,.3);padding:6px 14px;border-radius:50px;backdrop-filter:blur(4px);transition:background var(--ease)}
.inspo-shop:hover{background:rgba(255,255,255,.3)}

/* BLOG FEATURE & FORMS */
.blog-feature{background:#fff;padding:4.5rem 0;border-top:1px solid var(--rule);border-bottom:1px solid var(--rule)}
.email-cap{background:var(--blue);color:#fff;text-align:center;padding:5.5rem 0}
.email-cap .d-md{color:#fff;margin-bottom:.75rem}
.email-cap-sub{color:rgba(255,255,255,.75);margin-bottom:.5rem;font-size:1rem;max-width:500px;margin-left:auto;margin-right:auto;line-height:1.75}
.email-perks{display:flex;justify-content:center;gap:1.75rem;flex-wrap:wrap;margin-bottom:2.5rem;margin-top:1rem}
.email-perk{display:flex;align-items:center;gap:7px;font-size:13px;color:rgba(255,255,255,.7)}
.email-perk svg{opacity:.7;flex-shrink:0}
.email-form{display:flex;max-width:500px;margin:0 auto;border-radius:var(--r-sm);overflow:hidden;box-shadow:var(--sh-lg)}
.email-form input{flex:1;padding:16px 20px;border:none;font-family:var(--font-b);font-size:14px;color:var(--text);min-width:0}
.email-form input::placeholder{color:var(--text-3)}
.email-form button{padding:16px 26px;background:var(--accent);color:#fff;font-weight:600;font-size:14px;font-family:var(--font-b);white-space:nowrap;transition:background var(--ease);cursor:pointer;border:none}
.email-form button:hover{background:var(--accent-dark)}
.email-fine{font-size:12px;color:rgba(255,255,255,.45);margin-top:1rem}

.quote-section{background:var(--surface);text-align:center;}
.quote-form{max-width:600px;margin:0 auto;display:grid;gap:1rem;text-align:left;}
.form-row-2{display:grid;grid-template-columns:1fr 1fr;gap:1rem;}
.form-group{display:flex;flex-direction:column;gap:6px;}
.form-label{font-size:13px;font-weight:600;color:var(--text-2);}
.form-field{padding:14px 16px;border:1.5px solid var(--rule);border-radius:var(--r-sm);font-family:var(--font-b);font-size:14px;background:#fff;color:var(--text);outline:none;transition:border-color var(--ease),box-shadow var(--ease);width:100%;-webkit-appearance:none;appearance:none;}
.form-field:focus{border-color:var(--blue);box-shadow:0 0 0 3px rgba(74,126,165,.12);}
.form-field::placeholder{color:var(--text-3);}
textarea.form-field{resize:vertical;min-height:110px;}
select.form-field{cursor:pointer;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A09088' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 14px center;padding-right:36px;}
.quote-note{font-size:13px;color:var(--text-3);margin-top:1rem;text-align:center;}
.form-checkboxes { display:flex; flex-wrap:wrap; gap:16px; margin-top:4px; margin-bottom:.5rem; }
.chk-lbl { display:flex; align-items:center; gap:8px; font-size:14px; color:var(--text-2); cursor:pointer; }
.chk-lbl input[type="checkbox"] { accent-color:var(--blue); width:16px; height:16px; cursor:pointer; }
.micro-test { display:flex; align-items:center; justify-content:center; gap:12px; margin-top:1.25rem; font-size:13px; color:var(--text-2); font-style:italic; }
.micro-test-av { width:32px; height:32px; border-radius:50%; background:var(--blue-light); color:var(--blue); font-weight:600; display:flex; align-items:center; justify-content:center; font-style:normal; font-size:11px; }

/* FOOTER & COOKIE BANNER */
footer{background:var(--text);color:rgba(255,255,255,.65);padding:4.5rem 0 2.5rem}
.footer-grid{display:grid;grid-template-columns:2.2fr 1fr 1fr 1.2fr;gap:3rem;margin-bottom:3rem}
.footer-tagline{font-size:13px;line-height:1.75;max-width:280px;margin-bottom:1.25rem}
.footer-social{display:flex;gap:10px}
.soc{width:36px;height:36px;border-radius:var(--r-sm);background:rgba(255,255,255,.08);display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,.55);transition:all var(--ease)}
.soc:hover{background:rgba(255,255,255,.16);color:#fff}
.footer-col-h{color:#fff;font-weight:600;font-size:13px;letter-spacing:.06em;margin-bottom:1.25rem;text-transform:uppercase}
.footer-links li+li{margin-top:.6rem}
.footer-links a{font-size:14px;color:rgba(255,255,255,.55);transition:color var(--ease)}
.footer-links a:hover{color:#fff}
.footer-contact p{font-size:14px;color:rgba(255,255,255,.55);margin-bottom:.6rem;display:flex;align-items:flex-start;gap:8px}
.footer-contact p svg{margin-top:2px;flex-shrink:0;opacity:.6}
.footer-bot{border-top:1px solid rgba(255,255,255,.1);padding-top:2rem;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:1rem}
.footer-bot-left{font-size:13px}
.footer-bot-right{display:flex;gap:1.5rem}
.footer-bot-right a{font-size:13px;color:rgba(255,255,255,.4);transition:color var(--ease)}
.footer-bot-right a:hover{color:rgba(255,255,255,.8)}
.footer-lang-toggle{display:flex;gap:4px;align-items:center}
.flt-btn{font-size:12px;font-weight:600;color:rgba(255,255,255,.4);padding:4px 8px;border-radius:4px;cursor:pointer;transition:all var(--ease); text-decoration:none}
.flt-btn:hover{color:#fff;}
.flt-btn.on{color:#fff;background:rgba(255,255,255,.12)}

.cookie{position:fixed;bottom:1.5rem;left:1.5rem;z-index:999;max-width:440px;background:var(--text);color:#fff;border-radius:var(--r-lg);padding:1.5rem;box-shadow:var(--sh-lg);border:1px solid rgba(255,255,255,.08);transition:transform var(--ease),opacity var(--ease)}
.cookie.hidden{transform:translateY(120%);opacity:0;pointer-events:none}
.cookie-title{font-weight:600;font-size:14px;margin-bottom:.4rem}
.cookie-text{font-size:13px;color:rgba(255,255,255,.65);line-height:1.6;margin-bottom:1.25rem}
.cookie-btns{display:flex;gap:.75rem}
.cb-accept{padding:9px 20px;background:var(--blue);color:#fff;border-radius:var(--r-sm);font-size:13px;font-weight:600;transition:background var(--ease);cursor:pointer;border:none}
.cb-accept:hover{background:var(--blue-dark)}
.cb-decline{padding:9px 16px;border:1px solid rgba(255,255,255,.18);color:rgba(255,255,255,.6);border-radius:var(--r-sm);font-size:13px;cursor:pointer;transition:all var(--ease);background:none}
.cb-decline:hover{border-color:rgba(255,255,255,.35);color:#fff}

/* MOBILE NAV DRAWER */
.mob-menu-btn{display:none;flex-direction:column;gap:5px;padding:8px;cursor:pointer}
.mob-menu-btn span{display:block;width:22px;height:2px;background:var(--text);border-radius:2px;transition:all var(--ease)}
.mob-overlay{display:none;position:fixed;inset:0;z-index:98;background:rgba(28,25,22,.55);backdrop-filter:blur(2px);opacity:0;transition:opacity .3s ease;}
.mob-overlay.open{opacity:1;}
.mob-drawer{position:fixed;top:0;right:0;z-index:99;width:min(340px,88vw);height:100dvh;height:100vh;background:var(--white);box-shadow:-8px 0 40px rgba(28,25,22,.15);display:flex;flex-direction:column;transform:translateX(105%);transition:transform .35s cubic-bezier(.4,0,.2,1);overflow-y:auto;-webkit-overflow-scrolling:touch;}
.mob-drawer.open{transform:translateX(0);}
.mob-drawer-header{display:flex;align-items:center;justify-content:space-between;padding:1rem 1.25rem;border-bottom:1px solid var(--rule);flex-shrink:0;}
.mob-drawer-close{width:44px;height:44px;display:flex;align-items:center;justify-content:center;border-radius:var(--r-sm);color:var(--text-2);cursor:pointer;transition:background var(--ease);}
.mob-drawer-close:hover{background:var(--surface);}
.mob-drawer-search{margin:1rem 1.25rem;display:flex;align-items:center;gap:10px;padding:12px 16px;background:var(--surface);border-radius:50px;border:1.5px solid var(--rule);cursor:pointer;font-size:14px;color:var(--text-3);min-height:48px;font-family:var(--font-b);}
.mob-drawer-search:hover{border-color:var(--blue-mid);}
.mob-nav-section{padding:.5rem 0;border-bottom:1px solid var(--rule);}
.mob-nav-label{font-family:var(--font-m);font-size:10px;font-weight:500;letter-spacing:.15em;text-transform:uppercase;color:var(--text-3);padding:.75rem 1.25rem .35rem;}
.mob-nav-link{display:flex;align-items:center;justify-content:space-between;padding:14px 1.25rem;font-size:15px;font-weight:500;color:var(--text);min-height:52px;transition:background var(--ease);cursor:pointer;text-decoration:none;}
.mob-nav-link:hover,.mob-nav-link:active{background:var(--blue-light);color:var(--blue-dark);}
.mob-nav-link svg{opacity:.4;flex-shrink:0;}
.mob-drawer-ctas{padding:1.25rem;display:flex;flex-direction:column;gap:.75rem;}
.mob-drawer-lang{padding:1rem 1.25rem;border-top:1px solid var(--rule);display:flex;align-items:center;gap:.75rem;flex-shrink:0;}
.mob-drawer-lang-label{font-size:13px;color:var(--text-2);font-weight:500;}
.mob-lang-toggle{display:flex;background:var(--surface);border-radius:50px;padding:3px;}

/* RESPONSIVE BREAKPOINTS */
@media(max-width:1280px){
  .nav-search-placeholder{display:none;}
  .nav-search-btn{min-width:auto;padding:9px 12px;}
}
@media(max-width:1100px){
  .footer-grid{grid-template-columns:1fr 1fr;gap:2rem;}
  .inspo-grid{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:960px){
  .nav-center, .lang-pill, .nav-right .btn-accent{display:none;}
  .mob-menu-btn{display:flex;}
  .mob-overlay{display:block;}
  .qi-grid{grid-template-columns:repeat(2,1fr);}
  .trust-grid{grid-template-columns:repeat(2,1fr);}
  .rev-grid{grid-template-columns:1fr 1fr;}
  .feature-inner{grid-template-columns:1fr;}
  .feature-photo{display:none;}
  .feature-content{padding:clamp(2.5rem,5vw,3.5rem) 0;}
  .cat-grid{grid-template-columns:repeat(2,1fr); gap:1.5rem;}
  .span-2 { grid-column: span 1; aspect-ratio: 4/3; }
}
@media(max-width:768px){
  :root{--nav-h:62px;}
  .announce{padding:9px 1rem;font-size:12px;}
  .announce .lang-switch-top{display:none;}
  .mob-fab { display:flex; }
  .cookie{ bottom:5rem; }
  .steps{grid-template-columns:1fr;gap:1.75rem;}
  .steps::before{display:none;}
  .step{display:grid;grid-template-columns:62px 1fr;gap:1rem;text-align:left;align-items:start;}
  .step-n{margin:0;}
  .rev-grid{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr 1fr;}
  .footer-bot{flex-direction:column;text-align:center;align-items:center;}
  .footer-bot-right{justify-content:center;}
}
@media(max-width:640px){
  :root{--nav-h:58px;}
  .hero-content{padding:1.75rem 0 1.5rem;}
  .hero-tabs{gap:6px;margin-top:1.25rem;margin-bottom:1.5rem;}
  .htab{font-size:11px;padding:7px 12px;}
  .hero-sub{font-size:.95rem;margin-bottom:1.75rem;}
  .hero-ctas{flex-direction:column;gap:.75rem;}
  .hero-ctas .btn{width:100%;justify-content:center;}
  .qi-grid{grid-template-columns:1fr;}
  .qi-card{border-right:none;border-bottom:1px solid var(--rule);padding:1.25rem 1rem;}
  .qi-card:last-child{border-bottom:none;}
  .trust-grid{grid-template-columns:1fr 1fr;}
  .titem{padding:1.1rem .75rem;}
  .titem-title{font-size:12px;}
  .cat-grid{grid-template-columns:1fr;gap:1.25rem;}
  .cat-card { grid-column: span 1 !important; height: 280px; }
  .cat-name{font-size:1.25rem;}
  .inspo-grid{grid-template-columns:1fr 1fr;gap:.625rem;}
  .email-form{flex-direction:column;border-radius:var(--r);overflow:hidden;}
  .email-form input,.email-form button{border-radius:0;}
  .form-row-2{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr;gap:1.75rem;}
  .footer-tagline{max-width:100%;}
  .footer-bot-right{flex-direction:column;gap:.625rem;}
  .reviews-head{flex-direction:column;align-items:flex-start;gap:1rem;}
  .cookie{left:.75rem;right:.75rem;max-width:none;border-radius:var(--r);}
  .email-cap{padding:3rem 0;}
  .email-perks{gap:.875rem;}
}
@media(max-width:480px){
  :root{--nav-h:56px;}
  .logo-img{height:36px;}
  .nav-right{gap:.35rem;}
  .hero-eyebrow-line{display:none;}
  .hero-eyebrow .label{font-size:10px;}
  .htab{padding:6px 10px;font-size:10px;}
  .trust-grid{grid-template-columns:1fr;}
  .titem{border-right:none;border-bottom:1px solid rgba(255,255,255,.12);padding:1.1rem 1rem;}
  .titem:last-child{border-bottom:none;}
  .step{grid-template-columns:50px 1fr;}
  .step-n{width:50px;height:50px;font-size:1.3rem;}
  .inspo-grid{grid-template-columns:1fr 1fr;gap:.5rem;}
  .inspo-card{height: 100%; aspect-ratio: 1/1;}
  .email-perks{flex-direction:column;align-items:center;gap:.75rem;}
  .footer-bot-right a{font-size:12px;}
  .search-input-wrap{padding:.875rem 1rem;}
  .search-hints{padding:1rem;}
}
@media(max-width:375px){
  .hero-ctas .btn-lg{font-size:13px;padding:13px 16px;}
  .qi-ico{width:40px;height:40px;}
  .qi-title{font-size:13px;}
  .qi-sub{font-size:11px;}
  .rev-card{padding:1.25rem;}
  .cookie{padding:1.1rem;}
  .wrap,.wrap-narrow{padding:0 .875rem;}
}
@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{transition-duration:.01ms!important;animation-duration:.01ms!important;}
}
/* ═══════════════════════════════════════════
   CATALOG & PRODUCT GRID
═══════════════════════════════════════════ */
.catalog-header { padding: 3rem 0 2rem; text-align: center; border-bottom: 1px solid var(--rule); background: #fff; }
.breadcrumb { font-size: 12px; font-weight: 500; color: var(--text-3); margin-bottom: 1rem; letter-spacing: 0.05em; text-transform: uppercase; }
.breadcrumb a { color: var(--blue); transition: color var(--ease); }
.breadcrumb a:hover { color: var(--blue-dark); }
.catalog-desc { max-width: 600px; margin: 0.75rem auto 0; font-size: 1.05rem; color: var(--text-2); }

/* Filter Bar */
.filter-bar { background: var(--surface); padding: 1rem 0; position: sticky; top: 74px; z-index: 90; border-bottom: 1px solid var(--rule); }
.filter-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.filter-group { display: flex; align-items: center; gap: 0.75rem; }
.filter-select { padding: 8px 32px 8px 14px; border: 1.5px solid var(--rule); border-radius: 50px; background-color: #fff; font-size: 13px; font-weight: 500; color: var(--text); appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none' stroke='%231C1916' stroke-width='1.5' stroke-linecap='round'%3E%3Cpath d='M1 1l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; cursor: pointer; outline: none; }
.filter-select:focus { border-color: var(--blue); }

/* Product Grid */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 2rem; padding: 4rem 0; }
.product-card { background: #fff; border: 1px solid var(--rule); border-radius: var(--r); overflow: hidden; transition: all var(--ease); display: flex; flex-direction: column; }
.product-card:hover { border-color: var(--blue-mid); box-shadow: var(--sh-sm); transform: translateY(-2px); }
.product-img-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--surface-2); }
.product-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.product-card:hover .product-img { transform: scale(1.05); }
.product-info { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.product-title { font-family: var(--font-d); font-size: 1.35rem; font-weight: 600; margin-bottom: 0.25rem; color: var(--text); line-height: 1.2; }
.product-specs { font-size: 13px; color: var(--text-3); margin-bottom: 1.25rem; flex: 1; }
.product-action { border-top: 1px solid var(--rule); padding-top: 1.25rem; display: flex; justify-content: space-between; align-items: center; }
.product-price { font-weight: 600; font-size: 15px; color: var(--text); }
.btn-add { padding: 8px 16px; background: var(--blue-light); color: var(--blue-dark); font-weight: 600; font-size: 13px; border-radius: 50px; transition: all var(--ease); cursor: pointer; border: none; }
.btn-add:hover { background: var(--blue); color: #fff; }

/* SEO Footer Content */
.seo-content { background: var(--surface); padding: 4rem 0; }
.seo-content h2 { margin-bottom: 1rem; }
.seo-content p { color: var(--text-2); margin-bottom: 1.5rem; max-width: 800px; }

@media(max-width:768px){
  :root{--nav-h:62px;}
  .filter-bar { top: 62px; }
  .filter-inner { flex-direction: column; align-items: stretch; }
  .filter-group { flex-wrap: wrap; }
  .filter-select { flex: 1; }
}
@media(max-width:480px){
  .product-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

.quote-drawer { position:fixed; top:0; right:-400px; width:400px; height:100vh; background:#fff; z-index:1000; box-shadow:-5px 0 20px rgba(0,0,0,0.1); transition:right 0.3s ease; display:flex; flex-direction:column; padding:2rem; }
.quote-drawer.open { right:0; }
.drawer-overlay { position:fixed; inset:0; background:rgba(0,0,0,0.5); z-index:999; display:none; }
.drawer-overlay.open { display:block; }
.drawer-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:2rem; }
.drawer-items { flex:1; overflow-y:auto; display:flex; flex-direction:column; gap:1rem; }

/* Uniform Product Look */
.product-img-wrap { 
  background: #ffffff; /* Forces a white background */
  display: flex; 
  align-items: center; 
  justify-content: center; 
  padding: 1.5rem; /* Adds breathing room */
  border-bottom: 1px solid var(--rule);
}
.product-img { 
  object-fit: contain; /* Prevents cropping, shows the whole item */
  transition: transform 0.6s ease; 
}
