:root {
  --bg: #f6f4ef;
  --bg-muted: #efece4;
  --surface: #ffffff;
  --surface-2: #faf9f6;
  --text: #161615;
  --text-soft: #5d5a53;
  --text-faint: #8a867c;
  --primary: #173936;
  --primary-hover: #102926;
  --primary-soft: #e6eeec;
  --accent: #a8844a;
  --accent-soft: #f4ead8;
  --line: #ddd8cd;
  --line-strong: #c9c2b3;
  --ok: #2f6b4f;
  --ok-soft: #e5f2ea;
  --warn: #9a6b16;
  --warn-soft: #f8efd8;
  --danger: #8d2d2d;
  --danger-soft: #f6e6e6;
  --shadow: 0 1px 2px rgba(22, 22, 21, .05), 0 10px 28px rgba(22, 22, 21, .05);
  --radius: 6px;
  --header-h: 72px;
  --max: 1180px;
  --font: "Manrope", "Segoe UI", sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
}

[data-theme="dark"] {
  --bg: #101211;
  --bg-muted: #161918;
  --surface: #1a1e1d;
  --surface-2: #151817;
  --text: #f1eee7;
  --text-soft: #b7b3aa;
  --text-faint: #8c887e;
  --primary: #3e8b84;
  --primary-hover: #4d9d96;
  --primary-soft: #1c2c2a;
  --accent: #c4a36a;
  --accent-soft: #2a2418;
  --line: #2b312f;
  --line-strong: #3b433f;
  --ok: #6fba90;
  --ok-soft: #1b2a22;
  --warn: #d4a24a;
  --warn-soft: #2a2316;
  --danger: #d07a7a;
  --danger-soft: #2a1b1b;
  --shadow: 0 1px 2px rgba(0, 0, 0, .25), 0 12px 28px rgba(0, 0, 0, .22);
}

