/* ============================================================
   آرامش (Aramesh) — Professional Mattress Store
   Refined, clean, compact design system (RTL)
   ============================================================ */

/* ---------- Fonts ---------- */
@font-face {
  font-family: "Vazirmatn";
  src: url("../fonts/vazirmatn-arabic.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0600-06FF, U+0750-077F, U+08A0-08FF, U+FB50-FDFF, U+FE70-FEFF, U+200C-200D;
}
@font-face {
  font-family: "Vazirmatn";
  src: url("../fonts/vazirmatn-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}

/* ---------- Design Tokens ---------- */
:root {
  --navy:        #1e3a5f;
  --navy-dark:   #15293f;
  --navy-light:  #2c5080;
  --navy-700:    #294e79;
  --gold:        #b08d57;
  --gold-light:  #c4a06a;
  --gold-soft:   #f3ecdf;
  --bg:          #f4f5f7;   /* page background (cool light) */
  --paper:       #ffffff;
  --ivory:       #fafbfc;
  --ink:         #1f2a37;   /* body text */
  --ink-soft:    #6b7480;
  --ink-faint:   #9aa3ad;
  --line:        #e6e9ee;
  --line-soft:   #eef1f5;
  --success:     #1f8a5b;
  --success-soft:#e8f5ef;
  --danger:      #e0394b;   /* sale red */
  --danger-soft: #fdecee;
  --shadow-xs:   0 1px 2px rgba(20,35,55,.05);
  --shadow-sm:   0 2px 10px rgba(20,35,55,.06);
  --shadow-md:   0 8px 24px rgba(20,35,55,.09);
  --shadow-lg:   0 16px 42px rgba(20,35,55,.14);
  --radius:      12px;
  --radius-sm:   8px;
  --radius-xs:   6px;
  --container:   1240px;
  --t-fast:      .16s ease;
  --t:           .24s cubic-bezier(.4,0,.2,1);
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: "Vazirmatn", Tahoma, system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  font-size: 15px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  max-width: 100vw;
}
.header-main, .hero__inner, .hero__cta, .hero__stats, .features, .grid,
.shop-toolbar, .footer-bottom, .cta-band, .topbar .container { min-width: 0; }
.header-main > *, .hero__cta > *, .hero__stats > * { min-width: 0; }
img, svg { max-width: 100%; }
img { height: auto; display: block; }
svg.svgicon { flex-shrink: 0; }
a { color: var(--navy); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--gold); }
h1,h2,h3,h4,h5 { font-weight: 800; line-height: 1.45; color: var(--navy-dark); margin: 0 0 .55em; letter-spacing: -.2px; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
.num, .price, .woocommerce-Price-amount, bdi { font-variant-numeric: tabular-nums; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 20px; }
.section { padding-block: 58px; }
.section--tight { padding-block: 38px; }
.section--alt { background: var(--ivory); }
.grid { display: grid; gap: 22px; }
.text-center { text-align: center; }
.muted { color: var(--ink-soft); }

/* Section heading */
.sec-head { text-align: center; max-width: 620px; margin: 0 auto 38px; }
.sec-head .eyebrow {
  display: inline-block; color: var(--gold); font-weight: 700; font-size: .76rem;
  letter-spacing: 2px; margin-bottom: 9px;
}
.sec-head h2 { font-size: clamp(1.35rem, 2.4vw, 1.85rem); margin: 0; font-weight: 800; }
.sec-head p { color: var(--ink-soft); margin-top: 9px; font-size: .95rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 20px; border-radius: var(--radius-sm); font-weight: 700; font-size: .9rem;
  border: 1.5px solid transparent; cursor: pointer; transition: var(--t); white-space: nowrap;
  line-height: 1; font-family: inherit;
}
.btn svg { width: 17px; height: 17px; }
.btn--primary { background: var(--navy); color: #fff; }
.btn--primary:hover { background: var(--navy-dark); color: #fff; box-shadow: var(--shadow-sm); }
.btn--gold { background: var(--gold); color: #fff; }
.btn--gold:hover { background: var(--gold-light); color: #fff; box-shadow: var(--shadow-sm); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--navy); color: var(--navy); background: #fff; }
.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { background: var(--gold-soft); color: var(--navy-dark); }
.btn--lg { padding: 13px 26px; font-size: .98rem; }
.btn--block { width: 100%; }

/* ============================================================
   HEADER
   ============================================================ */
.topbar { background: var(--navy-dark); color: #c7d0db; font-size: .78rem; }
.topbar .container { display: flex; align-items: center; justify-content: space-between; min-height: 38px; gap: 16px; }
.topbar a { color: #c7d0db; } .topbar a:hover { color: var(--gold-light); }
.topbar__list { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar__list li { display: flex; align-items: center; gap: 6px; }
.topbar svg { width: 14px; height: 14px; opacity: .75; }

.site-header { background: var(--paper); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 200; transition: box-shadow var(--t); }
.site-header.is-stuck { box-shadow: var(--shadow-sm); }
.header-main { display: flex; align-items: center; gap: 24px; min-height: 74px; }

.brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand__mark { width: 42px; height: 42px; flex-shrink: 0; }
.brand__name { display: flex; flex-direction: column; line-height: 1.2; }
.brand__name strong { font-size: 1.18rem; color: var(--navy-dark); font-weight: 900; }
.brand__name span { font-size: .64rem; color: var(--gold); letter-spacing: 1.5px; font-weight: 600; }

/* search */
.header-search { flex: 1; max-width: 540px; }
.header-search form { display: flex; background: var(--bg); border: 1.5px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; transition: border-color var(--t-fast), background var(--t-fast); }
.header-search form:focus-within { border-color: var(--gold); background: #fff; }
.header-search input[type=search] { flex: 1; border: 0; padding: 11px 16px; font-family: inherit; font-size: .9rem; background: transparent; outline: none; color: var(--ink); }
.header-search button { border: 0; background: var(--navy); color: #fff; padding: 0 18px; cursor: pointer; display: flex; align-items: center; transition: background var(--t-fast); }
.header-search button:hover { background: var(--gold); }
.header-search svg { width: 18px; height: 18px; }

.header-actions { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.icon-btn { position: relative; display: flex; align-items: center; gap: 8px; padding: 8px 10px; border-radius: var(--radius-sm); color: var(--navy-dark); transition: background var(--t-fast); }
.icon-btn:hover { background: var(--bg); color: var(--navy-dark); }
.icon-btn svg { width: 22px; height: 22px; }
.icon-btn small { display: block; font-size: .66rem; color: var(--ink-soft); }
.icon-btn b { font-size: .8rem; font-weight: 700; }
.icon-btn__text { line-height: 1.25; }
.cart-count {
  position: absolute; top: 1px; right: 2px; background: var(--gold); color: #fff;
  font-size: .64rem; font-weight: 700; min-width: 18px; height: 18px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center; padding: 0 5px;
}

/* primary nav — clean underline style */
.primary-nav { background: var(--navy); }
.primary-nav .container { display: flex; align-items: center; gap: 4px; }
.nav-menu { display: flex; flex-wrap: wrap; }
.nav-menu li { position: relative; }
.nav-menu > li > a { display: block; color: #d7e0ec; padding: 14px 15px; font-weight: 600; font-size: .9rem; position: relative; }
.nav-menu > li > a::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 9px; height: 2px;
  background: var(--gold-light); border-radius: 2px; transform: scaleX(0); transform-origin: center; transition: transform var(--t);
}
.nav-menu > li > a:hover { color: #fff; }
.nav-menu > li > a:hover::after,
.nav-menu > li.current-menu-item > a::after,
.nav-menu > li.current-menu-parent > a::after,
.nav-menu > li.current-menu-ancestor > a::after { transform: scaleX(1); }
.nav-menu > li.current-menu-item > a,
.nav-menu > li.current-menu-parent > a,
.nav-menu > li.current-menu-ancestor > a { color: #fff; }
.nav-menu .menu-item-has-children > a::before { content: "▾"; float: left; margin-inline-start: 5px; font-size: .65rem; opacity: .65; }
.nav-menu .sub-menu {
  position: absolute; top: 100%; right: 0; min-width: 210px; background: #fff; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  box-shadow: var(--shadow-md); padding: 7px; opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: var(--t); z-index: 50; border-top: 2px solid var(--gold);
}
.nav-menu li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-menu .sub-menu a { color: var(--ink); padding: 9px 12px; border-radius: var(--radius-xs); font-weight: 500; font-size: .88rem; display: block; }
.nav-menu .sub-menu a:hover { background: var(--bg); color: var(--navy); }
.nav-menu .sub-menu a::after { display: none; }
.nav-cta { margin-inline-start: auto; display: flex; align-items: center; gap: 7px; color: var(--gold-light); font-weight: 700; font-size: .85rem; padding-block: 11px; }
.nav-cta svg { width: 17px; height: 17px; }

/* mobile toggles */
.nav-toggle, .mobile-only { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-700) 100%); color: #fff; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 82% 18%, rgba(176,141,87,.20), transparent 45%),
                    radial-gradient(circle at 12% 92%, rgba(176,141,87,.10), transparent 42%);
}
.hero__inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 40px; padding-block: 64px; }
.hero__badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); color: var(--gold-light); padding: 6px 14px; border-radius: 999px; font-size: .78rem; font-weight: 600; margin-bottom: 18px; }
.hero__badge svg { width: 15px; height: 15px; }
.hero h1 { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.6rem); line-height: 1.4; margin-bottom: 16px; font-weight: 800; }
.hero h1 .accent { color: var(--gold-light); }
.hero p { color: #c4cdd9; font-size: 1rem; max-width: 500px; margin-bottom: 26px; line-height: 1.85; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 30px; margin-top: 38px; flex-wrap: wrap; }
.hero__stats .num { font-size: 1.55rem; font-weight: 900; color: var(--gold-light); display: block; }
.hero__stats span { font-size: .8rem; color: #aab6c5; }
.hero__art { position: relative; }
.hero__art .card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(4px);
  border-radius: 16px; padding: 20px; box-shadow: var(--shadow-lg);
}
.hero__art img { border-radius: 10px; }
.hero__float {
  position: absolute; background: #fff; color: var(--ink); border-radius: 11px; padding: 11px 15px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 10px; font-size: .82rem;
}
.hero__float.one { bottom: 20px; right: -12px; } .hero__float.two { top: 20px; left: -12px; }
.hero__float svg { width: 26px; height: 26px; color: var(--gold); flex-shrink: 0; }
.hero__float b { display: block; color: var(--navy-dark); font-weight: 800; font-size: .86rem; }
.hero__float small { color: var(--ink-soft); }
.hero__wave { position: relative; display: block; width: 100%; height: 40px; color: var(--bg); }

/* ============================================================
   FEATURE STRIP
   ============================================================ */
.features { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-xs); }
.feature { display: flex; align-items: center; gap: 13px; padding: 20px 20px; border-inline-start: 1px solid var(--line); }
.feature:first-child { border-inline-start: 0; }
.feature__icon { width: 42px; height: 42px; border-radius: 10px; background: var(--gold-soft); color: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feature__icon svg { width: 22px; height: 22px; }
.feature b { display: block; color: var(--navy-dark); font-size: .94rem; font-weight: 800; }
.feature span { font-size: .8rem; color: var(--ink-soft); }

/* ============================================================
   CATEGORIES
   ============================================================ */
.cat-grid { grid-template-columns: repeat(5,1fr); }
.cat-card {
  position: relative; display: flex; flex-direction: column; align-items: center; gap: 11px; text-align: center;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 16px;
  transition: var(--t);
}
.cat-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cat-card__icon { width: 60px; height: 60px; border-radius: 50%; background: var(--gold-soft); display: flex; align-items: center; justify-content: center; color: var(--navy); transition: var(--t); }
.cat-card:hover .cat-card__icon { background: var(--navy); color: #fff; }
.cat-card__icon svg { width: 28px; height: 28px; }
.cat-card b { color: var(--navy-dark); font-size: .96rem; font-weight: 700; }
.cat-card span { font-size: .78rem; color: var(--ink-soft); }

/* ============================================================
   PRODUCT CARDS / GRID
   ============================================================ */
.products-grid { grid-template-columns: repeat(4,1fr); }
ul.products { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin: 0; padding: 0; }
ul.products::before, ul.products::after { content: none !important; }

li.product, .product-card {
  position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: var(--t); display: flex; flex-direction: column; list-style: none; margin: 0 !important; width: auto !important;
}
li.product:hover, .product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #d8dde4; }
.product-card__media { position: relative; background: #fff; overflow: hidden; aspect-ratio: 1/1; border-bottom: 1px solid var(--line-soft); }
.product-card__media img { width: 100%; height: 100%; object-fit: contain; padding: 14px; transition: transform var(--t); }
.product-card:hover .product-card__media img { transform: scale(1.04); }

/* badges — clean pill inside top corner */
.badge, .product-card__media .badge {
  position: absolute; top: 10px; z-index: 3; font-size: .68rem; font-weight: 700;
  padding: 3px 8px; border-radius: var(--radius-xs); color: #fff; line-height: 1.7;
}
.badge--sale { background: var(--danger); right: 10px; left: auto; }
.badge--new  { background: var(--success); left: 10px; right: auto; }
.badge--featured { background: var(--gold); left: 10px; right: auto; }
/* override WooCommerce default onsale everywhere */
.woocommerce span.onsale, span.onsale {
  position: absolute; top: 10px; right: 10px; left: auto; margin: 0; min-height: 0; min-width: 0;
  padding: 3px 8px; border-radius: var(--radius-xs); background: var(--danger); color: #fff;
  font-size: .68rem; font-weight: 700; line-height: 1.7;
}

.product-card__body { padding: 14px 14px 16px; display: flex; flex-direction: column; flex: 1; }
.product-card__cat { font-size: .72rem; color: var(--ink-soft); font-weight: 600; margin-bottom: 5px; }
.product-card__title, li.product .woocommerce-loop-product__title {
  font-size: .92rem !important; font-weight: 700; color: var(--navy-dark) !important; line-height: 1.65; margin: 0 0 8px !important; padding: 0 !important;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 3em;
}
.product-card__rating { display: flex; align-items: center; gap: 4px; margin-bottom: 10px; color: var(--gold); font-size: .78rem; }
.product-card__rating .count { color: var(--ink-faint); }
.product-card__rating svg { width: 14px; height: 14px; }
.product-card__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 8px; }

.product-card__foot .price, li.product .price { color: var(--navy-dark) !important; font-weight: 800; font-size: .92rem; margin: 0 !important; line-height: 1.35; }
.product-card__foot .price del, li.product .price del { color: var(--ink-faint); font-weight: 500; font-size: .72rem; opacity: 1; display: block; }
.product-card__foot .price ins, li.product .price ins { text-decoration: none; color: var(--danger); }
.price .unit { font-size: .7rem; color: var(--ink-soft); font-weight: 500; }
.price .woocommerce-Price-amount { font-weight: 800; }
.product-card__foot { gap: 6px; }

/* add to cart — compact rectangular */
.add-cart-btn, li.product .button {
  background: var(--navy) !important; color: #fff !important; border-radius: var(--radius-sm) !important; padding: 8px 14px !important;
  font-weight: 700 !important; font-size: .8rem !important; border: 0 !important; cursor: pointer; transition: var(--t) !important;
  display: inline-flex !important; align-items: center; gap: 6px; line-height: 1 !important; margin: 0 !important; white-space: nowrap;
}
.add-cart-btn:hover, li.product .button:hover { background: var(--gold) !important; color: #fff !important; }
.add-cart-btn svg { width: 15px; height: 15px; }
li.product .added_to_cart { display: none; }

/* ============================================================
   WHY US
   ============================================================ */
.why { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.why__eyebrow { color: var(--gold); font-weight: 700; letter-spacing: 2px; font-size: .76rem; }
.why h2 { font-size: clamp(1.4rem, 2.5vw, 1.95rem); margin: 8px 0 14px; }
.why__lead { color: var(--ink-soft); font-size: .96rem; margin-bottom: 22px; }
.why__list { display: grid; gap: 14px; }
.why__item { display: flex; gap: 13px; align-items: flex-start; }
.why__check { width: 30px; height: 30px; border-radius: 8px; background: var(--success-soft); color: var(--success); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why__check svg { width: 17px; height: 17px; }
.why__item b { color: var(--navy-dark); font-size: .94rem; font-weight: 700; display: block; }
.why__item span { color: var(--ink-soft); font-size: .85rem; }
.why__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.stat-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 20px; display: flex; flex-direction: column; gap: 8px; transition: var(--t); }
.stat-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.stat-card__icon { width: 40px; height: 40px; border-radius: 10px; background: var(--gold-soft); color: var(--gold); display: flex; align-items: center; justify-content: center; }
.stat-card__icon svg { width: 21px; height: 21px; }
.stat-card b { font-size: 1.25rem; color: var(--navy-dark); font-weight: 900; }
.stat-card span { font-size: .83rem; color: var(--ink-soft); }

/* ============================================================
   PROMO / SPLIT BANNER
   ============================================================ */
.promo { background: linear-gradient(120deg, var(--navy) 0%, var(--navy-dark) 100%); border-radius: var(--radius); overflow: hidden; color: #fff; display: grid; grid-template-columns: 1.1fr .9fr; position: relative; }
.promo::after { content:""; position:absolute; inset:0; background: radial-gradient(circle at 85% 30%, rgba(176,141,87,.22), transparent 50%); }
.promo__body { padding: 44px 42px; position: relative; z-index: 2; }
.promo__body .eyebrow { color: var(--gold-light); font-weight: 700; letter-spacing: 2px; font-size: .76rem; }
.promo__body h2 { color: #fff; font-size: clamp(1.4rem, 2.6vw, 2rem); margin: 10px 0 14px; }
.promo__body p { color: #c4cdd9; margin-bottom: 22px; font-size: .95rem; }
.promo__art { position: relative; background: rgba(255,255,255,.04); }
.promo__art img { width: 100%; height: 100%; object-fit: contain; padding: 24px; }

/* countdown */
.countdown { display: flex; gap: 10px; margin-bottom: 22px; }
.countdown div { background: rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.14); border-radius: 10px; padding: 10px 14px; text-align: center; min-width: 58px; }
.countdown b { display:block; font-size: 1.3rem; font-weight: 900; color: #fff; }
.countdown span { font-size: .68rem; color: #aab6c5; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid { grid-template-columns: repeat(3,1fr); }
.testi { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 22px; position: relative; }
.testi__stars { color: var(--gold); margin-bottom: 12px; display: flex; gap: 2px; }
.testi__stars svg { width: 15px; height: 15px; fill: var(--gold); }
.testi p { color: var(--ink); position: relative; z-index: 2; font-size: .92rem; line-height: 1.9; }
.testi__author { display: flex; align-items: center; gap: 11px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.testi__avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--navy); color:#fff; display:flex; align-items:center; justify-content:center; font-weight:800; }
.testi__author b { color: var(--navy-dark); display:block; font-size: .9rem; }
.testi__author span { font-size: .78rem; color: var(--ink-soft); }

/* ============================================================
   BLOG / ARTICLES TEASER
   ============================================================ */
.post-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: var(--t); display: block; }
.post-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.post-card__media { aspect-ratio: 16/10; background: var(--bg); overflow:hidden; }
.post-card__media img { width:100%; height:100%; object-fit: cover; }
.post-card__body { padding: 18px; }
.post-card__meta { font-size: .76rem; color: var(--gold); font-weight: 600; margin-bottom: 7px; }
.post-card h3 { font-size: 1.02rem; margin-bottom: 8px; line-height: 1.6; }
.post-card p { color: var(--ink-soft); font-size: .88rem; margin: 0; }

/* ============================================================
   NEWSLETTER / CTA
   ============================================================ */
.cta-band { background: var(--navy); color: #fff; border-radius: var(--radius); padding: 38px 42px; display:flex; align-items:center; justify-content:space-between; gap: 26px; flex-wrap: wrap; position: relative; overflow: hidden; }
.cta-band::after { content:""; position:absolute; inset:0; background: radial-gradient(circle at 88% 20%, rgba(176,141,87,.2), transparent 48%); }
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { margin:0; color: #fff; font-size: 1.3rem; }
.cta-band p { margin:.4em 0 0; color: #c4cdd9; font-size: .92rem; }
.cta-band form { display:flex; gap:10px; flex:1; min-width: 280px; max-width: 440px; }
.cta-band input { flex:1; border:1.5px solid transparent; border-radius: var(--radius-sm); padding: 12px 16px; font-family: inherit; background:#fff; outline:none; color: var(--ink); }
.cta-band input:focus { border-color: var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy-dark); color: #aab6c5; margin-top: 64px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 36px; padding-block: 50px; }
.footer-col h4 { color: #fff; font-size: .98rem; margin-bottom: 16px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content:""; position:absolute; bottom:0; right:0; width: 32px; height: 2px; background: var(--gold); }
.footer-col ul li { margin-bottom: 9px; }
.footer-col a { color: #aab6c5; font-size: .88rem; display: inline-block; transition: color var(--t-fast), transform var(--t-fast); }
.footer-col a:hover { color: var(--gold-light); transform: translateX(-3px); }
.footer-about p { font-size: .88rem; line-height: 1.95; color: #95a2b3; }
.footer-brand { display:flex; align-items:center; gap: 11px; margin-bottom: 14px; }
.footer-brand strong { color:#fff; font-size: 1.2rem; font-weight: 900; }
.footer-contact li { display:flex; align-items:flex-start; gap:9px; margin-bottom:12px; font-size:.86rem; }
.footer-contact svg { width: 17px; height: 17px; color: var(--gold); flex-shrink:0; margin-top: 3px; }
.socials { display:flex; gap:9px; margin-top: 16px; }
.socials a { width: 36px; height: 36px; border-radius: 9px; background: rgba(255,255,255,.06); display:flex; align-items:center; justify-content:center; color:#fff; transition: var(--t); }
.socials a:hover { background: var(--gold); transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; }
.trust-badges { display:flex; gap: 12px; align-items:center; flex-wrap:wrap; margin-top: 16px; }
.trust-badges .badge-box { background:#fff; border-radius: 9px; padding: 10px; width: 56px; height: 56px; display:flex; align-items:center; justify-content:center; }
.trust-badges .badge-box svg { width: 26px; height: 26px; color: var(--navy); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-block: 18px; font-size: .82rem; color: #8d9bac; }
.footer-bottom a { color: var(--gold-light); }

/* ============================================================
   BREADCRUMB / PAGE TITLE
   ============================================================ */
.page-hero { background: var(--paper); border-bottom: 1px solid var(--line); padding-block: 30px; }
.page-hero h1 { font-size: clamp(1.35rem, 2.6vw, 1.9rem); margin: 0 0 7px; }
.breadcrumb, .woocommerce-breadcrumb { font-size: .82rem; color: var(--ink-soft); }
.breadcrumb a, .woocommerce-breadcrumb a { color: var(--navy); }
.breadcrumb .sep, .woocommerce-breadcrumb .sep { margin-inline: 7px; color: var(--ink-faint); }

/* ============================================================
   WOOCOMMERCE — overrides & polish
   ============================================================ */
.woocommerce-message, .woocommerce-info, .woocommerce-error {
  border-radius: var(--radius-sm); border: 1px solid var(--line); border-top: 3px solid var(--gold);
  background: var(--paper); padding: 14px 18px; list-style: none; font-size: .9rem;
}
.woocommerce-message { border-top-color: var(--success); }
.woocommerce-error { border-top-color: var(--danger); }
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .woocommerce #respond input#submit,
.woocommerce .single_add_to_cart_button, .woocommerce #place_order, .woocommerce .checkout-button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  background-color: var(--navy) !important; color:#fff !important; border-radius: var(--radius-sm); padding: 11px 22px; font-weight: 700; font-family: inherit; border:0; transition: var(--t); font-size: .9rem; text-shadow: none;
}
.woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover,
.woocommerce .single_add_to_cart_button:hover, .woocommerce #place_order:hover, .woocommerce .checkout-button:hover {
  background-color: var(--navy-dark) !important; color:#fff !important;
}
/* primary/alt actions in gold */
.woocommerce .button.alt, .woocommerce #respond input#submit.alt,
.woocommerce .single_add_to_cart_button, .woocommerce #place_order,
.woocommerce .checkout-button, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  background-color: var(--gold) !important;
}
.woocommerce .button.alt:hover, .woocommerce .single_add_to_cart_button:hover,
.woocommerce #place_order:hover, .woocommerce .checkout-button:hover { background-color: var(--gold-light) !important; }
/* disabled / variation-needed state */
.woocommerce .single_add_to_cart_button.disabled, .woocommerce button.button:disabled { opacity: .55 !important; }

/* shop layout */
.shop-layout { display: grid; grid-template-columns: 250px 1fr; gap: 30px; align-items: start; }
.shop-sidebar { background: var(--paper); border:1px solid var(--line); border-radius: var(--radius); padding: 20px; position: sticky; top: 96px; }
.shop-sidebar h3 { font-size: .98rem; padding-bottom: 11px; border-bottom: 1px solid var(--line); margin-bottom: 14px; }
.widget { margin-bottom: 24px; }
.widget:last-child { margin-bottom: 0; }
.widget ul li { padding: 7px 0; border-bottom: 1px dashed var(--line-soft); font-size: .88rem; }
.widget ul li:last-child { border-bottom: 0; }
.widget ul li a { color: var(--ink); } .widget ul li a:hover { color: var(--gold); }
.widget svg { width: 18px; height: 18px; color: var(--gold); }
.shop-toolbar { display:flex; align-items:center; justify-content:space-between; gap: 14px; margin-bottom: 22px; background: var(--paper); border:1px solid var(--line); border-radius: var(--radius-sm); padding: 12px 18px; flex-wrap: wrap; }
.woocommerce-result-count { margin:0; color: var(--ink-soft); font-size: .86rem; }
.woocommerce-ordering select { border:1.5px solid var(--line); border-radius: var(--radius-sm); padding: 8px 14px; font-family: inherit; background:#fff; color: var(--ink); cursor:pointer; font-size: .86rem; }

/* single product */
.woocommerce div.product { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.woocommerce div.product .woocommerce-product-gallery { margin-bottom: 0; position: relative; }
.woocommerce div.product .images img { border-radius: var(--radius); border:1px solid var(--line); background: #fff; }
.woocommerce div.product .product_title { font-size: 1.5rem; }
.woocommerce div.product p.price, .woocommerce div.product span.price { color: var(--navy-dark); font-size: 1.4rem; font-weight: 900; }
.woocommerce div.product p.price ins { color: var(--danger); }
.woocommerce div.product p.price del { font-size: .95rem; color: var(--ink-faint); }
.woocommerce div.product .woocommerce-product-rating { margin-bottom: 12px; }
.woocommerce div.product form.cart { margin-top: 20px; display:flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.woocommerce div.product form.cart .quantity input { width: 70px; padding: 11px; border:1.5px solid var(--line); border-radius: var(--radius-sm); text-align:center; font-family:inherit; }
.woocommerce div.product .single_add_to_cart_button { padding: 13px 32px; font-size: .98rem; }
.woocommerce-tabs { grid-column: 1 / -1; margin-top: 16px; }
.woocommerce div.product .woocommerce-tabs ul.tabs { border:0; padding:0; display:flex; gap: 4px; border-bottom: 1px solid var(--line); margin-bottom: 22px; }
.woocommerce div.product .woocommerce-tabs ul.tabs::before { border:0; }
.woocommerce div.product .woocommerce-tabs ul.tabs li { background: transparent; border:0; border-radius: 0; margin:0; }
.woocommerce div.product .woocommerce-tabs ul.tabs li::before, .woocommerce div.product .woocommerce-tabs ul.tabs li::after { display:none; }
.woocommerce div.product .woocommerce-tabs ul.tabs li a { color: var(--ink-soft); font-weight: 700; padding: 11px 20px; display:block; border-bottom: 2px solid transparent; font-size: .92rem; }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { color: var(--navy-dark); border-bottom-color: var(--gold); }

/* product trust row */
.product-trust { grid-column: 1/-1; display:grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 6px; }
.product-trust .item { display:flex; align-items:center; gap:10px; background: var(--ivory); border:1px solid var(--line); border-radius: var(--radius-sm); padding: 12px; }
.product-trust svg { width: 22px; height:22px; color: var(--gold); flex-shrink:0; }
.product-trust b { display:block; font-size: .84rem; color: var(--navy-dark); }
.product-trust span { font-size: .74rem; color: var(--ink-soft); }

/* cart & checkout */
.woocommerce table.shop_table { border-radius: var(--radius); border:1px solid var(--line); border-collapse: separate; overflow:hidden; }
.woocommerce table.shop_table th { background: var(--ivory); color: var(--navy-dark); }
.woocommerce .cart-collaterals .cart_totals, .woocommerce-checkout #order_review { border:1px solid var(--line); border-radius: var(--radius); padding: 8px 18px 18px; background: var(--paper); }
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea, .woocommerce form .form-row select, .select2-container .select2-selection {
  border:1.5px solid var(--line) !important; border-radius: var(--radius-sm) !important; padding: 11px 13px !important; font-family: inherit !important; min-height: auto;
}
.woocommerce form .form-row input.input-text:focus { border-color: var(--gold) !important; }

/* pagination */
.woocommerce nav.woocommerce-pagination ul { border:0; gap: 5px; display:flex; justify-content:center; }
.woocommerce nav.woocommerce-pagination ul li { border:0; }
.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span {
  border:1px solid var(--line); border-radius: var(--radius-sm); padding: 9px 15px; background:#fff; color: var(--navy); font-size: .88rem;
}
.woocommerce nav.woocommerce-pagination ul li span.current { background: var(--navy); color:#fff; border-color: var(--navy); }
.woocommerce .related > h2, .woocommerce .upsells > h2 { font-size: 1.25rem; margin: 36px 0 22px; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.woocommerce div.product form.cart .variations { width:100%; margin-bottom: 8px; }
.woocommerce div.product form.cart .variations td, .woocommerce div.product form.cart .variations th { padding: 7px 0; }
.woocommerce div.product form.cart .variations select { border:1.5px solid var(--line); border-radius: var(--radius-sm); padding: 10px 13px; font-family: inherit; background:#fff; min-width: 190px; }

/* ============================================================
   ARTICLE / SINGLE / PAGE CONTENT
   ============================================================ */
.content-narrow { max-width: 800px; margin-inline: auto; }
.entry-content { font-size: .98rem; line-height: 1.95; }
.entry-content h2 { margin-top: 1.5em; }
.entry-content img { border-radius: var(--radius); margin-block: 1em; }
.entry-content ul { list-style: disc; padding-inline-start: 1.4em; margin-bottom: 1em; }
.entry-content ul li { margin-bottom: .4em; }
.entry-content blockquote { border-inline-start: 3px solid var(--gold); background: var(--ivory); padding: 14px 20px; border-radius: var(--radius-sm); margin: 1.3em 0; }

/* ============================================================
   UTIL / SCROLL TOP
   ============================================================ */
.to-top { position: fixed; bottom: 22px; left: 22px; width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color:#fff; display:flex; align-items:center; justify-content:center; box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translateY(10px); transition: var(--t); z-index: 150; cursor:pointer; border:0; }
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--gold); }
.to-top svg { width: 20px; height: 20px; }

/* reveal on scroll */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
[data-reveal].in { opacity: 1; transform: none; }
.no-js [data-reveal] { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .cat-grid { grid-template-columns: repeat(3,1fr); }
  ul.products, .products-grid { grid-template-columns: repeat(3,1fr); }
  .features { grid-template-columns: repeat(2,1fr); }
  .feature:nth-child(3) { border-inline-start: 0; }
  .why { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 900px) {
  .header-search { display: none; }
  .primary-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .mobile-only { display: block; }
  .mobile-hide, .icon-btn .icon-btn__text { display: none; }
  .header-main { gap: 12px; min-height: 62px; }
  .header-actions { margin-inline-start: auto; gap: 2px; }
  .brand__name strong { font-size: 1.04rem; }
  .icon-btn { padding: 7px; }
  .hero__inner { grid-template-columns: 1fr; padding-block: 48px; }
  .hero__art { display: none; }
  .hero__stats { gap: 18px; }
  .hero__stats .num { font-size: 1.3rem; }
  .hero h1 { font-size: 1.6rem; }
  .promo { grid-template-columns: 1fr; }
  .promo__art { min-height: 200px; }
  .woocommerce div.product { grid-template-columns: 1fr; gap: 24px; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; }
  .testi-grid { grid-template-columns: 1fr; }
  .product-trust { grid-template-columns: repeat(2,1fr); }
  .post-card-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 620px) {
  body { font-size: 14.5px; }
  .section { padding-block: 40px; }
  .cat-grid, ul.products, .products-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .features { grid-template-columns: 1fr; }
  .feature { border-inline-start: 0; border-top: 1px solid var(--line); }
  .feature:first-child { border-top: 0; }
  .footer-top { grid-template-columns: 1fr; }
  .hero__stats { gap: 20px; }
  .cta-band { padding: 26px 22px; }
  .promo__body { padding: 30px 24px; }
  .product-trust { grid-template-columns: 1fr; }
  .why__stats { grid-template-columns: 1fr 1fr; }
  .topbar__list .hide-sm { display: none; }
  .product-card__body { padding: 12px; }
  .add-cart-btn, li.product .button { padding: 7px 10px !important; font-size: .74rem !important; }
}

/* ---------- Mobile drawer ---------- */
.drawer-backdrop { position: fixed; inset: 0; background: rgba(21,41,63,.5); opacity:0; visibility:hidden; transition: var(--t); z-index: 300; }
.drawer-backdrop.open { opacity:1; visibility:visible; }
.drawer { position: fixed; top:0; right:-320px; width: 300px; height: 100%; background:#fff; z-index: 310; transition: right var(--t); display:flex; flex-direction:column; box-shadow: var(--shadow-lg); }
.drawer.open { right: 0; }
.drawer__head { display:flex; align-items:center; justify-content:space-between; padding: 16px 18px; border-bottom:1px solid var(--line); background: var(--navy); color:#fff; }
.drawer__head strong { color:#fff; }
.drawer__close { background:transparent; border:0; color:#fff; cursor:pointer; }
.drawer__close svg { width: 22px; height:22px; }
.drawer nav { padding: 10px; overflow-y:auto; }
.drawer nav a { display:block; padding: 12px 13px; color: var(--ink); border-radius: var(--radius-sm); font-weight:600; font-size: .92rem; }
.drawer nav a:hover { background: var(--bg); }
.drawer .sub-menu { padding-inline-start: 12px; }
.drawer__search { padding: 14px; border-bottom: 1px solid var(--line); }
.drawer__search form { display:flex; border:1.5px solid var(--line); border-radius: var(--radius-sm); overflow:hidden; }
.drawer__search input { flex:1; border:0; padding:10px 14px; outline:none; font-family:inherit; }
.drawer__search button { border:0; background: var(--navy); color:#fff; padding:0 16px; cursor: pointer; }
.drawer__search svg { width:17px; height:17px; }
.drawer nav .mobile-menu, .drawer nav .sub-menu { margin:0; padding-inline-start: 0; }
.drawer nav .sub-menu { padding-inline-start: 12px; }

/* ---------- Rating stars ---------- */
.product-card__rating svg.on, .testi__stars svg { fill: var(--gold); color: var(--gold); }
.product-card__rating svg.off { color: var(--line); fill: transparent; }
/* WooCommerce font-based star ratings (reviews, single product) */
.woocommerce .star-rating { color: var(--gold); }
.woocommerce .star-rating::before { color: var(--line); }
.woocommerce .star-rating span::before { color: var(--gold); }
.woocommerce .woocommerce-product-rating .star-rating { margin: 0; }

/* Disabled add-to-cart (variable product, no option chosen yet) */
.woocommerce div.product form.cart .single_add_to_cart_button.disabled,
.woocommerce div.product form.cart .single_add_to_cart_button.wc-variation-selection-needed {
  background: var(--ink-faint) !important; color: #fff !important; opacity: 1 !important; cursor: not-allowed;
}
.woocommerce div.product form.cart .single_add_to_cart_button.disabled:hover {
  background: var(--ink-faint) !important;
}

/* ---------- Accessibility ---------- */
.screen-reader-text { position: absolute !important; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip: rect(0,0,0,0); white-space:nowrap; border:0; }
.skip-link { position:absolute; right:-9999px; top:0; background:#fff; padding:10px 16px; z-index:9999; border-radius:0 0 8px 0; }
.skip-link:focus { right:0; }
.woocommerce-notices-wrapper:not(:empty) { margin-bottom: 18px; }
.brand .custom-logo { max-height: 52px; width:auto; }

/* ============================================================
   LIVE SEARCH DROPDOWN
   ============================================================ */
.header-search { position: relative; }
.live-results {
  position: absolute; top: calc(100% + 7px); right: 0; left: 0; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow-md);
  padding: 6px; z-index: 220; max-height: 440px; overflow-y: auto; display: none;
}
.live-results.open { display: block; }
.live-item { display: flex; gap: 11px; align-items: center; padding: 8px; border-radius: var(--radius-xs); }
.live-item:hover { background: var(--bg); }
.live-thumb { width: 46px; height: 46px; flex-shrink: 0; border: 1px solid var(--line); border-radius: 6px; overflow: hidden; background: #fff; display: flex; }
.live-thumb img { width: 100%; height: 100%; object-fit: contain; }
.live-meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.live-title { font-size: .85rem; font-weight: 600; color: var(--navy-dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.live-price { font-size: .8rem; color: var(--navy); font-weight: 700; }
.live-price del { color: var(--ink-faint); font-weight: 400; font-size: .72rem; margin-inline-end: 5px; }
.live-price ins { text-decoration: none; color: var(--danger); }
.live-empty, .live-loading { padding: 18px; text-align: center; color: var(--ink-soft); font-size: .85rem; }
.live-more { display: block; text-align: center; padding: 10px; font-size: .84rem; font-weight: 700; color: var(--navy); border-top: 1px solid var(--line-soft); margin-top: 4px; }
.live-more:hover { color: var(--gold); }

/* ============================================================
   WOOCOMMERCE NOTICES — clean, no icon overlap
   ============================================================ */
.woocommerce-message, .woocommerce-info, .woocommerce-error, .woocommerce-noreviews,
.woocommerce ul.woocommerce-error, .woocommerce div.woocommerce-message {
  position: relative; padding: 14px 18px 14px 18px; border: 1px solid var(--line);
  border-inline-start: 4px solid var(--gold); border-radius: var(--radius-sm);
  background: var(--paper); list-style: none; font-size: .9rem; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.woocommerce-message { border-inline-start-color: var(--success); background: var(--success-soft); }
.woocommerce-error   { border-inline-start-color: var(--danger);  background: var(--danger-soft); }
.woocommerce-info    { border-inline-start-color: var(--navy); }
/* kill WooCommerce's absolutely-positioned icon (caused overlap) */
.woocommerce-message::before, .woocommerce-info::before, .woocommerce-error::before,
.woocommerce ul.woocommerce-error li::before { content: none !important; display: none !important; }
.woocommerce-error li, .woocommerce-message, .woocommerce-info { margin: 0; }
.woocommerce-message .button, .woocommerce-info .button, .woocommerce-error .button {
  padding: 8px 16px !important; font-size: .82rem !important; margin: 0 !important; flex-shrink: 0;
}

/* ============================================================
   MY ACCOUNT — login / register
   ============================================================ */
.woocommerce-account .woocommerce { max-width: 940px; margin-inline: auto; }
#customer_login.u-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
/* WooCommerce adds clearfix ::before/::after that become stray grid items — remove them */
#customer_login.u-columns::before, #customer_login.u-columns::after { content: none !important; display: none !important; }
#customer_login .u-column1, #customer_login .u-column2 { width: auto !important; float: none !important; margin: 0 !important; }
#customer_login .col-1, #customer_login .col-2,
.woocommerce-account:not(.logged-in) .woocommerce > .u-column1,
.woocommerce-account:not(.logged-in) .woocommerce > .u-column2 {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; width: auto; float: none;
}
#customer_login h2 { font-size: 1.15rem; padding-bottom: 12px; border-bottom: 1px solid var(--line); margin-bottom: 18px; }
.woocommerce form.login, .woocommerce form.register { border: 0; padding: 0; margin: 0; }
.woocommerce form .form-row { margin: 0 0 14px; padding: 0; display: block; }
.woocommerce form .form-row label { display: block; margin-bottom: 6px; font-size: .86rem; font-weight: 600; color: var(--navy-dark); }
.woocommerce form .form-row label.woocommerce-form-login__rememberme,
.woocommerce form .form-row label.checkbox { display: inline-flex; align-items: center; gap: 6px; font-weight: 500; }
.woocommerce form .form-row input.input-text { width: 100%; }
.woocommerce form.login .button, .woocommerce form.register .button { width: 100%; margin-top: 4px; padding: 12px; }
.woocommerce-form-login__submit, .woocommerce-form-register__submit { width: 100%; }
.woocommerce form.login .lost_password, .woocommerce .lost_password { font-size: .82rem; margin-top: 8px; }
.woocommerce-privacy-policy-text { font-size: .8rem; color: var(--ink-soft); }

/* Single tabbed auth card (login primary, register secondary) */
.auth-card { max-width: 460px; margin: 8px auto 0; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.auth-tabs { display: grid; grid-template-columns: 1fr 1fr; background: var(--bg); }
.auth-tab { appearance: none; border: 0; background: transparent; padding: 14px 10px; font-family: inherit; font-size: .95rem; font-weight: 700; color: var(--ink-soft); cursor: pointer; position: relative; transition: color var(--t-fast); }
.auth-tab.is-active { color: var(--navy-dark); background: var(--paper); }
.auth-tab.is-active::after { content: ""; position: absolute; left: 20%; right: 20%; bottom: 0; height: 2px; background: var(--gold); border-radius: 2px; }
.auth-panel { padding: 26px 26px 28px; }
.auth-title { font-size: 1.2rem; margin: 0 0 6px; }
.auth-sub { font-size: .86rem; color: var(--ink-soft); margin: 0 0 20px; }
.auth-card .form-row { margin: 0 0 14px; padding: 0; }
.auth-card label { display: block; margin-bottom: 6px; font-size: .85rem; font-weight: 600; color: var(--navy-dark); }
.auth-card label.woocommerce-form-login__rememberme { display: inline-flex; align-items: center; gap: 6px; font-weight: 500; margin: 0; }
.auth-card input.input-text, .auth-card input[type="password"] { width: 100%; border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: 11px 13px; font-family: inherit; font-size: .92rem; background: #fff; outline: none; transition: border-color var(--t-fast); }
.auth-card input.input-text:focus, .auth-card input[type="password"]:focus { border-color: var(--gold); }
.auth-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.auth-row-between { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.auth-row-between .lost-pass { font-size: .8rem; color: var(--ink-soft); }
.auth-row-between .lost-pass:hover { color: var(--gold); }
.auth-switch { text-align: center; font-size: .86rem; color: var(--ink-soft); margin: 14px 0 0; }
.auth-switch a { font-weight: 700; color: var(--navy); }
.auth-switch a:hover { color: var(--gold); }
.otp-inline { display: flex; gap: 8px; }
.otp-inline input { flex: 1; }
.otp-send-btn { white-space: nowrap; padding: 10px 16px; flex-shrink: 0; }
.otp-send-btn:disabled { opacity: .6; cursor: not-allowed; }
.otp-hint { display: block; font-size: .78rem; margin-top: 6px; }
.otp-hint.ok { color: var(--success); }
.otp-hint.err { color: var(--danger); }
#reg_otp { letter-spacing: 4px; text-align: center; font-weight: 700; }

/* ============================================================
   MY ACCOUNT
   ============================================================ */
.woocommerce-account .woocommerce::after { content: ""; display: block; clear: both; }
.woocommerce-account .woocommerce-MyAccount-navigation { float: right; width: 248px; margin: 0; }
.woocommerce-account .woocommerce-MyAccount-content { float: left; width: calc(100% - 280px); margin: 0; }
.woocommerce-MyAccount-navigation ul { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; padding: 6px; }
.woocommerce-MyAccount-navigation li { border: 0; margin: 0; }
.woocommerce-MyAccount-navigation li a {
  display: block; padding: 11px 14px; color: var(--ink); font-weight: 600; font-size: .9rem;
  border-radius: var(--radius-sm); transition: background var(--t-fast), color var(--t-fast); position: relative;
}
.woocommerce-MyAccount-navigation li a:hover { background: var(--bg); color: var(--navy); }
.woocommerce-MyAccount-navigation li.is-active a { background: var(--navy); color: #fff; }
.woocommerce-MyAccount-navigation li--customer-logout a { color: var(--danger); }
.woocommerce-MyAccount-content { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.woocommerce-MyAccount-content > p:first-child { margin-top: 0; }
.woocommerce-MyAccount-content .woocommerce-Message, .woocommerce-MyAccount-content a.button { font-size: .9rem; }

/* dashboard welcome + cards */
.acc-welcome { display: flex; align-items: center; gap: 16px; padding-bottom: 20px; margin-bottom: 22px; border-bottom: 1px solid var(--line); }
.acc-welcome__avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 800; flex-shrink: 0; }
.acc-welcome h3 { margin: 0 0 4px; font-size: 1.15rem; }
.acc-welcome p { margin: 0; font-size: .88rem; }
.acc-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.acc-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; display: flex; flex-direction: column; gap: 6px; transition: var(--t); background: var(--ivory); }
.acc-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.acc-card__icon { width: 40px; height: 40px; border-radius: 10px; background: var(--gold-soft); color: var(--gold); display: flex; align-items: center; justify-content: center; margin-bottom: 4px; }
.acc-card__icon svg { width: 20px; height: 20px; }
.acc-card b { color: var(--navy-dark); font-size: .95rem; }
.acc-card .muted { font-size: .8rem; }

/* ============================================================
   CART (classic)
   ============================================================ */
.woocommerce-cart .woocommerce { display: grid; grid-template-columns: 1fr; gap: 24px; }
.woocommerce-cart table.cart img { width: 64px; border-radius: var(--radius-sm); border: 1px solid var(--line); }
.woocommerce-cart table.cart td.product-name a { font-weight: 700; color: var(--navy-dark); }
.woocommerce-cart table.cart td.product-name a:hover { color: var(--gold); }
.woocommerce a.remove { color: var(--danger) !important; border: 1px solid var(--line); line-height: 22px; height: 24px; width: 24px; }
.woocommerce a.remove:hover { background: var(--danger) !important; color: #fff !important; }
.woocommerce .quantity .qty { width: 64px; padding: 9px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); text-align: center; font-family: inherit; }
.cart-collaterals .cart_totals > h2 { font-size: 1.1rem; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.cart-collaterals { width: 100%; }
.cart-collaterals .cart_totals { float: none; width: 100%; max-width: 420px; margin-inline-start: auto; }
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button { display: block; text-align: center; }

/* ============================================================
   CHECKOUT (classic) — two-column
   ============================================================ */
.woocommerce-checkout .woocommerce form.checkout.woocommerce-checkout { display: grid; grid-template-columns: 1.4fr .9fr; gap: 28px; align-items: start; }
.woocommerce-checkout #customer_details { width: 100%; float: none; }
.woocommerce-checkout #order_review_heading { grid-column: 2; margin: 0 0 12px; font-size: 1.1rem; }
.woocommerce-checkout #order_review { width: 100%; float: none; position: sticky; top: 96px; }
.woocommerce-checkout .col2-set .col-1, .woocommerce-checkout .col2-set .col-2 { width: 100%; float: none; }
.woocommerce-checkout .col2-set { display: grid; gap: 18px; }
.woocommerce-checkout h3 { font-size: 1.05rem; padding-bottom: 10px; border-bottom: 1px solid var(--line); margin-bottom: 16px; }
.woocommerce-checkout .form-row { margin-bottom: 14px; }
.woocommerce-checkout .form-row label { display: block; margin-bottom: 6px; font-size: .86rem; font-weight: 600; color: var(--navy-dark); }
/* order review table — keep product name on one line, prevent word-per-line wrap */
.woocommerce-checkout #order_review table.shop_table { width: 100%; }
.woocommerce-checkout #order_review th, .woocommerce-checkout #order_review td { padding: 12px 14px; vertical-align: middle; }
.woocommerce-checkout #order_review td.product-name,
.woocommerce-checkout #order_review th.product-name { text-align: right; word-break: normal; overflow-wrap: anywhere; min-width: 60%; }
.woocommerce-checkout #order_review .product-name .product-quantity { color: var(--ink-soft); font-size: .85rem; white-space: nowrap; }
.woocommerce-checkout #order_review td.product-total,
.woocommerce-checkout #order_review td.product-subtotal { white-space: nowrap; text-align: left; }
.woocommerce-checkout #payment { background: var(--ivory); border-radius: var(--radius-sm); border: 1px solid var(--line); }
.woocommerce-checkout #payment ul.payment_methods { padding: 16px; }
.woocommerce-checkout #payment div.form-row { padding: 16px; }
.woocommerce-checkout #payment .place-order .button { width: 100%; padding: 14px; font-size: 1rem; }

/* ============================================================
   PRODUCT REVIEWS
   ============================================================ */
#reviews { margin-top: 8px; }
#reviews #comments > h2 { font-size: 1.15rem; margin-bottom: 18px; }
#reviews .commentlist { margin: 0; padding: 0; list-style: none; display: grid; gap: 14px; }
#reviews .commentlist li.review, #reviews .commentlist li.comment {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; margin: 0; list-style: none;
}
#reviews .comment_container { display: flex; gap: 14px; align-items: flex-start; }
#reviews .comment_container img.avatar { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); margin: 0; position: static; float: none; }
#reviews .comment-text { border: 0; margin: 0; padding: 0; width: 100%; }
#reviews .comment-text .star-rating { float: left; margin-bottom: 4px; font-size: .9em; }
#reviews .comment-text p.meta { font-size: .82rem; color: var(--ink-soft); margin-bottom: 6px; }
#reviews .comment-text p.meta strong { color: var(--navy-dark); }
#reviews .description p { font-size: .92rem; color: var(--ink); margin: 0; }

#review_form_wrapper { margin-top: 22px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; }
#review_form_wrapper #reply-title { font-size: 1.05rem; font-weight: 800; color: var(--navy-dark); display: block; margin-bottom: 14px; }
.comment-form { display: grid; gap: 14px; }
.comment-form .comment-form-author, .comment-form .comment-form-email { margin: 0; }
.comment-form label { display: block; margin-bottom: 6px; font-size: .86rem; font-weight: 600; color: var(--navy-dark); }
.comment-form input[type="text"], .comment-form input[type="email"], .comment-form textarea {
  width: 100%; border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: 11px 13px; font-family: inherit; font-size: .9rem; background: #fff; outline: none; transition: border-color var(--t-fast);
}
.comment-form input:focus, .comment-form textarea:focus { border-color: var(--gold); }
.comment-form-rating label { display: inline-block; margin-inline-end: 10px; }
.woocommerce #review_form #respond p.stars { margin: 0 0 10px; font-size: 1.4rem; }
.woocommerce p.stars a { color: var(--gold); }
.woocommerce p.stars a::before { color: var(--gold); }
.comment-form .form-submit input { width: auto; padding: 12px 30px; }

@media (max-width: 900px) {
  .woocommerce-checkout .woocommerce form.checkout.woocommerce-checkout { grid-template-columns: 1fr; }
  .woocommerce-checkout #order_review_heading { grid-column: 1; }
  .woocommerce-checkout #order_review { position: static; }
}
@media (max-width: 720px) {
  .auth-grid-2 { grid-template-columns: 1fr; }
  .acc-cards { grid-template-columns: 1fr; }
  .woocommerce-account .woocommerce-MyAccount-navigation,
  .woocommerce-account .woocommerce-MyAccount-content { width: 100%; float: none; margin-bottom: 18px; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-bottom: 36px; }
.info-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 20px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 4px; transition: var(--t); }
.info-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.info-card__icon { width: 52px; height: 52px; border-radius: 14px; background: var(--gold-soft); color: var(--gold); display: flex; align-items: center; justify-content: center; margin-bottom: 8px; }
.info-card__icon svg { width: 24px; height: 24px; }
.info-card b { color: var(--navy-dark); font-size: .98rem; }
.info-card a, .info-card span { font-size: .88rem; color: var(--ink-soft); direction: ltr; }
.info-card a { color: var(--navy); font-weight: 600; }
.info-card a:hover { color: var(--gold); }

.contact-main { display: grid; grid-template-columns: 1.4fr .9fr; gap: 26px; align-items: start; }
.contact-form-wrap { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.contact-form-wrap h2 { font-size: 1.3rem; margin-bottom: 6px; }
.contact-form { margin-top: 20px; display: grid; gap: 16px; }
.cf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf-row { margin: 0; }
.cf-row label { display: block; margin-bottom: 7px; font-size: .86rem; font-weight: 600; color: var(--navy-dark); }
.cf-row input, .cf-row textarea { width: 100%; border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: 12px 14px; font-family: inherit; font-size: .92rem; background: var(--ivory); outline: none; transition: border-color var(--t-fast), background var(--t-fast); }
.cf-row input:focus, .cf-row textarea:focus { border-color: var(--gold); background: #fff; }
.cf-row textarea { resize: vertical; }
.cf-foot { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.cf-status { font-size: .88rem; font-weight: 600; }
.cf-status.ok { color: var(--success); }
.cf-status.err { color: var(--danger); }

.contact-aside { display: grid; gap: 18px; }
.contact-map { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; height: 260px; background: var(--bg); }
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(.2); }
.contact-socials { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; text-align: center; }
.contact-socials b { display: block; color: var(--navy-dark); margin-bottom: 12px; }
.socials--light { justify-content: center; }
.socials--light a { background: var(--bg); color: var(--navy); }
.socials--light a:hover { background: var(--gold); color: #fff; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro { display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center; }
.about-intro__text .eyebrow { color: var(--gold); font-weight: 700; letter-spacing: 2px; font-size: .78rem; }
.about-intro__text h2 { font-size: clamp(1.5rem, 2.6vw, 2.05rem); margin: 8px 0 16px; line-height: 1.5; }
.about-intro__text p { color: var(--ink-soft); margin-bottom: 14px; line-height: 1.95; }
.about-intro__text .btn { margin-top: 10px; }
.about-intro__media img { border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow-md); width: 100%; }
.about-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.about-stats div { display: flex; flex-direction: column; gap: 4px; }
.about-stats b { font-size: 2rem; font-weight: 900; color: var(--navy); }
.about-stats span { font-size: .9rem; color: var(--ink-soft); }
.about-values { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.value-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; transition: var(--t); }
.value-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.value-card__icon { width: 50px; height: 50px; border-radius: 14px; background: var(--gold-soft); color: var(--gold); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.value-card__icon svg { width: 24px; height: 24px; }
.value-card b { color: var(--navy-dark); font-size: 1.05rem; display: block; margin-bottom: 8px; }
.value-card p { color: var(--ink-soft); font-size: .9rem; margin: 0; line-height: 1.85; }
.about-cta { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 36px; display: flex; align-items: center; justify-content: space-between; gap: 22px; flex-wrap: wrap; }
.about-cta h2 { margin: 0 0 6px; font-size: 1.3rem; }
.about-cta p { margin: 0; }

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-wrap { display: grid; grid-template-columns: 1fr 320px; gap: 26px; align-items: start; }
.faq-list { display: grid; gap: 12px; }
.faq-item { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color var(--t-fast); }
.faq-item[open] { border-color: var(--gold); }
.faq-item summary { list-style: none; cursor: pointer; padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; gap: 14px; font-weight: 700; color: var(--navy-dark); font-size: .98rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chevron { width: 28px; height: 28px; border-radius: 8px; background: var(--bg); color: var(--navy); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform var(--t), background var(--t-fast); }
.faq-chevron svg { width: 16px; height: 16px; }
.faq-item[open] .faq-chevron { transform: rotate(180deg); background: var(--gold); color: #fff; }
.faq-answer { padding: 0 22px 20px; }
.faq-answer p { margin: 0; color: var(--ink-soft); line-height: 1.95; font-size: .92rem; }
.faq-help { background: var(--navy); color: #fff; border-radius: var(--radius); padding: 28px 24px; text-align: center; position: sticky; top: 96px; }
.faq-help__icon { width: 54px; height: 54px; border-radius: 50%; background: rgba(255,255,255,.1); color: var(--gold-light); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.faq-help__icon svg { width: 26px; height: 26px; }
.faq-help b { display: block; font-size: 1.05rem; margin-bottom: 8px; }
.faq-help p { color: #c4cdd9; font-size: .88rem; margin-bottom: 18px; }
.faq-help .btn--primary { background: var(--gold); }
.faq-help .btn--primary:hover { background: var(--gold-light); }

/* ============================================================
   STATIC PAGES — responsive
   ============================================================ */
@media (max-width: 1000px) {
  .contact-info-grid { grid-template-columns: repeat(2,1fr); }
  .contact-main { grid-template-columns: 1fr; }
  .about-intro { grid-template-columns: 1fr; gap: 28px; }
  .about-values { grid-template-columns: repeat(2,1fr); }
  .faq-wrap { grid-template-columns: 1fr; }
  .faq-help { position: static; }
}
@media (max-width: 600px) {
  .contact-info-grid { grid-template-columns: 1fr; }
  .cf-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; gap: 18px; }
  .about-values { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 22px; }
}
