/* ====================================================================
   ACCESSORISSIMO LUXURY THEME — MAIN STYLESHEET
   Version: 1.0.0
   ==================================================================== */

/* ====
   RESET & VARIABLES
==== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --cream:  #F5F0EB;
  --warm:   #FAF8F5;
  --white:  #FFFFFF;
  --char:   #1A1A1A;
  --gold:   #C4A87A;
  --muted:  #8A8480;
  --border: #E8E2DA;
  --serif:  'Cormorant Garamond', serif;
  --sans:   'Montserrat', sans-serif;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--char);
  font-size: 13px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; cursor: pointer; }
button { cursor: pointer; font-family: var(--sans); }
input, select, textarea { font-family: var(--sans); }
img { display: block; max-width: 100%; height: auto; }

/* WordPress Core Alignment */
.alignleft { float: left; margin-right: 1.5em; margin-bottom: 1em; }
.alignright { float: right; margin-left: 1.5em; margin-bottom: 1em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; margin-bottom: 1em; }
.wp-caption { max-width: 100%; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); position: absolute !important; height: 1px; width: 1px; overflow: hidden; }

/* ====
   IMAGE PLACEHOLDERS
==== */
.img-ph {
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
  width: 100%; height: 100%;
}
.img-ph::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #EDE6DC 0%, #D8CFBF 50%, #C8BDA8 100%);
  opacity: .55;
}
.img-ph.dark { background: #2A2218; }
.img-ph.dark::after { background: linear-gradient(135deg,#3A3020 0%,#2A2018 100%); opacity:.8; }
.img-ph.mid { background: #C0B4A0; }
.img-ph.mid::after { background: linear-gradient(135deg,#C8BCAA 0%,#B0A490 100%); opacity:.7; }

/* ====
   TOPBAR
==== */
.topbar {
  background: var(--char); color: #fff;
  text-align: center; padding: 9px 20px;
  font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
}

/* ====
   NAVBAR
==== */
.navbar {
  background: var(--white); border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 300;
}
.nav-wrap {
  max-width: 1440px; margin: auto;
  display: flex; align-items: center;
  height: 62px; padding: 0 40px; position: relative;
}
.nav-left { display: flex; gap: 32px; }
.nav-left a,
.nav-left .menu-item a {
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--char); font-weight: 500; transition: color .2s;
  text-decoration: none;
}
.nav-left a:hover,
.nav-left .menu-item a:hover { color: var(--gold); }
.nav-left ul { list-style: none; display: flex; gap: 32px; margin: 0; padding: 0; }
.nav-left ul li { display: inline-block; }

/* Dropdown */
.nav-left .menu-item-has-children { position: relative; }
.nav-left .menu-item-has-children > .sub-menu {
  position: absolute; top: 100%; left: 0; min-width: 200px;
  background: var(--white); border: 1px solid var(--border);
  padding: 12px 0; display: none; flex-direction: column; gap: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,.08); z-index: 999;
}
.nav-left .menu-item-has-children:hover > .sub-menu { display: flex; }
.nav-left .sub-menu li { display: block; }
.nav-left .sub-menu a {
  display: block; padding: 8px 20px;
  font-size: 11px; letter-spacing: .08em;
}
.nav-left .sub-menu a:hover { background: var(--warm); }

.nav-center {
  position: absolute; left: 50%; transform: translateX(-50%);
  text-align: center;
}
.nav-brand {
  font-family: var(--serif); font-size: 24px; font-weight: 400;
  color: var(--char); letter-spacing: .06em; display: block; line-height: 1.1;
  text-decoration: none;
}
.nav-sub {
  font-size: 8px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--muted); margin-top: 1px;
}
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 20px; }
.nav-btn {
  background: none; border: none; color: var(--char);
  font-size: 16px; position: relative; padding: 4px;
  transition: color .2s; display: inline-flex; align-items: center;
  text-decoration: none;
}
.nav-btn:hover { color: var(--gold); }
.nav-badge {
  position: absolute; top: -3px; right: -3px;
  background: var(--char); color: #fff;
  font-size: 8px; width: 14px; height: 14px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.nav-lang {
  font-size: 10px; letter-spacing: .08em; color: var(--muted);
  border: none; background: none; cursor: pointer;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none; background: none; border: none;
  color: var(--char); font-size: 22px; padding: 4px;
  cursor: pointer;
}

/* ====
   BUTTONS
==== */
.btn-dark {
  display: inline-block; background: var(--char); color: #fff;
  padding: 13px 36px; font-size: 10px; letter-spacing: .16em;
  text-transform: uppercase; font-weight: 500; border: none;
  transition: background .2s; cursor: pointer; text-decoration: none;
  text-align: center;
}
.btn-dark:hover { background: #333; color: #fff; }
.btn-outline {
  display: inline-block; background: none; color: var(--char);
  padding: 12px 34px; font-size: 10px; letter-spacing: .16em;
  text-transform: uppercase; font-weight: 500;
  border: 1px solid var(--char); transition: all .2s; cursor: pointer;
  text-decoration: none; text-align: center;
}
.btn-outline:hover { background: var(--char); color: #fff; }
.btn-gold {
  display: inline-block; background: var(--gold); color: #fff;
  padding: 13px 36px; font-size: 10px; letter-spacing: .16em;
  text-transform: uppercase; font-weight: 500; border: none;
  transition: background .2s; cursor: pointer; text-decoration: none;
}
.btn-gold:hover { background: #B09060; color: #fff; }
.link-ul {
  font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--char); font-weight: 600; border-bottom: 1px solid var(--char);
  padding-bottom: 2px; cursor: pointer; background: none; border-left: 0; border-top: 0; border-right: 0;
  display: inline-block; transition: color .2s; text-decoration: none;
}
.link-ul:hover { color: var(--gold); border-color: var(--gold); }

/* ====
   TRUST BAR
==== */
.trust { background: var(--white); border-bottom: 1px solid var(--border); }
.trust-row {
  max-width: 1440px; margin: auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  height: 68px;
}
.trust-cell {
  display: flex; align-items: center; justify-content: center; gap: 11px;
  border-right: 1px solid var(--border);
}
.trust-cell:last-child { border-right: none; }
.trust-ico { font-size: 17px; flex-shrink: 0; }
.trust-txt strong { display: block; font-size: 11px; font-weight: 500; letter-spacing: .01em; }
.trust-txt span { font-size: 10px; color: var(--muted); }

/* ====
   SECTION HELPERS
==== */
.wrap { max-width: 1440px; margin: auto; padding: 0 40px; }
.sec-ey { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); text-align: center; margin-bottom: 10px; }
.sec-h { font-family: var(--serif); font-size: 40px; font-weight: 300; text-align: center; margin-bottom: 8px; }
.sec-sub { font-size: 12px; color: var(--muted); text-align: center; margin-bottom: 36px; }

/* Breadcrumb */
.breadcrumb,
.woocommerce-breadcrumb {
  font-size: 10px; color: var(--muted); margin-bottom: 24px; letter-spacing: .04em;
}
.breadcrumb a,
.woocommerce-breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover,
.woocommerce-breadcrumb a:hover { color: var(--char); }
.breadcrumb span,
.woocommerce-breadcrumb span { color: var(--char); }

/* ====
   FOOTER
==== */
footer,
.site-footer {
  background: var(--white); border-top: 1px solid var(--border); padding: 60px 0 28px;
}
.ft-grid {
  max-width: 1440px; margin: auto; padding: 0 40px;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 36px;
  margin-bottom: 44px;
}
.ft-col h4 { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; font-weight: 600; margin-bottom: 18px; }
.ft-col ul { list-style: none; margin: 0; padding: 0; }
.ft-col li { margin-bottom: 9px; }
.ft-col a { font-size: 11px; color: var(--muted); text-decoration: none; }
.ft-col a:hover { color: var(--char); }
/* WordPress footer menu widget support */
.ft-col .widget_nav_menu ul { list-style: none; margin: 0; padding: 0; }
.ft-col .widget_nav_menu li { margin-bottom: 9px; }
.ft-col .widget_nav_menu a { font-size: 11px; color: var(--muted); text-decoration: none; }
.ft-col .widget_nav_menu a:hover { color: var(--char); }
.ft-bottom {
  max-width: 1440px; margin: auto; padding: 20px 40px 0;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.ft-copy { font-size: 10px; color: var(--muted); }
.ft-langs { display: flex; gap: 14px; }
.ft-langs a { font-size: 10px; color: var(--muted); text-decoration: none; }
.ft-langs a.on { color: var(--char); font-weight: 600; }

/* ====
   BACKDROP + PANELS
==== */
.backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 400;
  display: none; cursor: pointer;
}
.backdrop.on { display: block; }

/* CART PANEL */
.cart-panel {
  position: fixed; top: 0; right: -450px; width: 430px; height: 100vh;
  background: var(--white); z-index: 500;
  box-shadow: -4px 0 24px rgba(0,0,0,.1);
  transition: right .34s ease; display: flex; flex-direction: column;
}
.cart-panel.open { right: 0; }
.cp-head {
  padding: 26px 28px 18px; border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  flex-shrink: 0;
}
.cp-head h3 { font-family: var(--serif); font-size: 22px; font-weight: 300; }
.cp-close { background: none; border: none; font-size: 20px; color: var(--char); cursor: pointer; }
.cp-body { flex: 1; overflow-y: auto; padding: 0 28px; }
.cp-empty { text-align: center; padding: 60px 0; font-family: var(--serif); font-size: 20px; font-weight: 300; color: var(--muted); }
.cp-item {
  display: grid; grid-template-columns: 76px 1fr 20px;
  gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border);
  align-items: start;
}
.cp-item-img { aspect-ratio: .9; overflow: hidden; background: var(--cream); }
.cp-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cp-iname { font-size: 12px; margin-bottom: 4px; line-height: 1.4; }
.cp-iprice { font-size: 11px; color: var(--muted); }
.cp-iqty { display: flex; align-items: center; gap: 8px; margin-top: 10px; }
.cp-qb {
  background: none; border: 1px solid var(--border); width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--char); cursor: pointer;
}
.cp-qn { font-size: 12px; min-width: 16px; text-align: center; }
.cp-rm { background: none; border: none; font-size: 15px; color: var(--muted); align-self: start; margin-top: 2px; cursor: pointer; }
.cp-foot { padding: 18px 28px; border-top: 1px solid var(--border); flex-shrink: 0; }
.cp-row { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); margin-bottom: 7px; }
.cp-row.total { font-weight: 600; font-size: 14px; color: var(--char); padding-top: 10px; border-top: 1px solid var(--border); margin-top: 10px; }

/* ====
   HERO SECTION
==== */
.hero {
  display: grid; grid-template-columns: 55% 45%;
  min-height: 88vh;
}
.hero-photo { position: relative; overflow: hidden; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; min-height: 88vh; }
.hero-photo .img-ph { width: 100%; height: 100%; min-height: 88vh; }
.hero-content {
  background: var(--char);
  display: flex; align-items: center;
  padding: 80px 72px 80px 60px;
}
.hero-inner { max-width: 400px; }
.hero-ey { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 20px; }
.hero-title { font-family: var(--serif); font-size: 76px; font-weight: 300; color: #fff; line-height: .98; margin-bottom: 22px; }
.hero-sub { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.8; margin-bottom: 38px; max-width: 260px; }
.hero-dots { display: flex; gap: 10px; margin-top: 50px; }
.hero-dot { width: 32px; height: 2px; background: rgba(255,255,255,.22); cursor: pointer; transition: background .2s; }
.hero-dot.on { background: #fff; }

/* ====
   NEW COLLECTION / CATEGORIES
==== */
.new-coll { padding: 80px 0 70px; background: var(--white); }
.cats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 46px; }
.cat-tile { position: relative; overflow: hidden; cursor: pointer; aspect-ratio: .88; }
.cat-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.cat-tile .img-ph { width: 100%; height: 100%; transition: transform .5s ease; }
.cat-tile:hover img,
.cat-tile:hover .img-ph { transform: scale(1.04); }
.cat-lbl {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 14px 14px;
  background: linear-gradient(transparent, rgba(0,0,0,.42));
  color: #fff; font-size: 10px; letter-spacing: .16em;
  text-transform: uppercase; text-align: center; font-weight: 500;
}

/* ====
   EDITORIAL
==== */
.editorial { padding: 80px 0; background: var(--warm); }
.ed-grid { display: grid; grid-template-columns: 260px 1fr; gap: 72px; align-items: start; }
.ed-left .ey { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.ed-left h2 { font-family: var(--serif); font-size: 36px; font-weight: 300; line-height: 1.2; margin-bottom: 16px; }
.ed-left p { font-size: 12px; color: var(--muted); line-height: 1.9; margin-bottom: 28px; }
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.art-card { cursor: pointer; text-decoration: none; color: inherit; display: block; }
.art-img { aspect-ratio: .88; overflow: hidden; margin-bottom: 14px; }
.art-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.art-img .img-ph { width: 100%; height: 100%; transition: transform .4s ease; }
.art-card:hover .art-img img,
.art-card:hover .art-img .img-ph { transform: scale(1.03); }
.art-date { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.art-title { font-family: var(--serif); font-size: 18px; font-weight: 400; line-height: 1.3; margin-bottom: 12px; }

/* ====
   NEWSLETTER
==== */
.newsletter { background: var(--cream); }
.nl-grid { display: grid; grid-template-columns: 1fr 1fr; max-width: 1440px; margin: auto; }
.nl-photo { min-height: 360px; overflow: hidden; }
.nl-photo img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }
.nl-photo .img-ph { width: 100%; height: 100%; min-height: 360px; }
.nl-content { padding: 72px 64px; display: flex; flex-direction: column; justify-content: center; }
.nl-ey { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.nl-h { font-family: var(--serif); font-size: 40px; font-weight: 300; margin-bottom: 14px; }
.nl-sub { font-size: 12px; color: var(--muted); line-height: 1.9; margin-bottom: 32px; max-width: 340px; }
.nl-form { display: flex; border: 1px solid var(--char); max-width: 440px; }
.nl-input { flex: 1; padding: 13px 18px; border: none; outline: none; font-size: 11px; color: var(--char); background: #fff; }
.nl-input::placeholder { color: var(--muted); }
.nl-btn { background: var(--char); color: #fff; border: none; padding: 13px 22px; font-size: 10px; letter-spacing: .13em; text-transform: uppercase; white-space: nowrap; cursor: pointer; }
.nl-btn:hover { background: #333; }

/* ====
   COLLECTIONS PAGE
==== */
.coll-page { padding: 48px 0 80px; }
.coll-title { font-family: var(--serif); font-size: 38px; font-weight: 300; margin-bottom: 36px; }
.coll-top { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 14px; }
.coll-bot { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 14px; }
.coll-tile { position: relative; overflow: hidden; cursor: pointer; aspect-ratio: 1.1; }
.coll-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.coll-tile .img-ph { width: 100%; height: 100%; transition: transform .5s; }
.coll-tile:hover img,
.coll-tile:hover .img-ph { transform: scale(1.04); }
.coll-lbl {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 18px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,.46));
}
.coll-lbl span { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: #fff; font-weight: 500; }
.coll-banner {
  background: var(--cream); padding: 44px 52px;
  display: flex; align-items: center; justify-content: space-between;
}
.coll-banner h2 { font-family: var(--serif); font-size: 28px; font-weight: 300; line-height: 1.3; max-width: 280px; }

/* ====
   SHOP / CATEGORY
==== */
.shop-layout {
  max-width: 1440px; margin: auto; padding: 40px 40px 80px;
  display: grid; grid-template-columns: 220px 1fr; gap: 52px;
}
/* Sidebar */
.sb-title { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; font-weight: 600; margin-bottom: 22px; }
.sb-sec { margin-bottom: 26px; padding-bottom: 26px; border-bottom: 1px solid var(--border); }
.sb-sec:last-child { border-bottom: none; }
.sb-sec h4 { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 13px; font-weight: 500; }
.sb-list { list-style: none; margin: 0; padding: 0; }
.sb-list li { display: flex; justify-content: space-between; font-size: 11px; padding: 5px 0; cursor: pointer; color: var(--muted); transition: color .2s; }
.sb-list li:hover, .sb-list li.on { color: var(--char); }
.sb-list li.on { font-weight: 600; }
.sb-list li a { color: inherit; text-decoration: none; }
.sb-colors { display: flex; gap: 7px; flex-wrap: wrap; }
.sb-swatch { width: 22px; height: 22px; border-radius: 50%; cursor: pointer; border: 1.5px solid transparent; transition: border-color .2s; }
.sb-swatch.on { border-color: var(--char); }
.range-wrap { padding-top: 8px; }
.range-wrap span { font-size: 11px; color: var(--muted); display: block; margin-bottom: 8px; }
input[type=range] { width: 100%; accent-color: var(--char); }

/* Shop Main */
.shop-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 28px; }
.shop-head h1 { font-family: var(--serif); font-size: 32px; font-weight: 300; }
.shop-meta { font-size: 11px; color: var(--muted); margin-top: 5px; }
.sort-wrap { display: flex; align-items: center; gap: 10px; }
.sort-wrap span { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.sort-sel,
.woocommerce-ordering select {
  font-size: 11px; border: 1px solid var(--border); padding: 7px 12px;
  background: #fff; color: var(--char); outline: none; font-family: var(--sans);
}

/* Product Grid */
.prod-grid,
ul.products {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
  list-style: none; margin: 0; padding: 0;
}
ul.products::before,
ul.products::after { display: none; }
.prod-card,
ul.products li.product {
  cursor: pointer; margin: 0 !important; padding: 0 !important;
  float: none !important; width: auto !important;
}
.prod-img,
ul.products li.product .acc-product-image-wrap {
  aspect-ratio: .9; overflow: hidden; background: var(--cream);
  margin-bottom: 13px; position: relative;
}
.prod-img img,
ul.products li.product img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .45s ease;
}
.prod-card:hover .prod-img img,
ul.products li.product:hover img { transform: scale(1.04); }
.prod-hover {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(26,26,26,.88); color: #fff;
  text-align: center; padding: 12px;
  font-size: 9px; letter-spacing: .14em; text-transform: uppercase;
  opacity: 0; transition: opacity .2s; border: none;
  font-family: var(--sans); font-weight: 500; width: 100%;
  cursor: pointer;
}
.prod-card:hover .prod-hover,
ul.products li.product:hover .prod-hover { opacity: 1; }
.prod-wish {
  position: absolute; top: 12px; right: 12px;
  background: #fff; width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; border: none; opacity: 0; transition: opacity .2s;
  box-shadow: 0 1px 6px rgba(0,0,0,.1); cursor: pointer; z-index: 2;
}
.prod-wish.wishlisted { color: #e74c3c; }
.prod-wish.wishlisted svg { fill: #e74c3c; }
.prod-card:hover .prod-wish,
ul.products li.product:hover .prod-wish { opacity: 1; }
.prod-name,
ul.products li.product .woocommerce-loop-product__title {
  font-size: 12px !important; font-weight: 400 !important;
  margin-bottom: 4px !important; padding: 0 !important;
  font-family: var(--sans) !important;
}
.prod-price,
ul.products li.product .price {
  font-size: 12px !important; color: var(--muted) !important; font-weight: 500 !important;
}
ul.products li.product .price del { opacity: .5; }
ul.products li.product .price ins { text-decoration: none; }

/* Hide WooCommerce stock */
.stock,
.in-stock,
.out-of-stock,
p.stock,
.woocommerce-variation-availability,
.product_meta .stock { display: none !important; }

/* Hide default add to cart button from WC loops */
ul.products li.product .button.add_to_cart_button { display: none !important; }
ul.products li.product a.added_to_cart { display: none !important; }

/* Pagination */
.pagi,
.woocommerce-pagination {
  display: flex; gap: 5px; margin-top: 44px; justify-content: center;
}
.pn,
.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); font-size: 11px; cursor: pointer;
  color: var(--muted); transition: all .2s; text-decoration: none;
  background: none;
}
.pn:hover,
.woocommerce-pagination ul li a:hover { border-color: var(--char); color: var(--char); }
.pn.on,
.woocommerce-pagination ul li span.current { background: var(--char); color: #fff; border-color: var(--char); }
.woocommerce-pagination ul { list-style: none; display: flex; gap: 5px; margin: 0; padding: 0; }

/* ====
   PRODUCT DETAIL PAGE
==== */
.pdp-wrap {
  max-width: 1440px; margin: auto; padding: 36px 40px 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
}
.pdp-gallery { display: grid; grid-template-columns: 80px 1fr; gap: 12px; }
.pdp-thumbs { display: flex; flex-direction: column; gap: 10px; }
.pdp-thumb { width: 80px; height: 88px; cursor: pointer; border: 1.5px solid transparent; overflow: hidden; transition: border-color .2s; }
.pdp-thumb.on { border-color: var(--char); }
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp-main { aspect-ratio: .9; overflow: hidden; position: relative; cursor: zoom-in; }
.pdp-main img { width: 100%; height: 100%; object-fit: cover; }
.pdp-main .img-ph { width: 100%; height: 100%; }
.pdp-info { padding-top: 4px; }
.pdp-name,
.product_title { font-family: var(--serif) !important; font-size: 30px !important; font-weight: 400 !important; margin-bottom: 10px; line-height: 1.2; }
.pdp-price { font-size: 24px; font-weight: 300; margin-bottom: 18px; letter-spacing: .02em; }
.pdp-desc { font-size: 12px; color: var(--muted); line-height: 1.88; margin-bottom: 26px; }
.pdp-lbl { font-size: 10px; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.pdp-swatches { display: flex; gap: 8px; margin-bottom: 22px; }
.pdp-sw { width: 26px; height: 26px; border-radius: 50%; cursor: pointer; border: 1.5px solid transparent; transition: border-color .2s; }
.pdp-sw.on { border-color: var(--char); outline: 2px solid #fff; outline-offset: 2px; }
.pdp-stock { display: none !important; }
.pdp-add,
.single_add_to_cart_button {
  width: 100%; background: var(--char) !important; color: #fff !important; padding: 15px;
  border: none !important; font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 500; margin-bottom: 12px; transition: background .2s;
  cursor: pointer; border-radius: 0 !important; font-family: var(--sans);
}
.pdp-add:hover,
.single_add_to_cart_button:hover { background: #333 !important; }
.pdp-wish-btn {
  width: 100%; background: none; border: 1px solid var(--border); color: var(--char);
  padding: 13px; font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: border-color .2s; cursor: pointer;
}
.pdp-wish-btn:hover { border-color: var(--char); }
.pdp-wish-btn.wishlisted { color: #e74c3c; border-color: #e74c3c; }
.pdp-trust {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px; margin-top: 28px; padding-top: 28px;
  border-top: 1px solid var(--border);
}
.pdp-trust-item { text-align: center; }
.pdp-trust-item .ico { font-size: 18px; color: var(--muted); margin-bottom: 6px; }
.pdp-trust-item p { font-size: 10px; color: var(--muted); line-height: 1.5; }

/* WooCommerce quantity input */
.quantity { display: inline-flex; align-items: center; gap: 0; border: 1px solid var(--border); margin-bottom: 14px; }
.quantity .qty { width: 50px; text-align: center; border: none; font-size: 13px; padding: 10px 5px; outline: none; font-family: var(--sans); -moz-appearance: textfield; }
.quantity .qty::-webkit-outer-spin-button,
.quantity .qty::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* Product tabs */
.woocommerce-tabs { margin-top: 60px; max-width: 1440px; margin-left: auto; margin-right: auto; padding: 0 40px; }
.woocommerce-tabs ul.tabs { list-style: none; display: flex; gap: 0; border-bottom: 1px solid var(--border); margin: 0 0 30px; padding: 0; }
.woocommerce-tabs ul.tabs li { margin: 0; }
.woocommerce-tabs ul.tabs li a {
  display: block; padding: 14px 24px; font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted); font-weight: 500;
  text-decoration: none; border-bottom: 2px solid transparent;
  transition: all .2s;
}
.woocommerce-tabs ul.tabs li.active a { color: var(--char); border-bottom-color: var(--char); }
.woocommerce-tabs .panel { font-size: 12px; color: var(--muted); line-height: 1.9; }

/* Related products */
.related.products,
.upsells.products { max-width: 1440px; margin: 60px auto; padding: 0 40px; }
.related.products > h2,
.upsells.products > h2 {
  font-family: var(--serif); font-size: 30px; font-weight: 300;
  text-align: center; margin-bottom: 36px;
}

/* ====
   CART PAGE
==== */
.cart-page,
.woocommerce-cart .woocommerce { max-width: 1440px; margin: auto; padding: 48px 40px 80px; }
.cart-page h1,
.woocommerce-cart .entry-title { font-family: var(--serif); font-size: 34px; font-weight: 300; margin-bottom: 36px; }

/* WooCommerce Cart Table */
.woocommerce table.shop_table { border: none; border-collapse: collapse; width: 100%; }
.woocommerce table.shop_table th {
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); font-weight: 500; padding: 0 0 14px;
  border-bottom: 1px solid var(--border); text-align: left;
  background: none;
}
.woocommerce table.shop_table td {
  padding: 18px 0; border-top: 1px solid var(--border);
  vertical-align: middle; border-bottom: none; background: none;
}
.woocommerce table.shop_table .product-thumbnail img {
  width: 72px; height: 80px; object-fit: cover;
}
.woocommerce table.shop_table .product-name a {
  font-size: 13px; font-weight: 400; color: var(--char); text-decoration: none;
}
.woocommerce .cart-collaterals .cart_totals {
  max-width: 340px; margin-left: auto; float: none;
  border-top: 2px solid var(--char); padding-top: 24px; width: 100%;
}
.woocommerce .cart-collaterals .cart_totals table { border: none; }
.woocommerce .cart-collaterals .cart_totals th { font-size: 12px; color: var(--muted); font-weight: 400; padding: 8px 0; border: none; background: none; }
.woocommerce .cart-collaterals .cart_totals td { font-size: 12px; color: var(--muted); padding: 8px 0; border: none; text-align: right; background: none; }
.woocommerce .cart-collaterals .cart_totals .order-total th,
.woocommerce .cart-collaterals .cart_totals .order-total td {
  color: var(--char); font-weight: 600; font-size: 15px;
  padding-top: 12px; border-top: 1px solid var(--border);
}
.woocommerce a.remove { color: var(--muted) !important; font-size: 18px; }
.woocommerce a.remove:hover { color: var(--char) !important; background: none !important; }

/* Cart quantity */
.cart-table .qty-ctrl,
.woocommerce .quantity {
  display: inline-flex; align-items: center; gap: 12px;
  border: 1px solid var(--border); padding: 7px 14px;
}

/* Checkout button */
.wc-proceed-to-checkout .checkout-button {
  background: var(--char) !important; color: #fff !important;
  padding: 15px !important; border: none !important;
  font-size: 10px !important; letter-spacing: .16em !important;
  text-transform: uppercase !important; font-weight: 500 !important;
  border-radius: 0 !important; width: 100%; text-align: center;
  display: block !important;
}
.wc-proceed-to-checkout .checkout-button:hover { background: #333 !important; }

/* ====
   CHECKOUT PAGE
==== */
.checkout-wrap,
.woocommerce-checkout .woocommerce {
  max-width: 1440px; margin: auto; padding: 48px 40px 80px;
}
.woocommerce form.checkout {
  display: grid; grid-template-columns: 1fr 380px; gap: 64px;
}
.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2 { width: 100%; float: none; }
.woocommerce-checkout h3 {
  font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 600; padding-bottom: 12px; border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}
.woocommerce form .form-row { margin: 0 0 14px; padding: 0; }
.woocommerce form .form-row label {
  font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 7px; font-weight: 500;
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  width: 100%; border: 1px solid var(--border) !important; padding: 12px 14px;
  font-size: 12px; color: var(--char); outline: none; background: #fff;
  transition: border-color .2s; border-radius: 0 !important;
  font-family: var(--sans);
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row select:focus { border-color: var(--char) !important; }

/* Order review */
.woocommerce-checkout-review-order { background: var(--cream); padding: 32px 28px; }
.woocommerce-checkout-review-order h3 {
  font-size: 11px; letter-spacing: .14em; border: none; margin-bottom: 22px; padding: 0;
}
#place_order {
  background: var(--char) !important; color: #fff !important; padding: 16px !important;
  border: none !important; font-size: 10px !important; letter-spacing: .18em !important;
  text-transform: uppercase !important; font-weight: 500 !important;
  border-radius: 0 !important; width: 100%;
}
#place_order:hover { background: #333 !important; }

/* ====
   ACCOUNT PAGE
==== */
.account-wrap,
.woocommerce-account .woocommerce {
  max-width: 1440px; margin: auto; padding: 48px 40px 80px;
}
.woocommerce-MyAccount-navigation {
  width: 200px; float: left; border-right: 1px solid var(--border); padding-right: 40px;
}
.woocommerce-MyAccount-navigation ul { list-style: none; margin: 0; padding: 0; }
.woocommerce-MyAccount-navigation ul li a {
  display: block; font-size: 12px; color: var(--muted);
  padding: 10px 0; border-bottom: 1px solid var(--border);
  transition: color .2s; text-decoration: none;
}
.woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-MyAccount-navigation ul li a:hover {
  color: var(--char); font-weight: 500;
}
.woocommerce-MyAccount-content {
  margin-left: 264px;
}
.woocommerce-MyAccount-content h2,
.woocommerce-MyAccount-content h3 { font-family: var(--serif); font-size: 34px; font-weight: 300; margin-bottom: 10px; }

/* Orders table */
.woocommerce-orders-table { width: 100%; border-collapse: collapse; }
.woocommerce-orders-table th {
  font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); font-weight: 500; padding: 0 0 12px;
  border-bottom: 1px solid var(--border); text-align: left;
}
.woocommerce-orders-table td { padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 12px; color: var(--muted); }
.woocommerce-orders-table td:first-child { color: var(--char); font-weight: 500; }
.status-badge {
  display: inline-block; padding: 3px 10px;
  font-size: 9px; letter-spacing: .1em; text-transform: uppercase;
  background: #E8F4EC; color: #4A7C59; font-weight: 500;
}

/* ====
   WISHLIST PAGE
==== */
.wishlist-page { max-width: 1440px; margin: auto; padding: 48px 40px 80px; }
.wishlist-page h1 { font-family: var(--serif); font-size: 34px; font-weight: 300; margin-bottom: 36px; }
.wl-row {
  display: grid; grid-template-columns: 88px 1fr 200px auto;
  gap: 20px; align-items: center;
  padding: 18px 0; border-bottom: 1px solid var(--border);
}
.wl-img { width: 88px; height: 98px; overflow: hidden; cursor: pointer; background: var(--cream); }
.wl-img img { width: 100%; height: 100%; object-fit: cover; }
.wl-name { font-size: 13px; font-weight: 400; margin-bottom: 4px; }
.wl-color { font-size: 11px; color: var(--muted); margin-bottom: 4px; }
.wl-price { font-size: 13px; color: var(--muted); }
.wl-add-btn {
  background: var(--char); color: #fff; border: none;
  padding: 11px 22px; font-size: 10px; letter-spacing: .12em;
  text-transform: uppercase; font-weight: 500; white-space: nowrap;
  transition: background .2s; cursor: pointer; text-decoration: none;
  display: inline-block; text-align: center;
}
.wl-add-btn:hover { background: #333; color: #fff; }
.wl-rm { background: none; border: none; font-size: 18px; color: var(--muted); padding: 0; transition: color .2s; cursor: pointer; }
.wl-rm:hover { color: var(--char); }
.wl-empty { padding: 60px 0; font-family: var(--serif); font-size: 22px; font-weight: 300; color: var(--muted); }

/* ====
   JOURNAL / BLOG
==== */
.journal-page { max-width: 1440px; margin: auto; padding: 48px 40px 80px; }
.journal-page h1 { font-family: var(--serif); font-size: 38px; font-weight: 300; margin-bottom: 40px; }
.j-featured {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border); margin-bottom: 2px;
}
.j-feat-img { aspect-ratio: 1; overflow: hidden; }
.j-feat-img img { width: 100%; height: 100%; object-fit: cover; }
.j-feat-content {
  padding: 52px 44px; display: flex; flex-direction: column;
  justify-content: center; border-left: 1px solid var(--border);
}
.j-cat { font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.j-feat-title { font-family: var(--serif); font-size: 30px; font-weight: 300; line-height: 1.25; margin-bottom: 16px; }
.j-feat-sub { font-size: 12px; color: var(--muted); line-height: 1.85; margin-bottom: 28px; }
.j-share { margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--border); }
.j-share p { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.j-share-links { display: flex; gap: 14px; }
.j-share-links a { font-size: 11px; color: var(--muted); font-weight: 500; text-decoration: none; }
.j-share-links a:hover { color: var(--char); }
.j-more { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--border); border-top: none; }
.j-more-item { padding: 32px 28px; border-right: 1px solid var(--border); cursor: pointer; transition: background .2s; }
.j-more-item:last-child { border-right: none; }
.j-more-item:hover { background: var(--warm); }
.j-more-img { aspect-ratio: 1.2; overflow: hidden; margin-bottom: 18px; }
.j-more-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.j-more-item:hover .j-more-img img { transform: scale(1.04); }
.j-more-title { font-family: var(--serif); font-size: 19px; font-weight: 400; line-height: 1.3; margin-bottom: 10px; }
.j-more-excerpt { font-size: 11px; color: var(--muted); line-height: 1.75; margin-bottom: 16px; }
.j-view-all { text-align: center; padding: 40px 0 0; }

/* Blog posts list */
.blog-posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
.blog-post-card { text-decoration: none; color: inherit; display: block; }
.blog-post-card:hover .post-thumb img { transform: scale(1.03); }
.post-thumb { aspect-ratio: 1.2; overflow: hidden; margin-bottom: 18px; }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }

/* ====
   ABOUT PAGE
==== */
.about-hero {
  height: 56vh; min-height: 400px;
  background: linear-gradient(135deg, #2A2018 0%, #1A1510 100%);
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.about-hero .ey { font-size: 10px; letter-spacing: .26em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.about-hero h1 { font-family: var(--serif); font-size: 58px; font-weight: 300; color: #fff; line-height: 1.1; }
.about-body { max-width: 1440px; margin: auto; padding: 80px 40px; }
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-bottom: 80px; }
.about-img { aspect-ratio: 1.1; overflow: hidden; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-text h2 { font-family: var(--serif); font-size: 34px; font-weight: 300; line-height: 1.3; margin-bottom: 22px; }
.about-text p { font-size: 12px; color: var(--muted); line-height: 1.95; margin-bottom: 16px; }
.about-stats { background: var(--cream); padding: 64px 40px; }
.about-stats-inner { max-width: 800px; margin: auto; display: grid; grid-template-columns: repeat(3, 1fr); text-align: center; }
.stat-n { font-family: var(--serif); font-size: 52px; font-weight: 300; color: var(--gold); line-height: 1; }
.stat-l { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-top: 8px; }

/* Franchising */
.fran-hero {
  height: 50vh; min-height: 360px;
  display: flex; align-items: center; justify-content: center; text-align: center;
  position: relative;
}
.fran-hero .img-ph { position: absolute; inset: 0; width: 100%; height: 100%; }
.fran-hero-inner { position: relative; z-index: 1; }
.fran-hero .ey { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: rgba(60,50,40,.6); margin-bottom: 14px; }
.fran-hero h1 { font-family: var(--serif); font-size: 56px; font-weight: 300; color: var(--char); }
.fran-body { max-width: 900px; margin: 0 auto; padding: 80px 40px; text-align: center; }
.fran-body h2 { font-family: var(--serif); font-size: 36px; font-weight: 300; margin-bottom: 18px; }
.fran-body p { font-size: 12px; color: var(--muted); line-height: 1.95; max-width: 560px; margin: 0 auto 32px; }
.fran-cards { max-width: 1440px; margin: 0 auto; padding: 0 40px 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fran-card { position: relative; overflow: hidden; min-height: 320px; padding: 40px; display: flex; flex-direction: column; justify-content: flex-end; }
.fran-card .img-ph { position: absolute; inset: 0; z-index: 0; }
.fran-card-content { position: relative; z-index: 1; }
.fran-card h2 { font-family: var(--serif); font-size: 28px; font-weight: 300; margin-bottom: 12px; }
.fran-card p { font-size: 12px; color: var(--muted); line-height: 1.8; margin-bottom: 22px; max-width: 300px; }

/* ====
   DISTRIBUTOR PAGE
==== */
.distributor-hero {
  height: 50vh; min-height: 360px;
  display: flex; align-items: center; justify-content: center; text-align: center;
  background: linear-gradient(135deg, #2A2018 0%, #1A1510 100%);
  position: relative;
}
.distributor-hero .ey { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 14px; }
.distributor-hero h1 { font-family: var(--serif); font-size: 56px; font-weight: 300; color: #fff; }
.distributor-hero p { font-size: 13px; color: rgba(255,255,255,.5); margin-top: 16px; max-width: 500px; }
.distributor-benefits {
  max-width: 1100px; margin: 0 auto; padding: 80px 40px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
}
.benefit-card { text-align: center; padding: 32px 20px; }
.benefit-card .benefit-icon { font-size: 32px; margin-bottom: 16px; color: var(--gold); }
.benefit-card h3 { font-family: var(--serif); font-size: 22px; font-weight: 400; margin-bottom: 12px; }
.benefit-card p { font-size: 12px; color: var(--muted); line-height: 1.85; }
.distributor-form-section {
  max-width: 800px; margin: 0 auto; padding: 0 40px 80px;
}
.distributor-form-section h2 { font-family: var(--serif); font-size: 36px; font-weight: 300; text-align: center; margin-bottom: 14px; }
.distributor-form-section > p { font-size: 12px; color: var(--muted); text-align: center; margin-bottom: 40px; line-height: 1.9; }

/* Contact / Distributor forms */
.contact-wrap {
  max-width: 1440px; margin: auto; padding: 48px 40px 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.contact-img { aspect-ratio: 1.1; overflow: hidden; }
.contact-img img { width: 100%; height: 100%; object-fit: cover; }
.contact-form h1 { font-family: var(--serif); font-size: 36px; font-weight: 300; margin-bottom: 14px; }
.contact-form > p { font-size: 12px; color: var(--muted); line-height: 1.9; margin-bottom: 32px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-field { margin-bottom: 14px; }
.form-field label { display: block; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; font-weight: 500; }
.form-field input,
.form-field select {
  width: 100%; border: 1px solid var(--border); padding: 12px 14px;
  font-size: 12px; color: var(--char); outline: none; background: #fff;
  transition: border-color .2s;
}
.form-field input:focus,
.form-field select:focus { border-color: var(--char); }
.form-field textarea {
  width: 100%; border: 1px solid var(--border); padding: 12px 14px;
  font-size: 12px; color: var(--char); outline: none; resize: vertical;
  height: 120px; background: #fff; transition: border-color .2s;
  font-family: var(--sans);
}
.form-field textarea:focus { border-color: var(--char); }
.form-field .error-msg { font-size: 10px; color: #c0392b; margin-top: 4px; display: none; }
.form-field.has-error input,
.form-field.has-error textarea,
.form-field.has-error select { border-color: #c0392b; }
.form-field.has-error .error-msg { display: block; }
.form-success { text-align: center; padding: 40px; font-family: var(--serif); font-size: 24px; color: var(--gold); display: none; }

/* Contact Form 7 compatibility */
.wpcf7 .wpcf7-form-control-wrap { display: block; margin-bottom: 14px; }
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.wpcf7 select {
  width: 100%; border: 1px solid var(--border); padding: 12px 14px;
  font-size: 12px; color: var(--char); outline: none; background: #fff;
  font-family: var(--sans);
}
.wpcf7 input[type="submit"] {
  background: var(--char); color: #fff; border: none; padding: 13px 36px;
  font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 500; cursor: pointer; font-family: var(--sans);
}
.wpcf7 input[type="submit"]:hover { background: #333; }

/* ====
   QUICK VIEW MODAL
==== */
.quick-view-modal {
  position: fixed; inset: 0; z-index: 600; display: none;
  align-items: center; justify-content: center;
  background: rgba(0,0,0,.5);
}
.quick-view-modal.open { display: flex; }
.qv-content {
  background: var(--white); max-width: 860px; width: 90%;
  max-height: 90vh; overflow-y: auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  position: relative;
}
.qv-close {
  position: absolute; top: 16px; right: 16px; z-index: 10;
  background: var(--white); border: none; font-size: 20px; color: var(--char);
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 1px 6px rgba(0,0,0,.1);
}
.qv-image { aspect-ratio: .9; overflow: hidden; background: var(--cream); }
.qv-image img { width: 100%; height: 100%; object-fit: cover; }
.qv-info { padding: 36px 32px; }
.qv-info .pdp-name { font-family: var(--serif); font-size: 24px; font-weight: 400; margin-bottom: 8px; }
.qv-info .pdp-price { font-size: 20px; margin-bottom: 14px; }
.qv-info .pdp-desc { margin-bottom: 20px; }

/* ====
   MOBILE MENU
==== */
.mobile-menu {
  position: fixed; top: 0; left: -100%; width: 320px; height: 100vh;
  background: var(--white); z-index: 500;
  transition: left .34s ease; display: flex; flex-direction: column;
  box-shadow: 4px 0 24px rgba(0,0,0,.1);
}
.mobile-menu.open { left: 0; }
.mm-head {
  padding: 22px 24px; border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.mm-head .nav-brand { font-size: 20px; }
.mm-close { background: none; border: none; font-size: 22px; color: var(--char); cursor: pointer; }
.mm-body { flex: 1; overflow-y: auto; padding: 20px 0; }
.mm-nav { list-style: none; margin: 0; padding: 0; }
.mm-nav li { border-bottom: 1px solid var(--border); }
.mm-nav li a {
  display: block; padding: 14px 24px;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--char); font-weight: 500; text-decoration: none;
  transition: background .2s;
}
.mm-nav li a:hover { background: var(--warm); }
.mm-nav .sub-menu { display: none; padding: 0; }
.mm-nav .menu-item-has-children.open > .sub-menu { display: block; }
.mm-nav .sub-menu a { padding-left: 40px; font-size: 10px; color: var(--muted); font-weight: 400; }
.mm-footer { padding: 20px 24px; border-top: 1px solid var(--border); }
.mm-footer .ft-langs { margin-bottom: 12px; }

/* ====
   RESPONSIVE
==== */
@media (max-width: 1024px) {
  .mobile-menu-toggle { display: block; }
  .nav-left { display: none; }
  .nav-wrap { padding: 0 20px; }
  .hero { grid-template-columns: 1fr; }
  .hero-photo { display: none; }
  .hero-content { padding: 80px 40px; min-height: 70vh; }
  .cats-grid { grid-template-columns: repeat(3, 1fr); }
  .prod-grid,
  ul.products { grid-template-columns: repeat(2, 1fr); }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-layout aside { display: none; }
  .pdp-wrap { grid-template-columns: 1fr; }
  .pdp-gallery { grid-template-columns: 60px 1fr; }
  .j-featured { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; }
  .checkout-wrap,
  .woocommerce form.checkout { grid-template-columns: 1fr; }
  .account-wrap { grid-template-columns: 1fr; }
  .woocommerce-MyAccount-navigation { width: 100%; float: none; border-right: none; padding-right: 0; border-bottom: 1px solid var(--border); padding-bottom: 20px; margin-bottom: 20px; }
  .woocommerce-MyAccount-content { margin-left: 0; }
  .nl-grid { grid-template-columns: 1fr; }
  .nl-photo { display: none; }
  .ft-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-row { grid-template-columns: repeat(2, 1fr); }
  .fran-cards { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .wl-row { grid-template-columns: 88px 1fr; }
  .distributor-benefits { grid-template-columns: 1fr; }
  .qv-content { grid-template-columns: 1fr; }
  .ed-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-posts-grid { grid-template-columns: repeat(2, 1fr); }
  .j-more { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .wrap { padding: 0 20px; }
  .hero-title { font-size: 48px; }
  .hero-content { padding: 60px 24px; }
  .sec-h { font-size: 30px; }
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
  .prod-grid,
  ul.products { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .pdp-gallery { grid-template-columns: 1fr; }
  .pdp-thumbs { flex-direction: row; }
  .pdp-thumb { width: 60px; height: 66px; }
  .coll-top { grid-template-columns: 1fr; }
  .coll-bot { grid-template-columns: 1fr; }
  .ft-grid { grid-template-columns: 1fr; gap: 24px; }
  .ft-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .about-hero h1 { font-size: 36px; }
  .fran-hero h1 { font-size: 36px; }
  .distributor-hero h1 { font-size: 36px; }
  .trust-row { grid-template-columns: 1fr; height: auto; }
  .trust-cell { padding: 12px 20px; border-right: none; border-bottom: 1px solid var(--border); }
  .form-grid-2 { grid-template-columns: 1fr; }
  .nl-content { padding: 40px 24px; }
  .nl-h { font-size: 28px; }
  .about-stats-inner { grid-template-columns: 1fr; gap: 30px; }
  .j-more { grid-template-columns: 1fr; }
  .j-more-item { border-right: none; border-bottom: 1px solid var(--border); }
  .cart-panel { width: 100%; right: -100%; }
  .mobile-menu { width: 100%; }
  .wl-row { grid-template-columns: 1fr; }
  .wl-img { width: 100%; height: 200px; }
}

/* ====
   ANIMATIONS
==== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp .6s ease forwards; }

/* Scroll reveal */
.scroll-reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.scroll-reveal.visible { opacity: 1; transform: translateY(0); }

/* ====
   PRINT
==== */
@media print {
  .topbar, .navbar, .cart-panel, .backdrop, .mobile-menu, footer { display: none; }
  body { font-size: 12pt; }
}

/* ====
   RTL SUPPORT
==== */
[dir="rtl"] .nav-left { flex-direction: row-reverse; }
[dir="rtl"] .nav-right { margin-left: 0; margin-right: auto; flex-direction: row-reverse; }
[dir="rtl"] .nav-center { left: 50%; transform: translateX(-50%); }
[dir="rtl"] .mobile-menu { left: auto; right: -100%; }
[dir="rtl"] .mobile-menu.open { right: 0; }
[dir="rtl"] .cart-panel { right: auto; left: -450px; }
[dir="rtl"] .cart-panel.open { left: 0; }
