/* products.css — Product archive page styles
   Global variables & components are inherited from main.css */

/* ── TOKENS ─────────────────────────────────────────────────── */
:root{
  --ivory:#FAF9F7;--ivory-warm:#F5F3EF;--cream:#EDE9E3;--sand:#D4CFC6;
  --warm-gray:#A09A90;--stone:#7A746A;--graphite:#3A3632;--charcoal:#2A2826;
  --ink:#1A1918;--accent:#8B7355;--accent-light:#A68B6A;
  --font-display:'Cormorant Garamond',Georgia,serif;
  --font-body:'Jost',-apple-system,sans-serif;
  --text-2xs:.6875rem;--text-xs:.75rem;--text-sm:.8125rem;
  --text-base:.875rem;--text-md:.9375rem;--text-lg:1rem;
  --display-sm:clamp(1.25rem,2vw,1.75rem);
  --display-md:clamp(1.75rem,3vw,2.5rem);
  --display-lg:clamp(2rem,4vw,3rem);
  --leading-snug:1.3;--leading-normal:1.6;--leading-relaxed:1.75;
  --tracking-overline:.18em;--tracking-button:.1em;
  --container-width:1420px;--container-padding:clamp(1.5rem,3vw,4rem);
  --nav-height:72px;--section-lg:clamp(3rem,6vw,5rem);
  --border-subtle:1px solid rgba(58,54,50,.06);
  --border-default:1px solid rgba(58,54,50,.08);
  --border-medium:1px solid rgba(58,54,50,.15);
  --shadow-md:0 8px 30px rgba(58,54,50,.09);
  --shadow-lg:0 20px 56px rgba(0,0,0,.10);
  --dur-fast:.18s;--dur-base:.3s;--dur-slow:.45s;
  --filter-w:260px;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{font-size:16px;scroll-behavior:smooth;-webkit-font-smoothing:antialiased}
body{font-family:var(--font-body);font-weight:300;line-height:var(--leading-normal);color:var(--graphite);background:var(--ivory);overflow-x:hidden}
a{color:inherit;text-decoration:none}
button{font-family:inherit;cursor:pointer;border:none;background:none}
svg{display:block;flex-shrink:0}
ul{list-style:none}
img{display:block;max-width:100%}
.container{width:100%;max-width:var(--container-width);margin:0 auto;padding:0 var(--container-padding)}

/* REVEAL */
.reveal{opacity:0;transform:translateY(18px);transition:opacity .65s,transform .65s}
.reveal.is-visible{opacity:1;transform:none}
@keyframes fadeUp{from{opacity:0;transform:translateY(18px)}to{opacity:1;transform:none}}
@keyframes fadeIn{from{opacity:0}to{opacity:1}}

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.page-hero{
  position:relative;
  min-height:clamp(280px,36vw,420px);
  display:flex;align-items:flex-end;
  overflow:hidden;
}
.page-hero-bg{
  position:absolute;inset:0;
  background-image:url('https://images.unsplash.com/photo-1523293182086-7651a899d37f?w=1800&h=800&fit=crop&q=85');
  background-size:cover;background-position:center;
  filter:brightness(.42) saturate(.75);
}
.page-hero-bg::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(to top,rgba(26,25,24,.95) 0%,rgba(26,25,24,.45) 45%,rgba(26,25,24,.1) 100%);
}
.page-hero-body{
  position:relative;z-index:1;width:100%;
  padding:clamp(2rem,3.5vw,3rem) 0 clamp(2rem,3vw,2.5rem);
}
.page-hero-inner{max-width:640px}
.page-hero-eyebrow{
  display:inline-flex;align-items:center;gap:.625rem;
  font-size:var(--text-2xs);font-weight:500;letter-spacing:var(--tracking-overline);text-transform:uppercase;
  color:rgba(166,139,106,.7);margin-bottom:.875rem;
  opacity:0;animation:fadeUp .6s .1s forwards;
}
.page-hero-eyebrow::before{content:'';display:block;width:18px;height:1px;background:var(--accent-light);opacity:.6}
.page-hero-h1{
  font-family:var(--font-display);
  font-size:clamp(1.9rem,4.2vw,3.1rem);
  font-weight:300;color:var(--ivory);
  line-height:1.05;letter-spacing:-.015em;margin-bottom:.875rem;
  opacity:0;animation:fadeUp .8s .2s forwards;
}
.page-hero-h1 em{font-style:italic;color:var(--accent-light)}
.page-hero-rule{width:36px;height:1px;background:var(--accent);margin-bottom:.875rem;opacity:0;animation:fadeIn .5s .35s forwards}
.page-hero-desc{
  font-size:var(--text-base);font-weight:300;
  color:rgba(250,249,247,.38);line-height:var(--leading-relaxed);max-width:380px;
  opacity:0;animation:fadeUp .65s .4s forwards;
}

/* ══════════════════════════════════════════════════════════════
   BREADCRUMB
══════════════════════════════════════════════════════════════ */
.breadcrumb-bar{background:var(--ivory-warm);border-bottom:var(--border-default)}
.breadcrumb{display:flex;align-items:center;gap:.5rem;padding:.875rem 0;font-size:var(--text-xs);color:var(--stone);font-weight:300}
.breadcrumb a:hover{color:var(--graphite)}
.breadcrumb-sep{color:var(--sand);flex-shrink:0}
.breadcrumb span{color:var(--graphite);font-weight:400}

/* ══════════════════════════════════════════════════════════════
   TOOLBAR
══════════════════════════════════════════════════════════════ */
.toolbar{
  border-bottom:var(--border-default);
  position:sticky;top:0;z-index:100;
  backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);
  background:rgba(250,249,247,.94);
}
.toolbar-inner{
  display:flex;align-items:center;justify-content:space-between;
  gap:1rem;padding:.875rem 0;
}
.toolbar-count{font-size:var(--text-xs);color:var(--stone);font-weight:300;display:flex;align-items:center;gap:.5rem}
.toolbar-count strong{color:var(--graphite);font-weight:500}
.toolbar-right{display:flex;align-items:center;gap:1rem}
.toolbar-sort{display:flex;align-items:center;gap:.5rem;font-size:var(--text-xs);color:var(--stone)}
.toolbar-sort select{
  font-family:var(--font-body);font-size:var(--text-xs);font-weight:400;
  color:var(--graphite);background:transparent;border:none;
  outline:none;cursor:pointer;padding:.25rem 1.25rem .25rem .125rem;
  appearance:none;-webkit-appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%237A746A' stroke-width='1.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m19.5 8.25-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right 0 center;background-size:13px;
}
select:focus,select:focus-visible{outline:0!important;box-shadow:none!important;border:none!important}

