/* ============================================================
   BlackVolant — Premium Design System
   Clean minimal: off-white + black + subtle accents
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  --bg:          #F9F8F6;
  --bg-soft:     #F3F1EE;
  --surface:     #FFFFFF;
  --border:      #E8E5E0;
  --border-dark: #D4CFC8;
  --fg:          #111111;
  --fg-mid:      #555555;
  --fg-muted:    #9A9590;
  --accent:      #111111;
  --accent-inv:  #FFFFFF;
  --success:     #1A7A45;
  --danger:      #C0392B;
  --radius-sm:   6px;
  --radius:      10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-pill: 999px;
  --shadow-xs:   0 1px 3px rgba(0,0,0,.06);
  --shadow-sm:   0 2px 8px rgba(0,0,0,.08);
  --shadow-md:   0 8px 24px rgba(0,0,0,.10);
  --shadow-lg:   0 20px 48px rgba(0,0,0,.14);
  --header-h:    64px;
  --topbar-h:    36px;
  --font-sans:   'Inter', system-ui, sans-serif;
  --font-serif:  'Playfair Display', Georgia, serif;
  --ease-out:    cubic-bezier(.22,1,.36,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
  --overlay:     rgba(0,0,0,0.44);
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{background:var(--bg);color:var(--fg);font-family:var(--font-sans);font-size:15px;line-height:1.6;min-height:100vh;-webkit-font-smoothing:antialiased}
img,video{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button{cursor:pointer;border:none;background:none;font:inherit}
input,select,textarea{font:inherit}
ul,ol{list-style:none}

/* ── Typography ─── */
.text-display{font-family:var(--font-serif);font-size:clamp(2rem,5vw,3.5rem);font-weight:600;line-height:1.1;letter-spacing:-0.02em}
.text-heading{font-size:1.5rem;font-weight:700;letter-spacing:-0.02em}
.text-subheading{font-size:1.125rem;font-weight:600;letter-spacing:-0.01em}
.text-label{font-size:.6875rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:var(--fg-muted)}
.text-muted{color:var(--fg-muted)}

/* ── Layout ─── */
.container{max-width:1320px;margin-inline:auto;padding-inline:24px}
@media(max-width:600px){.container{padding-inline:16px}}

/* ── Scrollbar ─── */
::-webkit-scrollbar{width:5px;height:5px}
::-webkit-scrollbar-track{background:transparent}
::-webkit-scrollbar-thumb{background:var(--border-dark);border-radius:var(--radius-pill)}

/* ── Animations ─── */
@keyframes fadeUp{from{opacity:0;transform:translateY(14px)}to{opacity:1;transform:none}}
@keyframes fadeIn{from{opacity:0}to{opacity:1}}
@keyframes scaleIn{from{opacity:0;transform:scale(.96)}to{opacity:1;transform:scale(1)}}
@keyframes slideUp{from{transform:translateY(100%)}to{transform:translateY(0)}}
@keyframes slideLeft{from{transform:translateX(-100%)}to{transform:translateX(0)}}
@keyframes shimmer{from{background-position:-400px 0}to{background-position:400px 0}}
@keyframes spin{to{transform:rotate(360deg)}}
@media(prefers-reduced-motion:reduce){*,*::before,*::after{animation-duration:.01ms !important;transition-duration:.01ms !important}}