*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; letter-spacing: .01em; line-height: 1.2; margin: 0 0 .5em; }
.container { width: min(var(--max), calc(100% - 32px)); margin-inline: auto; }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 16px; top: 16px; background: var(--surface); padding: 8px 12px; z-index: 80; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; padding: 0 18px; border: 1px solid transparent; border-radius: var(--radius);
  background: var(--primary); color: #f7f3ea; cursor: pointer; letter-spacing: .04em;
  text-transform: uppercase; font-size: 12px; font-weight: 700;
}
.btn:hover { background: var(--primary-hover); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--line-strong); }
.btn-outline:hover { border-color: var(--text); background: var(--surface); }
.btn-ghost { background: transparent; color: var(--text); }
.btn-ghost:hover { background: var(--bg-muted); }
.btn-danger { background: var(--danger); color: #fff; }
.btn-sm { min-height: 36px; padding: 0 12px; font-size: 11px; }
.btn[disabled] { opacity: .5; cursor: not-allowed; }

.site-header {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 20px; min-height: var(--header-h); }
.logo { display: flex; flex-direction: column; justify-content: center; line-height: 1; min-width: auto; }
.logo-img { height: 36px; width: auto; }
.logo-mark {
  font-family: var(--serif); font-size: 24px; letter-spacing: .22em; font-weight: 700;
  text-shadow: 0 1px 1px color-mix(in srgb, var(--text) 22%, transparent), 0 3px 8px color-mix(in srgb, var(--text) 14%, transparent);
}
.logo-sub { font-size: 9px; letter-spacing: .32em; text-transform: uppercase; color: var(--text-soft); margin-top: 3px; }
.nav { display: flex; align-items: center; gap: 18px; }
.nav a { font-size: 14px; color: var(--text-soft); }
.nav a:hover, .nav a.is-active { color: var(--text); }
.header-search { flex: 1; position: relative; }
.header-search input {
  width: 100%; height: 42px; padding: 0 14px 0 38px;
  border: 1px solid var(--line); background: var(--surface); border-radius: 999px; outline: none;
}
.header-search input:focus { border-color: var(--primary); }
.header-search .search-ico { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text-faint); pointer-events: none; display: grid; place-items: center; }
.ico { display: inline-block; vertical-align: -3px; flex-shrink: 0; }
.btn .ico { margin-right: 2px; }
.icon-btn .ico, .wish .ico, .quick .ico, .benefit-ico .ico, .search-ico .ico { display: block; vertical-align: unset; }
.ico-fill { fill: currentColor; fill-opacity: .14; }
.wish.is-on .ico, .wish.is-on .ico-fill { fill: currentColor; fill-opacity: 1; stroke: currentColor; }
[data-theme="light"] .theme-sun { display: none; }
[data-theme="dark"] .theme-moon { display: none; }
.theme-sun, .theme-moon { display: grid; }
.suggest {
  display: none; position: absolute; left: 0; right: 0; top: calc(100% + 6px);
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow); border-radius: var(--radius); z-index: 20;
}
.suggest.is-open { display: block; }
.suggest a { display: flex; gap: 10px; align-items: center; padding: 10px 12px; }
.suggest a:hover { background: var(--bg-muted); }
.suggest img { width: 40px; height: 40px; object-fit: cover; background: var(--bg-muted); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  position: relative; width: 42px; height: 42px; display: grid; place-items: center;
  border: 1px solid var(--line); background: var(--surface); cursor: pointer;
  color: var(--primary); border-radius: 50%;
  transition: border-color .18s ease, color .18s ease, background .18s ease, transform .18s ease;
}
.icon-btn:hover {
  border-color: var(--accent); color: var(--accent); background: var(--accent-soft);
  transform: translateY(-1px);
}
.icon-btn .ico { width: 19px; height: 19px; }
[data-theme="dark"] .icon-btn { background: var(--surface-2); color: var(--text); }
.badge {
  position: absolute; top: 4px; right: 2px; min-width: 18px; height: 18px; padding: 0 5px;
  background: var(--primary); color: #f7f3ea; border-radius: 99px; font-size: 10px; font-weight: 700;
  display: grid; place-items: center;
}
.badge:is(:empty) { display: none; }
[data-theme="dark"] .badge { color: #101211; }
.menu-toggle { display: none; }
.cats-bar { border-top: 1px solid var(--line); }
.cats-bar .container { display: flex; gap: 18px; overflow: auto; padding: 10px 16px; }
.cats-bar a { white-space: nowrap; font-size: 13px; color: var(--text-soft); }
.cats-bar a:hover { color: var(--text); }

.hero-photo, .hero-slider { position: relative; min-height: 620px; overflow: hidden; background: #173936; }
.hero-photo > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden;
  transition: opacity .9s ease, visibility .9s ease;
}
.hero-slide.is-on { opacity: 1; visibility: visible; z-index: 1; }
.hero-slide img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.08); transition: transform 7s ease;
}
.hero-slide.is-on img { transform: scale(1); }
.hero-overlay { position: relative; min-height: 620px; display: flex; align-items: center; background: linear-gradient(90deg, rgba(12,22,21,.78) 0%, rgba(12,22,21,.38) 55%, rgba(12,22,21,.12) 100%); }
.hero-arrow {
  position: absolute; top: 50%; z-index: 3; width: 46px; height: 46px;
  border: 1px solid rgba(247,243,234,.28); background: rgba(12,22,21,.35);
  color: #f7f3ea; border-radius: 50%; cursor: pointer; display: grid; place-items: center;
  backdrop-filter: blur(8px); transform: translateY(-50%);
}
.hero-arrow:hover { background: rgba(12,22,21,.62); border-color: rgba(247,243,234,.55); }
.hero-prev { left: 18px; }
.hero-next { right: 18px; }
.hero-prev .ico { transform: rotate(180deg); }
.hero-dots {
  position: absolute; left: 50%; bottom: 22px; z-index: 3; transform: translateX(-50%);
  display: flex; gap: 8px;
}
.hero-dots button {
  width: 9px; height: 9px; padding: 0; border: 0; border-radius: 999px;
  background: rgba(247,243,234,.38); cursor: pointer;
}
.hero-dots button.is-on { width: 28px; background: #f7f3ea; }
.hero-copy { padding: 80px 0; max-width: 560px; color: #f6f1e8; }
.hero-kicker { letter-spacing: .22em; text-transform: uppercase; font-size: 12px; color: #d4b57a; margin-bottom: 14px; }
.hero h1 { font-size: clamp(42px, 6vw, 74px); margin: 0 0 16px; color: #f7f3ea; }
.hero p { color: rgba(246,241,232,.82); max-width: 460px; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-light { background: #f7f3ea; color: #173936; }
.btn-light:hover { background: #fff; }
.text-link { display: inline-flex; align-items: center; gap: 6px; color: var(--text); font-size: 14px; font-weight: 650; }
.eyebrow { letter-spacing: .18em; text-transform: uppercase; font-size: 11px; color: var(--accent); margin: 0 0 8px; font-weight: 700; }

.section { padding: 64px 0; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 16px; margin-bottom: 28px; }
.section-head h2 { font-size: 34px; margin: 0; }
.section-head p { color: var(--text-soft); margin: 0; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }

.grid-cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.cat-tile { position: relative; overflow: hidden; min-height: 230px; background: #1a2c2a; }
.cat-tile img { width: 100%; height: 100%; object-fit: cover; min-height: 230px; transition: transform .45s ease; }
.cat-tile:hover img { transform: scale(1.05); }
.cat-tile-copy {
  position: absolute; inset: auto 0 0 0; padding: 22px 18px 18px;
  background: linear-gradient(180deg, transparent, rgba(10,16,15,.78));
  color: #f6f1e8;
}
.cat-tile-copy strong { display: block; font-family: var(--serif); font-size: 26px; font-weight: 600; }
.cat-tile-copy em { font-style: normal; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: #d4b57a; }

.product-card {
  background: var(--surface); border: 1px solid var(--line); display: flex; flex-direction: column;
  transition: box-shadow .2s ease, transform .2s ease;
}
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.product-card .thumb { position: relative; background: var(--bg-muted); overflow: hidden; }
.product-card .thumb img { aspect-ratio: 1; width: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .thumb img { transform: scale(1.03); }
.card-actions { position: absolute; top: 12px; right: 12px; display: flex; flex-direction: column; gap: 8px; }
.product-card .wish, .product-card .quick {
  width: 38px; height: 38px; border: 1px solid rgba(23,57,54,.08); background: rgba(255,255,255,.96); color: #173936;
  display: grid; place-items: center; cursor: pointer; border-radius: 50%; box-shadow: 0 8px 18px rgba(16,22,21,.1);
  transition: color .18s ease, transform .18s ease, background .18s ease;
}
.product-card .wish:hover, .product-card .quick:hover { transform: scale(1.06); color: var(--accent); }
[data-theme="dark"] .product-card .wish, [data-theme="dark"] .product-card .quick { background: rgba(22,26,25,.92); color: #f1eee7; border-color: transparent; }
.product-card .wish.is-on { color: #b42318; background: #fff4f3; }
.product-card .quick { opacity: 0; }
.product-card:hover .quick { opacity: 1; }
.btn-card { width: 100%; margin-top: 4px; }
.sale-badge, .stock-badge {
  position: absolute; top: 10px; left: 10px; font-size: 11px; font-weight: 700;
  padding: 4px 8px; letter-spacing: .04em; text-transform: uppercase;
}
.sale-badge { background: var(--primary); color: #f7f3ea; }
[data-theme="dark"] .sale-badge { color: #101211; }
.stock-badge.out { background: var(--danger-soft); color: var(--danger); top: 38px; }
.product-card .meta { padding: 14px 14px 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-card .cat { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-faint); }
.product-card h3 { font-family: var(--font); font-size: 15px; font-weight: 650; margin: 0; }
.price { display: flex; align-items: baseline; gap: 8px; }
.price .now { font-weight: 750; }
.price .was { color: var(--text-faint); text-decoration: line-through; font-size: 13px; }
.price .off { color: var(--ok); font-size: 12px; font-weight: 700; }
.stars { color: var(--line-strong); letter-spacing: 1px; }
.star.is-on, .star.is-half { color: var(--accent); }

.promo-photo {
  position: relative; color: #f4efe6; padding: 72px 0;
  background: #122422 var(--promo-image) center/cover no-repeat;
}
.promo-photo::before { content: ""; position: absolute; inset: 0; background: rgba(10,18,17,.58); }
.promo-photo .container { position: relative; display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.promo h2 { font-size: 40px; margin: 0 0 8px; color: inherit; }
.promo p { color: rgba(246,241,232,.82); max-width: 520px; }

.benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.benefit { background: var(--surface); border: 1px solid var(--line); padding: 24px 22px; }
.benefit-ico { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: var(--primary-soft); color: var(--primary); margin-bottom: 14px; border: 1px solid color-mix(in srgb, var(--primary) 12%, transparent); }
.benefit-ico .ico { width: 20px; height: 20px; }
.socials a { color: var(--primary); transition: border-color .18s ease, color .18s ease, background .18s ease; }
.socials a:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); }
.benefit h3 { font-size: 22px; margin-bottom: 6px; }
.benefit p { color: var(--text-soft); margin: 0; font-size: 14px; }

.section-soft { background: var(--bg-muted); }
.newsletter { background: var(--surface); border-top: 1px solid var(--line); }
.newsletter-inner { display: flex; justify-content: space-between; align-items: end; gap: 28px; }
.newsletter form { display: flex; gap: 8px; width: min(480px, 100%); }
.newsletter input { flex: 1; height: 46px; border: 1px solid var(--line); background: var(--bg); padding: 0 12px; }

.site-footer { background: var(--surface-2); border-top: 1px solid var(--line); padding: 48px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; }
.site-footer h4 { font-family: var(--font); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; }
.site-footer a, .site-footer p { color: var(--text-soft); font-size: 14px; }
.site-footer a { display: block; padding: 4px 0; }
.site-footer a:hover { color: var(--text); }
.footer-bottom { margin-top: 32px; padding-top: 16px; border-top: 1px solid var(--line); color: var(--text-faint); font-size: 13px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.socials { display: flex; gap: 10px; margin-top: 12px; }
.socials a { width: 36px; height: 36px; border: 1px solid var(--line); display: grid; place-items: center; border-radius: 50%; background: var(--surface); }

.page-hero { padding: 36px 0 10px; }
.crumbs { font-size: 13px; color: var(--text-soft); margin-bottom: 10px; }
.crumbs a:hover { color: var(--text); }

.shop-layout { display: grid; grid-template-columns: 250px 1fr; gap: 28px; padding-bottom: 64px; }
.filter-card { background: var(--surface); border: 1px solid var(--line); padding: 16px; margin-bottom: 14px; }
.filter-card h3 { font-family: var(--font); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.filter-card label { display: flex; gap: 8px; align-items: center; font-size: 14px; padding: 5px 0; color: var(--text-soft); }
.shop-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 16px; }
.shop-toolbar select, .field input, .field select, .field textarea {
  width: 100%; border: 1px solid var(--line); background: var(--surface); padding: 10px 12px; border-radius: var(--radius);
}
.field input[type="checkbox"], .field input[type="radio"] { width: auto; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 13px; font-weight: 650; margin-bottom: 6px; }
.password-wrap { position: relative; display: block; }
.password-wrap input { padding-right: 46px; }
.password-toggle {
  position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px; border: 0; background: transparent; padding: 0;
  color: var(--text-soft); cursor: pointer; display: grid; place-items: center; border-radius: 6px;
}
.password-toggle:hover, .password-toggle:focus-visible { color: var(--text); background: var(--bg-muted); outline: none; }
.password-toggle .ico { width: 18px; height: 18px; display: block; }
.field-hint { display: block; margin-top: 6px; color: var(--text-faint); font-size: 12px; }
.pagination ul { display: flex; gap: 6px; list-style: none; padding: 24px 0 0; margin: 0; }
.pagination a { display: grid; place-items: center; min-width: 38px; height: 38px; border: 1px solid var(--line); background: var(--surface); padding: 0 10px; }
.pagination .is-active a { background: var(--primary); color: #f7f3ea; border-color: var(--primary); }

.product-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; padding: 12px 0 56px; }
.gallery-main { background: var(--bg-muted); border: 1px solid var(--line); position: relative; overflow: hidden; }
.gallery-main img { width: 100%; aspect-ratio: 1; object-fit: cover; cursor: zoom-in; }
.gallery-zoom-hint {
  position: absolute; left: 12px; bottom: 12px; z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  min-height: 34px; padding: 0 12px; border: 0; border-radius: 999px;
  background: rgba(16,18,17,.72); color: #f7f3ea; font-size: 12px; font-weight: 650; cursor: zoom-in;
}
.lightbox {
  position: fixed; inset: 0; z-index: 80; display: none; place-items: center;
  background: rgba(8,10,10,.92); padding: 56px 64px 48px;
}
.lightbox.is-open { display: grid; }
.lightbox img { max-width: min(1100px, 92vw); max-height: min(88vh, 900px); width: auto; height: auto; object-fit: contain; cursor: zoom-out; }
.lightbox-close {
  position: absolute; top: 16px; right: 16px; width: 44px; height: 44px;
  border: 1px solid rgba(247,243,234,.28); background: rgba(12,22,21,.45); color: #f7f3ea;
  border-radius: 50%; cursor: pointer; display: grid; place-items: center;
}
.lightbox-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border: 1px solid rgba(247,243,234,.28);
  background: rgba(12,22,21,.45); color: #f7f3ea; border-radius: 50%;
  cursor: pointer; display: grid; place-items: center;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev .ico { transform: rotate(180deg); }
.lightbox-count { position: absolute; bottom: 16px; color: rgba(247,243,234,.8); font-size: 13px; font-weight: 650; }
.lightbox[data-count="1"] .lightbox-arrow, .lightbox[data-count="1"] .lightbox-count { display: none; }
.gallery-thumbs { display: flex; gap: 8px; margin-top: 10px; }
.gallery-thumbs button { width: 72px; height: 72px; padding: 0; border: 1px solid var(--line); background: var(--bg-muted); cursor: pointer; }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs .is-on { outline: 2px solid var(--primary); }
.sku { color: var(--text-faint); font-size: 13px; }
.qty { display: flex; align-items: center; border: 1px solid var(--line); width: max-content; background: var(--surface); }
.qty button { width: 40px; height: 42px; border: 0; background: transparent; cursor: pointer; }
.qty input { width: 48px; border: 0; text-align: center; background: transparent; }
.buy-row { display: flex; gap: 10px; flex-wrap: wrap; margin: 18px 0; }
.tabs { display: flex; gap: 18px; border-bottom: 1px solid var(--line); margin: 36px 0 16px; }
.tabs button { border: 0; background: none; padding: 10px 0; cursor: pointer; color: var(--text-soft); border-bottom: 2px solid transparent; }
.tabs button.is-on { color: var(--text); border-color: var(--primary); }
.specs { width: 100%; border-collapse: collapse; }
.specs th, .specs td { text-align: left; padding: 10px 8px; border-bottom: 1px solid var(--line); }
.specs th { width: 36%; color: var(--text-soft); font-weight: 600; }
.variant-group { margin: 12px 0; }
.variant-group strong { display: block; margin-bottom: 8px; font-size: 13px; }
.chip { display: inline-flex; margin: 0 6px 6px 0; }
.chip input { display: none; }
.chip span { display: inline-block; padding: 7px 12px; border: 1px solid var(--line); background: var(--surface); cursor: pointer; font-size: 13px; }
.chip input:checked + span { border-color: var(--primary); background: var(--primary-soft); }

.cart-table { width: 100%; border-collapse: collapse; background: var(--surface); }
.cart-table th, .cart-table td { padding: 14px 10px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: middle; }
.cart-prod { display: flex; gap: 12px; align-items: center; }
.cart-prod img { width: 72px; height: 72px; object-fit: cover; background: var(--bg-muted); }
.summary {
  background: var(--surface); border: 1px solid var(--line); padding: 20px;
}
.summary-row { display: flex; justify-content: space-between; padding: 8px 0; color: var(--text-soft); }
.summary-row.total { color: var(--text); font-weight: 750; border-top: 1px solid var(--line); margin-top: 8px; padding-top: 12px; }

.account-layout { display: grid; grid-template-columns: 230px 1fr; gap: 28px; padding-bottom: 64px; }
.side-nav { background: var(--surface); border: 1px solid var(--line); padding: 10px; }
.side-nav a { display: block; padding: 10px 12px; color: var(--text-soft); }
.side-nav a.is-active, .side-nav a:hover { background: var(--bg-muted); color: var(--text); }

.auth-card { max-width: 460px; margin: 24px auto 64px; background: var(--surface); border: 1px solid var(--line); padding: 28px; }
.auth-card h1 { font-size: 34px; }
.auth-card label.field { display: flex; align-items: center; gap: 8px; font-weight: 500; }
.auth-card .btn[type="submit"] { width: 100%; margin-top: 4px; }
.alert { padding: 12px 14px; border: 1px solid var(--line); margin-bottom: 14px; background: var(--surface-2); }
.alert-ok { background: var(--ok-soft); border-color: transparent; color: var(--ok); }
.alert-error { background: var(--danger-soft); border-color: transparent; color: var(--danger); }
.empty { padding: 48px 20px; text-align: center; border: 1px dashed var(--line); background: var(--surface); color: var(--text-soft); }

.cms { background: var(--surface); border: 1px solid var(--line); padding: 28px; margin-bottom: 64px; }
.cms h2 { font-size: 26px; margin-top: 24px; }
.faq details { background: var(--surface); border: 1px solid var(--line); padding: 14px 16px; margin-bottom: 8px; }
.faq summary { cursor: pointer; font-weight: 650; }

.toast-wrap { position: fixed; right: 16px; bottom: 16px; z-index: 70; display: flex; flex-direction: column; gap: 8px; }
.toast { background: var(--primary); color: #f7f3ea; padding: 12px 14px; min-width: 220px; box-shadow: var(--shadow); }
[data-theme="dark"] .toast { color: #101211; }
.modal { position: fixed; inset: 0; background: rgba(12,14,13,.5); display: none; place-items: center; z-index: 60; padding: 20px; }
.modal.is-open { display: grid; }
.modal-card { width: min(720px, 100%); background: var(--surface); border: 1px solid var(--line); padding: 20px; max-height: 90vh; overflow: auto; }

.table-wrap { overflow: auto; background: var(--surface); border: 1px solid var(--line); }
table.data { width: 100%; border-collapse: collapse; }
table.data th, table.data td { padding: 12px; border-bottom: 1px solid var(--line); text-align: left; font-size: 14px; }
table.data th { font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--text-soft); }

.status { display: inline-block; padding: 3px 8px; font-size: 11px; letter-spacing: .04em; text-transform: uppercase; font-weight: 700; background: var(--bg-muted); }
.status.pending { background: var(--warn-soft); color: var(--warn); }
.status.confirmed, .status.processing, .status.shipped { background: var(--primary-soft); color: var(--primary); }
.status.delivered, .status.active, .status.approved { background: var(--ok-soft); color: var(--ok); }
.status.cancelled, .status.refunded, .status.rejected, .status.disabled { background: var(--danger-soft); color: var(--danger); }

.mobile-nav {
  display: none; position: fixed; inset: 0 0 0 auto; width: min(340px, 90vw);
  background: var(--surface); border-left: 1px solid var(--line); z-index: 55; padding: 20px;
  transform: translateX(100%); transition: transform .2s ease;
}
.mobile-nav.is-open { transform: none; display: block; }
.nav-backdrop { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 50; }
.nav-backdrop.is-open { display: block; }
.mobile-nav a { display: block; padding: 12px 0; border-bottom: 1px solid var(--line); }
.mobile-nav a.is-child { padding-left: 16px; color: var(--text-soft); }
.mobile-search { position: relative; margin: 16px 0; }
.mobile-search input { width: 100%; height: 44px; padding: 0 12px 0 40px; border: 1px solid var(--line); background: var(--bg); }
.mobile-search .search-ico { position: absolute; left: 12px; top: 12px; color: var(--text-faint); }
.footer-about { margin-top: 12px; }
.site-footer p { display: flex; align-items: center; gap: 8px; }

.admin-body { background: var(--bg); }
.admin-shell { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
.admin-side { background: var(--surface); border-right: 1px solid var(--line); padding: 20px 12px; }
.admin-side .logo-mark { font-size: 22px; padding: 0; }
.admin-side a { display: block; padding: 9px 12px; color: var(--text-soft); border-radius: var(--radius); font-size: 14px; }
.admin-side a.is-active, .admin-side a:hover { background: var(--bg-muted); color: var(--text); }
.admin-main { padding: 22px; }
.admin-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; gap: 12px; }
.stat-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-bottom: 22px; }
.stat { background: var(--surface); border: 1px solid var(--line); padding: 16px; }
.stat b { display: block; font-size: 24px; font-family: var(--serif); }
.stat span { color: var(--text-soft); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }
.chart { background: var(--surface); border: 1px solid var(--line); padding: 16px; height: 260px; }
.admin-form { background: var(--surface); border: 1px solid var(--line); padding: 18px; }
.bulk-bar { display: flex; gap: 8px; flex-wrap: wrap; margin: 10px 0; }

.skeleton { background: linear-gradient(90deg, var(--bg-muted), var(--surface), var(--bg-muted)); background-size: 200% 100%; animation: sk 1.2s infinite; min-height: 16px; }
@keyframes sk { to { background-position: -200% 0; } }

@media (max-width: 1100px) {
  .grid-4, .benefits, .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-photo, .hero-slider, .hero-overlay { min-height: 480px; }
  .about-mosaic { grid-template-columns: 1fr 1fr; }
  .grid-cats { grid-template-columns: repeat(2, 1fr); }
  .product-layout, .shop-layout, .account-layout, .admin-shell, .checkout-grid, .contact-grid, .about-split, .about-bar-grid, .about-promises { grid-template-columns: 1fr; }
  .admin-side { display: none; }
  .admin-side.is-open { display: block; position: sticky; top: 0; z-index: 5; }
}
.checkout { padding-bottom: 80px; }
.checkout-head {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 24px;
  padding: 8px 0 28px;
}
.checkout-kicker {
  margin: 0 0 6px; font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent); font-weight: 700;
}
.checkout h1 { font-size: 42px; margin: 0; }
.checkout-steps {
  display: flex; gap: 18px; list-style: none; margin: 0; padding: 0; color: var(--text-faint); font-size: 13px; font-weight: 650;
}
.checkout-steps li { display: flex; align-items: center; gap: 8px; }
.checkout-steps span {
  width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid var(--line); font-size: 11px;
}
.checkout-steps .is-done, .checkout-steps .is-on { color: var(--text); }
.checkout-steps .is-done span, .checkout-steps .is-on span {
  background: var(--primary); color: #f7f3ea; border-color: var(--primary);
}
.checkout-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(320px, .75fr); gap: 28px; align-items: start; }
.checkout-alert { grid-column: 1 / -1; }
.checkout-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  padding: 22px 22px 8px; margin-bottom: 16px; box-shadow: var(--shadow);
}
.checkout-card-head { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 18px; }
.checkout-card-head h2 { font-size: 22px; margin: 0 0 2px; }
.checkout-card-head p { margin: 0; color: var(--text-soft); font-size: 13px; }
.checkout-card-head .checkout-link { margin-left: auto; font-size: 13px; color: var(--accent); font-weight: 650; white-space: nowrap; }
.checkout-ico {
  width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center;
  background: var(--primary-soft); color: var(--primary); flex-shrink: 0;
}
.checkout .field input, .checkout .field select, .checkout .field textarea {
  min-height: 46px; background: var(--bg); border-radius: 8px; padding: 12px 14px;
}
.checkout .field input:focus, .checkout .field select:focus, .checkout .field textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-soft);
}
.checkout .opt { color: var(--text-faint); font-weight: 500; }
.pay-list { display: grid; gap: 10px; margin-bottom: 18px; }
.pay-option { display: block; cursor: pointer; }
.pay-option input { position: absolute; opacity: 0; pointer-events: none; }
.pay-box {
  display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px;
  border: 1px solid var(--line); border-radius: 10px; background: var(--bg); transition: border-color .15s ease, background .15s ease;
}
.pay-box strong { display: block; font-size: 14px; }
.pay-box small { display: block; color: var(--text-soft); font-size: 12px; line-height: 1.45; margin-top: 3px; }
.pay-ico { color: var(--primary); margin-top: 2px; }
.pay-tick { margin-left: auto; opacity: 0; color: var(--primary); flex-shrink: 0; }
.pay-option input:checked + .pay-box {
  border-color: var(--primary); background: var(--primary-soft);
}
.pay-option input:checked + .pay-box .pay-tick { opacity: 1; }
.checkout-aside { position: sticky; top: calc(var(--header-h) + 16px); }
.checkout-summary {
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  padding: 22px; box-shadow: var(--shadow);
}
.checkout-summary-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.checkout-summary-head h2 { font-size: 22px; margin: 0; }
.checkout-summary-head a { font-size: 13px; color: var(--accent); font-weight: 650; }
.checkout-items { list-style: none; margin: 0 0 12px; padding: 0 0 12px; border-bottom: 1px solid var(--line); }
.checkout-items li { display: grid; grid-template-columns: 56px 1fr auto; gap: 12px; align-items: center; padding: 8px 0; }
.checkout-thumb { position: relative; }
.checkout-thumb img { width: 56px; height: 56px; object-fit: cover; border-radius: 8px; background: var(--bg-muted); border: 1px solid var(--line); }
.checkout-thumb span {
  position: absolute; top: -6px; right: -6px; min-width: 20px; height: 20px; padding: 0 5px;
  border-radius: 999px; background: var(--primary); color: #f7f3ea; font-size: 11px; font-weight: 700;
  display: grid; place-items: center;
}
.checkout-item-meta strong { display: block; font-size: 13px; line-height: 1.35; }
.checkout-item-meta small { color: var(--text-faint); font-size: 12px; }
.checkout-items b { font-size: 13px; font-weight: 700; }
.checkout-summary .summary-row { font-size: 14px; }
.checkout-summary .summary-row.total { font-size: 18px; font-family: var(--serif); font-weight: 600; }
.checkout-ship-note {
  display: flex; align-items: center; gap: 8px; margin: 4px 0 8px;
  padding: 10px 12px; border-radius: 8px; background: var(--warn-soft); color: var(--warn); font-size: 12px; font-weight: 650;
}
.checkout-ship-note.is-free { background: var(--ok-soft); color: var(--ok); }
.cod-fee-note {
  display: none; justify-content: space-between; align-items: center;
  margin: 8px 0 4px; padding: 10px 12px; border-radius: 8px;
  background: var(--accent-soft); color: var(--text); font-size: 13px;
}
.cod-fee-note.is-on { display: flex; }
.cod-fee-note b { font-family: var(--serif); font-size: 18px; color: var(--accent); font-weight: 700; }
.checkout-submit { width: 100%; margin-top: 16px; min-height: 50px; }
.checkout-secure {
  display: flex; align-items: flex-start; gap: 8px; margin: 14px 0 0;
  color: var(--text-faint); font-size: 12px; line-height: 1.45;
}
[data-theme="dark"] .checkout-steps .is-done span,
[data-theme="dark"] .checkout-steps .is-on span,
[data-theme="dark"] .checkout-thumb span { color: #101211; }

.contact { padding-bottom: 80px; }
.contact-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); gap: 24px; align-items: start; }
.contact-form { padding-bottom: 22px !important; }
.contact .field input, .contact .field select, .contact .field textarea {
  min-height: 46px; background: var(--bg); border-radius: 8px; padding: 12px 14px;
}
.contact .field textarea { min-height: 140px; resize: vertical; }
.contact .field input:focus, .contact .field textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-soft);
}
.contact-submit { min-height: 50px; margin-top: 4px; }
.contact-list { list-style: none; margin: 0 0 16px; padding: 0; }
.contact-list li { display: flex; gap: 12px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid var(--line); }
.contact-list li:last-child { border-bottom: 0; }
.contact-list strong { display: block; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 4px; }
.contact-list p { margin: 0; }
.contact-list a:hover { color: var(--accent); }
.contact-wa { width: 100%; background: #128c7e; }
.contact-wa:hover { background: #0e7368; }
.contact-hours h2 { margin-bottom: 12px; }
.contact-aside { display: grid; gap: 16px; align-content: start; }
.contact-aside .checkout-card { padding-bottom: 22px; }

.about { padding-bottom: 0; }
.about-hero { position: relative; min-height: 520px; overflow: hidden; background: #122422; }
.about-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-hero-overlay {
  position: relative; min-height: 520px; display: flex; align-items: flex-end;
  padding: 48px 0 56px;
  background: linear-gradient(180deg, rgba(12,22,21,.18) 0%, rgba(12,22,21,.72) 100%);
}
.about-hero .container { max-width: 720px; color: #f6f1e8; }
.about-crumbs, .about-crumbs a { color: rgba(246,241,232,.7); margin-bottom: 18px; }
.about-crumbs a:hover { color: #f7f3ea; }
.about-hero h1 { font-size: clamp(40px, 6vw, 68px); margin: 0 0 16px; color: #f7f3ea; line-height: 1.05; }
.about-hero p { color: rgba(246,241,232,.82); max-width: 520px; margin: 0; font-size: 17px; line-height: 1.6; }
.about-bar { background: var(--surface); border-bottom: 1px solid var(--line); }
.about-bar-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.about-bar-grid > div { padding: 28px 24px; border-right: 1px solid var(--line); }
.about-bar-grid > div:first-child { padding-left: 0; }
.about-bar-grid > div:last-child { border-right: 0; padding-right: 0; }
.about-bar-grid span { display: block; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: 8px; }
.about-bar-grid strong { font-family: var(--serif); font-size: 22px; font-weight: 600; display: block; line-height: 1.25; }
.about-split { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 64px; align-items: start; }
.about-split-lead h2 { font-size: clamp(36px, 4vw, 52px); margin: 0; line-height: 1.08; }
.about-copy { color: var(--text-soft); font-size: 17px; line-height: 1.8; padding-top: 28px; }
.about-copy p { margin: 0 0 18px; }
.about-copy p:last-child { margin-bottom: 0; }
.about-copy h2 { display: none; }
.about-mosaic-wrap { padding: 0 0 8px; }
.about-mosaic { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 10px; }
.about-mosaic figure { margin: 0; position: relative; overflow: hidden; min-height: 320px; background: #1a2c2a; }
.about-mosaic img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; display: block; transition: transform .5s ease; }
.about-mosaic figure:hover img { transform: scale(1.04); }
.about-mosaic figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 18px 16px 14px;
  background: linear-gradient(180deg, transparent, rgba(10,16,15,.72));
  color: #f6f1e8; font-family: var(--serif); font-size: 22px;
}
.about-promises { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.about-promises li { display: grid; grid-template-columns: 72px 1fr; gap: 8px; padding: 28px 32px 28px 0; border-top: 1px solid var(--line); }
.about-promises li:nth-child(odd) { padding-right: 40px; }
.about-promises li:nth-child(even) { padding-left: 40px; border-left: 1px solid var(--line); }
.about-promises em { font-family: var(--serif); font-size: 28px; font-style: normal; color: var(--accent); line-height: 1; }
.about-promises h3 { font-size: 24px; margin: 0 0 8px; }
.about-promises p { margin: 0; color: var(--text-soft); font-size: 15px; line-height: 1.6; }
.about-cta-ghost { border-color: rgba(247,243,234,.45); color: #f7f3ea; background: transparent; }
.about-cta-ghost:hover { background: rgba(247,243,234,.12); color: #f7f3ea; }

.track { padding-bottom: 80px; }
.track-lead { max-width: 560px; color: var(--text-soft); margin: 8px 0 0; }
.track-form { max-width: 780px; padding-bottom: 22px !important; }
.track-or-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 16px; align-items: start; }
.or-split { display: flex; align-items: center; height: 70px; color: var(--text-faint); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.or-split span {
  display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--bg);
}
.track-order-list { list-style: none; margin: 16px 0 0; padding: 0; }
.track-order-list li {
  display: grid; grid-template-columns: 1fr auto auto; gap: 14px; align-items: center;
  padding: 12px 0; border-top: 1px solid var(--line);
}
.track-order-list strong { display: block; }
.track-order-list small { color: var(--text-faint); }
.track-form .btn { margin-bottom: 8px; }
.track-result { display: grid; gap: 16px; margin-top: 8px; }
.track-meta { color: var(--text-soft); font-size: 14px; }
.track-meta p { margin: 8px 0; }
.track-steps {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px;
  list-style: none; margin: 0 0 18px; padding: 0;
}
.track-steps li {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  text-align: center; font-size: 12px; font-weight: 650; color: var(--text-faint);
}
.track-steps span {
  width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid var(--line); background: var(--bg);
}
.track-steps .is-done, .track-steps .is-on { color: var(--text); }
.track-steps .is-done span, .track-steps .is-on span {
  background: var(--primary); color: #f7f3ea; border-color: var(--primary);
}
[data-theme="dark"] .track-steps .is-done span,
[data-theme="dark"] .track-steps .is-on span { color: #101211; }
.checkout-card-head .status { margin-left: auto; }

.cart-grid { display:grid; grid-template-columns: 1.4fr .7fr; gap:24px; }
@media (max-width: 1100px) {
  .cart-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .track-or-grid, .track-order-list li { grid-template-columns: 1fr; }
  .or-split { height: auto; justify-content: center; }
  .track-steps { grid-template-columns: 1fr; align-items: start; }
  .track-steps li { flex-direction: row; text-align: left; }
  .checkout-head, .checkout-card-head { flex-direction: column; align-items: flex-start; }
  .checkout-card-head .checkout-link { margin-left: 0; }
  .checkout-aside { position: static; }
  .about-hero, .about-hero-overlay { min-height: 420px; }
  .about-mosaic { grid-template-columns: 1fr 1fr; }
  .about-bar-grid > div, .about-promises li, .about-promises li:nth-child(odd), .about-promises li:nth-child(even) {
    border-left: 0; border-right: 0; padding-left: 0; padding-right: 0;
  }
  .about-cta .hero-actions { flex-direction: column; align-items: stretch; }
  .nav, .cats-bar, .header-search { display: none; }
  .menu-toggle { display: grid; }
  .header-inner { gap: 8px; }
  .logo-mark { font-size: 22px; }
  .grid-3, .grid-2, .grid-4, .benefits { grid-template-columns: 1fr 1fr; }
  .promo .container, .newsletter form, .newsletter-inner, .hero-actions { flex-direction: column; align-items: stretch; }
  .grid-cats { grid-template-columns: 1fr 1fr; }
  .hero-photo, .hero-slider, .hero-overlay { min-height: 420px; }
  .cart-table thead { display: none; }
  .cart-table tr { display: block; padding: 12px; border-bottom: 1px solid var(--line); }
  .cart-table td { display: block; border: 0; padding: 4px 0; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 420px) {
  .grid-3, .grid-2, .grid-4, .benefits { grid-template-columns: 1fr; }
}
