:root {
  --ink: #223029;
  --muted: #6b756f;
  --paper: #fffdf9;
  --cream: #f7efe3;
  --cream-2: #eee0ce;
  --sage: #536b58;
  --sage-dark: #34493a;
  --sage-soft: #e7eee7;
  --clay: #c9613e;
  --clay-dark: #a9472c;
  --gold: #e7b356;
  --line: #e8dfd3;
  --white: #fff;
  --danger: #a94339;
  --success: #3b7851;
  --warning: #b7781f;
  --shadow: 0 20px 55px rgba(42,55,46,.11);
  --shadow-soft: 0 9px 28px rgba(42,55,46,.075);
  --r-xl: 30px;
  --r-lg: 22px;
  --r-md: 15px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 6% 1%, rgba(231,179,86,.11), transparent 25rem),
    linear-gradient(180deg,#fffdf9,#fbf7f1);
  font-family: Tahoma, "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.locked { overflow: hidden; }
button,input,select,textarea { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img,svg { display: block; max-width: 100%; }
[hidden] { display: none !important; }
.container { width: min(calc(100% - 32px),var(--container)); margin-inline: auto; }
.muted { color: var(--muted); }
.small { font-size: 11px; }
.nowrap { white-space: nowrap; }
.text-clay { color: var(--clay); }
.text-success { color: var(--success); }
.full { width: 100%; }
.spacer { flex: 1; }
.sr-only { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0; }

.top-note {
  min-height: 36px;
  padding: 7px 16px;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--sage-dark);
  color: #f9f5ed;
  font-size: 11px;
}
.top-note strong { color: #ffd991; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,253,249,.91);
  border-bottom: 1px solid rgba(232,223,211,.82);
  backdrop-filter: blur(16px);
}
.header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.brand { display:inline-flex;align-items:center;gap:10px;min-width:max-content; }
.brand-mark {
  width: 44px;height:44px;display:grid;place-items:center;
  border-radius:15px 15px 15px 5px;
  color:#fff;background:var(--clay);
  box-shadow:0 10px 22px rgba(201,97,62,.22);
}
[dir="ltr"] .brand-mark { border-radius:15px 15px 5px 15px; }
.brand-mark svg { width:26px;height:26px; }
.brand-copy { display:grid;line-height:1.1; }
.brand-copy strong { font-size:19px;letter-spacing:-.03em; }
.brand-copy small { margin-top:5px;color:var(--muted);font-size:8px;letter-spacing:.12em;text-transform:uppercase; }
.main-nav { display:flex;align-items:center;justify-content:center;gap:4px; }
.main-nav a {
  padding:10px 12px;border-radius:11px;color:#47524b;
  font-size:12px;font-weight:800;transition:.2s ease;
}
.main-nav a:hover,.main-nav a.active { color:var(--sage-dark);background:var(--sage-soft); }
.header-actions { display:flex;align-items:center;gap:7px;justify-self:end; }
.icon-btn,.language-btn,.menu-toggle {
  height:40px;min-width:40px;padding:0 10px;border:1px solid var(--line);
  border-radius:12px;background:rgba(255,255,255,.78);
  display:inline-flex;align-items:center;justify-content:center;gap:6px;
  position:relative;cursor:pointer;transition:.2s ease;
}
.icon-btn:hover,.language-btn:hover,.menu-toggle:hover { transform:translateY(-2px);border-color:#cfbfaf;box-shadow:var(--shadow-soft); }
.icon-btn svg,.menu-toggle svg { width:18px;height:18px; }
.language-btn { font-size:11px;font-weight:900; }
.menu-toggle { display:none; }
.cart-count {
  position:absolute;top:-6px;inset-inline-end:-6px;min-width:19px;height:19px;
  padding:0 4px;display:grid;place-items:center;border:2px solid var(--paper);
  border-radius:20px;background:var(--clay);color:#fff;font-size:8px;font-weight:900;
}
.mobile-nav {
  position:fixed;z-index:100;top:0;bottom:0;inset-inline-start:0;width:min(340px,90%);
  padding:22px;background:var(--paper);box-shadow:20px 0 60px rgba(20,30,24,.22);
  transform:translateX(-105%);transition:.28s ease;
}
[dir="rtl"] .mobile-nav { transform:translateX(105%); }
.mobile-nav.open { transform:translateX(0); }
.mobile-nav-head { display:flex;align-items:center;justify-content:space-between;margin-bottom:22px; }
.mobile-nav-links { display:grid;gap:5px; }
.mobile-nav-links a { padding:13px 14px;border-radius:12px;font-size:13px;font-weight:800; }
.mobile-nav-links a:hover,.mobile-nav-links a.active { background:var(--sage-soft); }

.btn {
  min-height:47px;padding:11px 19px;border:1px solid transparent;border-radius:14px;
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  font-size:12px;font-weight:900;cursor:pointer;transition:.2s ease;
}
.btn svg { width:17px;height:17px; }
.btn-primary { background:var(--clay);color:#fff;box-shadow:0 12px 25px rgba(201,97,62,.22); }
.btn-primary:hover { background:var(--clay-dark);transform:translateY(-2px); }
.btn-dark { background:var(--sage-dark);color:#fff; }
.btn-dark:hover { background:#25372b;transform:translateY(-2px); }
.btn-soft { background:var(--sage-soft);color:var(--sage-dark); }
.btn-soft:hover { background:#d9e6da; }
.btn-ghost { background:#fff;border-color:var(--line);color:var(--sage-dark); }
.btn-ghost:hover { border-color:#cfbfaf;box-shadow:var(--shadow-soft);transform:translateY(-1px); }
.btn-danger { color:var(--danger);background:#f9e9e6; }
.btn-sm { min-height:36px;padding:7px 11px;border-radius:10px;font-size:10px; }
.link-btn { border:0;background:none;padding:0;color:var(--clay);font-size:11px;font-weight:900;cursor:pointer; }

.hero { padding:40px 0 28px;overflow:hidden; }
.hero-grid {
  min-height:560px;display:grid;grid-template-columns:minmax(0,.94fr) minmax(420px,1.06fr);
  align-items:stretch;gap:34px;
}
.hero-copy { padding:45px 0 25px;display:flex;flex-direction:column;justify-content:center; }
.eyebrow {
  width:fit-content;display:inline-flex;align-items:center;gap:8px;margin-bottom:20px;
  padding:7px 11px;border-radius:999px;background:var(--sage-soft);color:var(--sage-dark);
  font-size:10px;font-weight:900;
}
.eyebrow-dot { width:7px;height:7px;border-radius:50%;background:#4f985f;box-shadow:0 0 0 5px rgba(79,152,95,.12); }
.hero h1 { margin:0;max-width:650px;font-size:clamp(42px,5vw,69px);line-height:1.13;letter-spacing:-.055em;font-weight:900; }
.hero h1 em { color:var(--clay);font-style:normal;white-space:nowrap; }
.hero-lead { max-width:590px;margin:22px 0 0;color:var(--muted);font-size:15px;line-height:1.9; }
.hero-actions { display:flex;flex-wrap:wrap;gap:11px;margin-top:28px; }
.proof-row { display:flex;align-items:center;flex-wrap:wrap;gap:17px;margin-top:32px;padding-top:22px;border-top:1px solid var(--line); }
.avatars { display:flex; }
.avatars span { width:32px;height:32px;margin-inline-start:-7px;display:grid;place-items:center;border:3px solid var(--paper);border-radius:50%;color:#fff;font-size:9px;font-weight:900; }
.avatars span:first-child { margin-inline-start:0;background:#8f5a42; }
.avatars span:nth-child(2) { background:#587760; }
.avatars span:nth-child(3) { background:#c58753; }
.proof-copy { display:grid;line-height:1.45;font-size:10px;color:var(--muted); }
.stars { color:#d89525;letter-spacing:1px; }
.hero-visual {
  min-height:560px;position:relative;overflow:hidden;isolation:isolate;
  border-radius:43px 43px 43px 13px;
  background:radial-gradient(circle at 70% 18%,rgba(255,255,255,.32),transparent 15rem),linear-gradient(145deg,#bac6ae,#789078 46%,#405645);
  box-shadow:var(--shadow);
}
[dir="ltr"] .hero-visual { border-radius:43px 43px 13px 43px; }
.hero-visual:before,.hero-visual:after { content:"";position:absolute;border-radius:50%;border:1px solid rgba(255,255,255,.2);z-index:-1; }
.hero-visual:before { width:420px;height:420px;inset:-130px -130px auto auto; }
.hero-visual:after { width:250px;height:250px;inset:auto auto -95px -80px; }
.hero-image { width:112%;position:absolute;inset-inline-start:-6%;bottom:-3%;filter:drop-shadow(0 27px 23px rgba(26,40,30,.22)); }
.float-card {
  position:absolute;z-index:3;max-width:185px;padding:11px 13px;
  display:flex;align-items:center;gap:9px;border:1px solid rgba(255,255,255,.65);
  border-radius:16px;background:rgba(255,253,249,.9);box-shadow:0 15px 34px rgba(24,39,28,.17);
  backdrop-filter:blur(10px);font-size:9px;
}
.float-card strong { display:block;font-size:10px; }
.float-card small { color:var(--muted); }
.float-icon { width:32px;height:32px;display:grid;place-items:center;border-radius:11px;background:var(--cream);color:var(--clay);font-size:16px; }
.float-a { top:30px;inset-inline-start:22px; }
.float-b { bottom:30px;inset-inline-end:20px; }
.hero-label { position:absolute;top:33px;inset-inline-end:28px;color:rgba(255,255,255,.92);text-align:end; }
.hero-label strong { display:block;font-size:13px; }
.hero-label span { font-size:8px;opacity:.8; }

.order-strip {
  display:grid;grid-template-columns:auto minmax(0,1fr) auto;gap:13px;align-items:center;
  margin-top:-5px;padding:12px;border:1px solid var(--line);border-radius:21px;
  background:rgba(255,255,255,.9);box-shadow:var(--shadow-soft);backdrop-filter:blur(12px);
}
.segmented { display:inline-flex;padding:4px;border-radius:14px;background:var(--cream); }
.segment { min-height:37px;padding:7px 13px;border:0;border-radius:11px;background:transparent;color:var(--muted);cursor:pointer;font-size:10px;font-weight:900; }
.segment.active { background:#fff;color:var(--sage-dark);box-shadow:0 4px 13px rgba(43,55,47,.08); }
.strip-location,.strip-time { display:flex;align-items:center;gap:9px;min-width:0; }
.strip-location svg,.strip-time svg { width:19px;color:var(--clay);flex:0 0 auto; }
.strip-location div,.strip-time div { display:grid;line-height:1.4;min-width:0; }
.strip-location small,.strip-time small { color:var(--muted);font-size:8px; }
.strip-location strong,.strip-time strong { font-size:10px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis; }
.strip-time { padding-inline-start:13px;border-inline-start:1px solid var(--line); }

.section { padding:72px 0; }
.section-sm { padding:50px 0; }
.section-head { display:flex;align-items:end;justify-content:space-between;gap:20px;margin-bottom:24px; }
.kicker { margin:0 0 6px;color:var(--clay);font-size:9px;font-weight:900;letter-spacing:.1em;text-transform:uppercase; }
.section-title { margin:0;font-size:clamp(27px,3vw,39px);line-height:1.25;letter-spacing:-.04em; }
.section-subtitle { margin:8px 0 0;max-width:630px;color:var(--muted);font-size:12px; }
.text-link { display:inline-flex;align-items:center;gap:7px;color:var(--sage-dark);font-size:10px;font-weight:900;white-space:nowrap; }
.text-link svg { width:16px; }
.soft-section { background:#f3eadd; }
.dark-section { background:var(--sage-dark);color:#fff; }

.category-row { display:grid;grid-template-columns:repeat(6,1fr);gap:12px; }
.category-card {
  min-width:0;padding:17px 10px;border:1px solid var(--line);border-radius:17px;background:#fff;
  text-align:center;transition:.2s ease;
}
.category-card:hover { transform:translateY(-4px);box-shadow:var(--shadow-soft);border-color:#d6c6b5; }
.category-icon { width:52px;height:52px;margin:0 auto 9px;display:grid;place-items:center;border-radius:17px;background:var(--cream);font-size:25px; }
.category-card strong { display:block;font-size:10px; }
.category-card small { color:var(--muted);font-size:8px; }

.filters-bar {
  display:flex;align-items:center;gap:9px;flex-wrap:wrap;margin-bottom:21px;
}
.filters-scroll { display:flex;gap:7px;overflow:auto;scrollbar-width:none;flex:1; }
.filters-scroll::-webkit-scrollbar { display:none; }
.filter-btn {
  min-width:max-content;padding:9px 13px;border:1px solid var(--line);border-radius:999px;
  background:#fff;color:var(--muted);cursor:pointer;font-size:9px;font-weight:900;transition:.2s ease;
}
.filter-btn:hover { border-color:#cfbdac; }
.filter-btn.active { background:var(--sage-dark);border-color:var(--sage-dark);color:#fff; }
.search-box { min-width:235px;position:relative; }
.search-box input { width:100%;height:40px;padding:8px 36px 8px 12px;border:1px solid var(--line);border-radius:12px;background:#fff;outline:none;font-size:10px; }
[dir="ltr"] .search-box input { padding:8px 12px 8px 36px; }
.search-box input:focus { border-color:var(--sage);box-shadow:0 0 0 4px rgba(83,107,88,.1); }
.search-box svg { position:absolute;top:11px;inset-inline-start:12px;width:17px;color:var(--muted);pointer-events:none; }

.product-grid { display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:19px; }
.product-card {
  overflow:hidden;border:1px solid var(--line);border-radius:var(--r-lg);
  background:rgba(255,255,255,.94);box-shadow:0 5px 20px rgba(42,55,46,.04);
  transition:.24s ease;
}
.product-card:hover { transform:translateY(-5px);box-shadow:var(--shadow-soft);border-color:#d7c7b7; }
.product-media { aspect-ratio:1.36;position:relative;overflow:hidden;background:linear-gradient(145deg,#ecd4ad,#c98a50); }
.product-media img { width:100%;height:100%;object-fit:cover;transition:.35s ease; }
.product-card:hover .product-media img { transform:scale(1.045) rotate(-1deg); }
.product-badge { position:absolute;z-index:2;top:12px;inset-inline-start:12px;padding:5px 8px;border-radius:999px;background:rgba(255,255,255,.9);color:var(--sage-dark);font-size:8px;font-weight:900;backdrop-filter:blur(8px); }
.favorite-btn { position:absolute;z-index:2;top:11px;inset-inline-end:11px;width:33px;height:33px;border:1px solid rgba(255,255,255,.65);border-radius:50%;background:rgba(255,255,255,.87);display:grid;place-items:center;cursor:pointer; }
.favorite-btn svg { width:15px;height:15px; }
.favorite-btn.active { color:var(--danger); }
.favorite-btn.active svg { fill:currentColor; }
.product-body { padding:16px; }
.product-topline { display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:5px;color:var(--muted);font-size:8px; }
.rating { color:#a76e19; }
.product-title { margin:0;font-size:15px;line-height:1.45;letter-spacing:-.02em; }
.product-desc { min-height:34px;margin:6px 0 0;color:var(--muted);font-size:9px;line-height:1.75; }
.tag-row { display:flex;flex-wrap:wrap;gap:5px;margin-top:10px; }
.tag { padding:3px 7px;border-radius:7px;background:#f4f0ea;color:#686e6a;font-size:7px;font-weight:800; }
.product-foot { margin-top:14px;padding-top:12px;border-top:1px solid #f0e9df;display:flex;align-items:center;justify-content:space-between;gap:10px; }
.price-block { display:grid;line-height:1.2; }
.price-block small { color:var(--muted);font-size:7px; }
.price-block strong { font-size:17px;letter-spacing:-.02em; }
.price-block strong span { font-size:8px; }
.quick-add { min-height:37px;padding:8px 11px;border:0;border-radius:11px;background:var(--sage-dark);color:#fff;display:inline-flex;align-items:center;gap:6px;cursor:pointer;font-size:8px;font-weight:900;transition:.2s; }
.quick-add:hover { background:var(--clay); }
.quick-add svg { width:15px;height:15px; }

.feature-grid { display:grid;grid-template-columns:repeat(4,1fr);gap:14px; }
.feature-card { padding:20px;border:1px solid var(--line);border-radius:18px;background:#fff; }
.feature-icon { width:42px;height:42px;display:grid;place-items:center;border-radius:13px;background:var(--sage-soft);color:var(--sage-dark);font-size:19px;margin-bottom:13px; }
.feature-card strong { display:block;font-size:11px; }
.feature-card p { margin:5px 0 0;color:var(--muted);font-size:9px;line-height:1.7; }

.promo-banner {
  min-height:330px;display:grid;grid-template-columns:1fr .75fr;align-items:center;overflow:hidden;
  border-radius:32px;background:radial-gradient(circle at 15% 20%,rgba(231,179,86,.24),transparent 19rem),var(--sage-dark);
  color:#fff;box-shadow:var(--shadow);
}
.promo-copy { padding:45px;position:relative;z-index:2; }
.promo-copy .kicker { color:#ffd88f; }
.promo-copy h2 { margin:0;max-width:620px;font-size:clamp(30px,4vw,47px);line-height:1.25;letter-spacing:-.04em; }
.promo-copy p { max-width:610px;margin:14px 0 0;color:rgba(255,255,255,.7);font-size:12px; }
.promo-pills { display:flex;flex-wrap:wrap;gap:7px;margin:18px 0 25px; }
.promo-pills span { padding:6px 9px;border:1px solid rgba(255,255,255,.16);border-radius:999px;background:rgba(255,255,255,.07);font-size:8px; }
.promo-art { min-height:330px;position:relative; }
.promo-art:before { content:"";position:absolute;width:280px;height:280px;inset:23px 25px auto auto;border-radius:50%;background:#dfb365; }
.promo-art img { position:absolute;width:115%;max-width:500px;bottom:-19%;inset-inline-end:-8%;filter:drop-shadow(0 24px 20px rgba(10,21,14,.28)); }

.review-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:17px; }
.review-card { padding:22px;border:1px solid rgba(255,255,255,.75);border-radius:19px;background:rgba(255,255,255,.78); }
.review-card p { margin:10px 0 0;font-size:10px;line-height:1.9; }
.review-author { margin-top:16px;padding-top:13px;border-top:1px solid var(--line);display:flex;align-items:center;gap:9px; }
.review-avatar { width:33px;height:33px;display:grid;place-items:center;border-radius:50%;background:var(--sage-soft);color:var(--sage-dark);font-size:9px;font-weight:900; }
.review-author div { display:grid;line-height:1.4; }
.review-author strong { font-size:9px; }
.review-author small { color:var(--muted);font-size:7px; }

.page-hero { padding:52px 0 36px;background:linear-gradient(180deg,#f4eadc,rgba(247,239,227,.15));border-bottom:1px solid var(--line); }
.page-hero-grid { display:grid;grid-template-columns:1fr auto;align-items:end;gap:25px; }
.breadcrumb { display:flex;align-items:center;flex-wrap:wrap;gap:7px;margin-bottom:13px;color:var(--muted);font-size:8px; }
.breadcrumb a:hover { color:var(--clay); }
.page-hero h1 { margin:0;font-size:clamp(34px,5vw,55px);line-height:1.2;letter-spacing:-.05em; }
.page-hero p { max-width:670px;margin:10px 0 0;color:var(--muted);font-size:12px; }
.hero-stat { min-width:150px;padding:17px;border:1px solid var(--line);border-radius:16px;background:rgba(255,255,255,.68);text-align:center; }
.hero-stat strong { display:block;font-size:25px; }
.hero-stat span { color:var(--muted);font-size:8px; }

.content-grid { display:grid;grid-template-columns:minmax(0,1fr) 320px;gap:26px;align-items:start; }
.sidebar-card,.panel { border:1px solid var(--line);border-radius:20px;background:#fff;box-shadow:0 5px 20px rgba(42,55,46,.035); }
.panel { padding:22px; }
.panel + .panel { margin-top:16px; }
.panel-title { display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:17px; }
.panel-title h2,.panel-title h3 { margin:0;font-size:15px; }
.sticky { position:sticky;top:100px; }

.product-detail { display:grid;grid-template-columns:1fr .92fr;gap:38px;align-items:start; }
.product-gallery { position:sticky;top:105px; }
.main-product-image { overflow:hidden;border-radius:28px;background:var(--cream);box-shadow:var(--shadow-soft); }
.main-product-image img { width:100%;aspect-ratio:1.15;object-fit:cover; }
.thumb-row { display:grid;grid-template-columns:repeat(4,1fr);gap:9px;margin-top:10px; }
.thumb { overflow:hidden;border:2px solid transparent;border-radius:12px;background:var(--cream);cursor:pointer; }
.thumb.active { border-color:var(--clay); }
.thumb img { width:100%;aspect-ratio:1.15;object-fit:cover; }
.detail-kicker { color:var(--clay);font-size:9px;font-weight:900; }
.product-detail h1 { margin:7px 0 0;font-size:clamp(31px,4vw,48px);line-height:1.25;letter-spacing:-.045em; }
.detail-rating { display:flex;align-items:center;gap:10px;margin-top:11px;color:var(--muted);font-size:9px; }
.detail-desc { margin:17px 0;color:var(--muted);font-size:12px;line-height:1.95; }
.notice { display:flex;gap:10px;padding:12px;border-radius:13px;background:var(--sage-soft);color:var(--sage-dark);font-size:9px; }
.notice .notice-icon { font-size:16px; }
.option-group { margin-top:19px; }
.option-label { display:flex;justify-content:space-between;gap:10px;margin-bottom:9px;font-size:10px;font-weight:900; }
.option-label small { color:var(--muted);font-weight:400; }
.option-grid { display:flex;flex-wrap:wrap;gap:7px; }
.option-chip { min-width:95px;padding:10px 12px;border:1px solid var(--line);border-radius:12px;background:#fff;cursor:pointer;text-align:center;font-size:9px;font-weight:800; }
.option-chip small { display:block;color:var(--muted);font-size:7px;font-weight:400; }
.option-chip.active { border-color:var(--sage);background:var(--sage-soft);color:var(--sage-dark); }
.extras-list { display:grid;gap:8px; }
.extra-row { padding:10px 11px;border:1px solid var(--line);border-radius:12px;display:flex;align-items:center;gap:10px;font-size:9px; }
.extra-row input { accent-color:var(--sage); }
.extra-row strong { margin-inline-start:auto; }
.detail-buy { margin-top:21px;padding:16px;border-radius:17px;background:var(--cream);display:flex;align-items:center;gap:12px; }
.qty { display:inline-flex;align-items:center;border:1px solid var(--line);border-radius:11px;background:#fff;overflow:hidden; }
.qty button { width:35px;height:39px;border:0;background:#fff;cursor:pointer; }
.qty span { width:28px;text-align:center;font-size:10px;font-weight:900; }
.detail-total { display:grid;line-height:1.3;margin-inline-start:auto; }
.detail-total small { color:var(--muted);font-size:7px; }
.detail-total strong { font-size:20px; }
.detail-tabs { margin-top:23px;border-top:1px solid var(--line); }
.detail-tab { padding:15px 0;border-bottom:1px solid var(--line); }
.detail-tab summary { cursor:pointer;font-size:10px;font-weight:900; }
.detail-tab p,.detail-tab ul { color:var(--muted);font-size:9px;line-height:1.9; }

.form-grid { display:grid;grid-template-columns:repeat(2,1fr);gap:14px; }
.field { display:grid;gap:6px; }
.field.full-span { grid-column:1 / -1; }
.field label { font-size:9px;font-weight:900; }
.field label span { color:var(--danger); }
.input,.select,.textarea {
  width:100%;border:1px solid var(--line);border-radius:12px;background:#fff;color:var(--ink);
  outline:none;font-size:10px;transition:.2s ease;
}
.input,.select { height:43px;padding:8px 12px; }
.textarea { min-height:115px;padding:11px 12px;resize:vertical; }
.input:focus,.select:focus,.textarea:focus { border-color:var(--sage);box-shadow:0 0 0 4px rgba(83,107,88,.1); }
.field-hint { color:var(--muted);font-size:7px; }
.checkbox-line { display:flex;align-items:flex-start;gap:8px;font-size:9px;color:var(--muted); }
.checkbox-line input { margin-top:4px;accent-color:var(--sage); }
.form-actions { display:flex;justify-content:flex-end;gap:9px;margin-top:18px; }

.plan-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:18px; }
.plan-card { position:relative;padding:24px;border:1px solid var(--line);border-radius:22px;background:#fff; }
.plan-card.featured { border-color:var(--sage);box-shadow:var(--shadow);transform:translateY(-7px); }
.plan-label { position:absolute;top:14px;inset-inline-end:14px;padding:5px 8px;border-radius:999px;background:var(--clay);color:#fff;font-size:7px;font-weight:900; }
.plan-card h3 { margin:0;font-size:18px; }
.plan-card > p { min-height:42px;color:var(--muted);font-size:9px; }
.plan-price { display:flex;align-items:baseline;gap:5px;margin:15px 0; }
.plan-price strong { font-size:31px;letter-spacing:-.04em; }
.plan-price span { color:var(--muted);font-size:8px; }
.check-list { list-style:none;margin:17px 0 22px;padding:0;display:grid;gap:9px; }
.check-list li { display:flex;gap:8px;font-size:9px; }
.check-list li:before { content:"✓";width:18px;height:18px;display:grid;place-items:center;flex:0 0 auto;border-radius:50%;background:var(--sage-soft);color:var(--success);font-weight:900; }

.timeline { position:relative;display:grid;gap:18px; }
.timeline:before { content:"";position:absolute;top:12px;bottom:12px;inset-inline-start:19px;width:2px;background:var(--line); }
.timeline-item { position:relative;padding-inline-start:55px; }
.timeline-year { position:absolute;inset-inline-start:0;top:0;width:40px;height:40px;display:grid;place-items:center;border-radius:13px;background:var(--sage-dark);color:#fff;font-size:8px;font-weight:900; }
.timeline-item h3 { margin:0;font-size:13px; }
.timeline-item p { margin:4px 0 0;color:var(--muted);font-size:9px; }

.faq-list { display:grid;gap:9px; }
.faq-item { border:1px solid var(--line);border-radius:15px;background:#fff;overflow:hidden; }
.faq-item summary { padding:15px 17px;cursor:pointer;font-size:10px;font-weight:900;list-style:none;display:flex;justify-content:space-between;gap:10px; }
.faq-item summary:after { content:"+";font-size:17px;color:var(--clay); }
.faq-item[open] summary:after { content:"−"; }
.faq-item p { margin:0;padding:0 17px 16px;color:var(--muted);font-size:9px;line-height:1.9; }

.auth-shell { min-height:calc(100vh - 36px);display:grid;grid-template-columns:1fr 1fr;background:#fff; }
.auth-visual { position:relative;overflow:hidden;padding:38px;background:linear-gradient(145deg,#aebeaa,#607b66 48%,#34493a);color:#fff;display:flex;flex-direction:column;justify-content:space-between; }
.auth-visual:after { content:"";position:absolute;width:480px;height:480px;border:1px solid rgba(255,255,255,.16);border-radius:50%;bottom:-170px;inset-inline-end:-150px; }
.auth-visual img { position:absolute;width:82%;max-width:560px;bottom:-10%;left:50%;transform:translateX(-50%);filter:drop-shadow(0 25px 25px rgba(20,30,24,.24)); }
.auth-quote { max-width:430px;position:relative;z-index:2; }
.auth-quote h2 { margin:0;font-size:clamp(31px,4vw,51px);line-height:1.25;letter-spacing:-.05em; }
.auth-quote p { color:rgba(255,255,255,.7);font-size:11px; }
.auth-main { display:grid;place-items:center;padding:35px; }
.auth-card { width:min(430px,100%); }
.auth-back { display:inline-flex;margin-bottom:27px; }
.auth-card h1 { margin:0;font-size:31px;letter-spacing:-.04em; }
.auth-card > p { margin:7px 0 22px;color:var(--muted);font-size:10px; }
.auth-divider { display:flex;align-items:center;gap:10px;margin:17px 0;color:var(--muted);font-size:8px; }
.auth-divider:before,.auth-divider:after { content:"";height:1px;background:var(--line);flex:1; }
.password-wrap { position:relative; }
.password-wrap .input { padding-inline-end:42px; }
.password-toggle { position:absolute;top:4px;bottom:4px;inset-inline-end:5px;width:35px;border:0;background:transparent;color:var(--muted);cursor:pointer; }
.social-login { display:grid;grid-template-columns:1fr 1fr;gap:8px; }

.account-layout { display:grid;grid-template-columns:240px minmax(0,1fr);gap:23px;align-items:start; }
.account-sidebar { position:sticky;top:100px;padding:16px;border:1px solid var(--line);border-radius:20px;background:#fff; }
.account-user { padding:5px 5px 15px;display:flex;align-items:center;gap:10px;border-bottom:1px solid var(--line); }
.account-avatar { width:43px;height:43px;display:grid;place-items:center;border-radius:14px;background:var(--sage-soft);color:var(--sage-dark);font-weight:900; }
.account-user div { display:grid;line-height:1.4; }
.account-user strong { font-size:10px; }
.account-user small { color:var(--muted);font-size:7px; }
.account-nav { display:grid;gap:3px;margin-top:12px; }
.account-nav a { padding:10px 11px;border-radius:10px;display:flex;align-items:center;gap:8px;color:var(--muted);font-size:9px;font-weight:800; }
.account-nav a:hover,.account-nav a.active { background:var(--sage-soft);color:var(--sage-dark); }
.account-nav svg { width:16px;height:16px; }
.account-main h1 { margin:0 0 5px;font-size:29px;letter-spacing:-.04em; }
.account-main > p { margin:0 0 20px;color:var(--muted);font-size:9px; }
.stat-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:12px; }
.stat-card { padding:18px;border:1px solid var(--line);border-radius:17px;background:#fff; }
.stat-card span { color:var(--muted);font-size:8px; }
.stat-card strong { display:block;margin-top:3px;font-size:24px; }
.order-list { display:grid;gap:10px; }
.order-row { padding:15px;border:1px solid var(--line);border-radius:15px;background:#fff;display:grid;grid-template-columns:1fr auto;gap:12px;align-items:center; }
.order-main { display:flex;align-items:center;gap:12px;min-width:0; }
.order-image { width:53px;height:53px;border-radius:13px;background:var(--cream);object-fit:cover; }
.order-copy { display:grid;line-height:1.5;min-width:0; }
.order-copy strong { font-size:10px; }
.order-copy span { color:var(--muted);font-size:8px; }
.order-side { text-align:end; }
.order-side strong { display:block;font-size:11px; }
.status { display:inline-flex;padding:5px 8px;border-radius:999px;font-size:7px;font-weight:900; }
.status.success { background:#e7f3e9;color:#367049; }
.status.warning { background:#fff1d8;color:#9a6619; }
.status.info { background:#e7eef7;color:#456b92; }
.status.danger { background:#f9e5e2;color:#9b4138; }
.address-grid { display:grid;grid-template-columns:repeat(2,1fr);gap:13px; }
.address-card { padding:17px;border:1px solid var(--line);border-radius:16px;background:#fff; }
.address-card.default { border-color:var(--sage); }
.address-head { display:flex;justify-content:space-between;gap:10px;margin-bottom:10px; }
.address-head strong { font-size:11px; }
.address-card p { margin:0;color:var(--muted);font-size:9px;line-height:1.8; }
.address-actions { display:flex;gap:10px;margin-top:13px;padding-top:11px;border-top:1px solid var(--line); }

.cart-layout { display:grid;grid-template-columns:minmax(0,1fr) 350px;gap:24px;align-items:start; }
.cart-list { display:grid;gap:11px; }
.cart-item { padding:14px;border:1px solid var(--line);border-radius:17px;background:#fff;display:grid;grid-template-columns:90px minmax(0,1fr) auto;gap:14px;align-items:center; }
.cart-item img { width:90px;height:78px;border-radius:13px;object-fit:cover;background:var(--cream); }
.cart-item-copy { display:grid;line-height:1.5; }
.cart-item-copy strong { font-size:11px; }
.cart-item-copy span { color:var(--muted);font-size:8px; }
.cart-item-copy button { width:fit-content;margin-top:8px;padding:0;border:0;background:none;color:var(--danger);font-size:8px;cursor:pointer; }
.cart-item-side { display:grid;justify-items:end;gap:10px; }
.cart-item-side > strong { font-size:12px; }
.summary-card { padding:20px;border:1px solid var(--line);border-radius:20px;background:#fff;position:sticky;top:100px; }
.summary-card h2 { margin:0 0 15px;font-size:16px; }
.summary-line { display:flex;justify-content:space-between;gap:10px;margin:9px 0;color:var(--muted);font-size:9px; }
.summary-line.total { margin-top:14px;padding-top:13px;border-top:1px dashed #d6c9ba;color:var(--ink);font-size:13px;font-weight:900; }
.coupon { display:flex;gap:7px;margin:15px 0; }
.coupon input { flex:1;min-width:0; }
.empty-state { padding:55px 25px;border:1px dashed #d7cabb;border-radius:20px;background:rgba(255,255,255,.55);text-align:center; }
.empty-state .empty-icon { width:65px;height:65px;margin:0 auto 15px;display:grid;place-items:center;border-radius:20px;background:var(--cream);font-size:28px; }
.empty-state h2 { margin:0;font-size:17px; }
.empty-state p { margin:7px auto 17px;max-width:440px;color:var(--muted);font-size:9px; }

.checkout-steps { display:flex;align-items:center;justify-content:center;gap:0;margin-bottom:24px; }
.checkout-step { display:flex;align-items:center;color:var(--muted);font-size:8px;font-weight:900; }
.checkout-step span { width:28px;height:28px;margin-inline-end:6px;display:grid;place-items:center;border:1px solid var(--line);border-radius:50%;background:#fff; }
.checkout-step.active { color:var(--sage-dark); }
.checkout-step.active span { background:var(--sage-dark);color:#fff;border-color:var(--sage-dark); }
.checkout-line { width:55px;height:1px;background:var(--line);margin:0 8px; }
.payment-methods { display:grid;gap:8px; }
.payment-method { padding:13px;border:1px solid var(--line);border-radius:13px;display:flex;align-items:center;gap:10px;cursor:pointer; }
.payment-method.active { border-color:var(--sage);background:var(--sage-soft); }
.payment-method input { accent-color:var(--sage); }
.payment-logo { min-width:49px;height:29px;display:grid;place-items:center;border:1px solid var(--line);border-radius:8px;background:#fff;font-size:8px;font-weight:900; }
.payment-copy { display:grid;line-height:1.5; }
.payment-copy strong { font-size:9px; }
.payment-copy small { color:var(--muted);font-size:7px; }

.success-page { min-height:70vh;display:grid;place-items:center;padding:55px 0; }
.success-card { width:min(670px,100%);padding:40px;border:1px solid var(--line);border-radius:28px;background:#fff;text-align:center;box-shadow:var(--shadow); }
.success-icon { width:76px;height:76px;margin:0 auto 18px;display:grid;place-items:center;border-radius:50%;background:#e5f2e8;color:var(--success);font-size:35px; }
.success-card h1 { margin:0;font-size:32px;letter-spacing:-.04em; }
.success-card > p { max-width:500px;margin:9px auto;color:var(--muted);font-size:10px; }
.order-code { margin:20px auto;padding:12px;border:1px dashed #ccbca9;border-radius:13px;background:var(--cream);font-size:10px; }
.success-meta { grid-template-columns:repeat(3,1fr);text-align:start; }

.activity-list { display:grid;gap:1px; }
.activity-item { padding:11px 0;display:grid;grid-template-columns:auto 1fr;gap:9px;align-items:start;border-bottom:1px solid #f0eae2; }
.activity-item:last-child { border-bottom:0; }
.activity-dot { width:31px;height:31px;display:grid;place-items:center;border-radius:10px;background:var(--sage-soft);font-size:14px; }
.activity-copy { display:grid;line-height:1.5; }
.activity-copy strong { font-size:8px; }
.activity-copy small { color:var(--muted);font-size:6px; }

.legal-layout { display:grid;grid-template-columns:220px 1fr;gap:28px;align-items:start; }
.legal-nav { position:sticky;top:100px;display:grid;gap:4px;padding:13px;border:1px solid var(--line);border-radius:17px;background:#fff; }
.legal-nav a { padding:9px 10px;border-radius:9px;color:var(--muted);font-size:8px;font-weight:800; }
.legal-nav a:hover { background:var(--sage-soft);color:var(--sage-dark); }
.legal-content { padding:27px;border:1px solid var(--line);border-radius:20px;background:#fff; }
.legal-content h2 { margin-top:28px;font-size:18px; }
.legal-content h2:first-child { margin-top:0; }
.legal-content p,.legal-content li { color:var(--muted);font-size:9px;line-height:1.95; }

.site-footer { padding:55px 0 23px;background:#1f2c25;color:#fff; }
.footer-grid { display:grid;grid-template-columns:1.3fr repeat(3,.7fr);gap:31px; }
.footer-logo { display:inline-flex;align-items:center;gap:9px;font-size:18px;font-weight:900; }
.footer-logo .brand-mark { width:39px;height:39px;box-shadow:none; }
.footer-about p { max-width:370px;color:rgba(255,255,255,.58);font-size:9px;line-height:1.9; }
.footer-col h3 { margin:4px 0 13px;font-size:10px; }
.footer-col a { display:block;width:fit-content;padding:4px 0;color:rgba(255,255,255,.56);font-size:8px; }
.footer-col a:hover { color:#fff; }
.footer-bottom { margin-top:35px;padding-top:18px;border-top:1px solid rgba(255,255,255,.1);display:flex;justify-content:space-between;gap:15px;color:rgba(255,255,255,.43);font-size:7px; }

.overlay { position:fixed;inset:0;z-index:80;background:rgba(22,32,26,.52);opacity:0;pointer-events:none;backdrop-filter:blur(3px);transition:.25s; }
.overlay.show { opacity:1;pointer-events:auto; }
.toast {
  position:fixed;z-index:130;left:50%;bottom:24px;min-width:min(360px,calc(100% - 28px));
  padding:11px 15px;display:flex;align-items:center;justify-content:center;gap:8px;
  border-radius:13px;background:#1f2c25;color:#fff;box-shadow:0 15px 40px rgba(21,31,25,.26);
  transform:translate(-50%,25px);opacity:0;pointer-events:none;transition:.24s;font-size:9px;font-weight:800;
}
.toast.show { opacity:1;transform:translate(-50%,0); }
.mini-cart {
  position:fixed;z-index:90;top:0;bottom:0;inset-inline-end:0;width:min(420px,100%);
  display:grid;grid-template-rows:auto 1fr auto;background:var(--paper);
  box-shadow:-20px 0 60px rgba(20,30,24,.2);transform:translateX(105%);transition:.28s ease;
}
[dir="rtl"] .mini-cart { transform:translateX(-105%); }
.mini-cart.open { transform:translateX(0); }
.drawer-head { min-height:75px;padding:16px 19px;border-bottom:1px solid var(--line);display:flex;align-items:center;justify-content:space-between;gap:12px; }
.drawer-head h2 { margin:0;font-size:17px; }
.drawer-head p { margin:3px 0 0;color:var(--muted);font-size:8px; }
.close-btn { width:37px;height:37px;border:1px solid var(--line);border-radius:11px;background:#fff;display:grid;place-items:center;cursor:pointer; }
.close-btn svg { width:17px; }
.drawer-items { overflow:auto;padding:10px 19px 18px; }
.drawer-item { display:grid;grid-template-columns:56px minmax(0,1fr) auto;gap:10px;align-items:center;padding:12px 0;border-bottom:1px solid var(--line); }
.drawer-item img { width:56px;height:56px;border-radius:13px;background:var(--cream);object-fit:cover; }
.drawer-copy { min-width:0;display:grid;line-height:1.45; }
.drawer-copy strong { overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:9px; }
.drawer-copy small { color:var(--muted);font-size:7px; }
.drawer-copy b { margin-top:3px;font-size:9px; }
.drawer-foot { padding:17px 19px 20px;border-top:1px solid var(--line);background:#fff; }
.drawer-empty { min-height:300px;display:grid;place-items:center;text-align:center;color:var(--muted);font-size:9px; }
.drawer-empty span { display:block;font-size:34px;margin-bottom:8px; }

@media (max-width:1040px) {
  .main-nav { display:none; }
  .menu-toggle { display:inline-flex; }
  .header-inner { grid-template-columns:auto 1fr; }
  .hero-grid { grid-template-columns:1fr 1fr;gap:23px; }
  .product-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .category-row { grid-template-columns:repeat(3,1fr); }
  .feature-grid { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1.2fr repeat(2,.8fr); }
  .footer-col:last-child { display:none; }
}
@media (max-width:820px) {
  .hero { padding-top:18px; }
  .hero-grid { min-height:0;grid-template-columns:1fr; }
  .hero-copy { padding:25px 3px 10px;text-align:center;align-items:center; }
  .hero-actions,.proof-row { justify-content:center; }
  .hero-visual { min-height:500px; }
  .order-strip { grid-template-columns:auto 1fr; }
  .strip-time { grid-column:1 / -1;border-inline-start:0;border-top:1px solid var(--line);justify-content:center;padding-top:12px; }
  .promo-banner { grid-template-columns:1fr; }
  .promo-copy { padding:37px 28px 7px;text-align:center; }
  .promo-pills { justify-content:center; }
  .promo-art { min-height:245px; }
  .promo-art:before { width:225px;height:225px;left:50%;right:auto;transform:translateX(-50%); }
  .promo-art img { width:370px;max-width:83%;left:50%;right:auto;transform:translateX(-50%);bottom:-32%; }
  .review-grid { grid-template-columns:1fr; }
  .product-detail { grid-template-columns:1fr; }
  .product-gallery { position:relative;top:0; }
  .content-grid,.cart-layout { grid-template-columns:1fr; }
  .summary-card,.sticky { position:relative;top:0; }
  .plan-grid { grid-template-columns:1fr; }
  .plan-card.featured { transform:none; }
  .auth-shell { grid-template-columns:1fr; }
  .auth-visual { display:none; }
  .account-layout { grid-template-columns:1fr; }
  .account-sidebar { position:relative;top:0; }
  .account-nav { grid-template-columns:repeat(3,1fr); }
  .legal-layout { grid-template-columns:1fr; }
  .legal-nav { position:relative;top:0;grid-template-columns:repeat(3,1fr); }
}
@media (max-width:620px) {
  .container { width:min(calc(100% - 22px),var(--container)); }
  .top-note { font-size:9px; }
  .site-header { position:relative; }
  .header-inner { min-height:67px;gap:8px; }
  .brand-mark { width:40px;height:40px; }
  .brand-copy strong { font-size:16px; }
  .brand-copy small { font-size:7px; }
  .header-actions { gap:4px; }
  .header-actions .search-trigger { display:none; }
  .icon-btn,.language-btn,.menu-toggle { height:37px;min-width:37px;padding:0 8px; }
  .hero { padding-top:0; }
  .hero-copy { padding-top:22px; }
  .eyebrow { margin-bottom:14px;font-size:8px; }
  .hero h1 { font-size:clamp(35px,12vw,48px); }
  .hero-lead { font-size:11px; }
  .hero-actions { width:100%; }
  .hero-actions .btn { flex:1 1 140px;padding-inline:11px; }
  .proof-row { margin-top:23px;padding-top:17px; }
  .hero-visual { min-height:370px;border-radius:29px 29px 29px 10px; }
  .hero-image { width:125%;inset-inline-start:-13%; }
  .float-card { max-width:140px;padding:8px; }
  .float-a { top:12px;inset-inline-start:10px; }
  .float-b { bottom:11px;inset-inline-end:9px; }
  .hero-label { top:16px;inset-inline-end:14px; }
  .order-strip { grid-template-columns:1fr;margin-top:11px;border-radius:18px; }
  .segmented { width:100%; }
  .segment { flex:1; }
  .strip-time { grid-column:auto; }
  .section { padding:55px 0; }
  .section-sm { padding:40px 0; }
  .section-head { align-items:start; }
  .section-head .text-link { display:none; }
  .section-title { font-size:28px; }
  .category-row { grid-template-columns:repeat(2,1fr); }
  .product-grid { grid-template-columns:1fr;gap:14px; }
  .product-card { display:grid;grid-template-columns:39% 61%;border-radius:18px; }
  .product-media { aspect-ratio:auto;min-height:235px; }
  .product-body { padding:12px; }
  .product-title { font-size:12px; }
  .product-desc { min-height:0;font-size:8px; }
  .quick-add span { display:none; }
  .feature-grid { grid-template-columns:1fr; }
  .page-hero { padding:37px 0 28px; }
  .page-hero-grid { grid-template-columns:1fr; }
  .hero-stat { display:none; }
  .page-hero h1 { font-size:37px; }
  .filters-bar { align-items:stretch; }
  .search-box { min-width:100%;order:-1; }
  .form-grid { grid-template-columns:1fr; }
  .field.full-span { grid-column:auto; }
  .detail-buy { flex-wrap:wrap; }
  .detail-total { order:3;width:100%;margin:0;text-align:center; }
  .thumb-row { grid-template-columns:repeat(3,1fr); }
  .stat-grid { grid-template-columns:1fr; }
  .account-nav { grid-template-columns:repeat(2,1fr); }
  .address-grid { grid-template-columns:1fr; }
  .order-row { grid-template-columns:1fr; }
  .order-side { text-align:start;display:flex;align-items:center;justify-content:space-between; }
  .cart-item { grid-template-columns:72px minmax(0,1fr); }
  .cart-item img { width:72px;height:70px; }
  .cart-item-side { grid-column:1 / -1;grid-template-columns:1fr auto;align-items:center;justify-items:stretch; }
  .checkout-step { font-size:0; }
  .checkout-line { width:30px; }
  .success-card { padding:28px 18px; }
  .success-meta { grid-template-columns:1fr; }
  .legal-nav { grid-template-columns:1fr 1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .footer-about { grid-column:1 / -1; }
  .footer-bottom { flex-direction:column; }
}
@media (prefers-reduced-motion:reduce) {
  *,*:before,*:after { scroll-behavior:auto !important;transition-duration:.01ms !important;animation-duration:.01ms !important; }
}