/* ── Topbar ─── */
.topbar{background:var(--fg);color:rgba(255,255,255,.6);font-size:12px;height:var(--topbar-h);display:flex;align-items:center;padding-top:env(safe-area-inset-top,0px)}
.topbar a{color:inherit;transition:color .15s}
.topbar a:hover{color:#fff}
.topbar__inner{display:flex;align-items:center;justify-content:space-between;gap:12px}
.topbar__badge{display:flex;align-items:center;gap:6px}
.topbar__badge svg{width:13px;height:13px}
.topbar__right{display:flex;align-items:center;gap:16px}
.topbar__link{display:flex;align-items:center;gap:5px;transition:color .15s}
.topbar__link svg{width:13px;height:13px}
@media(max-width:600px){.topbar__badge--full{display:none}.topbar__badge--short{display:flex}}
@media(min-width:601px){.topbar__badge--short{display:none}}

/* ── Header ─── */
.header{position:sticky;top:0;z-index:100;background:rgba(255,255,255,.88);backdrop-filter:blur(16px) saturate(180%);-webkit-backdrop-filter:blur(16px) saturate(180%);border-bottom:1px solid var(--border);height:var(--header-h)}
.header__inner{height:100%;display:flex;align-items:center;justify-content:space-between;gap:16px}
.header__left{display:flex;align-items:center;gap:24px}
.logo{font-weight:800;font-size:1.125rem;letter-spacing:-0.03em;display:flex;align-items:center;gap:6px;color:var(--fg);white-space:nowrap}
.logo svg{width:20px;height:20px}
.header__nav{display:flex;align-items:center;gap:2px}
.header__nav a{font-size:13.5px;font-weight:500;color:var(--fg-mid);padding:6px 10px;border-radius:var(--radius-sm);transition:color .15s,background .15s}
.header__nav a:hover,.header__nav a.active{color:var(--fg);background:var(--bg-soft)}
@media(max-width:768px){.header__nav{display:none}}
.header__actions{display:flex;align-items:center;gap:2px}
.icon-btn{width:38px;height:38px;border-radius:var(--radius);display:flex;align-items:center;justify-content:center;color:var(--fg);transition:background .15s;position:relative}
.icon-btn:hover{background:var(--bg-soft)}
.icon-btn svg{width:18px;height:18px}
.badge{position:absolute;top:4px;right:4px;background:var(--fg);color:#fff;font-size:9px;font-weight:700;width:16px;height:16px;border-radius:50%;display:flex;align-items:center;justify-content:center;pointer-events:none;border:2px solid var(--surface)}
.menu-btn{display:none}
@media(max-width:768px){.menu-btn{display:flex}}

/* ── Mobile nav ─── */
.mobile-nav-overlay{display:none;position:fixed;inset:0;background:var(--overlay);z-index:200}
.mobile-nav-overlay.open{display:block;animation:fadeIn .2s ease}
.mobile-nav{position:absolute;top:0;left:0;bottom:0;width:min(300px,85vw);background:var(--surface);padding:24px 16px;display:flex;flex-direction:column;gap:2px;overflow-y:auto;animation:slideLeft .3s var(--ease-out)}
.mobile-nav__logo{font-weight:800;font-size:1.1rem;letter-spacing:-0.03em;margin-bottom:24px;display:flex;align-items:center;gap:8px;padding:0 8px}
.mobile-nav a{display:flex;align-items:center;gap:10px;padding:11px 12px;border-radius:var(--radius);font-size:14px;font-weight:500;color:var(--fg-mid);transition:background .15s,color .15s}
.mobile-nav a:hover{background:var(--bg-soft);color:var(--fg)}
.mobile-nav a svg{width:16px;height:16px;flex-shrink:0}
.mobile-nav__divider{height:1px;background:var(--border);margin:8px 0}

/* ── Search panel ─── */
.search-panel{display:none;border-bottom:1px solid var(--border);background:var(--surface);padding:12px 0}
.search-panel.open{display:block;animation:fadeIn .15s ease}
.search-panel__inner{display:flex;align-items:center;gap:10px;max-width:600px;margin:0 auto;padding-inline:24px}
.search-panel__inner svg{width:16px;height:16px;color:var(--fg-muted);flex-shrink:0}
.search-panel__input{flex:1;background:transparent;border:none;outline:none;font-size:14px;color:var(--fg)}
.search-panel__input::placeholder{color:var(--fg-muted)}
.search-close{width:28px;height:28px;display:flex;align-items:center;justify-content:center;color:var(--fg-muted);border-radius:50%;transition:background .15s}
.search-close:hover{background:var(--bg-soft);color:var(--fg)}
.search-close svg{width:15px;height:15px}

/* ── Buttons ─── */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:7px;font-size:13.5px;font-weight:600;padding:10px 22px;border-radius:var(--radius);transition:all .2s var(--ease-out);white-space:nowrap;border:1.5px solid transparent;letter-spacing:-0.01em}
.btn svg{width:15px;height:15px}
.btn-primary{background:var(--fg);color:#fff;border-color:var(--fg)}
.btn-primary:hover{background:#333;border-color:#333;transform:translateY(-1px);box-shadow:var(--shadow-sm)}
.btn-secondary{background:transparent;color:var(--fg);border-color:var(--border-dark)}
.btn-secondary:hover{border-color:var(--fg);transform:translateY(-1px)}
.btn-ghost{background:transparent;color:var(--fg-mid);border-color:transparent;padding:10px 14px}
.btn-ghost:hover{background:var(--bg-soft);color:var(--fg)}
.btn-sm{font-size:12px;padding:7px 14px}
.btn-lg{font-size:15px;padding:13px 28px}
.btn-danger{background:var(--danger);color:#fff;border-color:var(--danger)}
.btn-danger:hover{background:#a93226;border-color:#a93226}

/* ── Hero v2 (editorial) ─── */
.hero-v2{padding-block:72px 0;overflow:hidden}
.hero-v2__inner{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center}
@media(max-width:900px){.hero-v2__inner{grid-template-columns:1fr;gap:40px;padding-bottom:0}.hero-v2__right{order:-1;margin-inline:-20px}}
.hero-v2__eyebrow{display:inline-flex;align-items:center;gap:7px;font-size:10.5px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--fg-muted);margin-bottom:18px}
.hero-v2__eyebrow-dot{width:6px;height:6px;border-radius:50%;background:var(--fg);display:inline-block}
.hero-v2__h1{font-family:'Playfair Display',serif;font-size:clamp(2.6rem,5vw,4.2rem);font-weight:700;line-height:1.08;letter-spacing:-0.03em;margin-bottom:18px;color:var(--fg)}
.hero-v2__h1 em{font-style:italic;font-weight:400}
.hero-v2__body{font-size:15px;color:var(--fg-mid);line-height:1.75;max-width:400px;margin-bottom:28px}
.hero-v2__actions{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:40px}
.hero-v2__stats{display:flex;align-items:center;gap:0;border-top:1px solid var(--border);padding-top:24px}
.hero-v2__stat{padding:0 20px;text-align:center;flex:1}
.hero-v2__stat:first-child{padding-left:0;text-align:left}
.hero-v2__stat-num{display:block;font-size:1.3rem;font-weight:800;letter-spacing:-0.03em}
.hero-v2__stat-label{display:block;font-size:11px;color:var(--fg-muted);letter-spacing:.04em;text-transform:uppercase;margin-top:2px}
.hero-v2__stat-divider{width:1px;height:36px;background:var(--border);flex-shrink:0}
/* Right: product showcase */
.hero-v2__showcase{position:relative;display:grid;grid-template-columns:3fr 2fr;grid-template-rows:auto auto;gap:8px}
.hero-v2__main{grid-row:1/3;border-radius:var(--radius-xl);overflow:hidden;background:var(--bg-soft);border:1px solid var(--border);aspect-ratio:3/4;position:relative}
.hero-v2__main img{width:100%;height:100%;object-fit:contain;padding:24px;transition:transform .6s var(--ease-out)}
.hero-v2__main:hover img{transform:scale(1.03)}
.hero-v2__main-tag{position:absolute;bottom:14px;left:14px;background:var(--fg);color:#fff;font-size:11px;font-weight:700;padding:5px 11px;border-radius:var(--radius-pill);letter-spacing:.03em}
.hero-v2__side{border-radius:var(--radius-lg);overflow:hidden;background:var(--bg-soft);border:1px solid var(--border);aspect-ratio:1;position:relative}
.hero-v2__side img{width:100%;height:100%;object-fit:contain;padding:12px;transition:transform .5s var(--ease-out)}
.hero-v2__side:hover img{transform:scale(1.04)}
.hero-v2__side-price{position:absolute;bottom:8px;left:8px;right:8px;font-size:11px;font-weight:700;background:rgba(255,255,255,.95);backdrop-filter:blur(6px);padding:5px 8px;border-radius:var(--radius-sm);text-align:center;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
/* Marquee */
.marquee{border-top:1px solid var(--border);border-bottom:1px solid var(--border);background:var(--bg-soft);padding-block:13px;overflow:hidden;margin-top:56px}
.marquee__track{display:flex;gap:0;animation:marquee-scroll 26s linear infinite;width:max-content}
.marquee__item{font-size:12px;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:var(--fg-mid);padding-inline:32px;white-space:nowrap}
.marquee__item--accent{color:var(--fg)}
@keyframes marquee-scroll{from{transform:translateX(0)}to{transform:translateX(-50%)}}

/* ── Section header ─── */
.section-header{display:flex;align-items:baseline;justify-content:space-between;gap:16px;margin-bottom:24px}
.section-header__title{font-size:1.25rem;font-weight:700;letter-spacing:-0.02em}
.section-header__link{font-size:13px;font-weight:500;color:var(--fg-mid);display:flex;align-items:center;gap:4px;transition:color .15s;white-space:nowrap}
.section-header__link:hover{color:var(--fg)}
.section-header__link svg{width:14px;height:14px}

/* ── Category grid — editorial tiles ─── */
.cat-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:12px}
@media(max-width:1000px){.cat-grid{grid-template-columns:repeat(3,1fr)}}
@media(max-width:560px){.cat-grid{grid-template-columns:repeat(2,1fr)}}
.cat-card{display:block;text-decoration:none;position:relative;border-radius:var(--radius-lg);overflow:hidden;aspect-ratio:3/4;background:var(--bg-soft);border:1px solid var(--border)}
.cat-card img{width:100%;height:100%;object-fit:cover;transition:transform .5s var(--ease-out)}
.cat-card:hover img{transform:scale(1.07)}
.cat-card__overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,.72) 0%,rgba(0,0,0,.1) 55%,transparent 100%);transition:opacity .3s}
.cat-card__info{position:absolute;bottom:0;left:0;right:0;padding:16px 14px 14px}
.cat-card__name{font-size:13px;font-weight:700;color:#fff;line-height:1.2}
.cat-card__desc{font-size:11px;color:rgba(255,255,255,.72);margin-top:2px;display:none}
@media(min-width:600px){.cat-card__desc{display:block}}

/* ── Product grid ─── */
.product-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;align-items:stretch}
@media(max-width:900px){.product-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:420px){.product-grid{grid-template-columns:1fr}}
.product-grid--3{grid-template-columns:repeat(3,1fr)}
@media(max-width:900px){.product-grid--3{grid-template-columns:repeat(2,1fr)}}
/* Equal-height cards — card fills the full grid cell height */
.product-grid > .product-card,.product-grid--3 > .product-card{height:100%}

/* ── Product card ─── */
.product-card{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius-lg);overflow:hidden;display:flex;flex-direction:column;position:relative;transition:box-shadow .25s var(--ease-out),transform .25s var(--ease-out)}
.product-card:hover{box-shadow:var(--shadow-md);transform:translateY(-2px)}
.product-card__media{position:relative;aspect-ratio:1;background:var(--bg-soft);overflow:hidden}
.product-card__media a{display:block;height:100%}
.product-card__media img{width:100%;height:100%;object-fit:contain;padding:16px;transition:transform .45s var(--ease-out)}
.product-card:hover .product-card__media img{transform:scale(1.04)}
.product-card__badge{position:absolute;top:10px;left:10px;font-size:10px;font-weight:700;padding:3px 9px;border-radius:var(--radius-pill);letter-spacing:.03em}
.product-card__badge--sale{background:var(--fg);color:#fff}
.product-card__badge--new{background:var(--success);color:#fff}
.product-card__wish{position:absolute;top:10px;right:10px;width:32px;height:32px;background:rgba(255,255,255,.92);backdrop-filter:blur(4px);border-radius:50%;display:flex;align-items:center;justify-content:center;transition:background .15s,transform .2s var(--ease-spring);box-shadow:var(--shadow-xs)}
.product-card__wish:hover{background:#fff;transform:scale(1.12)}
.product-card__wish svg{width:15px;height:15px;transition:fill .15s,color .15s}
.product-card__wish.active svg{fill:#e53935;color:#e53935}
.product-card__body{padding:12px 14px 14px;flex:1;display:flex;flex-direction:column;gap:4px}
.product-card__cat{font-size:10.5px;font-weight:600;letter-spacing:.08em;text-transform:uppercase;color:var(--fg-muted)}
.product-card__name{font-size:13.5px;font-weight:600;color:var(--fg);line-height:1.4;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.product-card__prices{display:flex;align-items:baseline;gap:8px}
.product-card__price{font-size:15px;font-weight:700}
.product-card__orig{font-size:12px;color:var(--fg-muted);text-decoration:line-through}
.product-card__actions{margin-top:auto;padding-top:10px}
.product-card__mkt-links{display:flex;gap:5px}
.product-card__mkt-link{width:30px;height:30px;border:1px solid var(--border);border-radius:var(--radius-sm);display:flex;align-items:center;justify-content:center;color:var(--fg-mid);transition:border-color .15s,color .15s,background .15s}
.product-card__mkt-link:hover{border-color:var(--fg);color:var(--fg);background:var(--bg-soft)}
.product-card__mkt-link svg{width:13px;height:13px}
.product-card__view{display:block;text-align:center;background:var(--fg);color:#fff;font-size:12px;font-weight:600;padding:9px 12px;border-radius:var(--radius-sm);transition:background .15s;letter-spacing:-.01em}
.product-card__view:hover{background:#333}

/* ── Skeleton ─── */
.skeleton{background:linear-gradient(90deg,var(--bg-soft) 25%,var(--border) 50%,var(--bg-soft) 75%);background-size:400px 100%;animation:shimmer 1.4s infinite;border-radius:var(--radius-sm)}

/* ── Product detail ─── */
.product-detail{display:grid;grid-template-columns:1fr 1fr;gap:64px;padding-block:40px 64px}
@media(max-width:860px){.product-detail{grid-template-columns:1fr;gap:32px}}
.product-detail__gallery{position:sticky;top:calc(var(--topbar-h) + var(--header-h) + 20px);align-self:start}
.product-detail__main-img{aspect-ratio:1;border-radius:var(--radius-xl);background:var(--bg-soft);border:1px solid var(--border);overflow:hidden;display:flex;align-items:center;justify-content:center}
.product-detail__main-img img{width:100%;height:100%;object-fit:contain;padding:32px}
.product-detail__cat{font-size:11px;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:var(--fg-muted);margin-bottom:8px}
.product-detail__title{font-size:1.75rem;font-weight:700;letter-spacing:-0.025em;line-height:1.2;margin-bottom:12px}
.product-detail__rating{display:flex;align-items:center;gap:8px;margin-bottom:20px}
.product-detail__stars{display:flex;gap:2px}
.product-detail__stars svg{width:14px;height:14px;fill:#F59E0B;color:#F59E0B}
.product-detail__rating-count{font-size:12.5px;color:var(--fg-muted)}
.product-detail__price-row{display:flex;align-items:baseline;gap:12px;padding-block:16px;border-block:1px solid var(--border);margin-bottom:24px}
.product-detail__price{font-size:1.875rem;font-weight:800;letter-spacing:-0.03em}
.product-detail__orig{font-size:14px;color:var(--fg-muted);text-decoration:line-through}
.product-detail__disc{font-size:13px;font-weight:700;color:var(--success);background:rgba(26,122,69,.08);padding:3px 9px;border-radius:var(--radius-pill)}
.product-detail__desc{font-size:14px;color:var(--fg-mid);line-height:1.75;margin-bottom:24px}
.product-detail__section-title{font-size:11px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--fg-muted);margin-bottom:10px}
.product-detail__buy-links{display:flex;flex-direction:column;gap:8px;margin-bottom:20px}
.product-detail__buy-link{display:flex;align-items:center;justify-content:space-between;padding:12px 16px;border:1.5px solid var(--border);border-radius:var(--radius);font-size:13.5px;font-weight:600;transition:border-color .15s,background .15s;min-height:52px}
.product-detail__buy-link:hover{border-color:var(--fg);background:var(--bg-soft)}
.product-detail__buy-link-left{display:flex;align-items:center;gap:10px}
.product-detail__buy-link svg{width:16px;height:16px}
.product-detail__actions{display:flex;gap:10px;margin-bottom:28px}
.product-detail__actions .btn{flex:1}
.product-detail__highlights{margin-bottom:24px}
.product-detail__highlights ul{display:flex;flex-direction:column;gap:8px}
.product-detail__highlights li{display:flex;align-items:flex-start;gap:10px;font-size:13.5px;color:var(--fg-mid)}
.product-detail__highlights li::before{content:'';width:5px;height:5px;border-radius:50%;background:var(--fg-muted);flex-shrink:0;margin-top:8px}
.product-detail__specs{border:1px solid var(--border);border-radius:var(--radius);overflow:hidden}
.product-detail__spec-row{display:flex;justify-content:space-between;gap:16px;padding:10px 14px;font-size:13px}
.product-detail__spec-row:not(:last-child){border-bottom:1px solid var(--border)}
.product-detail__spec-row dt{color:var(--fg-muted)}
.product-detail__spec-row dd{font-weight:500;text-align:right}

/* ── Filter sidebar ─── */
.filter-sidebar{display:flex;flex-direction:column;gap:24px}
.filter-group__title{font-size:11px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--fg-muted);margin-bottom:10px;display:flex;align-items:center;gap:6px}
.filter-group__title svg{width:12px;height:12px}
.filter-chips{display:flex;flex-wrap:wrap;gap:6px}
.filter-chip{display:flex;align-items:center;gap:5px;font-size:12.5px;font-weight:500;padding:6px 12px;border-radius:var(--radius-pill);border:1px solid var(--border);cursor:pointer;transition:all .15s;background:var(--surface);white-space:nowrap;color:var(--fg-mid)}
.filter-chip svg{width:12px;height:12px}
.filter-chip:hover{border-color:var(--fg);background:var(--bg-soft);color:var(--fg)}
.filter-chip input[type="radio"]{display:none}
.filter-chip.active{background:var(--fg);color:#fff;border-color:var(--fg)}

/* ── Shop layout ─── */
.shop-layout{display:grid;grid-template-columns:220px 1fr;gap:40px;padding-block:32px 64px}
@media(max-width:900px){.shop-layout{grid-template-columns:1fr}.shop-sidebar{display:none}}
.sort-bar{display:flex;align-items:center;justify-content:space-between;margin-bottom:20px;gap:12px}
.sort-bar__count{font-size:13px;color:var(--fg-muted)}
.sort-select{font-size:13px;font-weight:500;border:1px solid var(--border);border-radius:var(--radius);padding:7px 12px;background:var(--surface);color:var(--fg);cursor:pointer;outline:none;transition:border-color .15s}
.sort-select:focus{border-color:var(--fg)}
.mobile-filter-bar{display:none;gap:10px;margin-bottom:16px}
@media(max-width:900px){.mobile-filter-bar{display:flex}}

/* ── Filter sheet ─── */
.filter-sheet-overlay{display:none;position:fixed;inset:0;background:var(--overlay);z-index:200}
.filter-sheet-overlay.open{display:block;animation:fadeIn .2s ease}
.filter-sheet{position:absolute;bottom:0;left:0;right:0;background:var(--surface);border-radius:var(--radius-xl) var(--radius-xl) 0 0;padding:24px 20px calc(24px + env(safe-area-inset-bottom,0px));max-height:80vh;overflow-y:auto;animation:slideUp .3s var(--ease-out)}
.filter-sheet__header{display:flex;align-items:center;justify-content:space-between;margin-bottom:20px}
.filter-sheet__title{font-size:15px;font-weight:700}

/* ── Toast ─── */
#toasts{position:fixed;bottom:24px;right:24px;z-index:999;display:flex;flex-direction:column;gap:8px;align-items:flex-end}
.toast{background:var(--fg);color:#fff;font-size:13px;font-weight:500;padding:10px 18px;border-radius:var(--radius-pill);box-shadow:var(--shadow-md);animation:fadeUp .25s var(--ease-out);max-width:280px}

/* ── Dialog ─── */
.dialog-overlay{position:fixed;inset:0;background:var(--overlay);z-index:300;display:flex;align-items:center;justify-content:center;padding:20px;animation:fadeIn .2s ease}
.dialog{background:var(--surface);border-radius:var(--radius-xl);padding:28px;max-width:380px;width:100%;animation:scaleIn .25s var(--ease-out)}
.dialog__title{font-size:17px;font-weight:700;margin-bottom:8px}
.dialog__body{font-size:13.5px;color:var(--fg-muted);margin-bottom:20px}
.dialog__actions{display:flex;justify-content:flex-end;gap:8px}

/* ── Breadcrumb ─── */
.breadcrumb{display:flex;align-items:center;gap:6px;font-size:12.5px;color:var(--fg-muted);margin-bottom:20px;flex-wrap:wrap}
.breadcrumb a{color:inherit;transition:color .15s}
.breadcrumb a:hover{color:var(--fg)}
.breadcrumb svg{width:12px;height:12px;flex-shrink:0}

/* ── Trust bar ─── */
.trust-bar{border-block:1px solid var(--border);padding-block:24px;margin-block:64px}
.trust-bar__inner{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
@media(max-width:700px){.trust-bar__inner{grid-template-columns:repeat(2,1fr)}}
.trust-item{display:flex;align-items:center;gap:12px}
.trust-item__icon{width:40px;height:40px;background:var(--bg-soft);border:1px solid var(--border);border-radius:var(--radius);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.trust-item__icon svg{width:18px;height:18px;color:var(--fg-mid)}
.trust-item__title{font-size:13px;font-weight:600;margin-bottom:2px}
.trust-item__sub{font-size:11.5px;color:var(--fg-muted)}

/* ── Loader ─── */
.page-loader{display:flex;align-items:center;justify-content:center;min-height:200px}
.spinner{width:24px;height:24px;border:2.5px solid var(--border);border-top-color:var(--fg);border-radius:50%;animation:spin .7s linear infinite}

/* ── Empty state ─── */
.page-empty{text-align:center;padding-block:80px}
.page-empty svg{width:48px;height:48px;color:var(--border-dark);margin:0 auto 16px}
.page-empty__title{font-size:16px;font-weight:600;margin-bottom:6px}
.page-empty__sub{font-size:13px;color:var(--fg-muted);margin-bottom:24px}

/* ── Form ─── */
.form-field{display:flex;flex-direction:column;gap:6px}
.form-label{font-size:11.5px;font-weight:600;color:var(--fg-muted);letter-spacing:.04em;text-transform:uppercase}
.form-input{width:100%;padding:9px 14px;font-size:14px;border:1.5px solid var(--border);border-radius:var(--radius);background:var(--surface);color:var(--fg);outline:none;transition:border-color .15s}
.form-input:focus{border-color:var(--fg-mid)}
.form-input::placeholder{color:var(--fg-muted)}
textarea.form-input{resize:vertical;min-height:80px}
select.form-input{cursor:pointer}
.form-grid{display:grid;gap:16px}
.form-grid--2{grid-template-columns:1fr 1fr}
.form-grid--3{grid-template-columns:1fr 1fr 1fr}
@media(max-width:640px){.form-grid--2,.form-grid--3{grid-template-columns:1fr}}

/* ── Footer ─── */
.footer{border-top:1px solid var(--border);margin-top:80px}
.footer__main{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:40px;padding-block:56px}
@media(max-width:860px){.footer__main{grid-template-columns:1fr 1fr;gap:32px}}
@media(max-width:540px){.footer__main{grid-template-columns:1fr}}
.footer__logo{font-weight:800;font-size:1.1rem;letter-spacing:-0.03em;display:flex;align-items:center;gap:6px;margin-bottom:12px}
.footer__logo svg{width:18px;height:18px}
.footer__tagline{font-size:13px;color:var(--fg-muted);line-height:1.6;max-width:220px;margin-bottom:16px}
.footer__search{display:flex;align-items:center;gap:8px;border:1px solid var(--border);border-radius:var(--radius);padding:9px 14px;max-width:240px;transition:border-color .15s}
.footer__search:focus-within{border-color:var(--fg-muted)}
.footer__search svg{width:14px;height:14px;color:var(--fg-muted);flex-shrink:0}
.footer__search input{flex:1;background:transparent;border:none;outline:none;font-size:13px}
.footer__heading{font-size:11px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--fg-muted);margin-bottom:16px}
.footer__links{display:flex;flex-direction:column;gap:10px}
.footer__links a{font-size:13px;color:var(--fg-mid);transition:color .15s}
.footer__links a:hover{color:var(--fg)}
.footer__social{display:flex;gap:8px;margin-top:8px}
.footer__social-link{width:34px;height:34px;border:1px solid var(--border);border-radius:var(--radius-sm);display:flex;align-items:center;justify-content:center;color:var(--fg-mid);transition:all .15s}
.footer__social-link:hover{border-color:var(--fg);color:var(--fg);background:var(--bg-soft)}
.footer__social-link svg{width:14px;height:14px}
.footer__bottom{border-top:1px solid var(--border);padding-block:16px;padding-bottom:calc(16px + env(safe-area-inset-bottom,0px));display:flex;align-items:center;justify-content:space-between;gap:16px;font-size:12px;color:var(--fg-muted);flex-wrap:wrap}
.footer__bottom a{color:var(--fg-muted);transition:color .15s}
.footer__bottom a:hover{color:var(--fg)}

/* ── Admin ─── */
.admin-layout{display:grid;grid-template-columns:220px 1fr;min-height:100vh}
@media(max-width:768px){.admin-layout{grid-template-columns:1fr}}
.admin-sidebar{background:var(--fg);color:#fff;padding:28px 16px;display:flex;flex-direction:column;gap:2px;position:sticky;top:0;height:100vh;overflow-y:auto}
@media(max-width:768px){.admin-sidebar{display:none}}
.admin-sidebar__logo{font-weight:800;font-size:1.1rem;letter-spacing:-0.03em;color:#fff;display:flex;align-items:center;gap:8px;margin-bottom:32px;padding:0 8px}
.admin-sidebar__logo svg{width:18px;height:18px}
.admin-nav-item{display:flex;align-items:center;gap:10px;font-size:13.5px;font-weight:500;color:rgba(255,255,255,.55);padding:9px 12px;border-radius:var(--radius);transition:background .15s,color .15s}
.admin-nav-item svg{width:16px;height:16px}
.admin-nav-item:hover{background:rgba(255,255,255,.1);color:rgba(255,255,255,.9)}
.admin-nav-item.active{background:rgba(255,255,255,.15);color:#fff}
.admin-nav-section{font-size:10px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:rgba(255,255,255,.3);padding:8px 12px 4px;margin-top:8px}
.admin-content{padding:32px;overflow:auto}
@media(max-width:768px){.admin-content{padding:20px 16px}}
.admin-topbar{display:flex;align-items:center;justify-content:space-between;gap:16px;margin-bottom:28px;flex-wrap:wrap}
.admin-page-title{font-size:1.375rem;font-weight:700;letter-spacing:-0.025em}
.stat-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin-bottom:28px}
@media(max-width:900px){.stat-grid{grid-template-columns:repeat(2,1fr)}}
.stat-card{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius-lg);padding:20px 22px}
.stat-card__value{font-size:2rem;font-weight:800;letter-spacing:-0.03em}
.stat-card__label{font-size:12px;color:var(--fg-muted);font-weight:500;margin-top:4px}
.data-table-wrap{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius-lg);overflow:hidden}
.data-table{width:100%;border-collapse:collapse;font-size:13.5px}
.data-table th{text-align:left;font-size:10.5px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--fg-muted);padding:10px 16px;border-bottom:1px solid var(--border);background:var(--bg-soft)}
.data-table td{padding:12px 16px;border-bottom:1px solid var(--border);vertical-align:middle}
.data-table tr:last-child td{border-bottom:none}
.data-table tr:hover td{background:var(--bg)}
.status-badge{display:inline-flex;align-items:center;font-size:11px;font-weight:600;padding:3px 10px;border-radius:var(--radius-pill);letter-spacing:.03em}
.status-badge--published{background:rgba(26,122,69,.1);color:var(--success)}
.status-badge--draft{background:var(--bg-soft);color:var(--fg-muted)}
.admin-mobile-topbar{display:none;background:var(--fg);color:#fff;padding:14px 16px;align-items:center;gap:12px;position:sticky;top:0;z-index:100}
@media(max-width:768px){.admin-mobile-topbar{display:flex}}
.admin-mobile-topbar__logo{font-weight:800;font-size:1rem;letter-spacing:-0.03em;flex:1}
