/* ==========================================================================
   Zaree storefront
   ========================================================================== */
:root {
  --accent: #7a2e3f;
  --ink: #1c1a19;
  --ink-2: #4a4543;
  --muted: #8a8380;
  --line: #e9e4df;
  --soft: #f7f3ee;
  --paper: #ffffff;
  --sale: #c3232f;
  --ok: #2f7a4a;
  --radius: 2px;
  --header-h: 76px;
  --font: "Jost", system-ui, -apple-system, "Segoe UI", sans-serif;
  --display: "Cormorant Garamond", Georgia, serif;
  --gutter: clamp(16px, 3vw, 40px);
  --ease: cubic-bezier(.2, .7, .2, 1);
}
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font); font-size: 15px; line-height: 1.6; color: var(--ink); background: var(--paper); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; padding: 0; }
input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0 0 .5em; font-weight: 500; line-height: 1.2; }
p { margin: 0 0 1em; }
.container { width: 100%; max-width: 1480px; margin: 0 auto; padding: 0 var(--gutter); }
.narrow { max-width: 900px; }
.skip { position: absolute; left: -999px; top: 0; background: var(--ink); color: #fff; padding: 8px 14px; z-index: 999; }
.skip:focus { left: 8px; }
.ico { flex-shrink: 0; }
.only-mobile { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* ---------- Buttons & forms ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 0 28px; background: var(--ink); color: #fff; font-size: 12.5px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; border: 1px solid var(--ink); border-radius: var(--radius); transition: background .25s, color .25s, border-color .25s; white-space: nowrap; }
.btn:hover { background: var(--accent); border-color: var(--accent); }
.btn-outline { background: transparent; color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-light { background: #fff; color: var(--ink); border-color: #fff; }
.btn-light:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-accent { background: var(--accent); border-color: var(--accent); }
.btn-accent:hover { background: var(--ink); border-color: var(--ink); }
.btn-block { width: 100%; }
.btn[disabled], .btn.is-loading { opacity: .55; pointer-events: none; }
.link { text-decoration: underline; text-underline-offset: 3px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-2); }
.input, .field input, .field select, .field textarea { width: 100%; min-height: 48px; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; outline: none; transition: border-color .2s; }
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus, .input:focus { border-color: var(--ink); }
.field .err { color: var(--sale); font-size: 13px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.alert { padding: 14px 16px; border: 1px solid var(--line); background: var(--soft); margin-bottom: 20px; font-size: 14px; }
.alert-error { border-color: #f1c5c8; background: #fdf2f3; color: #8b1c26; }
.alert-success { border-color: #c8e3d1; background: #f1f9f4; color: #1e5a35; }

/* ---------- Announcement ---------- */
.announce { background: var(--ink); color: #fff; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; text-align: center; height: 36px; overflow: hidden; position: relative; }
.announce-track { position: relative; height: 100%; }
.announce-item { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; padding: 0 16px; opacity: 0; transform: translateY(8px); transition: opacity .5s, transform .5s; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.announce-item.is-on { opacity: 1; transform: none; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 60; background: #fff; transition: box-shadow .3s, transform .35s var(--ease); }
.site-header.is-stuck { box-shadow: 0 1px 0 var(--line), 0 6px 24px rgba(0, 0, 0, .05); }
.site-header.is-stuck .announce { height: 0; }
.announce { transition: height .3s; }
.header-bar { border-bottom: 1px solid var(--line); background: #fff; position: relative; }
.header-grid { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; min-height: var(--header-h); gap: 24px; }
.logo { display: flex; align-items: center; justify-content: center; justify-self: center; }
.logo img { height: var(--logo-h, 44px); width: auto; max-width: 220px; object-fit: contain; transition: height .3s; }
.is-stuck .logo img { height: calc(var(--logo-h, 44px) * .85); }
.logo-text { font-family: var(--display); font-size: 34px; font-weight: 500; letter-spacing: .28em; text-transform: uppercase; padding-left: .28em; line-height: 1; }
.header-icons { display: flex; justify-content: flex-end; gap: 6px; }
.icon-btn { width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; position: relative; transition: background .2s; }
.icon-btn:hover { background: var(--soft); }
.bag-count { position: absolute; top: 4px; right: 2px; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 9px; background: var(--accent); color: #fff; font-size: 10.5px; font-weight: 600; display: flex; align-items: center; justify-content: center; }
.bag-count:empty { display: none; }
.bag-count.bump { animation: bump .45s var(--ease); }
@keyframes bump { 40% { transform: scale(1.35); } }

/* Nav */
.main-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0 30px; }
.nav-link { display: inline-flex; align-items: center; position: relative; height: calc(var(--header-h) / 2); font-size: 12.5px; font-weight: 400; letter-spacing: .18em; text-transform: uppercase; }
.main-nav > ul { row-gap: 0; }
.nav-link::after { content: ""; position: absolute; left: 0; right: 0; bottom: 4px; height: 1.5px; background: var(--ink); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.nav-item:hover > .nav-link::after, .nav-item:focus-within > .nav-link::after { transform: scaleX(1); }
.is-hl { color: var(--sale) !important; }
.nav-badge { color: var(--sale); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; margin-left: 3px; font-weight: 500; vertical-align: super; }
.layout-stacked .header-grid { grid-template-columns: 1fr auto 1fr; }
.layout-stacked .main-nav { grid-column: 1 / -1; grid-row: 2; justify-self: center; padding-bottom: 6px; }
.layout-stacked .main-nav ul { justify-content: center; }
.layout-stacked .logo { grid-column: 2; grid-row: 1; }
.layout-stacked .header-icons { grid-column: 3; grid-row: 1; }

/* simple drop */
.nav-item { position: static; }
.nav-item.has-drop { position: relative; }
.drop { position: absolute; top: 100%; left: -18px; min-width: 220px; background: #fff; border: 1px solid var(--line); padding: 12px 0 !important; display: block !important; opacity: 0; visibility: hidden; transform: translateY(8px); transition: .25s var(--ease); box-shadow: 0 16px 40px rgba(0, 0, 0, .06); z-index: 5; }
.drop li a { display: block; padding: 8px 20px; font-size: 13.5px; color: var(--ink-2); }
.drop li a:hover { color: var(--ink); background: var(--soft); }
.nav-item:hover .drop, .nav-item:focus-within .drop { opacity: 1; visibility: visible; transform: none; }

/* mega */
.mega { position: absolute; left: 0; right: 0; top: 100%; background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .25s, transform .3s var(--ease), visibility .25s; box-shadow: 0 30px 60px rgba(0, 0, 0, .07); z-index: 5; }
.nav-item.has-mega:hover .mega, .nav-item.has-mega:focus-within .mega { opacity: 1; visibility: visible; transform: none; }
.mega-inner { display: flex; gap: 48px; padding-top: 36px; padding-bottom: 40px; justify-content: center; max-height: calc(100vh - 140px); overflow: auto; }
.mega-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.mega-col { display: flex; flex-direction: column; min-width: 170px; }
.mega-head { font-size: 12px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; margin: 0 0 14px; }
.mega-subhead { margin-top: 16px; }
.mega-link { font-size: 13.5px; color: var(--ink-2); text-transform: uppercase; letter-spacing: .02em; padding: 5px 0; transition: color .2s, transform .2s; }
.mega-link:hover { color: var(--ink); transform: translateX(3px); }
.mega-promos { display: flex; gap: 24px; }
.mega-promo { width: 250px; text-align: center; display: block; }
.mega-promo-img { display: block; aspect-ratio: 4/5; overflow: hidden; background: var(--soft); margin-bottom: 14px; }
.mega-promo-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.mega-promo:hover img { transform: scale(1.05); }
.mega-promo-t { display: block; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; }
.mega-promo-s { display: block; font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }

/* ---------- Search panel ---------- */
.search-panel { position: absolute; left: 0; right: 0; top: 100%; background: #fff; border-bottom: 1px solid var(--line); transform: translateY(-8px); opacity: 0; visibility: hidden; transition: .3s var(--ease); max-height: calc(100vh - 80px); overflow-y: auto; z-index: 10; }
.search-open .search-panel { transform: none; opacity: 1; visibility: visible; }
.search-bar { display: flex; align-items: center; gap: 14px; height: 76px; border-bottom: 1px solid var(--line); }
.search-bar input { flex: 1; border: 0; outline: 0; font-size: 20px; letter-spacing: .12em; text-transform: uppercase; background: transparent; min-width: 0; height: 100%; }
.search-bar input::placeholder { text-transform: none; letter-spacing: .02em; color: var(--muted); font-size: 17px; }
.search-bar input::-webkit-search-cancel-button { display: none; }
.search-results { padding-top: 24px; padding-bottom: 32px; }
.sr-title { font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-2); padding-bottom: 10px; margin-bottom: 12px; border-bottom: 1px solid var(--line); }
.sr-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { display: inline-block; padding: 7px 16px; border: 1px solid var(--line); border-radius: 30px; font-size: 13px; transition: .2s; }
.chip:hover { border-color: var(--ink); }
.sr-grid { display: grid; grid-template-columns: 300px 1fr; gap: 40px; }
.sr-side section { margin-bottom: 22px; }
.sr-side a { display: block; padding: 6px 0; font-size: 14.5px; color: var(--ink-2); }
.sr-side a:hover { color: var(--ink); }
.sr-side a b { color: var(--ink); font-weight: 600; }
.sr-products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.sr-prod { text-align: center; font-size: 13.5px; }
.sr-prod-img { aspect-ratio: 3/4; background: var(--soft); overflow: hidden; margin-bottom: 10px; }
.sr-prod-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.sr-prod:hover img { transform: scale(1.04); }
.sr-prod-name { text-transform: uppercase; line-height: 1.35; margin-bottom: 4px; }
.sr-prod-sub { color: var(--muted); font-size: 12.5px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 4px; }
.sr-prod .price-now { font-weight: 600; }
.sr-all { display: flex; justify-content: center; margin-top: 26px; }
.sr-all a { display: inline-flex; gap: 8px; align-items: center; font-size: 15px; border-bottom: 1px solid var(--ink); padding-bottom: 2px; }
.sr-none { color: var(--muted); padding: 10px 0 20px; }
.search-backdrop { position: fixed; inset: 0; background: rgba(20, 16, 15, .35); opacity: 0; visibility: hidden; transition: .3s; z-index: 55; }
.search-open .search-backdrop { opacity: 1; visibility: visible; }
.spinner { width: 22px; height: 22px; border: 2px solid var(--line); border-top-color: var(--ink); border-radius: 50%; animation: spin .7s linear infinite; margin: 20px auto; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Drawers / overlay / modal ---------- */
.overlay { position: fixed; inset: 0; background: rgba(20, 16, 15, .45); opacity: 0; visibility: hidden; transition: .3s; z-index: 80; }
.overlay.is-on { opacity: 1; visibility: visible; }
.drawer { position: fixed; top: 0; bottom: 0; width: min(420px, 92vw); background: #fff; z-index: 90; display: flex; flex-direction: column; transition: transform .4s var(--ease); }
.drawer-left { left: 0; transform: translateX(-100%); }
.drawer-right { right: 0; transform: translateX(100%); }
.drawer.is-open { transform: none; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; border-bottom: 1px solid var(--line); }
.drawer-title { font-size: 13px; letter-spacing: .18em; text-transform: uppercase; font-weight: 500; }
.drawer-body { flex: 1; overflow-y: auto; padding: 8px 20px 20px; }
.drawer-foot { border-top: 1px solid var(--line); padding: 18px 20px 22px; }
.drawer-foot:empty { display: none; }
.m-menu { list-style: none; margin: 0; padding: 0; }
.m-menu .m-menu { display: none; padding-left: 14px; border-left: 1px solid var(--line); margin: 0 0 8px 4px; }
.m-menu li.is-open > .m-menu { display: block; }
.m-row { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.m-depth-0 > li > .m-row > a { font-size: 13.5px; letter-spacing: .16em; text-transform: uppercase; padding: 15px 0; flex: 1; }
.m-depth-1 .m-row, .m-depth-2 .m-row { border-bottom: 0; }
.m-depth-1 .m-row a, .m-depth-2 .m-row a { font-size: 14px; padding: 9px 0; flex: 1; color: var(--ink-2); }
.m-toggle { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; }
.m-toggle .ico { transition: transform .3s; }
li.is-open > .m-row .m-toggle .ico { transform: rotate(45deg); }
.m-extra { display: flex; flex-direction: column; gap: 12px; padding-top: 24px; font-size: 14px; color: var(--ink-2); }

/* cart drawer lines */
.mini-line { display: grid; grid-template-columns: 78px 1fr; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.mini-line img { width: 78px; aspect-ratio: 3/4; object-fit: cover; background: var(--soft); }
.mini-name { font-size: 14px; line-height: 1.35; margin-bottom: 3px; display: block; }
.mini-var { font-size: 12.5px; color: var(--muted); }
.mini-row { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; gap: 10px; }
.mini-remove { font-size: 12px; color: var(--muted); text-decoration: underline; }
.drawer-empty { text-align: center; padding: 60px 10px; color: var(--muted); }
.drawer-empty .ico { margin: 0 auto 14px; color: var(--ink-2); }
.sum-row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 8px; }
.sum-row.total { font-size: 16px; font-weight: 600; border-top: 1px solid var(--line); padding-top: 12px; margin-top: 12px; }
.free-bar { font-size: 13px; margin-bottom: 14px; }
.free-bar .bar { height: 4px; background: var(--line); margin-top: 8px; border-radius: 2px; overflow: hidden; }
.free-bar .bar i { display: block; height: 100%; background: var(--accent); transition: width .5s var(--ease); }
.drawer-foot .btn + .btn { margin-top: 10px; }

.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); height: 38px; }
.qty button { width: 34px; height: 100%; display: flex; align-items: center; justify-content: center; }
.qty button:hover { background: var(--soft); }
.qty input { width: 38px; text-align: center; border: 0; outline: 0; height: 100%; -moz-appearance: textfield; background: transparent; }
.qty input::-webkit-inner-spin-button { -webkit-appearance: none; }
.qty-lg { height: 50px; }
.qty-lg button { width: 44px; }
.qty-lg input { width: 44px; }

.modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; visibility: hidden; transition: .3s; background: rgba(20, 16, 15, .5); }
.modal.is-open { opacity: 1; visibility: visible; }
.modal-box { background: #fff; width: min(980px, 100%); max-height: 92vh; overflow-y: auto; position: relative; transform: translateY(16px); transition: transform .35s var(--ease); }
.modal.is-open .modal-box { transform: none; }
.modal-close { position: absolute; top: 10px; right: 10px; z-index: 3; background: #fff; }
.qv-grid { display: grid; grid-template-columns: 1fr 1fr; }
.qv-img { background: var(--soft); aspect-ratio: 3/4; }
.qv-img img { width: 100%; height: 100%; object-fit: cover; }
.qv-info { padding: 40px 36px; }

.toast { position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 20px); background: var(--ink); color: #fff; padding: 13px 22px; font-size: 14px; z-index: 120; opacity: 0; visibility: hidden; transition: .3s var(--ease); max-width: calc(100vw - 32px); text-align: center; }
.toast.is-on { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.toast.is-error { background: var(--sale); }

/* ---------- Home sections ---------- */
.section { padding: clamp(40px, 6vw, 80px) 0; }
.section-tight { padding: clamp(28px, 4vw, 48px) 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 28px; flex-wrap: wrap; }
.section-head.center { flex-direction: column; align-items: center; text-align: center; }
.section-title { font-size: 13px; font-weight: 500; letter-spacing: .26em; text-transform: uppercase; margin: 0; }
.section-title.display { font-family: var(--display); font-size: clamp(28px, 3.4vw, 44px); letter-spacing: .02em; text-transform: none; font-weight: 500; }
.section-sub { color: var(--muted); margin: 8px 0 0; font-size: 14.5px; }
.view-all { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; border-bottom: 1px solid currentColor; padding-bottom: 2px; }

.hero { position: relative; overflow: hidden; background: var(--soft); }
.hero-track { display: flex; transition: transform .8s var(--ease); }
.hero-slide { position: relative; flex: 0 0 100%; min-height: clamp(420px, 72vh, 820px); display: flex; }
.hero-slide picture, .hero-slide > img { position: absolute; inset: 0; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,.28)); pointer-events: none; }
.hero-content { position: relative; z-index: 2; margin-top: auto; width: 100%; padding: 0 var(--gutter) clamp(48px, 8vw, 96px); color: #fff; display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero-content.al-left { align-items: flex-start; text-align: left; }
.hero-content.al-right { align-items: flex-end; text-align: right; }
.hero-content.al-left, .hero-content.al-right { max-width: 1480px; margin-left: auto; margin-right: auto; }
.hero-kicker { font-size: 12.5px; letter-spacing: .3em; text-transform: uppercase; margin-bottom: 14px; }
.hero-title { font-family: var(--display); font-size: clamp(40px, 7vw, 96px); font-weight: 400; line-height: 1; letter-spacing: .02em; margin-bottom: 26px; text-shadow: 0 2px 24px rgba(0,0,0,.15); }
.hero-content > * { opacity: 0; transform: translateY(18px); transition: opacity .8s .25s, transform .8s .25s var(--ease); }
.hero-slide.is-active .hero-content > * { opacity: 1; transform: none; }
.hero-slide.is-active .hero-content > *:nth-child(2) { transition-delay: .38s; }
.hero-slide.is-active .hero-content > *:nth-child(3) { transition-delay: .5s; }
.hero-dots { position: absolute; bottom: 22px; left: 0; right: 0; display: flex; justify-content: center; gap: 10px; z-index: 3; }
.hero-dots button { width: 28px; height: 2px; background: rgba(255,255,255,.5); transition: .3s; }
.hero-dots button.is-on { background: #fff; width: 44px; }
.hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.85); display: flex; align-items: center; justify-content: center; opacity: 0; transition: .3s; }
.hero:hover .hero-arrow { opacity: 1; }
.hero-prev { left: 20px; } .hero-next { right: 20px; }

/* category circles */
.cat-circles { display: flex; gap: clamp(14px, 2.4vw, 36px); justify-content: safe center; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; padding-bottom: 4px; }
.cat-circles::-webkit-scrollbar { display: none; }
.cat-circle { flex: 0 1 140px; min-width: 88px; text-align: center; }
.cat-circle-img { aspect-ratio: 1; border-radius: 50%; overflow: hidden; background: var(--soft); margin-bottom: 12px; border: 1px solid var(--line); padding: 4px; transition: border-color .3s; }
.cat-circle-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; transition: transform .6s var(--ease); }
.cat-circle:hover .cat-circle-img { border-color: var(--ink); }
.cat-circle:hover img { transform: scale(1.06); }
.cat-circle span { font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; display: block; line-height: 1.4; }
/* category tiles */
.cat-tiles { display: grid; grid-template-columns: repeat(var(--cols, 6), 1fr); gap: 6px; }
.cat-tile { position: relative; display: block; overflow: hidden; background: var(--soft); }
.cat-tile-img { aspect-ratio: 3/4; overflow: hidden; }
.cat-tile-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.cat-tile:hover img { transform: scale(1.05); }
.cat-tile-name { display: block; text-align: center; padding: 14px 6px 4px; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; background: #fff; }

/* banners */
.banner { position: relative; display: block; overflow: hidden; color: #fff; }
.banner-img { width: 100%; height: clamp(360px, 60vw, 720px); object-fit: cover; transition: transform 1.4s var(--ease); }
.banner:hover .banner-img { transform: scale(1.03); }
.banner-over { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 24px; background: rgba(0,0,0,.12); }
.banner-title { font-family: var(--display); font-size: clamp(38px, 6vw, 84px); font-weight: 400; line-height: 1; margin-bottom: 10px; letter-spacing: .03em; }
.banner-sub { font-size: 12.5px; letter-spacing: .3em; text-transform: uppercase; margin-bottom: 22px; }
.banner-grid { display: grid; grid-template-columns: repeat(var(--cols, 2), 1fr); gap: 6px; }
.banner-grid .banner-img { height: auto; aspect-ratio: var(--ratio, 4/5); }
.banner-grid .banner-over { justify-content: flex-end; align-items: flex-start; text-align: left; padding: clamp(18px, 3vw, 36px); background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.35)); }
.banner-grid .banner-title { font-family: var(--font); font-size: clamp(16px, 1.6vw, 22px); letter-spacing: .16em; text-transform: uppercase; font-weight: 500; margin-bottom: 4px; }
.banner-grid .banner-sub { font-size: 11px; margin-bottom: 0; }
.banner-cta { font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; border-bottom: 1px solid #fff; padding-bottom: 2px; margin-top: 10px; display: inline-block; }

/* text block */
.text-block { text-align: center; max-width: 920px; margin: 0 auto; color: var(--ink-2); font-size: 14.5px; }
.text-block h2, .text-block h3 { color: var(--ink); font-size: 15px; letter-spacing: .2em; text-transform: uppercase; margin: 1.6em 0 .7em; }
.text-block a { text-decoration: underline; }
.text-block ul { text-align: left; display: inline-block; }

/* tabs */
.tabs { display: flex; gap: 22px; flex-wrap: wrap; }
.tab { font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); padding-bottom: 4px; border-bottom: 1px solid transparent; transition: .2s; }
.tab.is-on, .tab:hover { color: var(--ink); border-color: var(--ink); }
.tab-panel[hidden] { display: none; }

/* carousel */
.carousel { position: relative; }
.carousel-track { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 3 * 16px) / 4); gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; scroll-behavior: smooth; }
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track > * { scroll-snap-align: start; }
.car-btn { position: absolute; top: 38%; width: 44px; height: 44px; border-radius: 50%; background: #fff; box-shadow: 0 4px 18px rgba(0,0,0,.1); display: flex; align-items: center; justify-content: center; z-index: 2; transition: opacity .2s; }
.car-prev { left: -14px; } .car-next { right: -14px; }
.car-btn[disabled] { opacity: 0; pointer-events: none; }

/* ---------- Product cards ---------- */
.products { display: grid; grid-template-columns: repeat(var(--cols, 4), 1fr); gap: 32px 16px; }
.card { position: relative; min-width: 0; }
.card-media { display: block; position: relative; aspect-ratio: 3/4.3; overflow: hidden; background: var(--soft); }
.card-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity .6s, transform 1.2s var(--ease); }
.card-img-2 { opacity: 0; }
.card:hover .card-img-2 { opacity: 1; }
.card:hover .card-img { transform: scale(1.03); }
.card.is-sold .card-img { opacity: .7; }
.card-badges { position: absolute; top: 10px; left: 10px; display: flex; gap: 6px; z-index: 2; }
.badge { background: #fff; color: var(--ink); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; padding: 4px 9px; }
.badge-dark { background: var(--ink); color: #fff; }
.card-top { position: relative; }
.card-quick { position: absolute; right: 10px; bottom: 10px; z-index: 3; width: 38px; height: 38px; border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 3px 12px rgba(0,0,0,.08); transition: transform .25s, background .25s, color .25s; }
.card-quick:hover { background: var(--ink); color: #fff; }
.card-info { padding-top: 12px; }
.card-label { font-size: 10.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 4px; color: var(--ink-2); }
.card-title { font-size: 13.5px; font-weight: 400; letter-spacing: .03em; text-transform: uppercase; margin: 0 0 6px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card-price { display: flex; align-items: center; flex-wrap: wrap; gap: 4px 10px; font-size: 13.5px; }
.price-old { color: var(--muted); text-decoration: line-through; font-size: .92em; }
.price-now { font-weight: 500; }
.price-now.is-sale { color: var(--sale); }
.price-off { background: var(--ink-2); color: #fff; font-size: 10.5px; letter-spacing: .06em; padding: 2px 7px; margin-left: auto; }
.card-swatches { display: flex; gap: 6px; margin-top: 10px; align-items: center; }
.sw { width: 13px; height: 13px; border-radius: 50%; border: 1px solid rgba(0,0,0,.14); }
.sw-more { font-size: 11px; color: var(--muted); }

/* ---------- Collection / Shop ---------- */
.coll-hero { position: relative; }
.coll-hero img { width: 100%; height: clamp(200px, 30vw, 420px); object-fit: cover; }
.coll-head { padding: clamp(24px, 4vw, 44px) 0 12px; }
.coll-head-grid { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.coll-title { font-size: clamp(18px, 2vw, 24px); letter-spacing: .22em; text-transform: uppercase; font-weight: 400; margin: 0; }
.coll-desc { color: var(--muted); margin: 8px 0 0; max-width: 560px; font-size: 14px; }
.coll-subs { display: flex; gap: 20px; overflow-x: auto; scrollbar-width: none; padding: 4px 2px; }
.coll-subs::-webkit-scrollbar { display: none; }
.coll-subs .cat-circle { width: 84px; flex-shrink: 0; }
.coll-subs .cat-circle span { font-size: 10px; }
.coll-subs .cat-circle.is-on .cat-circle-img { border-color: var(--ink); }
.crumbs { font-size: 12px; color: var(--muted); padding: 12px 0; display: flex; flex-wrap: wrap; gap: 6px; }
.crumbs a:hover { color: var(--ink); }
.crumbs span:last-child { color: var(--ink); }
.toolbar { position: sticky; top: var(--sticky-top, 76px); z-index: 20; background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 26px; transition: top .3s; }
.toolbar-in { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; min-height: 52px; gap: 12px; }
.grid-switch { display: flex; gap: 4px; }
.grid-switch button { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; color: var(--muted); }
.grid-switch button.is-on { color: var(--ink); }
.count { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.toolbar-right { display: flex; justify-content: flex-end; gap: 18px; align-items: center; }
.sort-select { border: 0; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right center; padding-right: 18px; appearance: none; cursor: pointer; outline: none; }
.filter-btn { display: inline-flex; gap: 8px; align-items: center; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.filter-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.filters .fgroup { border-bottom: 1px solid var(--line); padding: 16px 0; }
.fgroup-title { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; font-weight: 600; margin-bottom: 12px; }
.fopts { display: flex; flex-wrap: wrap; gap: 8px; }
.fopt input { position: absolute; opacity: 0; pointer-events: none; }
.fopt span { display: inline-flex; align-items: center; gap: 7px; padding: 7px 12px; border: 1px solid var(--line); font-size: 13px; cursor: pointer; transition: .2s; }
.fopt input:checked + span { border-color: var(--ink); background: var(--ink); color: #fff; }
.fopt .sw { width: 14px; height: 14px; }
.fprice { display: flex; gap: 10px; align-items: center; }
.fprice input { width: 100%; min-height: 42px; border: 1px solid var(--line); padding: 8px 10px; }
.flist label { display: flex; gap: 10px; align-items: center; padding: 5px 0; font-size: 14px; cursor: pointer; }
.flist input { accent-color: var(--ink); width: 16px; height: 16px; }
.load-more-wrap { text-align: center; padding: 44px 0 10px; }
.load-note { font-size: 12.5px; color: var(--muted); margin-bottom: 14px; }
.load-note .bar { width: 180px; height: 2px; background: var(--line); margin: 10px auto 0; }
.load-note .bar i { display: block; height: 100%; background: var(--ink); }
.empty-state { text-align: center; padding: 70px 20px; color: var(--muted); }
.empty-state h2 { color: var(--ink); font-family: var(--display); font-size: 32px; }
.coll-seo { border-top: 1px solid var(--line); margin-top: 60px; padding-top: 50px; }

/* ---------- Product page ---------- */
.pdp { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); gap: clamp(28px, 4vw, 64px); padding: 8px 0 60px; align-items: start; }
.gallery { display: grid; grid-template-columns: 84px 1fr; gap: 14px; position: sticky; top: calc(var(--header-h) + 16px); }
.thumbs { display: flex; flex-direction: column; gap: 10px; max-height: 80vh; overflow-y: auto; scrollbar-width: none; }
.thumbs::-webkit-scrollbar { display: none; }
.thumb { aspect-ratio: 3/4; border: 1px solid transparent; opacity: .6; transition: .2s; background: var(--soft); }
.thumb.is-on { border-color: var(--ink); opacity: 1; }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.stage { position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--soft); cursor: zoom-in; }
.stage-track { display: flex; height: 100%; transition: transform .5s var(--ease); }
.stage-track img { flex: 0 0 100%; width: 100%; height: 100%; object-fit: cover; }
.stage.is-zoom { cursor: zoom-out; }
.stage-zoom { position: absolute; inset: 0; background-size: 220%; background-repeat: no-repeat; opacity: 0; pointer-events: none; transition: opacity .2s; }
.stage.is-zoom .stage-zoom { opacity: 1; }
.stage-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.9); display: flex; align-items: center; justify-content: center; z-index: 2; }
.stage-prev { left: 12px; } .stage-next { right: 12px; }
.stage-dots { display: none; }
.pdp-info { padding-top: 4px; }
.pdp-label { font-size: 11.5px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 8px; }
.pdp-title { font-size: clamp(20px, 2.1vw, 27px); font-weight: 400; letter-spacing: .06em; text-transform: uppercase; line-height: 1.3; margin-bottom: 8px; }
.pdp-sku { font-size: 12.5px; color: var(--muted); margin-bottom: 16px; }
.pdp-price { display: flex; align-items: center; gap: 12px; font-size: 20px; margin-bottom: 6px; flex-wrap: wrap; }
.pdp-price .price-off { margin-left: 0; font-size: 12px; background: var(--sale); }
.pdp-tax { font-size: 12.5px; color: var(--muted); margin-bottom: 24px; }
.pdp-short { color: var(--ink-2); font-size: 14.5px; margin-bottom: 24px; }
.opt { margin-bottom: 22px; }
.opt-head { display: flex; justify-content: space-between; align-items: center; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 10px; }
.opt-head b { font-weight: 500; letter-spacing: .04em; text-transform: none; font-size: 14px; color: var(--ink-2); margin-left: 6px; }
.size-guide-btn { display: inline-flex; gap: 6px; align-items: center; text-decoration: underline; text-underline-offset: 3px; text-transform: none; letter-spacing: 0; font-size: 13px; }
.swatches { display: flex; flex-wrap: wrap; gap: 10px; }
.swatch { width: 36px; height: 36px; border-radius: 50%; padding: 3px; border: 1px solid var(--line); position: relative; transition: border-color .2s; }
.swatch span { display: block; width: 100%; height: 100%; border-radius: 50%; border: 1px solid rgba(0,0,0,.08); }
.swatch.is-on { border-color: var(--ink); box-shadow: 0 0 0 1px var(--ink); }
.swatch.is-out span::after { content: ""; position: absolute; left: 50%; top: 4px; bottom: 4px; width: 1px; background: rgba(0,0,0,.6); transform: rotate(45deg); }
.sizes { display: flex; flex-wrap: wrap; gap: 8px; }
.size { min-width: 52px; height: 44px; padding: 0 14px; border: 1px solid var(--line); font-size: 13.5px; letter-spacing: .06em; transition: .2s; }
.size:hover { border-color: var(--ink); }
.size.is-on { background: var(--ink); color: #fff; border-color: var(--ink); }
.size.is-out { color: var(--muted); text-decoration: line-through; background: var(--soft); }
.stock-note { font-size: 13px; margin: -8px 0 18px; min-height: 20px; }
.stock-note.low { color: var(--sale); }
.stock-note.ok { color: var(--ok); }
.buy-row { display: flex; gap: 10px; margin-bottom: 10px; }
.buy-row .btn { flex: 1; }
.pdp-perks { display: grid; gap: 10px; margin: 24px 0; padding: 18px; background: var(--soft); font-size: 13.5px; }
.pdp-perks div { display: flex; gap: 12px; align-items: center; }
.acc { border-top: 1px solid var(--line); }
.acc:last-child { border-bottom: 1px solid var(--line); }
.acc summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; padding: 16px 0; font-size: 12.5px; letter-spacing: .16em; text-transform: uppercase; }
.acc summary::-webkit-details-marker { display: none; }
.acc summary .ico { transition: transform .3s; }
.acc[open] summary .ico { transform: rotate(45deg); }
.acc-body { padding: 0 0 20px; color: var(--ink-2); font-size: 14.5px; }
.acc-body ul { padding-left: 18px; }
.acc-body table { width: 100%; border-collapse: collapse; }
.acc-body td, .acc-body th { border: 1px solid var(--line); padding: 7px 10px; text-align: left; }
.mobile-buy { display: none; }

/* ---------- Cart page ---------- */
.page-head { text-align: center; padding: clamp(28px, 5vw, 56px) 0 clamp(20px, 3vw, 36px); }
.page-title { font-family: var(--display); font-size: clamp(32px, 4.4vw, 54px); font-weight: 400; margin: 0; letter-spacing: .01em; }
.page-sub { color: var(--muted); margin-top: 8px; }
.cart-layout { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 48px; align-items: start; padding-bottom: 70px; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; font-weight: 500; color: var(--muted); text-align: left; padding: 0 0 12px; border-bottom: 1px solid var(--line); }
.cart-table td { padding: 20px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.cart-prod { display: flex; gap: 18px; }
.cart-prod img { width: 96px; aspect-ratio: 3/4; object-fit: cover; background: var(--soft); flex-shrink: 0; }
.cart-prod-name { font-size: 14.5px; text-transform: uppercase; letter-spacing: .03em; line-height: 1.4; display: block; margin-bottom: 4px; }
.cart-prod-meta { font-size: 13px; color: var(--muted); }
.cart-table .t-right { text-align: right; }
.summary { background: var(--soft); padding: 28px; position: sticky; top: calc(var(--header-h) + 20px); }
.summary h2 { font-size: 13px; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 20px; }
.summary .btn { margin-top: 18px; }
.summary-note { font-size: 12.5px; color: var(--muted); margin-top: 14px; text-align: center; }

/* ---------- Checkout ---------- */
.checkout-layout { display: grid; grid-template-columns: minmax(0, 1fr) 420px; gap: 56px; align-items: start; padding-bottom: 80px; }
.co-section { margin-bottom: 34px; }
.co-section h2 { font-size: 13px; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 18px; display: flex; align-items: center; gap: 12px; }
.co-section h2 .step { width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--ink); display: inline-flex; align-items: center; justify-content: center; font-size: 12px; letter-spacing: 0; }
.pay-opt { display: block; border: 1px solid var(--line); margin-bottom: -1px; position: relative; }
.pay-opt input { position: absolute; opacity: 0; }
.pay-opt-head { display: flex; align-items: center; gap: 12px; padding: 18px; cursor: pointer; font-size: 14.5px; }
.pay-opt-head::before { content: ""; width: 18px; height: 18px; border-radius: 50%; border: 1px solid var(--muted); flex-shrink: 0; box-shadow: inset 0 0 0 3px #fff; transition: .2s; }
.pay-opt input:checked + .pay-opt-head::before { background: var(--ink); border-color: var(--ink); }
.pay-opt input:checked + .pay-opt-head { background: var(--soft); }
.pay-opt-body { display: none; padding: 0 18px 18px 48px; font-size: 13.5px; color: var(--ink-2); background: var(--soft); }
.pay-opt input:checked ~ .pay-opt-body { display: block; }
.bank-box { background: #fff; border: 1px dashed var(--line); padding: 14px 16px; margin: 6px 0 12px; font-size: 13.5px; line-height: 1.8; }
.bank-box b { color: var(--ink); }
.co-summary { background: var(--soft); padding: 28px; position: sticky; top: calc(var(--header-h) + 20px); }
.co-line { display: grid; grid-template-columns: 64px 1fr auto; gap: 14px; align-items: center; margin-bottom: 16px; font-size: 13.5px; }
.co-thumb { position: relative; }
.co-thumb img { width: 64px; aspect-ratio: 3/4; object-fit: cover; background: #fff; }
.co-thumb i { position: absolute; top: -8px; right: -8px; width: 22px; height: 22px; border-radius: 50%; background: var(--ink-2); color: #fff; font-size: 11px; font-style: normal; display: flex; align-items: center; justify-content: center; }
.co-line small { color: var(--muted); display: block; }
.co-toggle { display: none; }

/* ---------- Thank you ---------- */
.ty { max-width: 780px; margin: 0 auto; padding: clamp(36px, 6vw, 70px) 0 80px; }
.ty-hero { text-align: center; margin-bottom: 36px; }
.ty-check { width: 72px; height: 72px; border-radius: 50%; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; animation: pop .6s var(--ease); }
@keyframes pop { 0% { transform: scale(.4); opacity: 0; } 70% { transform: scale(1.08); } 100% { transform: scale(1); opacity: 1; } }
.ty-box { border: 1px solid var(--line); padding: 26px; margin-bottom: 20px; }
.ty-box h3 { font-size: 12.5px; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 16px; }
.ty-meta { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; font-size: 13.5px; }
.ty-meta span { display: block; color: var(--muted); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 4px; }

/* ---------- Content pages ---------- */
.page-banner img { width: 100%; height: clamp(220px, 36vw, 480px); object-fit: cover; }
.prose { max-width: 820px; margin: 0 auto; padding-bottom: 80px; font-size: 16px; color: var(--ink-2); line-height: 1.8; }
.prose h2, .prose h3 { font-family: var(--display); color: var(--ink); font-size: 30px; font-weight: 500; margin: 1.4em 0 .5em; }
.prose h3 { font-size: 24px; }
.prose img { margin: 24px 0; }
.prose a { color: var(--accent); text-decoration: underline; }
.prose blockquote { border-left: 2px solid var(--accent); margin: 24px 0; padding: 4px 0 4px 20px; font-family: var(--display); font-size: 22px; color: var(--ink); font-style: italic; }
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; padding-bottom: 80px; }
.contact-cards { display: grid; gap: 14px; margin: 26px 0; }
.contact-card { display: flex; gap: 14px; padding: 18px; background: var(--soft); align-items: flex-start; font-size: 14.5px; }
.contact-card strong { display: block; font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 2px; }
.map-embed { margin-top: 20px; }
.map-embed iframe { width: 100%; height: 300px; border: 0; }

/* ---------- Features & footer ---------- */
.features { border-top: 1px solid var(--line); background: #fff; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding-top: 32px; padding-bottom: 32px; }
.feature { display: flex; gap: 14px; align-items: center; }
.feature strong { display: block; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; font-weight: 500; }
.feature span { font-size: 13px; color: var(--muted); }
.site-footer { background: var(--footer-bg, var(--soft)); padding-top: clamp(40px, 5vw, 64px); }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(var(--fcols, 3), 1fr) 1.4fr; gap: 36px; padding-bottom: 44px; }
.footer-logo img { max-height: 54px; width: auto; margin-bottom: 18px; }
.footer-logo .logo-text { font-size: 28px; display: inline-block; margin-bottom: 18px; }
.footer-about { font-size: 13.5px; color: var(--ink-2); }
.footer-contact { list-style: none; padding: 0; margin: 0; font-size: 13.5px; }
.footer-contact li { display: flex; gap: 10px; align-items: center; margin-bottom: 8px; color: var(--ink-2); }
.footer-col-title { font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 16px; display: flex; justify-content: space-between; width: 100%; text-align: left; cursor: default; }
.footer-col-title .ico { display: none; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { font-size: 13.5px; color: var(--ink-2); transition: color .2s; }
.footer-col a:hover { color: var(--ink); }
.footer-news p { font-size: 13.5px; color: var(--ink-2); }
.news-form { display: flex; border-bottom: 1px solid var(--ink); margin-bottom: 22px; }
.news-form input { flex: 1; border: 0; background: transparent; padding: 12px 0; outline: none; min-width: 0; }
.news-form button { width: 44px; display: flex; align-items: center; justify-content: center; }
.socials { display: flex; gap: 8px; flex-wrap: wrap; }
.socials a { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; display: flex; align-items: center; justify-content: center; background: #fff; transition: .2s; }
.socials a:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.footer-bottom { border-top: 1px solid var(--line); font-size: 12.5px; color: var(--muted); }
.footer-bottom-in { display: flex; justify-content: space-between; gap: 16px; padding-top: 18px; padding-bottom: 18px; flex-wrap: wrap; }
.wa-float { position: fixed; right: 20px; bottom: 20px; width: 54px; height: 54px; border-radius: 50%; background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center; z-index: 50; box-shadow: 0 8px 24px rgba(0,0,0,.18); transition: transform .25s; }
.wa-float:hover { transform: scale(1.07); }
.to-top { position: fixed; right: 22px; bottom: 88px; width: 44px; height: 44px; border-radius: 50%; background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center; z-index: 49; opacity: 0; visibility: hidden; transition: .3s; }
.to-top.is-on { opacity: 1; visibility: visible; }
body:not(:has(.wa-float)) .to-top { bottom: 22px; }

/* reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition: none !important; animation: none !important; } .reveal { opacity: 1; transform: none; } }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1280px) {
  .main-nav ul { gap: 0 20px; }
  .nav-link { font-size: 11.5px; letter-spacing: .14em; }
  .mega-promo { width: 200px; }
  .footer-grid { grid-template-columns: 1.2fr repeat(var(--fcols, 3), 1fr); }
  .footer-news { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 0 36px; align-items: start; }
  .footer-news .footer-col-title, .footer-news p { grid-column: 1; }
  .footer-news .news-form { grid-column: 2; grid-row: 1 / 3; align-self: center; }
  .footer-news .socials { grid-column: 2; }
}
@media (max-width: 1100px) {
  :root { --header-h: 64px; }
  .only-mobile { display: inline-flex !important; }
  .only-desktop { display: none !important; }
  .header-grid, .layout-stacked .header-grid { grid-template-columns: 1fr auto 1fr; gap: 10px; }
  .layout-stacked .logo { grid-column: auto; }
  .layout-stacked .header-icons { grid-column: auto; }
  .logo img { height: calc(var(--logo-h, 44px) * .8); }
  .logo-text { font-size: 26px; }
  .products { --cols: 3 !important; }
  .carousel-track { grid-auto-columns: calc((100% - 2 * 14px) / 3); gap: 14px; }
  .sr-grid { grid-template-columns: 1fr; gap: 10px; }
  .sr-products { grid-template-columns: repeat(4, 1fr); }
  .cat-tiles { --cols: 3 !important; }
  .cart-layout, .checkout-layout { grid-template-columns: 1fr; gap: 30px; }
  .summary, .co-summary { position: static; }
  .checkout-layout .co-summary { order: -1; }
  .co-toggle { display: flex; width: 100%; justify-content: space-between; align-items: center; font-size: 14px; }
  .co-summary .co-lines-wrap { display: none; margin-top: 18px; }
  .co-summary.is-open .co-lines-wrap { display: block; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 860px) {
  .pdp { grid-template-columns: 1fr; gap: 20px; padding-top: 0; }
  .pdp-wrap .crumbs { display: none; }
  .gallery { position: relative; top: 0; grid-template-columns: 1fr; margin: 0 calc(var(--gutter) * -1); }
  .thumbs { display: none; }
  .stage { cursor: default; aspect-ratio: 3/4; }
  .stage-nav { display: none; }
  .stage-track { overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; transform: none !important; }
  .stage-track::-webkit-scrollbar { display: none; }
  .stage-track img { scroll-snap-align: start; }
  .stage-dots { display: flex; position: absolute; bottom: 14px; left: 0; right: 0; justify-content: center; gap: 6px; }
  .stage-dots i { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.6); transition: .2s; }
  .stage-dots i.is-on { background: #fff; width: 18px; border-radius: 3px; }
  .mobile-buy { display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 45; background: #fff; border-top: 1px solid var(--line); padding: 10px 16px calc(10px + env(safe-area-inset-bottom)); gap: 12px; align-items: center; transform: translateY(100%); transition: transform .35s var(--ease); }
  .mobile-buy.is-on { transform: none; }
  .mobile-buy .mb-price { font-size: 14px; line-height: 1.3; }
  .mobile-buy .btn { flex: 1; min-height: 46px; }
  .qv-grid { grid-template-columns: 1fr; }
  .qv-img { aspect-ratio: 1; }
  .qv-info { padding: 24px 20px; }
  .banner-grid { --cols: 1 !important; }
  .banner-grid.keep-2 { --cols: 2 !important; }
  .ty-meta { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  body { font-size: 14.5px; }
  .announce { font-size: 10.5px; letter-spacing: .1em; height: 32px; }
  .products { --cols: 2 !important; gap: 26px 10px; }
  .products.m-cols-1 { --cols: 1 !important; }
  .carousel-track { grid-auto-columns: calc((100% - 10px) / 2.2); gap: 10px; }
  .car-btn { display: none; }
  .hero-slide { min-height: clamp(460px, 78vh, 700px); }
  .hero-arrow { display: none; }
  .cat-tiles { --cols: 2 !important; }
  .cat-circles { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; scrollbar-width: none; padding-bottom: 6px; margin: 0 calc(var(--gutter) * -1); padding-left: var(--gutter); padding-right: var(--gutter); }
  .cat-circles::-webkit-scrollbar { display: none; }
  .cat-circle { flex: 0 0 84px; width: 84px; min-width: 0; }
  .cat-circle span { font-size: 10px; letter-spacing: .1em; }
  .card-title { font-size: 12.5px; }
  .card-label { font-size: 9.5px; letter-spacing: .12em; }
  .card-price { font-size: 12.5px; gap: 2px 8px; }
  .price-off { margin-left: 0; }
  .card-quick { width: 32px; height: 32px; right: 6px; }
  .toolbar-in { grid-template-columns: auto 1fr auto; }
  .count { text-align: center; font-size: 10.5px; }
  .grid-switch [data-cols="3"], .grid-switch [data-cols="4"] { display: none; }
  .grid-switch [data-cols="1"] { display: flex !important; }
  .toolbar-right { gap: 12px; }
  .sort-wrap { display: none; }
  .coll-head-grid { flex-direction: column; align-items: flex-start; gap: 18px; }
  .coll-subs { width: calc(100% + var(--gutter) * 2); margin: 0 calc(var(--gutter) * -1); padding: 4px var(--gutter); }
  .sr-products { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .search-bar { height: 60px; }
  .search-bar input { font-size: 16px; letter-spacing: .06em; }
  .search-bar input::placeholder { font-size: 14px; }
  .cart-table thead { display: none; }
  .cart-table, .cart-table tbody, .cart-table tr, .cart-table td { display: block; width: 100%; }
  .cart-table tr { display: grid; grid-template-columns: 1fr auto; border-bottom: 1px solid var(--line); padding: 16px 0; gap: 12px; }
  .cart-table td { border: 0; padding: 0; }
  .cart-table td.c-prod { grid-column: 1 / -1; }
  .cart-table td.c-price { display: none; }
  .cart-table td.c-total { align-self: center; }
  .cart-prod img { width: 84px; }
  .grid-2 { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 18px 12px; padding-top: 24px; padding-bottom: 24px; }
  .feature { flex-direction: column; text-align: center; gap: 8px; }
  .feature span { font-size: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 0; }
  .footer-brand { margin-bottom: 20px; }
  .footer-col { border-top: 1px solid var(--line); }
  .footer-col-title { cursor: pointer; margin: 0; padding: 16px 0; }
  .footer-col-title .ico { display: block; transition: transform .3s; }
  .footer-col.is-open .footer-col-title .ico { transform: rotate(45deg); }
  .footer-col ul { display: none; padding-bottom: 14px; }
  .footer-col.is-open ul { display: block; }
  .footer-news { display: block; border-top: 1px solid var(--line); padding-top: 20px; }
  .footer-bottom-in { flex-direction: column; text-align: center; align-items: center; }
  .summary, .co-summary { padding: 20px; margin: 0 calc(var(--gutter) * -1); }
  .ty-box { padding: 18px; }
  .buy-row { flex-direction: column; }
  .modal { padding: 0; align-items: flex-end; }
  .modal-box { max-height: 92vh; }
  .wa-float { width: 48px; height: 48px; right: 14px; bottom: 14px; }
  .pdp-page .wa-float { bottom: 80px; }
  .to-top { right: 16px; bottom: 72px; width: 40px; height: 40px; }
  .pdp-page .to-top { display: none; }
}
@media (max-width: 380px) {
  .logo-text { font-size: 22px; letter-spacing: .2em; }
  .icon-btn { width: 38px; height: 38px; }
}

/* ---------- Content pages (About / policies) ---------- */
.page-content .page-head { padding: clamp(36px, 6vw, 72px) 0 clamp(24px, 3.5vw, 40px); }
.page-content .page-title { font-family: var(--font); font-weight: 400; text-transform: uppercase; letter-spacing: .16em; font-size: clamp(26px, 3.2vw, 36px); }
.page-content .prose { max-width: 860px; font-size: 15.5px; line-height: 1.85; color: var(--ink-2); padding-bottom: 90px; }
.page-content .prose p { margin: 0 0 1.25em; }
.page-content .prose h2 { font-family: var(--font); font-size: 14px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--ink); margin: 2.2em 0 .8em; }
.page-content .prose h3 { font-family: var(--font); font-size: 15px; font-weight: 600; color: var(--ink); margin: 1.6em 0 .6em; }
.page-content .prose a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.page-content .prose a:hover { color: var(--accent); }
.page-content .prose ul, .page-content .prose ol { padding-left: 22px; margin: 0 0 1.3em; }
.page-content .prose li { margin-bottom: .45em; }
.page-content .prose table { width: 100%; border-collapse: collapse; margin: 6px 0 1.4em; font-size: 14.5px; }
.page-content .prose th, .page-content .prose td { border: 1px solid var(--line); padding: 11px 14px; text-align: left; vertical-align: top; }
.page-content .prose th { background: var(--soft); color: var(--ink); font-weight: 500; }
@media (max-width: 767px) { .page-content .prose { font-size: 14.5px; } .page-content .prose table { font-size: 13px; } .page-content .prose th, .page-content .prose td { padding: 9px 10px; } }

/* ---------- Reviews slider ---------- */
.reviews-sec { background: var(--soft); }
.rv-wrap { position: relative; }
.rv-track { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 20px) / 2); gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; scroll-behavior: smooth; padding: 4px 2px 8px; }
.rv-track::-webkit-scrollbar { display: none; }
.rv-card { scroll-snap-align: start; display: grid; grid-template-columns: 42% 1fr; background: #fff; min-height: 100%; box-shadow: 0 1px 0 var(--line); }
.rv-img { position: relative; display: block; background: var(--line); overflow: hidden; min-height: 360px; }
.rv-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.rv-card:hover .rv-img img { transform: scale(1.04); }
.rv-body { padding: clamp(20px, 2.4vw, 34px); display: flex; flex-direction: column; }
.rv-stars { display: flex; gap: 3px; color: #c9a14a; margin-bottom: 16px; }
.rv-stars .off { color: #ddd6cf; }
.rv-quote { font-family: var(--display); font-size: clamp(18px, 1.6vw, 22px); line-height: 1.45; color: var(--ink); margin: 0 0 20px; font-style: italic; }
.rv-quote::before { content: "\201C"; display: block; font-size: 48px; line-height: .6; color: var(--accent); opacity: .35; margin-bottom: 8px; font-style: normal; }
.rv-meta { margin-top: auto; }
.rv-name { font-size: 12.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--ink); }
.rv-city { font-size: 13px; color: var(--muted); }
.rv-verified { display: inline-flex; align-items: center; gap: 4px; font-size: 11.5px; color: var(--ok); margin-left: 8px; }
.rv-prod { display: block; font-size: 12.5px; color: var(--ink-2); margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--line); }
.rv-prod b { font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }
.rv-nav { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 26px; }
.rv-nav button.rv-arrow { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); background: #fff; display: flex; align-items: center; justify-content: center; transition: .2s; }
.rv-nav button.rv-arrow:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.rv-dots { display: flex; gap: 7px; }
.rv-dots button { width: 7px; height: 7px; border-radius: 50%; background: #d4ccc4; transition: .25s; }
.rv-dots button.is-on { background: var(--ink); width: 22px; border-radius: 4px; }
.rv-summary { display: flex; align-items: center; gap: 10px; justify-content: center; margin-top: 8px; font-size: 13.5px; color: var(--ink-2); }
.pdp-reviews { padding: 10px 0 30px; }
.pdp-reviews .rv-track { grid-auto-columns: calc((100% - 20px) / 2); }
@media (max-width: 1100px) { .rv-track { grid-auto-columns: 78%; } .rv-card { grid-template-columns: 40% 1fr; } }
@media (max-width: 767px) {
  .rv-track, .pdp-reviews .rv-track { grid-auto-columns: 86%; gap: 12px; }
  .rv-card { grid-template-columns: 1fr; }
  .rv-img { aspect-ratio: 4/3.6; min-height: 0; }
  .rv-img img { object-position: center 20%; }
  .rv-quote { font-size: 18px; }
}