select:focus{outline:none!important;box-shadow:none!important;border:none!important}
select:focus-visible{outline:none!important}
select:-moz-focusring{color:transparent;text-shadow:0 0 0 #3A3632}

/* ── FLOATING FILTER BUTTON (mobile only) ──────────────────── */
.filter-toggle-btn{
  display:none;
}
@media(max-width:1023px){
  .filter-toggle-btn{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:.35rem;
    position:fixed;
    left:0;
    top:50%;
    transform:translateY(-50%);
    z-index:150;
    background:rgba(250,249,247,.72);
    backdrop-filter:blur(14px) saturate(1.4);
    -webkit-backdrop-filter:blur(14px) saturate(1.4);
    border:var(--border-medium);
    border-left:none;
    border-radius:0 10px 10px 0;
    padding:.875rem .625rem;
    box-shadow:3px 0 18px rgba(58,54,50,.13);
    font-size:var(--text-2xs);
    font-weight:500;
    letter-spacing:.1em;
    text-transform:uppercase;
    color:var(--graphite);
    transition:background var(--dur-fast), box-shadow var(--dur-fast);
  }
  .filter-toggle-btn:hover{
    background:rgba(250,249,247,.92);
    box-shadow:3px 0 24px rgba(58,54,50,.18);
  }
  .filter-toggle-btn svg{
    width:18px;height:18px;
    color:var(--accent);
  }
  .filter-toggle-btn .ftb-label{
    writing-mode:vertical-rl;
    text-orientation:mixed;
    letter-spacing:.15em;
    font-size:.6rem;
    color:var(--stone);
    margin-top:.1rem;
  }
}

/* ══════════════════════════════════════════════════════════════
   LAYOUT
══════════════════════════════════════════════════════════════ */
.catalog-section{padding:var(--section-lg) 0;background:var(--ivory)}
.catalog-layout{
  display:grid;
  grid-template-columns:var(--filter-w) 1fr;
  gap:3.5rem;
  align-items:start;
}
@media(max-width:1023px){.catalog-layout{grid-template-columns:1fr}}

/* ══════════════════════════════════════════════════════════════
   FILTER SIDEBAR
══════════════════════════════════════════════════════════════ */
.filter-sidebar{
  position:sticky;
  top:calc(44px + 1.5rem);
}
@media(max-width:1023px){
  .filter-sidebar{
    position:fixed;inset:0;z-index:1510;
    display:flex;flex-direction:column;
    background:var(--ivory);
    transform:translateX(-100%);
    transition:transform var(--dur-slow);
    overflow-y:auto;
    width:min(320px,100vw);
    box-shadow:var(--shadow-lg);
    top:0;
  }
  .filter-sidebar.is-open{transform:translateX(0)}
}
.filter-header{
  display:flex;align-items:center;justify-content:space-between;
  padding-bottom:1.25rem;margin-bottom:1.25rem;
  border-bottom:var(--border-default);
}
@media(max-width:1023px){.filter-header{padding:1.5rem 1.5rem 1.25rem;margin-bottom:0}}
.filter-header-title{font-size:var(--text-xs);font-weight:500;letter-spacing:.14em;text-transform:uppercase;color:var(--graphite)}
.filter-clear{
  font-size:var(--text-2xs);font-weight:500;letter-spacing:.06em;text-transform:uppercase;
  color:var(--accent);cursor:pointer;transition:opacity var(--dur-fast);
  background:none;border:none;padding:0;
}
.filter-clear:hover{opacity:.6}
.filter-close-btn{display:none;padding:.25rem;color:var(--stone);transition:color var(--dur-fast);border:none;background:none;cursor:pointer}
.filter-close-btn svg{width:20px;height:20px}
.filter-close-btn:hover{color:var(--graphite)}
@media(max-width:1023px){
  .filter-close-btn{display:block}
  .filter-clear{display:none}
}
.filter-body{display:flex;flex-direction:column;gap:0}
@media(max-width:1023px){.filter-body{padding:0 1.5rem 2rem}}

.filter-group{border-bottom:var(--border-default)}
.filter-group-head{
  display:flex;align-items:center;justify-content:space-between;
  padding:1.125rem 0;cursor:pointer;
  font-size:var(--text-xs);font-weight:500;letter-spacing:.1em;text-transform:uppercase;
  color:var(--graphite);border:none;background:none;width:100%;text-align:left;
  transition:color var(--dur-fast);
}
.filter-group-head:hover{color:var(--accent)}
.filter-group-head svg{width:11px;height:11px;color:var(--warm-gray);transition:transform var(--dur-base)}
.filter-group.is-open .filter-group-head svg{transform:rotate(180deg)}
.filter-group-body{display:none;padding-bottom:1.25rem}
.filter-group.is-open .filter-group-body{display:block}

/* pill options */
.filter-pills{display:flex;flex-wrap:wrap;gap:.4rem}
.filter-pill{
  padding:.375rem .875rem;
  font-size:var(--text-xs);font-weight:400;letter-spacing:.04em;
  color:var(--stone);border:var(--border-medium);background:transparent;
  cursor:pointer;transition:all var(--dur-fast);white-space:nowrap;
}
.filter-pill:hover{border-color:var(--graphite);color:var(--graphite)}
.filter-pill.is-active{background:var(--graphite);color:var(--ivory);border-color:var(--graphite)}

/* price filter removed */

/* MOQ slider */
.moq-display{display:flex;justify-content:space-between;align-items:baseline;margin-bottom:.75rem}
.moq-val{font-size:var(--text-base);font-weight:400;color:var(--graphite)}
.moq-unit{font-size:var(--text-xs);color:var(--warm-gray);font-weight:300}
.single-range{
  -webkit-appearance:none;appearance:none;
  width:100%;height:2px;background:var(--sand);outline:none;cursor:pointer;border-radius:0;
}
.single-range::-webkit-slider-thumb{
  -webkit-appearance:none;width:16px;height:16px;
  background:var(--graphite);border-radius:50%;cursor:pointer;
  transition:background var(--dur-fast),transform var(--dur-fast);
  box-shadow:0 1px 4px rgba(0,0,0,.15);
}
.single-range::-webkit-slider-thumb:hover{background:var(--accent);transform:scale(1.2)}
.single-range::-moz-range-thumb{width:16px;height:16px;background:var(--graphite);border:none;border-radius:50%;cursor:pointer}

/* active filters chips */
.active-filters{
  display:flex;flex-wrap:wrap;gap:.375rem;
  margin-top:1.5rem;padding-top:1.25rem;
  border-top:var(--border-default);min-height:0;
}
.active-filters:empty{display:none}
.active-chip{
  display:inline-flex;align-items:center;gap:.375rem;
  padding:.3rem .625rem;background:var(--cream);
  font-size:var(--text-2xs);font-weight:400;color:var(--graphite);
  cursor:pointer;transition:background var(--dur-fast);
}
.active-chip:hover{background:var(--sand)}
.active-chip svg{width:10px;height:10px;color:var(--stone)}

/* ══════════════════════════════════════════════════════════════
   PRODUCT GRID
══════════════════════════════════════════════════════════════ */
.product-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.5rem;
}
@media(max-width:1200px){.product-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:640px){.product-grid{grid-template-columns:repeat(2,1fr);gap:.75rem}}

.product-card{
  display:flex;flex-direction:column;text-decoration:none;cursor:pointer;
  background:var(--ivory-warm);
  display:flex;flex-direction:column;
  transition:background var(--dur-base),transform var(--dur-base),box-shadow var(--dur-base);
  cursor:pointer;position:relative;overflow:hidden;
  border:var(--border-default);
}
.product-card:hover{
  background:var(--cream);
  transform:translateY(-2px);
  box-shadow:var(--shadow-md);
}

/* 1:1 aspect ratio images — no badges on image */
.product-img-wrap{
  position:relative;
  aspect-ratio:1/1;
  overflow:hidden;
  background:var(--cream);
}
.product-img-wrap img{
  width:100%;height:100%;object-fit:cover;
  transition:transform .75s cubic-bezier(.25,.46,.45,.94),filter .75s;
  filter:saturate(.85);
}
.product-card:hover .product-img-wrap img{
  transform:scale(1.06);
  filter:saturate(1);
}
/* quick-view removed */

