:root{
  --bg:#f5f4f2;
  --bg-soft:#efede9;
  --surface:#ffffff;
  --surface-2:#faf8f5;
  --text:#121212;
  --muted:#676767;
  --line:#d8d3cc;
  --brand:#111111;
  --brand-2:#1b1b1b;
  --accent:#a36b3f;
  --accent-2:#d8b080;
  --danger:#9a2b2b;
  --success:#2d6f4b;
  --shadow:0 12px 38px rgba(0,0,0,.08);
  --radius:18px;
  --radius-sm:12px;
  --wrap:1240px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
  --header-sticky-height: 84px;
  --mobile-nav-height: 76px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
button,input,select,textarea{font:inherit}
input,select,textarea{
  width:100%;
  border:1px solid var(--line);
  background:#fff;
  color:var(--text);
  border-radius:14px;
  padding:14px 16px;
  outline:none;
  transition:border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
input:focus,select:focus,textarea:focus{
  border-color:#b7a188;
  box-shadow:0 0 0 4px rgba(163,107,63,.12);
}
input::placeholder,textarea::placeholder{
  color:#888 !important;
  opacity:1 !important;
  -webkit-text-fill-color:#888 !important;
}
textarea{min-height:120px;resize:vertical}
.wrap{width:min(var(--wrap), calc(100% - 32px));margin:0 auto}
.muted{color:var(--muted)}
.hidden{display:none !important}
.only-mobile{display:none !important}
.only-desktop{display:block !important}

/* header */
.topbar{
  background:#121212;
  color:#d9d6cf;
  font-size:12px;
}
.topbar .wrap{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:16px;
  min-height:44px;
}
.topbar-links{display:flex;gap:18px;align-items:center;flex-wrap:wrap}
.topbar a:hover{text-decoration:underline}

.site-header{
  position:sticky;
  top:0;
  z-index:60;
  background:rgba(245,244,242,.94);
  border-bottom:1px solid rgba(0,0,0,.06);
  backdrop-filter:blur(12px);
}
.site-header .wrap{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  min-height:84px;
  gap:16px;
}
.header-left,.header-right{display:flex;align-items:center;gap:14px}
.header-right{justify-content:flex-end}
.burger{
  width:44px;height:44px;border:none;background:transparent;cursor:pointer;
  display:grid;place-items:center;padding:0;border-radius:50%;
  position:relative;
}
.burger:hover{background:rgba(0,0,0,.05)}
.burger-box{
  position:relative;
  width:18px;
  height:14px;
  display:block;
}
.burger-line{
  position:absolute;
  left:0;
  width:18px;
  height:1.8px;
  background:#222;
  border-radius:10px;
  transition:transform 160ms var(--ease-out), opacity 160ms var(--ease-out);
}
.burger-line:nth-child(1){top:0}
.burger-line:nth-child(2){top:6.1px}
.burger-line:nth-child(3){top:12.2px}
.burger[aria-expanded="true"] .burger-line:nth-child(1){
  transform:translateY(6.1px) rotate(45deg);
}
.burger[aria-expanded="true"] .burger-line:nth-child(2){
  opacity:0;
}
.burger[aria-expanded="true"] .burger-line:nth-child(3){
  transform:translateY(-6.1px) rotate(-45deg);
}
.logo{
  display:flex;
  align-items:center;
  justify-self:center;
  gap:10px;
  font-size:24px;
  font-weight:700;
  letter-spacing:.02em;
  line-height:1;
  color:inherit;
}
.logo img{
  height:40px;
  width:auto;
  display:block;
  flex:0 0 auto;
}
.logo .heart{color:#cf5959}
body[data-seo-route="catalog"] .hero,
body[data-seo-route="catalog"] #hitsSection{display:none !important}
.crumbs{
  display:flex;flex-wrap:wrap;align-items:center;gap:8px;
  font-size:14px;color:var(--muted);margin:0 0 12px;
}
.crumbs a{text-decoration:underline}
.crumbs-sep{opacity:.45}
.seo-product{
  display:flex;flex-direction:column;gap:8px;
  background:#fff;border:1px solid var(--line);border-radius:var(--radius);
  padding:12px;text-decoration:none;color:inherit;
}
.seo-product img{width:100%;height:180px;object-fit:cover;border-radius:12px}
.seo-product-title{font-weight:600}
.seo-product-price{color:var(--muted)}
a.chip{display:inline-flex;align-items:center;text-decoration:none}
.header-actions{display:flex;align-items:center;gap:4px}
.icon-btn{
  position:relative;
  width:44px;height:44px;border:none;background:transparent;border-radius:50%;
  display:grid;place-items:center;cursor:pointer;
}
.icon-btn:hover{background:rgba(0,0,0,.05)}
.icon-btn .badge{
  position:absolute;top:5px;right:4px;
  min-width:18px;height:18px;padding:0 5px;border-radius:999px;
  background:#111;color:#fff;font-size:11px;display:grid;place-items:center;
}
.icon{
  width:19px;height:19px;display:inline-block;position:relative;overflow:visible;
}
.icon.search{border:1.8px solid #111;border-radius:50%}
.icon.search:after{content:"";position:absolute;width:8px;height:1.8px;background:#111;right:-5px;bottom:-1px;transform:rotate(45deg)}
.icon.heart:before{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:20px;
  height:20px;
  transform:translate(-50%,-50%);
  background:#111;
  -webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.icon.bag{border:1.8px solid #111;border-radius:4px;top:2px}
.icon.bag:before{content:"";position:absolute;left:4px;right:4px;top:-5px;height:8px;border:1.8px solid #111;border-bottom:none;border-radius:12px 12px 0 0}
.icon.bag:after{content:"";position:absolute;left:7px;right:7px;top:6px;height:1.5px;background:#111}
.icon.cart:before{content:"🛒";font-size:20px;line-height:1;position:absolute;inset:0;display:grid;place-items:center}

.mobile-drawer{
  position:fixed;
  inset:0;
  z-index:80;
  pointer-events:none;
}
.mobile-drawer.is-open{pointer-events:auto}
.mobile-drawer-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.32);
  opacity:0;
  transition:opacity 250ms var(--ease-out);
}
.mobile-drawer.is-open .mobile-drawer-backdrop{opacity:1}
.mobile-drawer-panel{
  position:absolute;
  top:var(--header-sticky-height);
  left:0;
  z-index:1;
  width:min(340px, 88vw);
  height:auto;
  max-height:calc(100% - var(--header-sticky-height) - 16px);
  background:#fff;
  padding:12px 12px 14px;
  overflow:auto;
  box-shadow:var(--shadow);
  border-radius:0 24px 24px 0;
  transform:translateX(-100%);
  transition:transform 280ms var(--ease-drawer);
}
.mobile-drawer.is-open .mobile-drawer-panel{transform:translateX(0)}
.drawer-head{display:flex;justify-content:space-between;align-items:center;margin-bottom:10px;padding:0 4px}
.drawer-close{
  width:44px;height:44px;border:none;background:transparent;font-size:24px;cursor:pointer;
  display:grid;place-items:center;border-radius:50%;
}
.drawer-nav{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.drawer-nav a,
.drawer-btn{
  display:flex;
  align-items:center;
  min-height:48px;
  padding:12px 16px;
  border:1px solid var(--line);
  border-radius:14px;
  background:var(--surface-2);
  font-weight:600;
  opacity:0;
  transform:translateY(8px);
  transition:opacity 200ms var(--ease-out), transform 200ms var(--ease-out), background 160ms ease, border-color 160ms ease;
}
.mobile-drawer.is-open .drawer-nav a,
.mobile-drawer.is-open .drawer-btn{
  opacity:1;
  transform:none;
}
.mobile-drawer.is-open .drawer-nav a:active,
.mobile-drawer.is-open .drawer-btn:active{
  transform:scale(0.97);
  transition:transform 160ms var(--ease-out), background 160ms ease;
}
.mobile-drawer.is-open .drawer-nav a:nth-child(1){transition-delay:40ms}
.mobile-drawer.is-open .drawer-nav a:nth-child(2){transition-delay:80ms}
.mobile-drawer.is-open .drawer-nav a:nth-child(3){transition-delay:120ms}
.mobile-drawer.is-open .drawer-nav a:nth-child(4){transition-delay:160ms}
.mobile-drawer.is-open .drawer-nav a:nth-child(5){transition-delay:200ms}
.mobile-drawer.is-open .drawer-nav a:nth-child(6){transition-delay:240ms}
body.drawer-open .site-header{z-index:90}
body.drawer-open,
body.promo-open,
body.search-open{overflow:hidden}
body.search-open .mobile-nav{z-index:59}

.search-overlay{
  position:fixed;
  left:0;
  right:0;
  top:var(--header-sticky-height);
  bottom:0;
  z-index:58;
  pointer-events:none;
  visibility:hidden;
  transition:visibility 0s 200ms;
}
.search-overlay.is-open{
  pointer-events:auto;
  visibility:visible;
  transition:visibility 0s;
}
.search-overlay-backdrop{
  position:absolute;
  inset:0;
  background:rgba(18,18,18,.34);
  opacity:0;
  transition:opacity 200ms var(--ease-out);
}
.search-overlay.is-open .search-overlay-backdrop{opacity:1}
.search-panel{
  position:relative;
  z-index:1;
  background:rgba(255,255,255,.98);
  border-bottom:1px solid rgba(0,0,0,.06);
  box-shadow:var(--shadow);
  opacity:0;
  transform:translateY(-8px);
  transition:opacity 200ms var(--ease-out), transform 200ms var(--ease-out);
  max-height:min(72vh, 680px);
  display:flex;
  flex-direction:column;
  overflow:hidden;
}
.search-overlay.is-open .search-panel{
  opacity:1;
  transform:none;
}
.search-panel-bar{padding:14px 0 8px}
.search-panel-results{
  padding:0 0 14px;
  overflow:auto;
  display:flex;
  flex-direction:column;
  gap:2px;
}
.search-panel-hint{
  margin:8px 0 4px;
  color:var(--muted);
  font-size:14px;
}
.search-hit{
  display:flex;
  align-items:center;
  gap:12px;
  min-height:64px;
  padding:8px 6px;
  border-radius:14px;
  color:inherit;
  transition:background 160ms ease, transform 160ms var(--ease-out);
}
.search-hit img{
  width:56px;
  height:56px;
  object-fit:cover;
  border-radius:10px;
  background:#f4eee6;
  flex:0 0 auto;
}
.search-hit-copy{display:flex;flex-direction:column;gap:4px;min-width:0}
.search-hit-title{font-weight:650;font-size:15px;line-height:1.25}
.search-hit-price{font-size:14px;color:var(--muted)}
.search-hit:active{transform:scale(0.97)}

/* hero */
.main-content{padding:16px 0 80px}
.hero{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0;
  align-items:stretch;
  height:min(428px, calc(100dvh - var(--header-sticky-height) - 58px));
  border-radius:24px;
  overflow:hidden;
  background:#fff;
  border:1px solid #e6dfd6;
  box-shadow:var(--shadow);
}
.hero-banner{
  position:relative;
  isolation:isolate;
  min-height:0;
  height:100%;
  border-radius:0;
  overflow:hidden;
  background:#241c18;
  color:#fff;
  padding:22px 26px 24px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:14px;
}
.hero-banner-bg{
  position:absolute;
  inset:0;
  z-index:0;
  overflow:hidden;
  pointer-events:none;
}
.hero-banner-bg::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:2;
  background:linear-gradient(160deg, rgba(18,18,18,.74) 0%, rgba(18,18,18,.52) 48%, rgba(18,18,18,.68) 100%);
  pointer-events:none;
}
.hero-banner-bg .banner-slide{
  position:absolute;
  inset:0;
  z-index:1;
}
.hero-banner > *:not(.hero-banner-bg){position:relative;z-index:1}
.hero-copy{display:flex;flex-direction:column;align-items:flex-start;gap:8px;max-width:34rem}
.hero-banner h1{font-size:clamp(26px,2.5vw,34px);line-height:1.16;letter-spacing:-.03em;font-weight:750;margin:0;overflow-wrap:normal;hyphens:none}
.hero-banner p{margin:0;max-width:30em;color:rgba(255,255,255,.92);font-size:15px;line-height:1.4}
.hero-pill{
  padding:8px 12px;border-radius:999px;background:rgba(255,255,255,.16);backdrop-filter:blur(4px);
  font-size:12px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;
  border:1px solid rgba(255,255,255,.3);color:#fff
}
.hero-promo{
  display:flex;align-items:center;flex-wrap:wrap;gap:8px;
  padding:8px 10px;border-radius:14px;background:rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.28);color:#fff;font-size:13px;font-weight:600;
}
.hero-promo strong{letter-spacing:.06em}
.hero-promo .copy-btn{min-height:44px;min-width:44px;padding:8px 12px;font-size:13px}
.trust-strip{
  display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:10px;
  margin-top:18px;padding:6px 0;
}
.trust-strip a{
  min-height:44px;display:flex;align-items:center;justify-content:center;text-align:center;
  padding:10px 12px;border-radius:16px;background:#fff;border:1px solid #e6dfd6;
  font-size:14px;font-weight:650;
}
.trust-strip a:hover{border-color:#111}
.hits-grid{margin-top:0}
.mini-tile-media{display:block;aspect-ratio:16/10;border-radius:12px;overflow:hidden;background:#efe8df;margin-bottom:8px}
.mini-tile-media img{width:100%;height:100%;object-fit:cover}
#catalogSection{scroll-margin-top:calc(var(--header-sticky-height) + 12px)}
.cart-toast{
  position:fixed;left:50%;bottom:24px;transform:translateX(-50%) translateY(12px);
  z-index:120;display:flex;align-items:center;gap:12px;flex-wrap:wrap;
  min-height:48px;max-width:min(520px, calc(100% - 24px));
  padding:12px 14px;border-radius:16px;background:#111;color:#fff;
  box-shadow:0 16px 40px rgba(0,0,0,.22);opacity:0;pointer-events:none;
  transition:opacity 200ms var(--ease-out), transform 200ms var(--ease-out);
}
.cart-toast.is-visible{opacity:1;transform:translateX(-50%) translateY(0);pointer-events:auto}
.cart-toast a{color:#fff;text-decoration:underline;font-weight:700;min-height:44px;display:inline-flex;align-items:center}
.cart-toast-close{
  margin-left:auto;width:44px;height:44px;border:none;background:transparent;color:#fff;
  font-size:24px;border-radius:50%;cursor:pointer;
}
.cookie-card h2{font-size:16px}
.cookie-card p{font-size:13px}
.chip{min-height:44px}
.product-fav{width:44px;height:44px}
.hero-actions{display:flex;gap:10px;flex-wrap:wrap}
.hero-actions .btn,
.hero-actions .btn-secondary{
  min-height:44px;padding:12px 20px;font-size:15px;font-weight:650;
}
.btn, .btn-secondary, .btn-ghost, .btn-link{
  border:none;border-radius:999px;padding:14px 18px;cursor:pointer;display:inline-flex;align-items:center;justify-content:center;gap:10px;
  transition:transform 160ms var(--ease-out), background 160ms ease, color 160ms ease, border-color 160ms ease;
}
.btn{background:#111;color:#fff}
.btn-secondary{background:#fff;color:#111}
.btn-ghost{background:transparent;border:1px solid var(--line);color:var(--text)}
.btn-link{background:transparent;color:var(--text);padding:0}
.hero-side{
  min-height:0;
  height:100%;
  border-radius:0;
  background:#f4efe8;
  padding:14px;
}
.hero-mosaic{
  display:grid;
  grid-template-columns:1fr 1fr;
  grid-template-rows:1fr 1fr;
  gap:10px;
  height:100%;
  min-height:0;
}
.hero-tile{
  position:relative;
  min-height:0;
  min-width:0;
  border:1px solid #e4ddd4;
  border-radius:16px;
  background:#fff;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  text-decoration:none;
  color:inherit;
}
.hero-tile:hover{border-color:#111}
.hero-tile:focus-visible{outline:2px solid #111;outline-offset:2px}
.hero-tile.is-hit{border-color:#c9b29a}
.hero-tile-media{
  position:relative;
  flex:1 1 auto;
  min-height:0;
  overflow:hidden;
  background:
    radial-gradient(ellipse at 50% 72%, #fff 0%, #f3eee7 58%);
}
.hero-tile-media img{
  position:absolute;
  inset:8px;
  width:calc(100% - 16px);
  height:calc(100% - 16px);
  object-fit:contain;
  object-position:center;
}
.hero-tile-badge{
  position:absolute;
  top:8px;
  left:8px;
  z-index:1;
  padding:4px 8px;
  border-radius:999px;
  background:#111;
  color:#fff;
  font-size:10px;
  font-weight:750;
  letter-spacing:.06em;
  text-transform:uppercase;
}
.hero-tile-kicker{
  font-size:10px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:#7a4f2c;
}
.hero-tile-caption{
  flex:0 0 auto;
  display:grid;
  gap:1px;
  padding:6px 10px 10px;
}
.hero-tile-caption strong{
  font-size:13px;line-height:1.25;letter-spacing:-.02em;font-weight:750;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
}
.hero-tile-price{font-size:12px;font-weight:650;color:#3d3d3d}
.banner-slot{
  position:relative;
  display:block;
  aspect-ratio:5 / 2;
  min-height:0;
  border-radius:24px;
  overflow:hidden;
  background:#f4eee6;
  box-shadow:0 16px 38px rgba(17,17,17,.08);
  isolation:isolate;
}
.banner-slot::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:2;
  border:1px solid rgba(17,17,17,.08);
  border-radius:inherit;
  pointer-events:none;
}
.banner-slide{
  position:absolute;
  inset:0;
  opacity:0;
}
.banner-slide:nth-child(1){animation:bannerFadeOne 12s ease-in-out infinite}
.banner-slide:nth-child(2){animation:bannerFadeTwo 12s ease-in-out infinite}
.banner-slide picture,
.banner-slide img{
  display:block;
  width:100%;
  height:100%;
}
.banner-slide img{
  object-fit:cover;
  transform:scale(1.015);
  animation:bannerDrift 12s ease-in-out infinite;
}
@keyframes bannerFadeOne{
  0%,42%{opacity:1}
  50%,92%{opacity:0}
  100%{opacity:1}
}
@keyframes bannerFadeTwo{
  0%,42%{opacity:0}
  50%,92%{opacity:1}
  100%{opacity:0}
}
@keyframes bannerDrift{
  0%,100%{transform:scale(1.015) translateX(0)}
  50%{transform:scale(1.035) translateX(-.6%)}
}
.promo-card{
  border:1px solid var(--line);border-radius:20px;padding:16px;background:linear-gradient(180deg,#fff,#f6f3ee)
}
.promo-code{
  display:inline-flex;align-items:center;gap:8px;
  padding:10px 14px;border-radius:999px;background:#111;color:#fff;font-weight:700;letter-spacing:.08em
}
.mini-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;min-height:0;align-content:stretch}
.mini-tile{
  border:1px solid #d0c8be;border-radius:18px;padding:14px 14px 12px;background:#fff;min-height:128px;
  display:flex;flex-direction:column;justify-content:space-between;gap:8px;
  transition:transform 160ms var(--ease-out), border-color 160ms ease, background 160ms ease;
}
.mini-tile-kicker{
  font-size:11px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:#7a4f2c;
}
.mini-tile-title{
  font-size:18px;line-height:1.15;letter-spacing:-.02em;font-weight:750;color:var(--text);overflow-wrap:anywhere;
}
.mini-tile-meta{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-top:auto}
.mini-tile-count{font-size:14px;font-weight:600;color:#3d3d3d}
.mini-tile-arrow{
  width:32px;height:32px;border-radius:50%;background:#111;color:#fff;
  display:grid;place-items:center;font-size:16px;line-height:1;flex:0 0 auto;
}
.section{margin-top:32px}
.section-head{display:flex;justify-content:space-between;align-items:flex-end;gap:16px;margin-bottom:16px}
.section-head h2,.section-head h3{margin:0;font-size:28px}
.section-head p{margin:4px 0 0;font-size:14px}

/* categories */
.category-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:14px;
}
.category-card{
  min-height:140px;border-radius:22px;padding:18px;background:linear-gradient(145deg,#1e1e1e,#49423b 55%,#d8c3ad);
  color:#fff;position:relative;overflow:hidden;box-shadow:var(--shadow)
}
.category-card:nth-child(2n){background:linear-gradient(145deg,#50331e,#9b6a46 55%,#e6d7ca)}
.category-card:nth-child(3n){background:linear-gradient(145deg,#212734,#59657d 55%,#e0e4ea)}
.category-card:nth-child(4n){background:linear-gradient(145deg,#2f241c,#7d5f49 55%,#ece0d2)}
.category-card .count{font-size:12px;opacity:.88}
.category-card h3{margin:8px 0 0;font-size:24px}
.category-card .arrow{position:absolute;right:18px;bottom:14px;font-size:20px;opacity:.9}

/* horizontal scrollers */
.h-scroll{
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns:minmax(260px, 1fr);
  gap:16px;
  overflow:auto;
  padding-bottom:6px;
  scrollbar-width:thin;
}
.h-scroll::-webkit-scrollbar{height:8px}
.h-scroll::-webkit-scrollbar-thumb{background:#cdc6be;border-radius:99px}

/* catalog cards */
.product-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
}
.product-card{
  background:var(--surface);
  border:1px solid #e6dfd6;
  border-radius:24px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  min-height:100%;
  box-shadow:0 10px 26px rgba(17,17,17,.05);
  transition:transform 160ms var(--ease-out);
}
.product-card-media-wrap{
  aspect-ratio:3/4;
  background:#dfd9d1;
  overflow:hidden;
  position:relative;
}
.product-card-media{
  display:block;
  width:100%;
  height:100%;
}
.product-card-media img{
  width:100%;height:100%;object-fit:cover;
}
.product-fav{
  position:absolute;right:10px;bottom:10px;
  width:34px;height:34px;border-radius:50%;border:1px solid rgba(0,0,0,.08);
  background:rgba(255,255,255,.92);display:grid;place-items:center;cursor:pointer;
}
.product-fav.active{background:#111;color:#fff}
.product-card-body{
  padding:14px 14px 12px;
  display:flex;flex-direction:column;gap:8px;flex:1;
}
.product-card-eyebrow{
  font-size:12px;
  color:var(--muted);
  letter-spacing:.04em;
}
.product-card-title{
  font-size:15px;
  line-height:1.35;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.product-card-row{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:8px;
  margin-top:auto;
}
.product-price{font-size:20px;font-weight:700;letter-spacing:-.02em}
.product-stock-badge{
  display:inline-flex;
  align-items:center;
  padding:4px 8px;
  border-radius:999px;
  background:#ede7de;
  font-size:11px;
  line-height:1.2;
  color:#333;
  max-width:46%;
}
.buy-btn{
  width:100%;padding:14px 16px;border:1px solid #171717;background:#111;color:#fff;border-radius:18px;font-size:15px;font-weight:600;letter-spacing:.02em;
  transition:background 160ms ease, color 160ms ease, box-shadow 160ms ease, outline-color 160ms ease, transform 160ms var(--ease-out);
}
.card-buy-bar{
  display:flex;
  align-items:stretch;
  gap:0;
  height:48px;
  flex:0 0 48px;
  padding:0;
  background:#111;
  overflow:hidden;
}
.card-buy-bar .buy-btn{
  flex:1 1 auto;
  width:auto;
  min-width:0;
  border:none;
  border-radius:0;
  height:100%;
  min-height:48px;
  padding:12px 14px;
  font-size:15px;
  cursor:pointer;
  white-space:nowrap;
}
.card-qty{
  display:grid;
  grid-template-columns:44px minmax(32px,1fr) 44px;
  align-items:stretch;
  flex:0 0 132px;
  width:132px;
  height:48px;
  background:#111;
  color:#fff;
  border-left:1px solid rgba(255,255,255,.16);
  overflow:hidden;
  transform-origin:right center;
  transition:opacity 180ms var(--ease-out), transform 180ms var(--ease-out);
}
.card-buy-bar[data-mode="buy"] .card-qty{
  flex:0 0 0;
  width:0;
  min-width:0;
  opacity:0;
  transform:scale(0.95);
  pointer-events:none;
  border-left-color:transparent;
}
.card-buy-bar[data-mode="split"] .card-qty{
  opacity:1;
  transform:scale(1);
}
.card-qty-btn{
  width:100%;
  min-width:44px;
  height:48px;
  border:none;
  background:transparent;
  color:#fff;
  font-size:20px;
  line-height:1;
  cursor:pointer;
  display:grid;
  place-items:center;
  transition:background 160ms ease, transform 160ms var(--ease-out), opacity 160ms ease;
}
.card-qty-btn:disabled{
  opacity:.38;
  cursor:not-allowed;
}
.card-qty-value{
  display:grid;
  place-items:center;
  font-size:16px;
  font-weight:700;
  font-variant-numeric:tabular-nums;
  color:#fff;
  transition:opacity 160ms var(--ease-out);
}
.card-buy-bar .buy-btn:active,
.card-qty-btn:active:not(:disabled),
.product-actions .buy-btn:active{
  background:#2a2a2a;
  transform:scale(0.97);
}
.meta-line{display:flex;gap:10px;align-items:center;flex-wrap:wrap;font-size:12px;color:var(--muted)}
.tag{display:inline-flex;padding:6px 10px;border-radius:999px;background:#ede7de;font-size:12px;color:#333}

/* filters */
.filters-row{
  display:flex;gap:12px;align-items:center;justify-content:space-between;flex-wrap:wrap;margin-bottom:20px
}
.search-wrap{position:relative;max-width:340px;width:100%}
.search-wrap input{padding-left:44px}
.search-wrap:before{
  content:"";position:absolute;left:16px;top:50%;width:16px;height:16px;border:1.8px solid #444;border-radius:50%;transform:translateY(-50%);
}
.search-wrap:after{
  content:"";position:absolute;left:31px;top:56%;width:7px;height:1.8px;background:#444;transform:rotate(45deg)
}
.chip-row{display:flex;gap:10px;flex-wrap:wrap}
.chip{
  border:1px solid var(--line);background:#fff;color:#444;padding:10px 14px;border-radius:999px;cursor:pointer
}
.chip.active{background:#111;color:#fff;border-color:#111}

/* product page */
.product-layout{
  display:grid;
  grid-template-columns:110px minmax(0, 1fr) 420px;
  gap:22px;
  align-items:start;
}
.thumb-list{display:grid;gap:12px}
.thumb{
  border:1px solid var(--line);border-radius:12px;overflow:hidden;background:#fff;aspect-ratio:3/4;cursor:pointer
}
.thumb.active{outline:2px solid #111}
.thumb img{width:100%;height:100%;object-fit:cover}
.product-main-card{
  background:#ebe7e0;border-radius:24px;padding:12px;box-shadow:var(--shadow)
}
.product-main-media{aspect-ratio:4/5;border-radius:18px;overflow:hidden;background:#dfd7cf}
.product-main-media img{width:100%;height:100%;object-fit:cover}
.product-side{
  background:transparent;padding:6px 0
}
.product-sku{font-size:12px;color:var(--muted);text-transform:uppercase;letter-spacing:.06em;margin-bottom:12px}
.product-side h1{font-size:32px;line-height:1.12;margin:0 0 12px;overflow-wrap:anywhere}
.product-summary{margin:0 0 14px;color:#4f4f4f;font-size:14px;line-height:1.55}
.price-big{font-size:36px;font-weight:700;margin:10px 0 18px}
.option-block{margin:18px 0}
.option-label{font-size:12px;color:var(--muted);text-transform:uppercase;letter-spacing:.08em;margin-bottom:10px}
.option-grid{display:flex;flex-wrap:wrap;gap:10px}
.option-btn{
  min-width:44px;padding:12px 14px;border-radius:12px;border:1px solid var(--line);background:#fff;cursor:pointer;
}
.option-btn.active{border-color:#111;background:#111;color:#fff}
.color-swatch{width:18px;height:18px;border-radius:50%;border:1px solid rgba(0,0,0,.12);display:inline-block}
.product-actions{display:flex;gap:12px;align-items:center;margin:22px 0}
.product-actions .buy-btn{border-radius:18px;background:#111;color:#fff;border-color:#111}
.fav-large{width:50px;height:50px;border-radius:50%;border:1px solid var(--line);background:#fff}
.fav-large.active{background:#111;color:#fff;border-color:#111}
.accordions{margin-top:28px;border-top:1px solid var(--line)}
.acc-item{border-bottom:1px solid var(--line)}
.acc-head{
  width:100%;display:flex;justify-content:space-between;gap:12px;align-items:center;background:transparent;border:none;padding:18px 0;cursor:pointer;
  font-size:14px;letter-spacing:.02em;text-transform:uppercase;
}
.acc-body{display:none;padding:0 0 18px;color:#444;line-height:1.65}
.acc-item.open .acc-body{display:block}
.acc-symbol{font-size:22px;color:#444}
.spec-list{display:grid;gap:0;margin:0}
.spec-row{display:grid;grid-template-columns:minmax(120px,42%) 1fr;gap:16px;padding:10px 0;border-bottom:1px solid var(--line)}
.spec-row:last-child{border-bottom:0}
.spec-row dt{color:var(--muted);font-weight:700}
.spec-row dd{margin:0;color:var(--ink)}
.spec-row-full{display:block}
.related-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}

/* checkout */
.checkout-layout{
  display:grid;
  grid-template-columns:minmax(0, 1.25fr) 380px;
  gap:32px;
  align-items:start;
}
.checkout-left,.checkout-right{
  background:var(--surface);
  border-radius:24px;
  padding:24px;
  box-shadow:var(--shadow);
}
.cart-list{display:flex;flex-direction:column;gap:18px}
.cart-item{
  display:grid;
  grid-template-columns:140px 1fr auto;
  gap:18px;
  padding-bottom:18px;
  border-bottom:1px solid var(--line);
}
.cart-item:last-child{padding-bottom:0;border-bottom:none}
.cart-media{
  aspect-ratio:3/4;border-radius:14px;overflow:hidden;background:#ddd
}
.cart-media img{width:100%;height:100%;object-fit:cover}
.cart-title{font-size:20px;line-height:1.18;margin:0 0 8px;overflow-wrap:anywhere}
.cart-sku,.cart-variant{font-size:12px;color:var(--muted);text-transform:uppercase;letter-spacing:.06em}
.qty-row{display:flex;align-items:center;gap:10px;margin-top:16px}
.qty-btn{
  width:34px;height:34px;border-radius:50%;border:1px solid var(--line);background:#fff;cursor:pointer;
}
.qty-chip{font-size:13px;color:#444}
.cart-side-tools{
  display:flex;flex-direction:column;gap:14px;align-items:flex-end
}
.heart-mini,.remove-mini{
  border:none;background:transparent;cursor:pointer;font-size:18px;color:#111;padding:2px
}
.remove-mini{font-size:14px;text-decoration:underline;color:#5d5d5d}
.summary-list{display:grid;gap:12px;margin:18px 0 22px}
.summary-row{display:flex;justify-content:space-between;gap:12px}
.summary-row.total{padding-top:12px;border-top:1px solid var(--line);font-size:20px;font-weight:700}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.form-grid .full{grid-column:1 / -1}
.field-combo{position:relative;min-width:0}
.field-label{
  display:block;
  font-size:12px;
  color:var(--muted);
  margin:0 0 6px;
  line-height:1.35;
}
.field-hint{
  margin:8px 0 0;
  font-size:12px;
  color:var(--muted);
  line-height:1.45;
}
.suggest-list{
  position:absolute;
  left:0;
  right:0;
  top:calc(100% + 4px);
  z-index:12;
  margin:0;
  padding:6px;
  list-style:none;
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  box-shadow:var(--shadow);
  max-height:240px;
  overflow:auto;
  visibility:hidden;
  opacity:0;
  transform:translateY(-8px);
  pointer-events:none;
  transition:opacity 160ms var(--ease-out), transform 160ms var(--ease-out);
}
.suggest-list--wide{max-height:280px}
.suggest-list.is-open{
  visibility:visible;
  opacity:1;
  transform:none;
  pointer-events:auto;
}
.suggest-empty{
  padding:10px 12px;
  font-size:13px;
  color:var(--muted);
}
.suggest-item{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:2px;
  width:100%;
  text-align:left;
  border:none;
  background:transparent;
  border-radius:10px;
  padding:10px 12px;
  cursor:pointer;
  color:inherit;
}
.suggest-item-title{font-size:14px;font-weight:650;line-height:1.3}
.suggest-item-meta{font-size:12px;color:var(--muted);line-height:1.35}
.suggest-item.is-active,
.suggest-item:hover{background:var(--bg-soft)}
#phone.is-paste-ok{
  border-color:var(--success);
  box-shadow:0 0 0 4px rgba(45,111,75,.14);
  transition:border-color 160ms var(--ease-out), box-shadow 160ms var(--ease-out);
}
.form-note{font-size:12px;color:var(--muted);line-height:1.5}
.check{
  display:flex;gap:10px;align-items:flex-start;font-size:13px;color:#333;line-height:1.45;
}
.check input{
  width:auto;margin-top:3px;accent-color:#111;flex:0 0 auto
}
.check a{color:#111;text-decoration:underline}
.status{font-size:14px;margin-top:12px;min-height:18px}
.status.err{color:var(--danger)}
.empty-state{
  border:1px dashed #cdb9a3;border-radius:24px;background:linear-gradient(180deg,#fff,#f7f1e8);
  padding:34px;text-align:center
}

/* footer */
.footer{
  background:#111;color:#ddd;margin-top:70px
}
.footer .wrap{padding:28px 16px}
.footer-grid{
  display:grid;
  grid-template-columns:1fr auto;
  gap:16px;align-items:center
}
.footer-brand{font-size:28px;font-weight:700}
.footer-links{display:flex;justify-content:flex-end;gap:20px;flex-wrap:wrap;font-size:13px}
.footer a{color:#ddd}
.footer a:hover{color:#fff}
.footer-sub{margin-top:16px;padding-top:16px;border-top:1px solid rgba(255,255,255,.08);font-size:12px;color:#b1b1b1;display:flex;justify-content:space-between;gap:16px;flex-wrap:wrap}

/* mobile bottom nav */
.mobile-nav{
  position:fixed;left:0;right:0;bottom:0;z-index:55;background:rgba(255,255,255,.96);backdrop-filter:blur(14px);
  border-top:1px solid rgba(0,0,0,.08);display:none;
}
.mobile-nav .inner{
  display:grid;grid-template-columns:repeat(4,1fr);gap:2px;padding:8px 10px calc(8px + env(safe-area-inset-bottom));
}
.mobile-nav a,.mobile-nav button{
  border:none;background:transparent;padding:8px 4px;display:flex;flex-direction:column;gap:6px;align-items:center;justify-content:center;font-size:11px;color:#555;cursor:pointer;
  min-height:44px;
}
.nav-lottie{
  position:relative;
  width:24px;
  height:24px;
  display:grid;
  place-items:center;
}
.nav-svg{
  width:24px;
  height:24px;
  display:block;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.nav-lottie-player{
  position:absolute;
  inset:0;
  pointer-events:none;
}
.nav-lottie.is-playing .nav-svg{opacity:0}
.mobile-nav .active{color:#111}
.mobile-nav .active .nav-svg{fill:#111;stroke:#111}
.mobile-spacer{display:none;height:76px}

/* promo dialog + separate cookie region */
.consent-stack{
  position:fixed;
  inset:0;
  z-index:100;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:12px;
  padding:18px;
  pointer-events:none;
  overflow:auto;
}
.consent-stack-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.45);
  opacity:0;
  pointer-events:none;
  transition:opacity 250ms var(--ease-out);
}
.consent-stack.is-promo-open .consent-stack-backdrop{
  opacity:1;
  pointer-events:auto;
}
.consent-stack.is-cookie-open:not(.is-promo-open){
  justify-content:flex-end;
  padding-bottom:24px;
}
@media (max-width: 720px){
  .consent-stack.is-cookie-open:not(.is-promo-open){
    padding-bottom:calc(16px + var(--mobile-nav-height) + env(safe-area-inset-bottom));
  }
}
.promo-modal,
.cookie-panel{
  position:relative;
  z-index:1;
  width:min(520px, 100%);
  flex:0 0 auto;
  opacity:0;
  transform:scale(0.96);
  pointer-events:none;
  transition:opacity 250ms var(--ease-out), transform 250ms var(--ease-out);
}
.promo-modal.is-open,
.cookie-panel.is-open{
  opacity:1;
  transform:none;
  pointer-events:auto;
}
.promo-modal:not(.is-open),
.cookie-panel:not(.is-open){
  position:absolute;
  visibility:hidden;
}
.modal-card{
  background:#fff;
  border-radius:28px;
  padding:28px;
  box-shadow:0 30px 70px rgba(0,0,0,.18);
  position:relative;
}
.modal-close{
  position:absolute;top:8px;right:8px;border:none;background:transparent;font-size:28px;cursor:pointer;
  width:44px;height:44px;display:grid;place-items:center;border-radius:50%;line-height:1;
}
.modal-close:hover{background:rgba(0,0,0,.05)}
.promo-modal .modal-card h2{margin:0 36px 10px 0;font-size:34px;line-height:.96}
.promo-modal .modal-card p{margin:0;color:#525252}
.promo-box{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:16px 18px;border-radius:18px;background:#111;color:#fff;font-weight:700;letter-spacing:.06em;margin:18px 0}
.copy-btn{
  min-height:44px;padding:10px 14px;border-radius:999px;background:#fff;color:#111;border:none;cursor:pointer;
}
.cookie-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:24px;
  padding:20px 22px;
  box-shadow:var(--shadow);
}
.cookie-card h2{margin:0 0 8px;font-size:18px;line-height:1.25}
.cookie-card p{margin:0;color:#525252;font-size:14px;line-height:1.55}
.cookie-card a{color:inherit;text-decoration:underline}
.cookie-actions{
  display:flex;flex-wrap:wrap;gap:10px;margin-top:14px;
}
.cookie-actions .btn,
.cookie-actions .btn-ghost{
  min-height:48px;
  flex:1 1 180px;
}

/* misc */
.to-top{
  position:fixed;
  right:24px;
  bottom:24px;
  z-index:56;
  opacity:0;
  transform:translateY(8px);
  pointer-events:none;
  transition:opacity 160ms var(--ease-out), transform 160ms var(--ease-out);
}
.to-top.is-visible{
  opacity:1;
  transform:none;
  pointer-events:auto;
}
.to-top-btn{
  width:48px;
  height:48px;
  border:none;
  border-radius:50%;
  background:#111;
  color:#fff;
  display:grid;
  place-items:center;
  cursor:pointer;
  box-shadow:var(--shadow);
  padding:0;
  transition:transform 160ms var(--ease-out), background 160ms ease;
}
.to-top-btn:active{transform:scale(0.97)}
.to-top-btn svg{display:block}
.page-title{display:flex;align-items:flex-end;justify-content:space-between;gap:16px;margin-bottom:18px}
.page-title h1,.page-title h2{margin:0}
.page-title .page-kicker{margin:8px 0 0;font-size:28px;font-weight:800;line-height:1.08;color:var(--ink)}
.product-back{margin-bottom:18px}
.small-link{text-decoration:underline}
.sr-only{position:absolute !important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

/* responsive */
@media (max-width: 1100px){
  .hero{grid-template-columns:1fr;height:auto}
  .hero-banner{height:auto;min-height:280px}
  .hero-side{height:auto}
  .hero-mosaic{min-height:380px;aspect-ratio:1 / 1}
  .category-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .product-grid,.related-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
  .product-layout{grid-template-columns:90px minmax(0,1fr);grid-template-areas:"thumb main" "side side"}
  .thumb-list{grid-area:thumb}
  .product-main-card{grid-area:main}
  .product-side{grid-area:side}
  .checkout-layout{grid-template-columns:1fr}
}
@media (max-width: 720px){
  .only-mobile{display:block !important}
  .only-desktop{display:none !important}
  .wrap{width:min(100% - 24px, var(--wrap))}
  .topbar{display:none}
  .site-header .wrap{grid-template-columns:auto 1fr auto;min-height:72px}
  .logo{font-size:20px;gap:8px}
  .logo img{height:36px}
  .header-left{gap:6px}
  .header-right{gap:0}
  .burger,.icon-btn{width:44px;height:44px}
  .hero{height:auto}
  .hero-banner{min-height:0;height:auto;padding:18px 20px 20px;gap:12px}
  .search-overlay{bottom:calc(var(--mobile-nav-height) + env(safe-area-inset-bottom))}
  .search-panel{max-height:calc(100dvh - var(--header-sticky-height) - var(--mobile-nav-height) - env(safe-area-inset-bottom) - 8px)}
  .hero-copy{gap:10px}
  .hero-banner h1{font-size:clamp(26px,7.2vw,34px);line-height:1.12}
  .hero-banner p{font-size:15px;line-height:1.4}
  .hero-actions{width:100%}
  .hero-actions .btn,
  .hero-actions .btn-secondary{flex:1 1 auto;min-height:48px;font-size:15px;padding:12px 16px}
  .hero-side{padding:10px;height:auto}
  .hero-mosaic{min-height:360px;height:auto;aspect-ratio:1 / 1}
  .trust-strip{grid-template-columns:1fr 1fr}
  .cart-toast{bottom:calc(16px + var(--mobile-nav-height) + env(safe-area-inset-bottom))}
  .mini-tile{min-height:112px;padding:12px 12px 10px;border-radius:16px}
  .mini-tile-title{font-size:16px}
  .mini-tile-count{font-size:13px}
  .mini-tile-arrow{width:44px;height:44px;font-size:16px}
  .category-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}
  .category-card{min-height:120px;padding:14px}
  .section-head h2,.section-head h3{font-size:22px}
  .product-grid,.related-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}
  :root{--header-sticky-height:72px}
  .product-card-title{font-size:13px}
  .product-price{font-size:18px}
  .card-buy-bar .buy-btn{min-height:48px;padding:14px 16px;font-size:15px}
  .card-buy-bar[data-mode="split"] .buy-btn{
    display:none;
  }
  .card-buy-bar[data-mode="split"] .card-qty{
    flex:1 1 auto;
    width:auto;
    min-width:0;
    border-left:none;
    grid-template-columns:minmax(44px,1fr) minmax(32px,auto) minmax(44px,1fr);
  }
  .product-actions .buy-btn{padding:12px 10px;font-size:13px}
  .product-layout{
    grid-template-columns:1fr;
    grid-template-areas:
      "main"
      "thumb"
      "side";
    gap:14px;
  }
  .thumb-list{grid-auto-flow:column;grid-auto-columns:74px;overflow:auto}
  .thumb{aspect-ratio:3/4}
  .product-side h1{font-size:26px;line-height:1.15}
  .product-summary{font-size:13px;line-height:1.5}
  .spec-row{grid-template-columns:1fr;gap:4px}
  .price-big{font-size:28px}
  .checkout-left,.checkout-right{padding:18px}
  .cart-item{grid-template-columns:110px 1fr;gap:14px}
  .cart-side-tools{grid-column:2;flex-direction:row;justify-content:space-between;align-items:center}
  .cart-title{font-size:18px}
  .form-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr;justify-items:start}
  .footer-links{justify-content:flex-start}
  .mobile-nav{display:block}
  .mobile-spacer{display:block}
  .to-top{
    right:16px;
    bottom:calc(16px + var(--mobile-nav-height) + env(safe-area-inset-bottom));
  }
  body{padding-bottom:env(safe-area-inset-bottom)}
}

@media (hover: hover) and (pointer: fine){
  .btn:hover,.btn-secondary:hover,.btn-ghost:hover{transform:translateY(-1px)}
  .mini-tile:hover{transform:translateY(-2px);border-color:#b7a188;background:var(--surface-2)}
  .product-card:hover{transform:translateY(-2px)}
  .card-buy-bar .buy-btn:hover{background:#2a2a2a}
  .card-qty-btn:hover:not(:disabled){background:#2a2a2a}
  .product-actions .buy-btn:hover{background:#2a2a2a}
  .to-top-btn:hover{background:#2a2a2a}
  .drawer-close:hover{background:rgba(0,0,0,.05)}
  .drawer-nav a:hover,
  .drawer-btn:hover{background:#ede7de;border-color:#cfc6bb}
  .search-hit:hover{background:var(--surface-2)}
}

.burger:focus-visible,
.icon-btn:focus-visible,
.drawer-close:focus-visible,
.modal-close:focus-visible,
.product-fav:focus-visible,
.mini-tile:focus-visible,
.chip:focus-visible,
.drawer-nav a:focus-visible,
.drawer-btn:focus-visible,
.mobile-nav a:focus-visible,
.mobile-nav button:focus-visible,
.search-hit:focus-visible,
.search-panel input:focus-visible,
.suggest-item:focus-visible{
  outline:2px solid #111;
  outline-offset:2px;
}
.btn:focus-visible,
.buy-btn:focus-visible,
.card-qty-btn:focus-visible,
.to-top-btn:focus-visible,
.copy-btn:focus-visible,
.cookie-actions .btn-ghost:focus-visible{
  outline:2px solid #fff;
  outline-offset:2px;
  box-shadow:0 0 0 4px #111;
}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  .banner-slide,
  .banner-slide img,
  .hero-banner::before,
  .hero-banner::after{
    animation:none;
  }
  .search-panel{
    transform:none;
    transition:opacity 200ms var(--ease-out);
  }
  .suggest-list{
    transform:none;
    transition:opacity 160ms var(--ease-out);
  }
  .banner-slide:nth-child(1){opacity:1}
  .banner-slide:nth-child(2){display:none}
  .cart-toast{transition:opacity 160ms var(--ease-out);transform:translateX(-50%)}
  .mobile-drawer-panel,
  .drawer-nav a,
  .drawer-btn,
  .promo-modal,
  .cookie-panel,
  .to-top,
  .product-card,
  .btn,.btn-secondary,.btn-ghost,
  .mini-tile,
  .card-qty,
  .card-qty-btn,
  .card-buy-bar .buy-btn,
  .burger-line{
    transform:none !important;
  }
  .mobile-drawer-panel{
    opacity:0;
    transition:opacity 200ms var(--ease-out);
  }
  .mobile-drawer.is-open .mobile-drawer-panel{opacity:1}
  .drawer-nav a,
  .drawer-btn{
    opacity:1;
    transition:opacity 200ms var(--ease-out), background 160ms ease, border-color 160ms ease;
    transition-delay:0ms !important;
  }
  .mobile-drawer.is-open .drawer-nav a:active,
  .mobile-drawer.is-open .drawer-btn:active{transform:none}
  .promo-modal,
  .cookie-panel{
    opacity:0;
    transition:opacity 200ms var(--ease-out);
  }
  .promo-modal.is-open,
  .cookie-panel.is-open{opacity:1}
  .to-top{
    transition:opacity 160ms var(--ease-out);
  }
  .to-top-btn:active{transform:none}
  .search-hit:active{transform:none}
}


.doc-shell{
  max-width:900px;
  margin:0 auto;
  background:#fff;
  border-radius:24px;
  padding:28px;
  box-shadow:var(--shadow);
}
.doc-shell h1{font-size:36px;margin:0 0 12px}
.doc-shell h2{font-size:22px;margin:28px 0 10px}
.doc-shell p,.doc-shell li{color:#444;line-height:1.72}
.doc-shell ul{padding-left:20px}


/* stock labels */
.product-stock{
  color: var(--muted);
  font-size: 13px;
  margin-top: 2px;
}
.product-stock-line{
  color: var(--muted);
  font-size: 14px;
  margin: 6px 0 10px;
}
.buy-btn[disabled]{
  opacity: .55;
  cursor: not-allowed;
}