.product-body{
  padding:1.25rem 1.375rem 1.375rem;
  display:flex;flex-direction:column;gap:.45rem;
  flex:1;
}
@media(max-width:640px){
  .product-body{padding:.875rem 1rem 1rem}
}
.product-brand{
  font-size:var(--text-2xs);font-weight:500;letter-spacing:.14em;text-transform:uppercase;
  color:var(--accent);line-height:1;
}
.product-name{
  font-family:var(--font-display);font-size:clamp(.95rem,1.5vw,1.2rem);
  font-weight:400;color:var(--graphite);line-height:1.2;
}
.product-variant{font-size:var(--text-xs);color:var(--warm-gray);font-weight:300;letter-spacing:.03em}
.product-meta{
  display:flex;align-items:center;justify-content:space-between;
  margin-top:auto;padding-top:.875rem;border-top:var(--border-subtle);
}
.product-price-wrap{display:flex;flex-direction:column;gap:.15rem}
.product-price-label{font-size:var(--text-2xs);color:var(--warm-gray);font-weight:300;letter-spacing:.05em;text-transform:uppercase}
.product-price{font-size:var(--text-md);font-weight:500;color:var(--graphite);letter-spacing:-.01em}
.product-price-unit{font-size:var(--text-xs);color:var(--stone);font-weight:300}
.product-moq{display:flex;flex-direction:column;align-items:flex-end;gap:.15rem}
.product-moq-label{font-size:var(--text-2xs);color:var(--warm-gray);font-weight:300;letter-spacing:.05em;text-transform:uppercase}
.product-moq-val{font-size:var(--text-sm);font-weight:500;color:var(--graphite)}

.product-add{
  display:inline-flex;align-items:center;gap:.4rem;
  margin-top:.75rem;padding:.45rem .875rem;
  background:transparent;border:var(--border-medium);
  font-size:var(--text-2xs);font-weight:500;letter-spacing:.08em;text-transform:uppercase;
  color:var(--stone);
  transition:all var(--dur-fast);
  align-self:flex-start;
}
.product-add svg{width:12px;height:12px;transition:transform var(--dur-base);flex-shrink:0}
.product-add:hover{background:var(--graphite);color:var(--ivory);border-color:var(--graphite)}
.product-add.in-cart{background:var(--accent);color:var(--ivory);border-color:var(--accent)}
.product-add:hover svg{transform:translateX(2px)}
@media(max-width:640px){
  .product-add{font-size:.6rem;padding:.4rem .625rem;gap:.3rem}
  .product-add svg{width:10px;height:10px}
}

/* no results */
.no-results{
  grid-column:1/-1;text-align:center;padding:5rem 2rem;color:var(--warm-gray);display:flex;flex-direction:column;align-items:center;justify-content:center;
}
.no-results svg{width:40px;height:40px;margin:0 auto 1.25rem;color:var(--sand)}
.no-results h3{font-family:var(--font-display);font-size:var(--display-sm);font-weight:300;color:var(--graphite);margin-bottom:.5rem}
.no-results p{font-size:var(--text-sm);font-weight:300;line-height:var(--leading-relaxed);max-width:360px;margin:0 auto}

/* overlay for mobile filter */
.filter-overlay{
  display:none;position:fixed;inset:0;z-index:1500;
  background:rgba(26,25,24,.5);
  opacity:0;transition:opacity var(--dur-slow);
}
.filter-overlay.is-visible{display:block}
.filter-overlay.is-active{opacity:1}

/* PAGINATION */
.pagination{
  display:flex;align-items:center;justify-content:center;gap:.375rem;
  margin-top:3rem;padding-top:2.5rem;border-top:var(--border-default);
}
.page-btn{
  width:38px;height:38px;display:flex;align-items:center;justify-content:center;
  font-size:var(--text-sm);font-weight:400;color:var(--stone);
  border:var(--border-medium);background:transparent;
  transition:all var(--dur-fast);cursor:pointer;
}
.page-btn:hover{border-color:var(--graphite);color:var(--graphite)}
.page-btn.is-active{background:var(--graphite);color:var(--ivory);border-color:var(--graphite)}
.page-btn.is-nav svg{width:13px;height:13px}
.page-btn.is-nav{color:var(--graphite)}
.page-btn:disabled{opacity:.3;cursor:default;pointer-events:none}

/* ══════════════════════════════════════════════════════════════
   ENQUIRY CART FLOAT
══════════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════════════════════════ */
.cta-section{
  position:relative;
  padding:clamp(4rem,8vw,7rem) 0;
  overflow:hidden;
}
.cta-bg{
  position:absolute;inset:0;
  background-image:url('https://images.unsplash.com/photo-1523293182086-7651a899d37f?w=1800&h=900&fit=crop&q=80');
  background-size:cover;background-position:center 30%;
  filter:brightness(.28) saturate(.6);
}
.cta-bg::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(135deg,rgba(26,25,24,.92) 0%,rgba(58,54,50,.75) 100%);
}
.cta-inner{
  position:relative;z-index:1;
  display:grid;grid-template-columns:1fr auto;
  gap:4rem;align-items:center;
}
@media(max-width:900px){.cta-inner{grid-template-columns:1fr;gap:3rem}}
.cta-eyebrow{
  display:inline-flex;align-items:center;gap:.625rem;
  font-size:.6875rem;font-weight:500;letter-spacing:.15em;text-transform:uppercase;
  color:rgba(166,139,106,.75);margin-bottom:1.25rem;
}
.cta-eyebrow::before{content:'';display:block;width:18px;height:1px;background:#A68B6A;opacity:.7}
.cta-heading{
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:clamp(2rem,4vw,3rem);
  font-weight:300;color:#FAF9F7;
  line-height:1.05;letter-spacing:-.015em;
  margin-bottom:1.25rem;
}
.cta-heading em{font-style:italic;color:#A68B6A}
.cta-desc{
  font-size:1rem;font-weight:300;
  color:rgba(250,249,247,.45);
  line-height:1.7;
  max-width:480px;margin-bottom:2.25rem;
}
.cta-actions{display:flex;align-items:center;gap:1rem;flex-wrap:wrap}
.cta-btn{
  display:inline-flex;align-items:center;gap:.625rem;
  font-family:'Jost',-apple-system,sans-serif;font-size:.75rem;font-weight:500;
  letter-spacing:.1em;text-transform:uppercase;
  padding:.875rem 1.875rem;
  transition:all .25s ease;cursor:pointer;
}
.cta-btn svg{width:14px;height:14px;transition:transform .25s ease}
.cta-btn-primary{
  background:#8B7355;color:#FAF9F7;border:1px solid #8B7355;
}
.cta-btn-primary:hover{background:#A68B6A;border-color:#A68B6A}
.cta-btn-primary:hover svg{transform:translateX(3px)}
.cta-btn-ghost{
  background:transparent;color:rgba(250,249,247,.65);
  border:1px solid rgba(250,249,247,.2);
}
.cta-btn-ghost:hover{color:#FAF9F7;border-color:rgba(250,249,247,.5)}
.cta-stats{
  display:grid;grid-template-columns:repeat(2,1fr);
  gap:2rem 2.5rem;
  flex-shrink:0;
}
@media(max-width:900px){.cta-stats{grid-template-columns:repeat(4,1fr);gap:1.5rem}}
@media(max-width:540px){.cta-stats{grid-template-columns:repeat(2,1fr)}}
.cta-stat{display:flex;flex-direction:column;gap:.375rem}
.cta-stat-num{
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:clamp(2rem,3.5vw,2.75rem);
  font-weight:300;color:#FAF9F7;
  line-height:1;letter-spacing:-.02em;
}
.cta-stat-num em{font-style:normal;font-size:.65em;color:#A68B6A}
.cta-stat-label{
  font-size:.75rem;font-weight:300;
  color:rgba(250,249,247,.4);letter-spacing:.08em;text-transform:uppercase;
}

/* Search icon button */

/* Language button — refined pill */

/* ══ SHARED MODAL OVERLAY ══════════════════════════════ */

/* ══ LANGUAGE MODAL ═════════════════════════════════════ */

.modal-close{
  width:36px;height:36px;flex-shrink:0;display:flex;align-items:center;justify-content:center;
  color:#A09A90;cursor:pointer;background:none;border:1px solid rgba(58,54,50,.08);
  transition:all .2s;margin-top:.125rem;
}
.modal-close:hover{background:#3A3632;color:#FAF9F7;border-color:#3A3632}
.modal-close svg{width:14px;height:14px}

/* 2-column grid layout */

/* Text-badge code (replaces emoji flags) */

/* ══ SEARCH MODAL ═══════════════════════════════════════ */
#searchOverlay{z-index:2000}

/* Trending */

/* Results — list layout */

.search-spinner{width:18px;height:18px;border:2px solid #D4CFC6;border-top-color:#8B7355;border-radius:50%;animation:spin .7s linear infinite;flex-shrink:0}

/* ── HERO ─────────────────────────────────────────────── */
.hero{position:relative;min-height:calc(100svh - 72px);display:flex;align-items:center;background:linear-gradient(160deg,#2A2826 0%,#1A1918 60%,#0e0d0c 100%);overflow:hidden}
.hero-tex{position:absolute;inset:0;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Ccircle cx='40' cy='40' r='.6' fill='%23fff' fill-opacity='.04'/%3E%3Ccircle cx='0' cy='0' r='.6' fill='%23fff' fill-opacity='.04'/%3E%3Ccircle cx='80' cy='80' r='.6' fill='%23fff' fill-opacity='.04'/%3E%3C/svg%3E");pointer-events:none}
.hero-glow{position:absolute;width:600px;height:600px;background:radial-gradient(circle,rgba(139,115,85,.11) 0%,transparent 70%);top:-80px;right:5%;pointer-events:none}

.hero-eyebrow{display:inline-flex;align-items:center;gap:.75rem;font-size:.6875rem;font-weight:500;letter-spacing:.18em;text-transform:uppercase;color:#A68B6A;margin-bottom:1.75rem;opacity:0;animation:fadeUp .8s .1s forwards}
.hero-eyebrow-line{display:block;width:32px;height:1px;background:#8B7355;opacity:.6}
.hero-title{font-family:'Cormorant Garamond',Georgia,serif;font-size:clamp(2.25rem,5vw,4.5rem);font-weight:300;color:#FAF9F7;line-height:1;letter-spacing:-.015em;margin-bottom:.15em;opacity:0;animation:fadeUp .9s .2s forwards}
.hero-subtitle{font-family:'Cormorant Garamond',Georgia,serif;font-size:var(--display-xl);font-weight:300;color:#A68B6A;line-height:1.1;letter-spacing:-.01em;margin-bottom:2rem;opacity:0;animation:fadeUp .9s .3s forwards;font-style:italic}
.hero-desc{font-size:1.0625rem;font-weight:300;color:rgba(250,249,247,.52);line-height:1.75;max-width:480px;margin-bottom:2.5rem;opacity:0;animation:fadeUp .8s .4s forwards}
.hero-actions{display:flex;flex-wrap:wrap;gap:1rem;opacity:0;animation:fadeUp .8s .5s forwards}
.hero-stats{display:flex;gap:2rem;padding-top:2.5rem;border-top:1px solid rgba(250,249,247,.07);margin-top:.5rem;opacity:0;animation:fadeUp .8s .6s forwards;flex-wrap:wrap}
.hero-stat-num{font-family:'Cormorant Garamond',Georgia,serif;font-size:clamp(1.5rem,3vw,2.25rem);font-weight:300;color:#FAF9F7;line-height:1;margin-bottom:.25rem}
.hero-stat-label{font-size:.75rem;color:rgba(250,249,247,.38);letter-spacing:.06em;text-transform:uppercase}
.hero-photo-grid{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.hero-photo-card{position:relative;overflow:hidden;border:1px solid rgba(255,255,255,.07);transition:border-color .4s,transform .4s}
.hero-photo-card:hover{border-color:rgba(139,115,85,.35);transform:translateY(-3px)}
.hero-photo-card::before{content:'';display:block;padding-top:140%}
.hero-photo-card:nth-child(2n){margin-top:70px}
.hero-photo-card img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block;transition:transform .6s;filter:brightness(.88) contrast(1.04)}
.hero-photo-card:hover img{transform:scale(1.06)}
.hero-photo-label{position:absolute;bottom:0;left:0;right:0;padding:.875rem 1rem;background:linear-gradient(to top,rgba(10,9,8,.85) 0%,transparent 100%);text-align:center}
.hero-photo-brand{font-size:.6875rem;font-weight:500;letter-spacing:.14em;text-transform:uppercase;color:rgba(250,249,247,.45);display:block;margin-bottom:2px}
.hero-photo-name{font-family:'Cormorant Garamond',Georgia,serif;font-size:.875rem;font-style:italic;color:rgba(250,249,247,.82);display:block}

/* ── BRANDS ───────────────────────────────────────────── */
.brands-section{background:#F5F3EF;padding:clamp(4rem,8vw,7rem) 0}
.brands-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.25rem}
@media(min-width:640px){.brands-grid{grid-template-columns:repeat(3,1fr)}}
@media(min-width:1024px){.brands-grid{grid-template-columns:repeat(4,1fr);gap:1.5rem}}
.brand-card{position:relative;background:#FAF9F7;border:1px solid rgba(58,54,50,.08);overflow:hidden;transition:border-color .4s,transform .4s,box-shadow .4s;cursor:pointer;display:block}
.brand-card:hover{border-color:#3A3632;transform:translateY(-5px);box-shadow:0 16px 48px rgba(0,0,0,.10)}
.brand-card-image{aspect-ratio:4/3;display:flex;align-items:center;justify-content:center;position:relative;overflow:hidden;padding:1.5rem}
.brand-card-bg{position:absolute;inset:0;opacity:0;transition:opacity .4s}.brand-card:hover .brand-card-bg{opacity:1}
.brand-card-monogram{position:relative;z-index:1;font-family:'Cormorant Garamond',Georgia,serif;font-size:clamp(2rem,5vw,3.5rem);font-weight:300;color:#D4CFC6;letter-spacing:-.02em;line-height:1;transition:color .4s,transform .4s}
.brand-card:hover .brand-card-monogram{color:#A09A90;transform:scale(1.04)}
.brand-card-badge{position:absolute;top:.625rem;right:.625rem;z-index:2;font-size:9px;font-weight:500;letter-spacing:.1em;text-transform:uppercase;padding:3px 7px;background:#8B7355;color:#FAF9F7;line-height:1.6}
.brand-card-info{padding:.875rem 1rem 1rem;text-align:center;border-top:1px solid rgba(58,54,50,.06)}
.brand-card-country{font-size:.6875rem;font-weight:500;letter-spacing:.1em;text-transform:uppercase;color:#8B7355;margin-bottom:.25rem}
.brand-card-name{font-size:.9375rem;font-weight:500;color:#3A3632;margin-bottom:.25rem;transition:color .2s}.brand-card:hover .brand-card-name{color:#8B7355}
.brand-card-count{font-size:.75rem;color:#7A746A}
.brand-card-arrow{position:absolute;bottom:.875rem;right:.875rem;color:#8B7355;opacity:0;transform:translateX(-4px);transition:all .3s;display:flex;align-items:center}
.brand-card:hover .brand-card-arrow{opacity:1;transform:translateX(0)}

/* ── PRODUCTS ─────────────────────────────────────────── */
.products-section{background:#FAF9F7;padding:clamp(4rem,8vw,7rem) 0}
.products-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.25rem}
@media(min-width:768px){.products-grid{grid-template-columns:repeat(3,1fr)}}
@media(min-width:1200px){.products-grid{grid-template-columns:repeat(4,1fr);gap:1.5rem}}
.product-card{background:#FAF9F7;border:1px solid rgba(58,54,50,.08);overflow:hidden;transition:border-color .4s,box-shadow .4s;display:flex;flex-direction:column;cursor:pointer;text-decoration:none;color:inherit}
.product-card:hover{border-color:#3A3632;box-shadow:0 8px 32px rgba(58,54,50,.10)}
.product-card-image{position:relative;overflow:hidden;flex-shrink:0}
.product-card-badge{position:absolute;top:.625rem;left:.625rem;z-index:2;font-size:.6875rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;padding:3px 8px;line-height:1.6}
.product-card-badge.is-new{background:#8B7355;color:#FAF9F7}
.product-card-badge.is-hot{background:#C45C4A;color:#FAF9F7}
.product-card-badge.is-sale{background:#C45C4A;color:#FAF9F7}
.product-card-info{padding:.875rem 1rem 1.125rem;display:flex;flex-direction:column;flex:1;border-top:1px solid rgba(58,54,50,.06)}
.product-card-brand{font-size:.6875rem;font-weight:500;letter-spacing:.1em;text-transform:uppercase;color:#7A746A;margin-bottom:.3rem}
.product-card-name{font-size:.9375rem;font-weight:300;color:#3A3632;line-height:1.35;margin-bottom:.75rem;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.product-card:hover .product-card-name{color:#1A1918}
.product-card-footer{margin-top:auto}
.product-card-price{font-size:clamp(1.1rem,2vw,1.375rem);font-weight:400;color:#3A3632;margin-bottom:.25rem;font-family:'Cormorant Garamond',Georgia,serif;letter-spacing:-.01em}
.product-card-b2b{font-size:.6875rem;font-weight:500;color:#8B7355;letter-spacing:.06em;text-transform:uppercase;margin-bottom:.2rem}
.product-card-moq{font-size:.6875rem;color:#7A746A;font-weight:300}
.product-card-price-row{display:flex;align-items:baseline;gap:.5rem;margin-bottom:.25rem}
.product-card-price-orig{font-size:.875rem;color:#7A746A;text-decoration:line-through;font-weight:300}

/* Product photo — portrait 4:5 */
.product-card-photo{width:100%;aspect-ratio:4/5;object-fit:cover;display:block;transition:transform .6s}
.product-card:hover .product-card-photo{transform:scale(1.04)}

/* Product tabs */
.prod-tabs{display:flex;gap:.5rem;margin-bottom:2rem;border-bottom:1px solid rgba(58,54,50,.08);flex-wrap:wrap}
.prod-tab{display:inline-flex;align-items:center;gap:.5rem;font-family:'Jost',-apple-system,sans-serif;font-size:.75rem;font-weight:500;letter-spacing:.08em;text-transform:uppercase;padding:.75rem 1.25rem;color:#7A746A;border:none;border-bottom:2px solid transparent;background:none;cursor:pointer;transition:color .2s,border-color .2s;margin-bottom:-1px}
.prod-tab svg{width:14px;height:14px}.prod-tab:hover{color:#3A3632}
.prod-tab.is-active{color:#3A3632;border-bottom-color:#8B7355}
.prod-panel{display:none}.prod-panel.is-active{display:block}

/* ── WHY ──────────────────────────────────────────────── */
.why-section{background:linear-gradient(160deg,#2A2826 0%,#1A1918 100%);padding:clamp(4rem,8vw,7rem) 0;position:relative;overflow:hidden}
.why-tex{position:absolute;inset:0;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cg fill='%23fff' fill-opacity='.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");pointer-events:none}
.why-inner{position:relative;z-index:1}
.why-header{display:grid;grid-template-columns:1fr;gap:2rem;margin-bottom:4rem}
@media(min-width:768px){.why-header{grid-template-columns:1fr 1fr;align-items:end}}
.why-header-left .section-eyebrow{color:#A68B6A}.why-header-left .section-title{color:#FAF9F7}
.why-header-right .section-desc{color:rgba(250,249,247,.48)}
.why-grid{display:grid;grid-template-columns:1fr;gap:1px;background:rgba(255,255,255,.055);border:1px solid rgba(255,255,255,.055)}
@media(min-width:640px){.why-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.why-grid{grid-template-columns:repeat(4,1fr)}}
.why-item{padding:2.25rem 2rem;background:#1A1918;transition:background .4s}.why-item:hover{background:rgba(255,255,255,.02)}
.why-item-num{font-family:'Cormorant Garamond',Georgia,serif;font-size:3.5rem;font-weight:300;color:rgba(255,255,255,.055);line-height:1;margin-bottom:1.25rem;transition:color .4s}
.why-item:hover .why-item-num{color:rgba(139,115,85,.14)}
.why-item-icon{width:44px;height:44px;display:flex;align-items:center;justify-content:center;border:1px solid rgba(139,115,85,.22);margin-bottom:1.25rem;transition:border-color .4s,background .4s}
.why-item:hover .why-item-icon{border-color:#8B7355;background:rgba(139,115,85,.08)}.why-item-icon svg{width:20px;height:20px;color:#8B7355}
.why-item-title{font-family:'Cormorant Garamond',Georgia,serif;font-size:clamp(1.125rem,2vw,1.375rem);font-weight:400;color:#FAF9F7;margin-bottom:.75rem;line-height:1.25}
.why-item-desc{font-size:.875rem;color:rgba(250,249,247,.42);line-height:1.75;font-weight:300}

/* ── BLOG ─────────────────────────────────────────────── */
.blog-section{background:#F5F3EF;padding:clamp(4rem,8vw,7rem) 0}
.blog-grid{display:grid;grid-template-columns:1fr;gap:1.5rem}@media(min-width:768px){.blog-grid{grid-template-columns:repeat(3,1fr)}}
.blog-card{background:#FAF9F7;border:1px solid rgba(58,54,50,.06);overflow:hidden;display:flex;flex-direction:column;transition:box-shadow .4s,transform .4s;cursor:pointer}
.blog-card:hover{box-shadow:0 8px 30px rgba(58,54,50,.10);transform:translateY(-5px)}
.blog-card-image{position:relative;aspect-ratio:16/9;overflow:hidden;flex-shrink:0}
.blog-card-img-bg{width:100%;height:100%;transition:transform .6s}.blog-card:hover .blog-card-img-bg{transform:scale(1.04)}
.blog-card-category{position:absolute;bottom:1rem;left:1rem;z-index:2;font-size:.6875rem;font-weight:500;letter-spacing:.1em;text-transform:uppercase;padding:4px 10px;background:rgba(250,249,247,.95);color:#3A3632;border:1px solid rgba(58,54,50,.06);line-height:1.6}
.blog-card-body{padding:1.5rem;display:flex;flex-direction:column;flex:1}
.blog-card-meta{display:flex;align-items:center;gap:.625rem;font-size:.75rem;color:#A09A90;margin-bottom:.875rem}
.blog-card-meta-sep{width:3px;height:3px;border-radius:50%;background:#D4CFC6;flex-shrink:0}
.blog-card-title{font-family:'Cormorant Garamond',Georgia,serif;font-size:clamp(1.0625rem,2vw,1.25rem);font-weight:400;color:#3A3632;line-height:1.3;margin-bottom:.75rem;transition:color .2s;flex:1;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}
.blog-card:hover .blog-card-title{color:#8B7355}
.blog-card-excerpt{font-size:.875rem;color:#7A746A;line-height:1.75;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;margin-bottom:1.25rem;font-weight:300}
.blog-card-footer{margin-top:auto;padding-top:1.125rem;border-top:1px solid rgba(58,54,50,.06)}

/* ── CTA ──────────────────────────────────────────────── */
.cta-section{background:linear-gradient(150deg,#2A2826 0%,#1A1918 100%);padding:clamp(4rem,8vw,7rem) 0;position:relative;overflow:hidden;text-align:center}
.cta-section::before{content:'';position:absolute;inset:0;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cg fill='%23fff' fill-opacity='.018'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");pointer-events:none}
.cta-glow{position:absolute;width:500px;height:500px;background:radial-gradient(circle,rgba(139,115,85,.085) 0%,transparent 70%);top:50%;left:50%;transform:translate(-50%,-50%);pointer-events:none}
.cta-inner{position:relative;z-index:1;max-width:660px;margin:0 auto;padding:0 clamp(1.5rem,3vw,4rem)}
.cta-eyebrow{font-size:.6875rem;font-weight:500;letter-spacing:.18em;text-transform:uppercase;color:#A68B6A;margin-bottom:1.25rem;display:flex;align-items:center;justify-content:center;gap:.75rem}
.cta-eyebrow::before,.cta-eyebrow::after{content:'';display:block;width:24px;height:1px;background:#8B7355;opacity:.5}
.cta-title{font-family:'Cormorant Garamond',Georgia,serif;font-size:clamp(2rem,4vw,3rem);font-weight:300;color:#FAF9F7;line-height:1.3;margin-bottom:1.25rem}
.cta-desc{font-size:1.0625rem;font-weight:300;color:rgba(250,249,247,.48);line-height:1.75;max-width:500px;margin:0 auto 2.5rem}
.cta-actions{display:flex;flex-wrap:wrap;justify-content:center;gap:1rem;margin-bottom:3rem}
.cta-contact-bar{display:flex;flex-wrap:wrap;justify-content:center;gap:2.5rem;padding-top:2.5rem;border-top:1px solid rgba(250,249,247,.09)}
.cta-contact-item{display:flex;align-items:center;gap:.625rem}
.cta-contact-item svg{width:16px;height:16px;color:#8B7355;flex-shrink:0}
.cta-contact-val{font-size:.875rem;color:rgba(250,249,247,.65);font-weight:300}

/* ── FOOTER ───────────────────────────────────────────── */

/* ── MISC ─────────────────────────────────────────────── */
.back-to-top{position:fixed;bottom:2rem;right:2rem;width:44px;height:44px;background:#3A3632;color:#FAF9F7;display:flex;align-items:center;justify-content:center;opacity:0;pointer-events:none;transition:all .4s;z-index:100;cursor:pointer;border:none}
.back-to-top.is-visible{opacity:1;pointer-events:all}.back-to-top:hover{background:#1A1918;transform:translateY(-3px)}.back-to-top svg{width:18px;height:18px}
.reveal{opacity:0;transform:translateY(22px);transition:opacity .7s .35s,transform .7s .35s}.reveal.is-visible{opacity:1;transform:translateY(0)}
@keyframes fadeUp{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}
@keyframes fadeIn{from{opacity:0}to{opacity:1}}
@keyframes spin{to{transform:rotate(360deg)}}
@media(max-width:599px){.lang-btn-code,.lang-btn-chevron{display:none}}
@media(max-width:767px){.hero-stats{gap:1.25rem}.why-item{padding:1.75rem 1.5rem}}

/* ── MISC ─────────────────────────────────────────────── */
.back-to-top{position:fixed;bottom:2rem;right:2rem;width:44px;height:44px;background:#3A3632;color:#FAF9F7;display:flex;align-items:center;justify-content:center;opacity:0;pointer-events:none;transition:all .4s;z-index:100;cursor:pointer;border:none}
.back-to-top.is-visible{opacity:1;pointer-events:all}.back-to-top:hover{background:#1A1918;transform:translateY(-3px)}.back-to-top svg{width:18px;height:18px}
.reveal{opacity:0;transform:translateY(22px);transition:opacity .7s .35s,transform .7s .35s}.reveal.is-visible{opacity:1;transform:translateY(0)}
@keyframes fadeUp{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}
@keyframes fadeIn{from{opacity:0}to{opacity:1}}
@keyframes spin{to{transform:rotate(360deg)}}
@media(max-width:599px){.lang-btn-code,.lang-btn-chevron{display:none}}
@media(max-width:767px){.hero-stats{gap:1.25rem}.why-item{padding:1.75rem 1.5rem}}

/* ══ LANGUAGE MODAL ═════════════════════════════════════ */

.modal-close{
  width:36px;height:36px;flex-shrink:0;display:flex;align-items:center;justify-content:center;
  color:#A09A90;cursor:pointer;background:none;border:1px solid rgba(58,54,50,.08);
  transition:all .2s;margin-top:.125rem;
}
.modal-close:hover{background:#3A3632;color:#FAF9F7;border-color:#3A3632}
.modal-close svg{width:14px;height:14px}

/* 2-column grid layout */

/* Text-badge code (replaces emoji flags) */

/* ══ SEARCH MODAL ═══════════════════════════════════════ */
#searchOverlay{z-index:2000}

/* Trending */

/* Results — list layout */

.search-spinner{width:18px;height:18px;border:2px solid #D4CFC6;border-top-color:#8B7355;border-radius:50%;animation:spin .7s linear infinite;flex-shrink:0}

/* ── HERO ─────────────────────────────────────────────── */
.hero{position:relative;min-height:calc(100svh - 72px);display:flex;align-items:center;background:linear-gradient(160deg,#2A2826 0%,#1A1918 60%,#0e0d0c 100%);overflow:hidden}
.hero-tex{position:absolute;inset:0;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Ccircle cx='40' cy='40' r='.6' fill='%23fff' fill-opacity='.04'/%3E%3Ccircle cx='0' cy='0' r='.6' fill='%23fff' fill-opacity='.04'/%3E%3Ccircle cx='80' cy='80' r='.6' fill='%23fff' fill-opacity='.04'/%3E%3C/svg%3E");pointer-events:none}
.hero-glow{position:absolute;width:600px;height:600px;background:radial-gradient(circle,rgba(139,115,85,.11) 0%,transparent 70%);top:-80px;right:5%;pointer-events:none}

.hero-eyebrow{display:inline-flex;align-items:center;gap:.75rem;font-size:.6875rem;font-weight:500;letter-spacing:.18em;text-transform:uppercase;color:#A68B6A;margin-bottom:1.75rem;opacity:0;animation:fadeUp .8s .1s forwards}
.hero-eyebrow-line{display:block;width:32px;height:1px;background:#8B7355;opacity:.6}
.hero-title{font-family:'Cormorant Garamond',Georgia,serif;font-size:clamp(2.25rem,5vw,4.5rem);font-weight:300;color:#FAF9F7;line-height:1;letter-spacing:-.015em;margin-bottom:.15em;opacity:0;animation:fadeUp .9s .2s forwards}
.hero-subtitle{font-family:'Cormorant Garamond',Georgia,serif;font-size:var(--display-xl);font-weight:300;color:#A68B6A;line-height:1.1;letter-spacing:-.01em;margin-bottom:2rem;opacity:0;animation:fadeUp .9s .3s forwards;font-style:italic}
.hero-desc{font-size:1.0625rem;font-weight:300;color:rgba(250,249,247,.52);line-height:1.75;max-width:480px;margin-bottom:2.5rem;opacity:0;animation:fadeUp .8s .4s forwards}
.hero-actions{display:flex;flex-wrap:wrap;gap:1rem;opacity:0;animation:fadeUp .8s .5s forwards}
.hero-stats{display:flex;gap:2rem;padding-top:2.5rem;border-top:1px solid rgba(250,249,247,.07);margin-top:.5rem;opacity:0;animation:fadeUp .8s .6s forwards;flex-wrap:wrap}
.hero-stat-num{font-family:'Cormorant Garamond',Georgia,serif;font-size:clamp(1.5rem,3vw,2.25rem);font-weight:300;color:#FAF9F7;line-height:1;margin-bottom:.25rem}
.hero-stat-label{font-size:.75rem;color:rgba(250,249,247,.38);letter-spacing:.06em;text-transform:uppercase}
.hero-photo-grid{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.hero-photo-card{position:relative;overflow:hidden;border:1px solid rgba(255,255,255,.07);transition:border-color .4s,transform .4s}
.hero-photo-card:hover{border-color:rgba(139,115,85,.35);transform:translateY(-3px)}
.hero-photo-card::before{content:'';display:block;padding-top:140%}
.hero-photo-card:nth-child(2n){margin-top:70px}
.hero-photo-card img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block;transition:transform .6s;filter:brightness(.88) contrast(1.04)}
.hero-photo-card:hover img{transform:scale(1.06)}
.hero-photo-label{position:absolute;bottom:0;left:0;right:0;padding:.875rem 1rem;background:linear-gradient(to top,rgba(10,9,8,.85) 0%,transparent 100%);text-align:center}
.hero-photo-brand{font-size:.6875rem;font-weight:500;letter-spacing:.14em;text-transform:uppercase;color:rgba(250,249,247,.45);display:block;margin-bottom:2px}
.hero-photo-name{font-family:'Cormorant Garamond',Georgia,serif;font-size:.875rem;font-style:italic;color:rgba(250,249,247,.82);display:block}

/* ── BRANDS ───────────────────────────────────────────── */
.brands-section{background:#F5F3EF;padding:clamp(4rem,8vw,7rem) 0}
.brands-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.25rem}
@media(min-width:640px){.brands-grid{grid-template-columns:repeat(3,1fr)}}
@media(min-width:1024px){.brands-grid{grid-template-columns:repeat(4,1fr);gap:1.5rem}}
.brand-card{position:relative;background:#FAF9F7;border:1px solid rgba(58,54,50,.08);overflow:hidden;transition:border-color .4s,transform .4s,box-shadow .4s;cursor:pointer;display:block}
.brand-card:hover{border-color:#3A3632;transform:translateY(-5px);box-shadow:0 16px 48px rgba(0,0,0,.10)}
.brand-card-image{aspect-ratio:4/3;display:flex;align-items:center;justify-content:center;position:relative;overflow:hidden;padding:1.5rem}
.brand-card-bg{position:absolute;inset:0;opacity:0;transition:opacity .4s}.brand-card:hover .brand-card-bg{opacity:1}
.brand-card-monogram{position:relative;z-index:1;font-family:'Cormorant Garamond',Georgia,serif;font-size:clamp(2rem,5vw,3.5rem);font-weight:300;color:#D4CFC6;letter-spacing:-.02em;line-height:1;transition:color .4s,transform .4s}
.brand-card:hover .brand-card-monogram{color:#A09A90;transform:scale(1.04)}
.brand-card-badge{position:absolute;top:.625rem;right:.625rem;z-index:2;font-size:9px;font-weight:500;letter-spacing:.1em;text-transform:uppercase;padding:3px 7px;background:#8B7355;color:#FAF9F7;line-height:1.6}
.brand-card-info{padding:.875rem 1rem 1rem;text-align:center;border-top:1px solid rgba(58,54,50,.06)}
.brand-card-country{font-size:.6875rem;font-weight:500;letter-spacing:.1em;text-transform:uppercase;color:#8B7355;margin-bottom:.25rem}
.brand-card-name{font-size:.9375rem;font-weight:500;color:#3A3632;margin-bottom:.25rem;transition:color .2s}.brand-card:hover .brand-card-name{color:#8B7355}
.brand-card-count{font-size:.75rem;color:#7A746A}
.brand-card-arrow{position:absolute;bottom:.875rem;right:.875rem;color:#8B7355;opacity:0;transform:translateX(-4px);transition:all .3s;display:flex;align-items:center}
.brand-card:hover .brand-card-arrow{opacity:1;transform:translateX(0)}

/* ── PRODUCTS ─────────────────────────────────────────── */
.products-section{background:#FAF9F7;padding:clamp(4rem,8vw,7rem) 0}
.products-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.25rem}
@media(min-width:768px){.products-grid{grid-template-columns:repeat(3,1fr)}}
@media(min-width:1200px){.products-grid{grid-template-columns:repeat(4,1fr);gap:1.5rem}}
.product-card{background:#FAF9F7;border:1px solid rgba(58,54,50,.08);overflow:hidden;transition:border-color .4s,box-shadow .4s;display:flex;flex-direction:column;cursor:pointer;text-decoration:none;color:inherit}
.product-card:hover{border-color:#3A3632;box-shadow:0 8px 32px rgba(58,54,50,.10)}
.product-card-image{position:relative;overflow:hidden;flex-shrink:0}
.product-card-badge{position:absolute;top:.625rem;left:.625rem;z-index:2;font-size:.6875rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;padding:3px 8px;line-height:1.6}
.product-card-badge.is-new{background:#8B7355;color:#FAF9F7}
.product-card-badge.is-hot{background:#C45C4A;color:#FAF9F7}
.product-card-badge.is-sale{background:#C45C4A;color:#FAF9F7}
.product-card-info{padding:.875rem 1rem 1.125rem;display:flex;flex-direction:column;flex:1;border-top:1px solid rgba(58,54,50,.06)}
.product-card-brand{font-size:.6875rem;font-weight:500;letter-spacing:.1em;text-transform:uppercase;color:#7A746A;margin-bottom:.3rem}
.product-card-name{font-size:.9375rem;font-weight:300;color:#3A3632;line-height:1.35;margin-bottom:.75rem;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.product-card:hover .product-card-name{color:#1A1918}
.product-card-footer{margin-top:auto}
.product-card-price{font-size:clamp(1.1rem,2vw,1.375rem);font-weight:400;color:#3A3632;margin-bottom:.25rem;font-family:'Cormorant Garamond',Georgia,serif;letter-spacing:-.01em}
.product-card-b2b{font-size:.6875rem;font-weight:500;color:#8B7355;letter-spacing:.06em;text-transform:uppercase;margin-bottom:.2rem}
.product-card-moq{font-size:.6875rem;color:#7A746A;font-weight:300}
.product-card-price-row{display:flex;align-items:baseline;gap:.5rem;margin-bottom:.25rem}
.product-card-price-orig{font-size:.875rem;color:#7A746A;text-decoration:line-through;font-weight:300}

/* Product photo — portrait 4:5 */
.product-card-photo{width:100%;aspect-ratio:4/5;object-fit:cover;display:block;transition:transform .6s}
.product-card:hover .product-card-photo{transform:scale(1.04)}

/* Product tabs */
.prod-tabs{display:flex;gap:.5rem;margin-bottom:2rem;border-bottom:1px solid rgba(58,54,50,.08);flex-wrap:wrap}
.prod-tab{display:inline-flex;align-items:center;gap:.5rem;font-family:'Jost',-apple-system,sans-serif;font-size:.75rem;font-weight:500;letter-spacing:.08em;text-transform:uppercase;padding:.75rem 1.25rem;color:#7A746A;border:none;border-bottom:2px solid transparent;background:none;cursor:pointer;transition:color .2s,border-color .2s;margin-bottom:-1px}
.prod-tab svg{width:14px;height:14px}.prod-tab:hover{color:#3A3632}
.prod-tab.is-active{color:#3A3632;border-bottom-color:#8B7355}
.prod-panel{display:none}.prod-panel.is-active{display:block}

/* ── WHY ──────────────────────────────────────────────── */
.why-section{background:linear-gradient(160deg,#2A2826 0%,#1A1918 100%);padding:clamp(4rem,8vw,7rem) 0;position:relative;overflow:hidden}
.why-tex{position:absolute;inset:0;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cg fill='%23fff' fill-opacity='.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");pointer-events:none}
.why-inner{position:relative;z-index:1}
.why-header{display:grid;grid-template-columns:1fr;gap:2rem;margin-bottom:4rem}
@media(min-width:768px){.why-header{grid-template-columns:1fr 1fr;align-items:end}}
.why-header-left .section-eyebrow{color:#A68B6A}.why-header-left .section-title{color:#FAF9F7}
.why-header-right .section-desc{color:rgba(250,249,247,.48)}
.why-grid{display:grid;grid-template-columns:1fr;gap:1px;background:rgba(255,255,255,.055);border:1px solid rgba(255,255,255,.055)}
@media(min-width:640px){.why-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.why-grid{grid-template-columns:repeat(4,1fr)}}
.why-item{padding:2.25rem 2rem;background:#1A1918;transition:background .4s}.why-item:hover{background:rgba(255,255,255,.02)}
.why-item-num{font-family:'Cormorant Garamond',Georgia,serif;font-size:3.5rem;font-weight:300;color:rgba(255,255,255,.055);line-height:1;margin-bottom:1.25rem;transition:color .4s}
.why-item:hover .why-item-num{color:rgba(139,115,85,.14)}
.why-item-icon{width:44px;height:44px;display:flex;align-items:center;justify-content:center;border:1px solid rgba(139,115,85,.22);margin-bottom:1.25rem;transition:border-color .4s,background .4s}
.why-item:hover .why-item-icon{border-color:#8B7355;background:rgba(139,115,85,.08)}.why-item-icon svg{width:20px;height:20px;color:#8B7355}
.why-item-title{font-family:'Cormorant Garamond',Georgia,serif;font-size:clamp(1.125rem,2vw,1.375rem);font-weight:400;color:#FAF9F7;margin-bottom:.75rem;line-height:1.25}
.why-item-desc{font-size:.875rem;color:rgba(250,249,247,.42);line-height:1.75;font-weight:300}

/* ── BLOG ─────────────────────────────────────────────── */
.blog-section{background:#F5F3EF;padding:clamp(4rem,8vw,7rem) 0}
.blog-grid{display:grid;grid-template-columns:1fr;gap:1.5rem}@media(min-width:768px){.blog-grid{grid-template-columns:repeat(3,1fr)}}
.blog-card{background:#FAF9F7;border:1px solid rgba(58,54,50,.06);overflow:hidden;display:flex;flex-direction:column;transition:box-shadow .4s,transform .4s;cursor:pointer}
.blog-card:hover{box-shadow:0 8px 30px rgba(58,54,50,.10);transform:translateY(-5px)}
.blog-card-image{position:relative;aspect-ratio:16/9;overflow:hidden;flex-shrink:0}
.blog-card-img-bg{width:100%;height:100%;transition:transform .6s}.blog-card:hover .blog-card-img-bg{transform:scale(1.04)}
.blog-card-category{position:absolute;bottom:1rem;left:1rem;z-index:2;font-size:.6875rem;font-weight:500;letter-spacing:.1em;text-transform:uppercase;padding:4px 10px;background:rgba(250,249,247,.95);color:#3A3632;border:1px solid rgba(58,54,50,.06);line-height:1.6}
.blog-card-body{padding:1.5rem;display:flex;flex-direction:column;flex:1}
.blog-card-meta{display:flex;align-items:center;gap:.625rem;font-size:.75rem;color:#A09A90;margin-bottom:.875rem}
.blog-card-meta-sep{width:3px;height:3px;border-radius:50%;background:#D4CFC6;flex-shrink:0}
.blog-card-title{font-family:'Cormorant Garamond',Georgia,serif;font-size:clamp(1.0625rem,2vw,1.25rem);font-weight:400;color:#3A3632;line-height:1.3;margin-bottom:.75rem;transition:color .2s;flex:1;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}
.blog-card:hover .blog-card-title{color:#8B7355}
.blog-card-excerpt{font-size:.875rem;color:#7A746A;line-height:1.75;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;margin-bottom:1.25rem;font-weight:300}
.blog-card-footer{margin-top:auto;padding-top:1.125rem;border-top:1px solid rgba(58,54,50,.06)}

/* ── CTA ──────────────────────────────────────────────── */
.cta-section{background:linear-gradient(150deg,#2A2826 0%,#1A1918 100%);padding:clamp(4rem,8vw,7rem) 0;position:relative;overflow:hidden;text-align:center}
.cta-section::before{content:'';position:absolute;inset:0;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cg fill='%23fff' fill-opacity='.018'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");pointer-events:none}
.cta-glow{position:absolute;width:500px;height:500px;background:radial-gradient(circle,rgba(139,115,85,.085) 0%,transparent 70%);top:50%;left:50%;transform:translate(-50%,-50%);pointer-events:none}
.cta-inner{position:relative;z-index:1;max-width:660px;margin:0 auto;padding:0 clamp(1.5rem,3vw,4rem)}
.cta-eyebrow{font-size:.6875rem;font-weight:500;letter-spacing:.18em;text-transform:uppercase;color:#A68B6A;margin-bottom:1.25rem;display:flex;align-items:center;justify-content:center;gap:.75rem}
.cta-eyebrow::before,.cta-eyebrow::after{content:'';display:block;width:24px;height:1px;background:#8B7355;opacity:.5}
.cta-title{font-family:'Cormorant Garamond',Georgia,serif;font-size:clamp(2rem,4vw,3rem);font-weight:300;color:#FAF9F7;line-height:1.3;margin-bottom:1.25rem}
.cta-desc{font-size:1.0625rem;font-weight:300;color:rgba(250,249,247,.48);line-height:1.75;max-width:500px;margin:0 auto 2.5rem}
.cta-actions{display:flex;flex-wrap:wrap;justify-content:center;gap:1rem;margin-bottom:3rem}
.cta-contact-bar{display:flex;flex-wrap:wrap;justify-content:center;gap:2.5rem;padding-top:2.5rem;border-top:1px solid rgba(250,249,247,.09)}
.cta-contact-item{display:flex;align-items:center;gap:.625rem}
.cta-contact-item svg{width:16px;height:16px;color:#8B7355;flex-shrink:0}
.cta-contact-val{font-size:.875rem;color:rgba(250,249,247,.65);font-weight:300}

/* ── FOOTER ───────────────────────────────────────────── */

/* ── MISC ─────────────────────────────────────────────── */
.back-to-top{position:fixed;bottom:2rem;right:2rem;width:44px;height:44px;background:#3A3632;color:#FAF9F7;display:flex;align-items:center;justify-content:center;opacity:0;pointer-events:none;transition:all .4s;z-index:100;cursor:pointer;border:none}
.back-to-top.is-visible{opacity:1;pointer-events:all}.back-to-top:hover{background:#1A1918;transform:translateY(-3px)}.back-to-top svg{width:18px;height:18px}
.reveal{opacity:0;transform:translateY(22px);transition:opacity .7s .35s,transform .7s .35s}.reveal.is-visible{opacity:1;transform:translateY(0)}
@keyframes fadeUp{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}
@keyframes fadeIn{from{opacity:0}to{opacity:1}}
@keyframes spin{to{transform:rotate(360deg)}}
@media(max-width:599px){.lang-btn-code,.lang-btn-chevron{display:none}}
@media(max-width:767px){.hero-stats{gap:1.25rem}.why-item{padding:1.75rem 1.5rem}}

.product-img-placeholder{width:100%;aspect-ratio:1/1;background:#EDE9E3;display:flex;align-items:center;justify-content:center}
.product-img-placeholder::after{content:"No Image";font-size:.875rem;color:#A09A90;font-family:var(--font-body,sans-serif)}
