:root {
  --bg: #08080a;
  --bg-2: #0f0f12;
  --surface: #151518;
  --surface-2: #1c1c21;
  --ink: #ffffff;
  --ink-2: #f0f0f5;
  --muted: #cfcfd8;
  --line: rgba(255,255,255,.09);
  --line-2: rgba(255,255,255,.14);
  --gold: #f97316;
  --gold-2: #fb923c;
  --gold-soft: rgba(249,115,22,.14);
  --green: #6ed890;
  --red: #ff5c5c;
  --blue: #5ec4ff;
  --grey: #c9c9d2;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 24px 60px rgba(0,0,0,.55);
  --gold-grad: linear-gradient(135deg, #fde68a 0%, #fb923c 45%, #f97316 100%);
  --font-display: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --font-serif: "Fraunces", Georgia, serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --max: 1200px;
  --header-h: 64px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

::selection { background: rgba(249,115,22,.35); color: #fff; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: rgba(249,115,22,.35); border-radius: 999px; border: 2px solid var(--bg-2); }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

body {
  font-family: var(--font-body);
  background:
    radial-gradient(1100px 500px at 15% -5%, rgba(249,115,22,.06), transparent 60%),
    radial-gradient(900px 420px at 105% 10%, rgba(249,115,22,.045), transparent 55%),
    var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

input, select, textarea {
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  width: 100%;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-soft);
}
label { font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 7px; font-weight: 600; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 22px; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.12; letter-spacing: -0.02em; }

.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }

.section-head { margin-bottom: 46px; }
.section-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11.5px; letter-spacing: .42em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 16px;
}
.section-kicker::before { content: ""; width: 22px; height: 2px; border-radius: 999px; background: var(--gold-grad); flex: none; }
.section-title { font-size: clamp(28px, 4vw, 42px); }
.section-sub { color: var(--muted); margin-top: 14px; max-width: 580px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 12px 24px; border-radius: 999px; font-weight: 700; font-size: 13.5px;
  letter-spacing: .02em; transition: transform .2s, box-shadow .2s, background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }
.btn-gold { background: var(--gold-grad); color: var(--bg); box-shadow: 0 10px 30px rgba(249,115,22,.22); }
.btn-gold:hover { box-shadow: 0 14px 44px rgba(249,115,22,.4); transform: translateY(-2px); background: linear-gradient(135deg, #fdba74, #fb923c); }
.btn-dark { background: var(--surface-2); color: var(--ink); border: 1px solid var(--line-2); }
.btn-dark:hover { border-color: var(--gold); color: var(--gold-2); transform: translateY(-2px); }
.btn-outline { border: 1px solid var(--line-2); color: var(--ink); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-2); }
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-block { width: 100%; }
.btn[disabled], .btn.disabled { opacity: .45; pointer-events: none; }

/* ---------- Header ---------- */
.announce {
  background: var(--bg-2);
  color: var(--gold-2); text-align: center; font-size: 11.5px; letter-spacing: .18em;
  padding: 8px 16px; text-transform: uppercase; font-weight: 700;
  border-bottom: 1px solid var(--line);
  position: relative; z-index: 60;
}
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(12, 12, 14, .85);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-inner { height: var(--header-h); display: flex; align-items: center; gap: 26px; }
.brand { display: flex; align-items: center; gap: 10px; line-height: 1; }
.brand-logo { height: 48px; width: auto; object-fit: contain; border-radius: var(--radius-sm); transition: transform .3s; }
.brand:hover .brand-logo { transform: scale(1.05); }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 23px; letter-spacing: .14em; color: var(--ink); }
.brand-name em { font-style: normal; color: var(--gold-2); }
.brand-tag { font-size: 9px; letter-spacing: .34em; text-transform: uppercase; color: var(--muted); }

.nav { display: flex; gap: 4px; flex: 1; justify-content: center; }
.nav a {
  font-size: 13px; font-weight: 600; letter-spacing: .04em;
  padding: 9px 16px; border-radius: 999px; color: var(--ink-2);
  transition: color .2s, background .2s;
}
.nav a:hover { color: var(--gold-2); background: var(--gold-soft); }
.nav a.active { color: var(--gold-2); background: var(--gold-soft); }

.header-actions { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.icon-btn {
  position: relative; width: 40px; height: 40px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-2); transition: color .2s, background .2s; font-size: 17px;
}
.icon-btn:hover { color: var(--gold-2); background: var(--gold-soft); }
.badge {
  position: absolute; top: 2px; right: 0; min-width: 17px; height: 17px; padding: 0 4px;
  background: var(--gold); color: var(--bg); border-radius: var(--radius-sm); font-size: 10.5px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.menu-toggle { display: none; }

/* ---------- Mobile nav ---------- */
.mobile-nav {
  position: fixed; inset: 0; z-index: 80; background: rgba(5,5,5,.7);
  backdrop-filter: blur(6px); display: none;
}
.mobile-nav.open { display: block; }
.mobile-nav-panel {
  position: absolute; top: 0; left: 0; bottom: 0; width: min(340px, 86vw);
  background: var(--bg-2); padding: 24px 20px; display: flex; flex-direction: column; gap: 2px;
  border-right: 1px solid var(--line-2); animation: slideIn .3s ease;
  overflow-y: auto;
}
@keyframes slideIn { from { transform: translateX(-100%); } to { transform: none; } }
.mobile-nav-panel a {
  font-size: 16px; font-weight: 700; padding: 14px 12px; border-bottom: 1px solid var(--line);
  color: var(--ink-2); transition: color .2s, background .2s; border-radius: var(--radius-sm);
}
.mobile-nav-panel a:hover, .mobile-nav-panel a.active {
  color: var(--gold-2); background: var(--gold-soft);
}
.mobile-nav-close {
  align-self: flex-end; font-size: 20px; margin-bottom: 12px; width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center; border-radius: var(--radius-sm);
  color: var(--ink-2); transition: color .2s, background .2s;
}
.mobile-nav-close:hover { color: var(--gold-2); background: var(--gold-soft); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 0; overflow: hidden; }
.hero-inner { min-height: min(780px, 95vh); display: flex; flex-direction: column; justify-content: center; padding: 90px 22px 110px; position: relative; z-index: 2; }
.hero-bg {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image:
    linear-gradient(180deg, rgba(8,8,10,.74), rgba(8,8,10,.32) 45%, rgba(8,8,10,.82)),
    url('/public/images/hero-wave.jpg');
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}

.hero-kicker { font-size: 12.5px; letter-spacing: .5em; text-transform: uppercase; color: var(--gold-2); font-weight: 700; margin-bottom: 28px; }
.hero-title {
  font-family: var(--font-serif); font-weight: 600;
  font-size: clamp(52px, 9vw, 100px); line-height: .94; letter-spacing: -.03em;
  max-width: 940px;
}
.hero-title .gold { color: transparent; background: linear-gradient(135deg, #fde68a, #f97316, #ea580c); -webkit-background-clip: text; background-clip: text; }
.hero-sub { color: var(--ink-2); font-size: clamp(15px, 2vw, 19px); max-width: 600px; margin: 30px 0 44px; line-height: 1.75; }
.hero-cta { display: flex; gap: 18px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 52px; margin-top: 64px; flex-wrap: wrap; }
.hero-stat b { font-size: 30px; font-family: var(--font-display); color: var(--gold-2); display: block; }
.hero-stat span { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }

/* ---------- Marquee ---------- */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; padding: 18px 0; background: var(--bg-2); position: relative; }
.marquee::before, .marquee::after { content: ""; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none; }
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg-2), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--bg-2), transparent); }
.marquee-track { display: flex; gap: 48px; width: max-content; animation: scroll 30s linear infinite; }
.marquee span { font-size: 12px; letter-spacing: .34em; text-transform: uppercase; color: var(--ink-2); white-space: nowrap; }
.marquee span b { color: var(--gold-2); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- Category tiles ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cat-tile {
  position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4.5;
  border: 1px solid var(--line); display: block; isolation: isolate;
}
.cat-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.cat-tile:hover img { transform: scale(1.07); }
.cat-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,6,6,.85), rgba(6,6,6,.05) 55%); z-index: 1; }
.cat-tile-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 26px; z-index: 2; }
.cat-tile-body h3 { font-size: 23px; }
.cat-tile-body p { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-2); margin-top: 6px; }

/* ---------- Product grid & card ---------- */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 26px; }
.product-card { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--surface); transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s, border-color .35s; }
.product-card:hover { transform: translateY(-10px); box-shadow: var(--shadow); border-color: rgba(249,115,22,.42); }
.product-media { position: relative; aspect-ratio: 1/1; overflow: hidden; background: #15151a; }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1), opacity .4s ease; }
.product-card:hover .product-media img { transform: scale(1.06); }
.product-media .slide-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity .7s ease; pointer-events: none;
}
.product-media .slide-img.active { opacity: 1; }
.product-dots {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); z-index: 4;
  display: flex; gap: 5px; opacity: 0; transition: opacity .3s ease;
}
.product-card:hover .product-dots { opacity: 1; }
.product-dot {
  width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.35);
  transition: background .4s ease, transform .3s ease;
}
.product-dot.active {
  background: var(--gold-2); transform: scale(1.4);
}
.product-badge { position: absolute; top: 12px; left: 12px; z-index: 3; display: flex; flex-direction: column; gap: 6px; }
.pill { font-size: 10.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 5px 10px; border-radius: var(--radius-sm); width: max-content; }
.pill-gold { background: var(--gold); color: var(--bg); }
.pill-dark { background: rgba(10,10,10,.8); color: var(--ink); backdrop-filter: blur(4px); }
.pill-green { background: var(--green); color: #0b2410; }
.pill-red { background: var(--red); color: #2a0808; }
.wish-btn {
  position: absolute; top: 12px; right: 12px; z-index: 3; width: 38px; height: 38px; border-radius: 50%;
  background: rgba(12,12,12,.6); backdrop-filter: blur(6px); color: var(--ink-2);
  display: flex; align-items: center; justify-content: center; font-size: 17px;
  transition: transform .2s, color .2s, background .2s;
}
.wish-btn:hover { transform: scale(1.12); color: var(--red); }
.wish-btn.active { color: var(--red); }
.product-body { padding: 20px 20px 22px; }
.product-cat { font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.product-name { font-size: 16px; font-weight: 700; margin: 8px 0 12px; line-height: 1.3; min-height: 44px; }
.product-name a:hover { color: var(--gold-2); }
.product-price { display: flex; align-items: baseline; gap: 9px; flex-wrap: wrap; }
.price { font-size: 18px; font-weight: 800; color: var(--gold-2); }
.price-compare { font-size: 13px; color: var(--muted); text-decoration: line-through; }
.price-request { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); font-weight: 700; }
.product-cta { display: flex; gap: 10px; margin-top: 16px; }
.product-cta .btn { flex: 1; padding: 12px 14px; font-size: 13px; }

/* ---------- Section split / about strip ---------- */
.duo { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.duo-visual { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); position: relative; }
.duo-visual img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.feature-list { list-style: none; margin-top: 26px; display: grid; gap: 18px; }
.feature-list li { display: flex; gap: 16px; align-items: flex-start; color: var(--ink-2); }
.feature-list .ico { width: 30px; height: 30px; border-radius: var(--radius-sm); background: var(--gold-soft); color: var(--gold-2); display: flex; align-items: center; justify-content: center; font-size: 15px; flex: none; }

/* ---------- Values ---------- */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.value-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; transition: transform .3s, border-color .3s, box-shadow .3s; }
.value-card:hover { transform: translateY(-6px); border-color: rgba(249,115,22,.35); box-shadow: 0 22px 52px rgba(0,0,0,.45); }
.value-card .ico {
  width: 54px; height: 54px; border-radius: 16px; margin-bottom: 20px;
  background: var(--gold-soft); border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center; font-size: 26px; color: var(--gold-2);
}
.value-card .ico i { width: 26px; height: 26px; }
.value-card h4 { font-size: 17px; margin-bottom: 10px; }
.value-card p { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 999;
  background:
    radial-gradient(800px 500px at 50% 36%, rgba(249,115,22,.12), transparent 62%),
    #08080a;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  transition: opacity .5s ease, visibility .5s ease;
}
.preloader::before {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 430px; height: 430px; margin: -215px 0 0 -215px;
  background: radial-gradient(circle, rgba(249,115,22,.15), transparent 64%);
  filter: blur(26px);
  animation: preloaderBreath 2.6s ease-in-out infinite;
  will-change: transform, opacity;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader.hidden .preloader-inner { transform: scale(.94) translateY(10px); opacity: 0; }
.preloader-inner {
  position: relative; z-index: 1; text-align: center;
  animation: preloadIn .9s cubic-bezier(.2,.7,.2,1) both;
  transition: transform .5s cubic-bezier(.2,.7,.2,1), opacity .45s ease;
}
@keyframes preloadIn { from { opacity: 0; transform: scale(.9) translateY(12px); } to { opacity: 1; transform: none; } }
@keyframes preloaderBreath { 0%,100% { opacity: .5; transform: scale(1); } 50% { opacity: 1; transform: scale(1.14); } }

.preloader-scene {
  position: relative; width: 154px; height: 154px; margin: 0 auto 26px;
  perspective: 640px; perspective-origin: 50% 42%;
}
.preloader-glow {
  position: absolute; inset: 8px; border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,.24), rgba(249,115,22,.06) 55%, transparent 72%);
  filter: blur(11px); animation: preloaderBreath 2.2s ease-in-out infinite;
}
.preloader-logo {
  position: absolute; inset: 0; margin: auto; width: 102px; height: 102px;
  display: flex; align-items: center; justify-content: center;
}
.preloader-logo img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 26px;
  border: 1px solid rgba(249,115,22,.42);
  box-shadow: 0 26px 70px rgba(0,0,0,.55), 0 0 46px rgba(249,115,22,.22);
  animation: logoFloat 3.2s ease-in-out infinite;
  will-change: transform;
}
@keyframes logoFloat {
  0%,100% { transform: translateZ(32px) rotateX(0deg) scale(1); }
  50%     { transform: translateZ(60px) rotateX(9deg) scale(1.045); }
}
.preloader-ring {
  position: absolute; inset: 0; border-radius: 26px;
  pointer-events: none; transform-style: preserve-3d; will-change: transform;
}
.preloader-ring i {
  position: absolute; inset: 0; border-radius: 26px;
  border: 2px solid transparent;
  border-top-color: var(--gold); border-right-color: rgba(249,115,22,.28);
  box-shadow: 0 0 22px rgba(249,115,22,.18);
}
.preloader-ring.r1 { animation: ringTilt1 2.1s linear infinite; }
.preloader-ring.r1 i { border-width: 2.5px; }
.preloader-ring.r2 { animation: ringTilt2 2.9s linear infinite; }
.preloader-ring.r2 i { border: 1.5px solid transparent; border-bottom-color: #f5d78e; border-left-color: rgba(245,215,142,.28); }
.preloader-ring.r3 { animation: ringTilt3 3.7s linear infinite reverse; }
.preloader-ring.r3 i { border: 1px solid transparent; border-top-color: rgba(255,255,255,.45); }
@keyframes ringTilt1 { 0% { transform: rotateX(62deg) rotateZ(0deg); } 100% { transform: rotateX(62deg) rotateZ(360deg); } }
@keyframes ringTilt2 { 0% { transform: rotateY(58deg) rotateZ(0deg); } 100% { transform: rotateY(58deg) rotateZ(-360deg); } }
@keyframes ringTilt3 { 0% { transform: rotateY(18deg) rotateZ(0deg); } 100% { transform: rotateY(18deg) rotateZ(360deg); } }

.preloader-name { font-family: var(--font-display); font-weight: 800; font-size: 23px; letter-spacing: .3em; }
.preloader-name em { font-style: normal; color: var(--gold-2); }
.preloader-tag { font-size: 10px; letter-spacing: .44em; text-transform: uppercase; color: var(--muted); margin-top: 10px; animation: pulse 1.4s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: .45; } 50% { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  .preloader::before, .preloader-glow, .preloader-ring, .preloader-logo img, .preloader-tag { animation: none !important; }
}

/* ---------- Page transition ---------- */
.page-transition {
  position: fixed; inset: 0; z-index: 998; background: #08080a;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .32s ease, visibility .32s ease;
}
.page-transition.show { opacity: 1; visibility: visible; pointer-events: all; }
.pt-inner { transform: scale(.6); opacity: 0; transition: transform .35s cubic-bezier(.2,.7,.2,1), opacity .35s; }
.page-transition.show .pt-inner { transform: scale(1); opacity: 1; }
.pt-inner img { width: 96px; height: 96px; object-fit: cover; border-radius: 22px; box-shadow: 0 0 60px rgba(249,115,22,.3); }

/* ---------- Quick contact ---------- */
.quickbar {
  position: fixed; right: 20px; bottom: 20px; z-index: 70;
  display: flex; flex-direction: column; gap: 12px; align-items: flex-end;
}
.quickbar-toggle {
  width: 54px; height: 54px; border-radius: var(--radius-sm); background: var(--gold);
  color: var(--bg); font-size: 22px; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 36px rgba(249,115,22,.35); transition: transform .3s;
}
.quickbar-toggle:hover { transform: scale(1.08) rotate(90deg); }
.quickbar-menu { display: none; flex-direction: column; gap: 10px; }
.quickbar.open .quickbar-menu { display: flex; animation: rise .3s ease; }
@keyframes rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.qb-btn { width: 50px; height: 50px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 20px; color: #fff; box-shadow: 0 10px 26px rgba(0,0,0,.4); transition: transform .2s; position: relative; }
.qb-btn:hover { transform: scale(1.12); }
.qb-btn .tip { position: absolute; right: 60px; background: var(--surface-2); border: 1px solid var(--line-2); padding: 6px 12px; border-radius: var(--radius-sm); font-size: 12px; white-space: nowrap; color: var(--ink); opacity: 0; pointer-events: none; transition: opacity .2s; }
.qb-btn:hover .tip { opacity: 1; }
.qb-call { background: #3b82f6; }
.qb-wa { background: #25d366; }
.qb-mail { background: #ea4335; }
.qb-fb { background: #1877f2; }
.qb-ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); background: var(--bg-2); padding: 72px 0 36px; margin-top: 48px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 44px; }
.footer h5 { font-size: 12px; letter-spacing: .28em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 20px; display: inline-block; }
.footer h5::after { content: ""; display: block; width: 100%; height: 2px; margin-top: 8px; border-radius: 999px; background: var(--gold-grad); }
.footer a.f-link { display: block; color: var(--ink-2); font-size: 14px; padding: 6px 0; transition: color .2s, transform .2s; }
.footer a.f-link:hover { color: var(--gold-2); transform: translateX(3px); }
.footer .f-brand { font-size: 26px; letter-spacing: .14em; font-weight: 800; }
.footer .f-slogan { color: var(--muted); font-size: 13.5px; margin-top: 10px; max-width: 300px; line-height: 1.6; }
.footer .f-contact li { display: flex; gap: 10px; color: var(--ink-2); font-size: 14px; padding: 4px 0; }
.footer .f-contact a:hover { color: var(--gold-2); }
.footer-bottom { border-top: 1px solid var(--line); margin-top: 44px; padding-top: 26px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; color: var(--muted); font-size: 13px; }
.footer-bottom a { color: var(--ink-2); }
.footer-bottom a:hover { color: var(--gold-2); }

/* ---------- Cart drawer ---------- */
.drawer-overlay { position: fixed; inset: 0; z-index: 90; background: rgba(5,5,5,.6); backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity .3s; }
.drawer-overlay.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 95; width: min(440px, 92vw);
  background: var(--bg-2); border-left: 1px solid var(--line-2);
  transform: translateX(100%); transition: transform .38s cubic-bezier(.2,.7,.2,1);
  display: flex; flex-direction: column;
}
.drawer.open { transform: none; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.drawer-head h3 { font-size: 18px; }
.drawer-body { flex: 1; overflow-y: auto; padding: 12px 24px; }
.drawer-item { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.drawer-item img { width: 72px; height: 72px; object-fit: cover; border-radius: var(--radius-sm); border: 1px solid var(--line); }
.drawer-item .di-name { font-weight: 700; font-size: 14px; line-height: 1.3; }
.drawer-item .di-meta { color: var(--muted); font-size: 12px; }
.drawer-item .di-price { color: var(--gold-2); font-weight: 800; font-size: 14px; }
.drawer-qty { display: inline-flex; align-items: center; gap: 8px; margin-top: 6px; }
.drawer-qty button { width: 24px; height: 24px; border-radius: var(--radius-sm); background: var(--surface-2); border: 1px solid var(--line-2); font-size: 14px; line-height: 1; }
.drawer-qty span { min-width: 20px; text-align: center; font-weight: 700; font-size: 13px; }
.drawer-foot { padding: 22px 26px; border-top: 1px solid var(--line); background: var(--surface); }
.drawer-total { display: flex; justify-content: space-between; font-weight: 800; font-size: 17px; margin-bottom: 16px; }
.drawer-foot .btn { margin-bottom: 8px; }

/* ---------- Toast ---------- */
.toast-wrap { position: fixed; top: 20px; right: 20px; z-index: 120; display: flex; flex-direction: column; gap: 10px; }
.toast {
  background: var(--surface-2); border: 1px solid var(--line-2); border-left: 3px solid var(--gold);
  color: var(--ink); padding: 16px 20px; border-radius: var(--radius); font-size: 14px; font-weight: 600;
  box-shadow: var(--shadow); animation: toastIn .35s cubic-bezier(.2,.7,.2,1);
  max-width: 340px;
}
.toast.error { border-left-color: var(--red); }
.toast.success { border-left-color: var(--green); }
@keyframes toastIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: none; } }
.toast.out { opacity: 0; transform: translateX(20px); transition: all .3s; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Page hero ---------- */
.page-hero { padding: 76px 0 32px; position: relative; overflow: hidden; }
.page-hero::before {
  content: ""; position: absolute; top: -160px; left: 50%; translate: -50% 0;
  width: 720px; height: 320px; pointer-events: none;
  background: radial-gradient(closest-side, rgba(249,115,22,.14), transparent 70%);
}
.page-hero .container { position: relative; }
.page-hero h1 { font-size: clamp(36px, 5vw, 56px); font-family: var(--font-serif); }
.page-hero p { color: var(--muted); margin-top: 10px; max-width: 640px; }
.crumb { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.crumb a:hover { color: var(--gold-2); }

/* ---------- Product detail ---------- */
.pd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.pd-media { position: sticky; top: calc(var(--header-h) + 20px); }
.pd-main-img { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 1/1; background: #15151a; }
.pd-main-img img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumbs { display: flex; gap: 12px; margin-top: 14px; overflow-x: auto; }
.pd-thumb { width: 80px; height: 80px; border-radius: var(--radius-sm); overflow: hidden; border: 2px solid transparent; cursor: pointer; opacity: .7; transition: opacity .2s, border-color .2s; flex: none; }
.pd-thumb.active { border-color: var(--gold); opacity: 1; }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-title { font-size: clamp(28px, 3.4vw, 40px); font-family: var(--font-serif); line-height: 1.1; }
.pd-cat { margin-top: 14px; }
.pd-price { margin: 22px 0 8px; }
.pd-price .price { font-size: 32px; }
.pd-status { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; margin: 8px 0 22px; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); }
.dot.red { background: var(--red); }
.dot.blue { background: var(--blue); }
.pd-desc { color: var(--ink-2); font-size: 15px; margin: 20px 0 26px; line-height: 1.8; white-space: pre-line; }
.qty-select { display: inline-flex; align-items: center; border: 1px solid var(--line-2); border-radius: var(--radius-sm); overflow: hidden; }
.qty-select button { width: 42px; height: 44px; font-size: 18px; color: var(--ink-2); background: var(--surface); }
.qty-select button:hover { color: var(--gold-2); }
.qty-select span { width: 44px; text-align: center; font-weight: 800; }
.pd-cta { display: flex; gap: 14px; margin: 24px 0; flex-wrap: wrap; }
.pd-cta .btn-gold { flex: 1; min-width: 200px; }
.pd-meta { border-top: 1px solid var(--line); margin-top: 24px; padding-top: 22px; display: grid; gap: 14px; }
.pd-meta .row { display: flex; justify-content: space-between; font-size: 14px; color: var(--muted); }
.pd-meta .row b { color: var(--ink-2); font-weight: 600; }
.share-row { display: flex; gap: 12px; margin-top: 20px; }
.share-row a { width: 40px; height: 40px; border-radius: var(--radius-sm); border: 1px solid var(--line-2); display: flex; align-items: center; justify-content: center; font-size: 15px; transition: all .2s; }
.share-row a:hover { border-color: var(--gold); color: var(--gold-2); transform: translateY(-2px); }

/* ---------- Cart page ---------- */
.cart-page { display: grid; grid-template-columns: 1.6fr 1fr; gap: 44px; align-items: start; }
.cart-line { display: grid; grid-template-columns: 90px 1fr auto; gap: 20px; align-items: center; padding: 22px 0; border-bottom: 1px solid var(--line); }
.cart-line img { width: 90px; height: 90px; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--line); }
.cart-line .cl-info a { font-weight: 700; font-size: 14.5px; }
.cart-line .cl-info a:hover { color: var(--gold-2); }
.cart-line .cl-meta { color: var(--muted); font-size: 12.5px; margin-top: 3px; }
.cart-line .cl-right { text-align: right; }
.cart-line .cl-price { font-weight: 800; color: var(--gold-2); font-size: 15px; }
.cart-line .cl-remove { color: var(--muted); font-size: 12.5px; margin-top: 6px; }
.cart-line .cl-remove:hover { color: var(--red); }
.summary-card { background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--radius); padding: 28px; position: sticky; top: calc(var(--header-h) + 20px); }
.summary-row { display: flex; justify-content: space-between; padding: 9px 0; font-size: 14px; color: var(--ink-2); }
.summary-row.total { border-top: 1px solid var(--line-2); margin-top: 12px; padding-top: 18px; font-size: 18px; color: var(--ink); font-weight: 800; }
.coupon-box { display: flex; gap: 10px; margin: 16px 0; }
.coupon-box input { flex: 1; }
.coupon-applied { background: var(--gold-soft); color: var(--gold-2); border-radius: var(--radius-sm); padding: 9px 12px; font-size: 13px; font-weight: 700; display: flex; justify-content: space-between; align-items: center; margin: 10px 0; }

/* ---------- Forms / auth ---------- */
.form-card { max-width: 440px; margin: 30px auto; background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--radius); padding: 38px; }
.form-card h1 { font-size: 28px; font-family: var(--font-serif); }
.form-field { margin-bottom: 20px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-error { background: rgba(255,92,92,.1); border: 1px solid rgba(255,92,92,.35); color: var(--red); padding: 14px 16px; border-radius: var(--radius-sm); font-size: 13.5px; margin-bottom: 20px; }
.form-note { color: var(--muted); font-size: 13.5px; margin-top: 16px; text-align: center; }
.form-note a { color: var(--gold-2); font-weight: 700; }

/* ---------- Account ---------- */
.account-grid { display: grid; grid-template-columns: 260px 1fr; gap: 38px; align-items: start; }
.acc-nav { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.acc-nav a { display: block; padding: 16px 22px; font-size: 14px; font-weight: 600; color: var(--ink-2); border-bottom: 1px solid var(--line); }
.acc-nav a:hover, .acc-nav a.active { color: var(--gold-2); background: var(--gold-soft); }

/* ---------- Tables ---------- */
.table { width: 100%; border-collapse: collapse; font-size: 14px; }
.table th { text-align: left; font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); padding: 14px 16px; border-bottom: 1px solid var(--line-2); }
.table td { padding: 16px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.table tr:hover td { background: rgba(255,255,255,.02); }
.table img.mini { width: 46px; height: 46px; object-fit: cover; border-radius: var(--radius-sm); border: 1px solid var(--line); }

/* ---------- Checkout ---------- */
.checkout-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; align-items: start; }
.step-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; margin-bottom: 18px; }
.step-card h3 { font-size: 18px; margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.step-num { width: 28px; height: 28px; border-radius: var(--radius-sm); background: var(--gold-soft); color: var(--gold-2); font-size: 14px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.pay-option { border: 1px solid var(--line-2); border-radius: var(--radius-sm); padding: 18px; margin-bottom: 12px; cursor: pointer; display: flex; gap: 16px; align-items: center; transition: border-color .2s, background .2s; }
.pay-option:hover { border-color: var(--gold); }
.pay-option.selected { border-color: var(--gold); background: var(--gold-soft); }
.pay-option input { width: auto; }
.pay-option b { display: block; }
.pay-option span { color: var(--muted); font-size: 13.5px; }

/* ---------- Empty states ---------- */
.empty { text-align: center; padding: 84px 20px; }
.empty .ico { font-size: 64px; margin-bottom: 20px; opacity: .7; }
.empty h3 { font-size: 28px; margin-bottom: 10px; }
.empty p { color: var(--muted); margin-bottom: 22px; }

/* ---------- Admin ---------- */
.admin-body { background: #0d0d10; }
.admin-wrap { max-width: 1300px; margin: 0 auto; padding: 28px; }
.admin-top { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 28px; flex-wrap: wrap; }
.admin-top h1 { font-size: 26px; }
.admin-side { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; margin-bottom: 26px; display: flex; gap: 6px; flex-wrap: wrap; }
.admin-side a { padding: 10px 16px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 700; color: var(--ink-2); }
.admin-side a:hover, .admin-side a.active { background: var(--gold-soft); color: var(--gold-2); }
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 18px; margin-bottom: 28px; }
.stat-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.stat-card b { font-size: 28px; display: block; color: var(--gold-2); font-family: var(--font-display); }
.stat-card span { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; margin-bottom: 22px; }
.panel h3 { font-size: 17px; margin-bottom: 16px; }
.toolbar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }
.toolbar input, .toolbar select { width: auto; }
.status-tag { font-size: 11.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: 5px 12px; border-radius: var(--radius-sm); }
.st-live { background: rgba(110,216,144,.14); color: var(--green); }
.st-draft { background: rgba(255,255,255,.08); color: var(--muted); }
.st-pending { background: rgba(249,115,22,.18); color: var(--gold-2); }
.st-confirmed { background: rgba(94,196,255,.12); color: var(--blue); }
.st-paid { background: rgba(110,216,144,.14); color: var(--green); }
.st-shipped { background: rgba(196,181,253,.16); color: #d7c4ff; }
.st-cancelled { background: rgba(255,92,92,.12); color: var(--red); }
.admin-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.admin-actions .btn { padding: 9px 16px; font-size: 12.5px; }

/* ---------- Category tiles (gradient fallback) ---------- */
.cat-tile .cat-bg { position: absolute; inset: 0; z-index: 0; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.cat-tile:hover .cat-bg { transform: scale(1.08); }
.cat-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,6,6,.88), rgba(6,6,6,.08) 60%); z-index: 1; }
.cat-gadgets .cat-bg { background: radial-gradient(circle at 30% 20%, rgba(110,231,255,.5), transparent 60%), linear-gradient(150deg, #123 0%, #06131c 60%, #0b0b0b 100%); }
.cat-jewelry .cat-bg { background: radial-gradient(circle at 70% 15%, rgba(243,210,122,.55), transparent 55%), linear-gradient(150deg, #2a2009 0%, #191208 60%, #0b0b0b 100%); }
.cat-shoes .cat-bg { background: radial-gradient(circle at 25% 75%, rgba(255,159,122,.5), transparent 55%), linear-gradient(150deg, #2a1208 0%, #190d07 60%, #0b0b0b 100%); }
.cat-fragrances .cat-bg { background: radial-gradient(circle at 75% 70%, rgba(215,169,255,.45), transparent 55%), linear-gradient(150deg, #1d1030 0%, #120a1c 60%, #0b0b0b 100%); }
.cat-generic .cat-bg { background: radial-gradient(circle at 40% 30%, rgba(249,115,22,.4), transparent 55%), linear-gradient(150deg, #241609 0%, #160e06 60%, #0b0b0b 100%); }
.cat-tile-body p { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.cat-glyph {
  position: absolute; top: 18px; right: 18px; z-index: 2; width: 54px; height: 54px; border-radius: 16px;
  background: var(--gold-soft); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border: 1px solid rgba(249,115,22,.4);
  display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--gold-2);
  box-shadow: 0 10px 26px rgba(0,0,0,.35);
}
.cat-glyph i { width: 24px; height: 24px; }

.brand-visual { background: radial-gradient(circle at 50% 40%, rgba(249,115,22,.2), transparent 60%), var(--surface); display: flex; align-items: center; justify-content: center; padding: 44px; }
.brand-visual img { width: min(260px, 70%); border-radius: 24px; box-shadow: 0 30px 80px rgba(0,0,0,.6); }

/* ---------- Reviews ---------- */
.review-summary { display: flex; align-items: center; gap: 22px; margin-bottom: 30px; padding: 22px 26px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.rs-score { display: flex; align-items: center; gap: 12px; }
.rs-score b { font-size: 36px; font-family: var(--font-display); color: var(--gold-2); }
.rs-stars { font-size: 16px; }
.rs-count { color: var(--muted); font-size: 14px; }
.stars { display: inline-flex; gap: 2px; }
.stars .star-on { color: var(--gold); }
.stars .star-off { color: rgba(255,255,255,.18); }
.review-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; }
.review-card { background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--radius); padding: 26px; transition: transform .3s, border-color .3s, box-shadow .3s; }
.review-card:hover { transform: translateY(-6px); border-color: rgba(249,115,22,.4); box-shadow: 0 20px 56px rgba(0,0,0,.5); }
.review-top { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.review-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--gold); color: var(--bg); font-weight: 800; font-size: 16px; display: flex; align-items: center; justify-content: center; flex: none; }
.review-name { font-weight: 700; font-size: 15px; }
.review-city { color: var(--muted); font-weight: 500; font-size: 13px; }
.review-title { font-size: 16px; margin-bottom: 8px; }
.review-body { color: var(--ink-2); font-size: 14px; line-height: 1.7; }
.review-date { color: var(--muted); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; margin-top: 16px; }

/* ---------- Modal ---------- */
.modal-overlay { position: fixed; inset: 0; z-index: 110; background: rgba(5,5,5,.75); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; padding: 20px; }
.modal { position: relative; width: 100%; max-width: 520px; max-height: 90vh; overflow-y: auto; background: var(--bg-2); border: 1px solid var(--line-2); border-radius: var(--radius); padding: 32px; animation: modalIn .35s cubic-bezier(.2,.7,.2,1); }
@keyframes modalIn { from { opacity: 0; transform: translateY(24px) scale(.96); } to { opacity: 1; transform: none; } }
.modal-close { position: absolute; top: 16px; right: 16px; width: 38px; height: 38px; border-radius: var(--radius-sm); background: var(--surface-2); display: flex; align-items: center; justify-content: center; color: var(--ink-2); }
.modal-close:hover { color: var(--gold-2); }

/* ---------- Star picker ---------- */
.star-picker { display: flex; gap: 6px; }
.sp-star { font-size: 24px; color: rgba(255,255,255,.18); transition: transform .15s, color .15s; }
.sp-star:hover { transform: scale(1.2); }
.sp-star.on { color: var(--gold); }

/* ---------- Size picker ---------- */
.pd-sizes { margin: 22px 0 8px; }
.pd-size-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 12px; flex-wrap: wrap; }
.pd-size-label { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.pd-size-guide {
  font-size: 12.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  color: var(--gold-2); border: 1px solid rgba(249,115,22,.4); border-radius: var(--radius-sm); padding: 6px 14px;
  display: inline-flex; align-items: center; gap: 7px; transition: border-color .2s, background .2s;
}
.pd-size-guide:hover { border-color: var(--gold); background: var(--gold-soft); }
.pd-size-guide.open .ic { transform: rotate(90deg); }
.pd-size-guide .ic { transition: transform .2s; }
.pd-size-guide-table { margin-top: 14px; border: 1px solid var(--line-2); border-radius: var(--radius-sm); padding: 10px; background: var(--surface); }
.pd-size-guide-table .table th { font-size: 10.5px; }
.pd-size-guide-table .table td { padding: 9px 12px; }
.pd-size-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.pd-size {
  min-width: 50px; height: 46px; padding: 0 16px; border-radius: var(--radius-sm);
  border: 1px solid var(--line-2); background: var(--surface); color: var(--ink-2);
  font-weight: 700; font-size: 14.5px; display: inline-flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.pd-size:hover { border-color: var(--gold); color: var(--gold-2); }
.pd-size.active { background: var(--gold); border-color: var(--gold); color: #14100a; }
.di-size {
  display: inline-block; vertical-align: middle; margin-left: 4px; padding: 1px 8px;
  border: 1px solid rgba(249,115,22,.5); color: var(--gold-2); border-radius: var(--radius-sm);
  font-size: 11px; font-weight: 800; letter-spacing: .04em;
}

/* ---------- Shop All ---------- */
.shop-form { margin-top: 20px; }
.shop-search-row { display: flex; gap: 10px; max-width: 560px; }
.shop-search-row input { flex: 1; }
.shop-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.shop-tab-small { position: relative; cursor: pointer; }
.shop-tab-small input { position: absolute; opacity: 0; pointer-events: none; }
.shop-tab-small span {
  display: inline-flex; align-items: center; padding: 9px 18px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--line-2); color: var(--ink-2);
  font-size: 13px; font-weight: 600; letter-spacing: .02em;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.shop-tab-small:hover span { border-color: rgba(249,115,22,.5); color: #fff; }
.shop-tab-small input:checked + span { background: var(--gold); border-color: var(--gold); color: #14100a; }
.shop-controls { display: flex; align-items: center; gap: 20px; margin-top: 16px; flex-wrap: wrap; }
.shop-check { display: inline-flex; align-items: center; cursor: pointer; }
.shop-check input { position: absolute; opacity: 0; pointer-events: none; }
.shop-check span {
  position: relative; display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 16px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--line-2);
  color: var(--ink-2); font-size: 13px; font-weight: 600; letter-spacing: .02em;
  transition: background .25s, border-color .25s, color .25s;
}
.shop-check span::before {
  content: ""; position: relative; width: 32px; height: 18px; border-radius: 999px; flex: none;
  background: var(--surface-2); border: 1px solid var(--line-2);
  transition: background .25s, border-color .25s;
}
.shop-check span::after {
  content: ""; position: absolute; left: 21px; top: 50%; translate: 0 -50%;
  width: 12px; height: 12px; border-radius: 50%;
  background: #8b8b96; transition: background .25s, left .25s cubic-bezier(.2,.7,.2,1);
}
.shop-check:hover span { border-color: rgba(249,115,22,.5); }
.shop-check input:checked + span { border-color: rgba(249,115,22,.55); background: var(--gold-soft); color: var(--gold-2); }
.shop-check input:checked + span::before { background: var(--gold); border-color: var(--gold); }
.shop-check input:checked + span::after { background: #1a1206; left: 39px; }
.shop-check .switch-label { margin-right: 0; }
.shop-select { background: var(--surface); border: 1px solid var(--line-2); color: var(--ink); border-radius: var(--radius-sm); padding: 10px 14px; font-size: 13.5px; }
.shop-select:focus { outline: none; border-color: var(--gold); }

/* ---------- Testimonials ---------- */
.testimonials-wrap { position: relative; overflow: hidden; }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 26px; }
.testimonial-card {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.005)), var(--surface);
  border: 1px solid var(--line-2); border-radius: 20px;
  padding: 26px 26px 24px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .35s, box-shadow .35s;
}
.testimonial-card::before {
  content: ""; position: absolute; top: 0; left: 24px; right: 24px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .0; transition: opacity .35s;
}
.testimonial-card:hover {
  transform: translateY(-7px); border-color: rgba(249,115,22,.45);
  box-shadow: 0 26px 70px rgba(0,0,0,.5);
}
.testimonial-card:hover::before { opacity: 1; }
.t-quote {
  font-family: var(--font-serif); font-size: 88px; line-height: .6; color: var(--gold);
  opacity: .85; display: block; height: 36px; user-select: none;
}
.testimonial-stars { color: var(--gold); font-size: 14px; letter-spacing: 3px; margin-top: 6px; }
.testimonial-stars .off { color: rgba(255,255,255,.18); }
.testimonial-card blockquote { margin: 0; font-size: 15px; line-height: 1.7; color: var(--ink-2); flex: 1; }
.testimonial-card figcaption {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line);
}
.t-avat {
  flex: none; width: 46px; height: 46px; border-radius: 50%; overflow: hidden;
  border: 2px solid rgba(249,115,22,.5); padding: 0;
}
.t-avat img { width: 100%; height: 100%; object-fit: cover; }
.t-avat.ini {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #1a1206; font-weight: 800; font-size: 18px; font-family: var(--font-display);
}
.t-who { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; }
.testimonial-name { font-size: 14.5px; color: #fff; }
.testimonial-loc { font-size: 12.5px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .values { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pd-grid { grid-template-columns: 1fr; gap: 36px; }
  .pd-media { position: static; }
  .cart-page, .checkout-grid { grid-template-columns: 1fr; }
  .duo { grid-template-columns: 1fr; gap: 40px; }
  .account-grid { grid-template-columns: 1fr; }
  .summary-card { position: static; }
}

@media (max-width: 820px) {
  .nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .brand-tag { display: none; }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .review-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .hero-title { font-size: clamp(40px, 8vw, 72px); }
  .hero-sub { font-size: clamp(14px, 2vw, 17px); }
  .footer-grid { gap: 32px; }
  .duo { gap: 32px; }
  .pd-grid { gap: 28px; }
  .section { padding: 80px 0; }
}

@media (max-width: 640px) {
  :root { --header-h: 58px; }
  .announce { font-size: 10px; letter-spacing: .14em; padding: 7px 12px; text-align: center; white-space: normal; line-height: 1.5; }
  .header-inner { gap: 12px; }
  .brand-logo { height: 40px; }
  .brand-name { font-size: 18px; letter-spacing: .1em; }
  .icon-btn { width: 38px; height: 38px; font-size: 16px; }
  .badge { min-width: 16px; height: 16px; font-size: 10px; }
  .hero-inner { min-height: min(640px, 88vh); padding: 50px 16px 70px; }
  .hero-kicker { font-size: 10.5px; letter-spacing: .4em; margin-bottom: 18px; }
  .hero-title { font-size: clamp(36px, 10vw, 56px); line-height: .96; }
  .hero-sub { font-size: 14px; margin: 20px 0 30px; line-height: 1.65; }
  .hero-cta { flex-direction: column; gap: 12px; }
  .hero-cta .btn { width: 100%; }
  .hero-stats { gap: 24px; margin-top: 40px; }
  .hero-stat b { font-size: 24px; }
  .hero-stat span { font-size: 10.5px; letter-spacing: .14em; }
  .hero-bg {
    background-image:
      linear-gradient(180deg, rgba(8,8,10,.74), rgba(8,8,10,.32) 45%, rgba(8,8,10,.82)),
      url('/public/images/hero-wave-mobile.jpg');
  }
  .section { padding: 60px 0; }
  .section-sm { padding: 40px 0; }
  .section-head { margin-bottom: 32px; }
  .section-title { font-size: clamp(22px, 5vw, 32px); }
  .section-sub { font-size: 13.5px; }
  .container { padding: 0 16px; }
  .cat-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .cat-tile { aspect-ratio: 1/1.2; }
  .cat-tile-body { padding: 14px; }
  .cat-tile-body h3 { font-size: 16px; }
  .cat-tile-body p { font-size: 10px; letter-spacing: .1em; margin-top: 4px; }
  .cat-glyph { width: 40px; height: 40px; border-radius: 10px; font-size: 18px; top: 12px; right: 12px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-body { padding: 12px 12px 14px; }
  .product-name { font-size: 13px; min-height: 36px; margin: 6px 0 8px; }
  .product-cat { font-size: 9.5px; }
  .price { font-size: 15px; }
  .price-compare { font-size: 11.5px; }
  .product-cta { margin-top: 10px; gap: 6px; }
  .product-cta .btn { padding: 9px 8px; font-size: 11.5px; }
  .pill { font-size: 9.5px; padding: 4px 8px; }
  .wish-btn { width: 32px; height: 32px; font-size: 14px; top: 8px; right: 8px; }
  .values { grid-template-columns: 1fr; gap: 12px; }
  .value-card { padding: 22px 20px; }
  .value-card .ico { font-size: 24px; margin-bottom: 12px; }
  .value-card h4 { font-size: 15px; }
  .value-card p { font-size: 13px; }
  .duo { gap: 24px; }
  .duo-visual img { aspect-ratio: 16/10; }
  .feature-list { gap: 14px; margin-top: 20px; }
  .feature-list .ico { width: 26px; height: 26px; font-size: 13px; }
  .feature-list li { gap: 12px; font-size: 13.5px; }
  .footer { padding: 48px 0 28px; margin-top: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer h5 { font-size: 11px; margin-bottom: 14px; }
  .footer a.f-link { font-size: 13.5px; padding: 4px 0; }
  .footer .f-brand { font-size: 20px; }
  .footer .f-slogan { font-size: 12.5px; }
  .footer-bottom { flex-direction: column; gap: 8px; font-size: 12px; margin-top: 28px; padding-top: 18px; }
  .marquee { padding: 14px 0; }
  .marquee span { font-size: 10.5px; letter-spacing: .28em; }
  .quickbar { right: 12px; bottom: 12px; gap: 8px; }
  .quickbar-toggle { width: 48px; height: 48px; font-size: 20px; }
  .qb-btn { width: 44px; height: 44px; font-size: 17px; }
  .qb-btn .tip { display: none; }
  .pd-grid { gap: 24px; }
  .pd-title { font-size: clamp(22px, 5vw, 30px); }
  .pd-price .price { font-size: 26px; }
  .pd-desc { font-size: 14px; margin: 16px 0 20px; line-height: 1.7; }
  .pd-cta { flex-direction: column; gap: 10px; }
  .pd-cta .btn-gold { min-width: auto; }
  .pd-thumb { width: 64px; height: 64px; }
  .pd-thumbs { gap: 8px; }
  .pd-sizes { margin: 16px 0 4px; }
  .pd-size { min-width: 42px; height: 40px; padding: 0 12px; font-size: 13px; }
  .pd-size-grid { gap: 8px; }
  .cart-line { grid-template-columns: 70px 1fr auto; gap: 12px; padding: 16px 0; }
  .cart-line img { width: 70px; height: 70px; }
  .cart-line .cl-info a { font-size: 13.5px; }
  .cart-line .cl-meta { font-size: 11.5px; }
  .cart-line .cl-price { font-size: 14px; }
  .summary-card { padding: 20px; }
  .summary-row { font-size: 13px; }
  .summary-row.total { font-size: 16px; }
  .coupon-box { flex-direction: column; gap: 8px; }
  .form-card { padding: 24px 20px; margin: 20px 12px; }
  .form-card h1 { font-size: 22px; }
  .form-grid { grid-template-columns: 1fr; gap: 12px; }
  .form-field { margin-bottom: 14px; }
  input, select, textarea { font-size: 14px; padding: 12px 14px; }
  .checkout-grid { gap: 28px; }
  .step-card { padding: 18px; }
  .step-card h3 { font-size: 16px; }
  .pay-option { padding: 14px; gap: 12px; }
  .review-summary { padding: 16px 18px; gap: 14px; flex-wrap: wrap; }
  .rs-score b { font-size: 28px; }
  .review-grid { grid-template-columns: 1fr; gap: 14px; }
  .review-card { padding: 18px; }
  .review-avatar { width: 40px; height: 40px; font-size: 14px; }
  .review-name { font-size: 14px; }
  .review-body { font-size: 13.5px; }
  .testimonial-grid { grid-template-columns: 1fr; gap: 14px; }
  .testimonial-card { padding: 20px 18px 18px; }
  .testimonial-card blockquote { font-size: 14px; }
  .testimonial-name { font-size: 14px; }
  .t-avat { width: 42px; height: 42px; }
  .page-hero { padding: 50px 0 22px; }
  .page-hero h1 { font-size: clamp(26px, 7vw, 38px); }
  .empty { padding: 56px 16px; }
  .empty .ico { font-size: 48px; }
  .empty h3 { font-size: 22px; }
  .modal { padding: 22px; margin: 12px; border-radius: var(--radius-sm); }
  .drawer { width: min(360px, 92vw); }
  .drawer-head { padding: 18px 18px; }
  .drawer-body { padding: 8px 18px; }
  .drawer-item { gap: 12px; padding: 12px 0; }
  .drawer-item img { width: 60px; height: 60px; }
  .drawer-item .di-name { font-size: 13px; }
  .drawer-item .di-price { font-size: 13px; }
  .drawer-foot { padding: 16px 18px; }
  .drawer-total { font-size: 15px; }
  .shop-form { margin-top: 14px; }
  .shop-search-row { flex-direction: column; gap: 8px; }
  .shop-tabs { gap: 6px; }
  .shop-tab-small span { padding: 7px 11px; font-size: 12.5px; }
  .shop-controls { gap: 12px; }
  .shop-check span { padding: 7px 12px; font-size: 12.5px; }
  .shop-check span::before { width: 30px; height: 17px; }
  .shop-check span::after { width: 11px; height: 11px; left: 17px; }
  .shop-check input:checked + span::after { left: 35px; }
  .shop-select { padding: 8px 10px; font-size: 12.5px; }
  .acc-nav a { padding: 12px 16px; font-size: 13.5px; }
  .admin-wrap { padding: 16px; }
  .admin-top h1 { font-size: 20px; }
  .admin-side { padding: 10px; gap: 4px; }
  .admin-side a { padding: 8px 12px; font-size: 12px; }
  .stat-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat-card { padding: 16px; }
  .stat-card b { font-size: 22px; }
  .panel { padding: 16px; }
  .table { font-size: 12.5px; }
  .table th { font-size: 10px; padding: 10px 8px; }
  .table td { padding: 10px 8px; }
  .table img.mini { width: 38px; height: 38px; }
  .admin-actions .btn { padding: 6px 10px; font-size: 11px; }
}

@media (max-width: 380px) {
  .product-grid { grid-template-columns: 1fr; gap: 14px; }
  .cat-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .cat-tile-body { padding: 10px; }
  .cat-tile-body h3 { font-size: 14px; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-stat { display: flex; align-items: center; gap: 10px; }
  .hero-stat b { font-size: 20px; }
  .hero-stat span { font-size: 10px; }
}

/* ---------- Mobile redesign ---------- */
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
* { -webkit-tap-highlight-color: transparent; }

@media (max-width: 640px) {
  body { padding-bottom: env(safe-area-inset-bottom); }

  /* spacing & rhythm */
  .section { padding: 48px 0; }
  .section-sm { padding: 28px 0; }
  .section-head { margin-bottom: 24px; }
  .section-kicker { font-size: 10px; letter-spacing: .32em; margin-bottom: 10px; }
  .section-title { font-size: clamp(20px, 6vw, 26px); }
  .section-sub { font-size: 13px; margin-top: 10px; line-height: 1.6; }

  /* hero — lighter, faster above the fold */
  .hero-inner { min-height: min(520px, 90vh); padding: 44px 18px 52px; }
  .hero-kicker { font-size: 9.5px; letter-spacing: .36em; margin-bottom: 14px; }
  .hero-title { font-size: clamp(31px, 9vw, 44px); line-height: 1; }
  .hero-sub { font-size: 13.5px; margin: 16px 0 24px; line-height: 1.65; max-width: 92%; }
  .hero-cta { gap: 10px; }
  .hero-cta .btn { padding: 15px 18px; font-size: 14px; }
  .hero-stats { gap: 20px; margin-top: 28px; }
  .hero-stat b { font-size: 21px; }
  .hero-stat span { font-size: 9.5px; letter-spacing: .12em; }

  /* product cards — compact, smaller media */
  .product-grid { gap: 10px; }
  .product-card { border-radius: 10px; }
  .product-card:active { transform: scale(.98); }
  .product-card:hover { transform: none; box-shadow: none; }
  .product-media { aspect-ratio: 4/5; }
  .product-body { padding: 10px 12px 12px; }
  .product-cat { font-size: 9px; letter-spacing: .18em; }
  .product-name { font-size: 12.5px; line-height: 1.25; min-height: 32px; margin: 5px 0 7px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .product-price { gap: 6px; }
  .price { font-size: 14.5px; }
  .price-compare { font-size: 11px; }
  .product-cta { margin-top: 8px; gap: 6px; }
  .product-cta .btn { padding: 9px 6px; font-size: 11px; }
  .wish-btn { width: 30px; height: 30px; font-size: 14px; top: 8px; right: 8px; }
  .product-badge { top: 8px; left: 8px; gap: 4px; }
  .pill { font-size: 8.5px; padding: 3px 7px; border-radius: 5px; letter-spacing: .06em; }
  .product-dots { bottom: 6px; }

  /* category tiles */
  .cat-grid { gap: 10px; }
  .cat-tile { border-radius: 10px; }
  .cat-tile-body { padding: 12px; }
  .cat-tile-body h3 { font-size: 15px; }
  .cat-tile-body p { font-size: 9px; letter-spacing: .08em; margin-top: 3px; }
  .cat-glyph { width: 34px; height: 34px; border-radius: 9px; font-size: 16px; top: 10px; right: 10px; }

  /* values strip */
  .values { gap: 10px; }
  .value-card { padding: 18px 16px; border-radius: 10px; }
  .value-card .ico { font-size: 20px; margin-bottom: 10px; }
  .value-card h4 { font-size: 14.5px; margin-bottom: 6px; }

  /* about / duo strip */
  .duo { gap: 18px; }
  .duo-visual { border-radius: 10px; }
  .duo-visual img { aspect-ratio: 16/10; }
  .feature-list { gap: 12px; margin-top: 18px; }
  .feature-list li { gap: 10px; font-size: 13px; }

  /* footer */
  .footer { padding: 40px 0 78px; margin-top: 24px; }
  .footer-bottom { gap: 6px; font-size: 11.5px; }

  /* marquee */
  .marquee span { letter-spacing: .22em; }

  /* shop page — scrollable tabs */
  .shop-tabs { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 4px; scrollbar-width: none; }
  .shop-tabs::-webkit-scrollbar { display: none; }
  .shop-tab-small { flex: none; }

  /* product detail */
  .pd-grid { gap: 18px; }
  .pd-title { font-size: clamp(20px, 6vw, 24px); }
  .pd-price { margin: 18px 0 6px; }
  .pd-price .price { font-size: 24px; }
  .pd-status { font-size: 12px; margin: 6px 0 18px; }
  .pd-desc { font-size: 13.5px; }
  .pd-cta { gap: 10px; margin: 18px 0; }
  .pd-cta .btn { min-height: 48px; font-size: 14px; }
  .qty-select button, .qty-select span { width: 46px; height: 46px; }
  .pd-thumb { width: 60px; height: 60px; }

  /* testimonial cards */
  .testimonial-card { padding: 20px 18px 18px; border-radius: 16px; }
  .testimonial-card blockquote { font-size: 13.5px; }
  .t-quote { font-size: 64px; height: 26px; }

  /* quickbar */
  .quickbar { right: 12px; bottom: calc(12px + env(safe-area-inset-bottom)); }
  .quickbar-toggle { width: 46px; height: 46px; border-radius: 14px; }
  .qb-btn { width: 42px; height: 42px; }

  /* toasts feel native */
  .toast-wrap { top: 12px; right: 12px; left: 12px; }
  .toast { max-width: none; font-size: 13px; padding: 14px 16px; }

  /* softer scroll animations on touch */
  .reveal { transform: none; transition: opacity .5s ease; }
}

@media (max-width: 380px) {
  .product-grid { gap: 12px; }
  .cat-grid { gap: 8px; }
  .hero-title { font-size: clamp(29px, 9vw, 38px); }
}

/* ---------- Quick contact widget ---------- */
.quickbar {
  position: fixed; right: 18px; bottom: 18px; z-index: 70;
}
.qb-tgl { position: absolute; opacity: 0; pointer-events: none; }

.qb-launcher {
  position: relative; z-index: 1;
  float: right;
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #1a1206;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 14px 34px rgba(249,115,22,.42), 0 4px 14px rgba(0,0,0,.45);
  cursor: pointer; transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s;
}
.qb-launcher:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(249,115,22,.5), 0 4px 14px rgba(0,0,0,.45); }
.qb-launcher:active { transform: scale(.94); }
.qb-launch-ic, .qb-close-ic { transition: opacity .18s, transform .25s; }
.qb-close-ic { display: none; }
.qb-tgl:checked ~ .qb-launcher .qb-launch-ic { display: none; }
.qb-tgl:checked ~ .qb-launcher .qb-close-ic { display: block; }
.qb-tgl:checked ~ .qb-launcher { background: linear-gradient(135deg, #2a2a31, #1c1c21); color: var(--ink-2); box-shadow: 0 14px 34px rgba(0,0,0,.5); }

.qb-panel {
  position: absolute; right: 0; bottom: calc(100% + 12px);
  width: 282px;
  background: rgba(20,20,25,.92); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.1); border-radius: 18px;
  box-shadow: 0 30px 70px rgba(0,0,0,.6);
  padding: 8px;
  opacity: 0; transform: translateY(14px) scale(.94); transform-origin: bottom right;
  pointer-events: none; transition: opacity .26s ease, transform .3s cubic-bezier(.2,.7,.2,1);
}
.qb-tgl:checked ~ .qb-panel { opacity: 1; transform: none; pointer-events: auto; }

.qb-head { display: flex; align-items: center; gap: 10px; padding: 8px 10px 10px; border-bottom: 1px solid var(--line); margin-bottom: 6px; }
.qb-orb { width: 38px; height: 38px; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--gold-2); background: var(--gold-soft); flex: none; }
.qb-title { display: flex; flex-direction: column; line-height: 1.2; }
.qb-title b { font-family: var(--font-display); font-size: 13px; letter-spacing: .14em; color: var(--ink-2); }
.qb-title em { font-style: normal; font-size: 10.5px; color: var(--muted); display: flex; align-items: center; gap: 6px; margin-top: 3px; }
.qb-title em::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px rgba(110,216,144,.18); }

.qb-links { display: flex; flex-direction: column; gap: 2px; }
.qb-link {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; border-radius: 10px;
  color: var(--ink-2); font-size: 12.5px; font-weight: 600;
  transition: background .15s, transform .15s;
}
.qb-link:hover { background: rgba(255,255,255,.06); }
.qb-link:active { transform: scale(.98); }
.qb-ic { width: 30px; height: 30px; border-radius: 9px; display: flex; align-items: center; justify-content: center; flex: none; color: #fff; }
.qb-wa .qb-ic { background: #25d366; }
.qb-fb .qb-ic { background: #1877f2; }
.qb-ig .qb-ic { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.qb-mail .qb-ic { background: var(--gold); }
.qb-call .qb-ic { background: #2a2a31; }
.qb-link > span:nth-child(2) { flex: 1; }
.qb-arr { color: var(--muted); opacity: .7; }
.qb-link:hover .qb-arr { color: var(--gold-2); opacity: 1; }

@media (max-width: 640px) {
  .quickbar { right: 10px; bottom: calc(10px + env(safe-area-inset-bottom)); }
  .qb-launcher { width: 52px; height: 52px; }
  .qb-panel { width: min(264px, calc(100vw - 32px)); bottom: calc(100% + 10px); }
  .qb-links { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; }
  .qb-link { flex-direction: column; padding: 6px 0 7px; gap: 4px; }
  .qb-link > span:nth-child(2), .qb-arr { display: none; }
  .qb-ic { width: 38px; height: 38px; border-radius: 11px; }
}

/* The hidden attribute must always win over any display style */
[hidden] { display: none !important; }

/* ==================================================================
   HOME PAGE REDESIGN (v18)
   Same concept, completely new editorial treatment.
   Scoped to homepage-only classes so other pages are untouched.
   ================================================================== */

/* ---------- Shared homepage bits ---------- */
.hm-orb { position: absolute; border-radius: 50%; z-index: 1; pointer-events: none; filter: blur(90px); }
.hm-orb-a { width: 460px; height: 460px; top: -130px; left: -170px; background: rgba(249,115,22,.34); }
.hm-orb-b { width: 420px; height: 420px; bottom: 2%; right: -170px; background: rgba(234,88,12,.26); }
.hm-orb-c { width: 520px; height: 520px; top: -220px; left: -180px; background: rgba(249,115,22,.22); }
.hm-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px rgba(110,216,144,.18); flex: none; }

/* ---------- Section header ---------- */
.hm-section { padding: 96px 0; }
.hm-head { display: flex; align-items: flex-end; gap: 22px; margin-bottom: 44px; }
.hm-head-num {
  font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: .24em;
  color: var(--gold-2); background: var(--gold-soft); border: 1px solid rgba(249,115,22,.25);
  padding: 7px 12px; border-radius: 999px; flex: none; transform: translateY(-6px);
}
.hm-head-title { flex: 1; min-width: 0; }
.hm-head-title .section-sub { margin-top: 10px; }
.hm-headlink {
  display: inline-flex; align-items: center; gap: 9px; flex: none;
  font-size: 12.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--line-2); padding: 11px 18px; border-radius: 999px;
  transition: color .2s, border-color .2s, background .2s, transform .2s;
}
.hm-headlink .ic { width: 15px; height: 15px; transition: transform .25s; }
.hm-headlink:hover { color: var(--gold-2); border-color: rgba(249,115,22,.5); background: var(--gold-soft); }
.hm-headlink:hover .ic { transform: translateX(3px); }

/* ---------- Hero ---------- */
.hm-ghost {
  position: absolute; z-index: 1; pointer-events: none; user-select: none;
  right: -3%; bottom: 4%;
  font-family: var(--font-serif); font-weight: 600; white-space: nowrap;
  font-size: clamp(110px, 20vw, 250px); line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(249,115,22,.16);
  opacity: .85;
}
.hero-inner { padding-top: 76px; padding-bottom: 96px; }
.hm-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: .34em; text-transform: uppercase;
  color: var(--ink-2); background: rgba(16,16,20,.5); border: 1px solid var(--line-2);
  padding: 10px 16px; border-radius: 999px; backdrop-filter: blur(10px);
  width: max-content; margin-bottom: 30px;
}
.hm-open {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--green); border-left: 1px solid var(--line-2); padding-left: 12px;
}
.hm-open::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.hm-hero-title {
  font-family: var(--font-serif); font-weight: 600;
  font-size: clamp(56px, 8.6vw, 98px); line-height: .98; letter-spacing: -.02em;
  text-transform: uppercase; max-width: 860px;
}
.hm-hero-title .hm-line { display: block; }
.hm-hero-title .hm-gold {
  font-style: italic;
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-left: clamp(20px, 5vw, 70px);
}
.hm-hero-sub {
  color: var(--ink-2); font-size: clamp(15px, 2vw, 18px); line-height: 1.75; max-width: 560px; margin: 28px 0 36px;
}
.hm-hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hm-hero-glass {
  display: flex; align-items: stretch; gap: 0; margin-top: 60px;
  width: max-content; max-width: 100%;
  background: rgba(16,16,20,.55); border: 1px solid var(--line-2);
  border-radius: 18px; backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
  position: relative;
}
.hm-hero-glass::before {
  content: ""; position: absolute; top: 0; left: 22px; right: 22px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: .6;
}
.hm-stat { display: flex; flex-direction: column; gap: 5px; padding: 22px 34px; position: relative; }
.hm-stat + .hm-stat::before {
  content: ""; position: absolute; left: 0; top: 50%; translate: 0 -50%;
  width: 1px; height: 34px; background: var(--line-2);
}
.hm-stat b { font-family: var(--font-display); font-size: 26px; color: var(--gold-2); line-height: 1; }
.hm-stat span { font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.hm-scroll {
  position: absolute; right: 26px; bottom: 24px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 9.5px; letter-spacing: .34em; text-transform: uppercase; color: var(--muted);
}
.hm-scroll::after { content: ""; width: 1px; height: 44px; background: linear-gradient(var(--gold), transparent); animation: hmscroll 1.8s ease-in-out infinite; }
@keyframes hmscroll { 0%,100% { transform: scaleY(.4); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } }

/* ---------- Marquee ---------- */
.hm-marquee { padding: 16px 0; }
.hm-marquee span { font-size: 11.5px; letter-spacing: .3em; display: inline-block; }
.hm-spark { font-style: normal; color: var(--gold); font-size: 9px; padding: 0 10px; vertical-align: middle; }

/* ---------- Category tiles ---------- */
.hm-catgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.hm-cattile {
  position: relative; display: flex; flex-direction: column; overflow: hidden;
  aspect-ratio: 3/4.1; border-radius: 18px; border: 1px solid var(--line);
  background: var(--surface); isolation: isolate;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), border-color .4s, box-shadow .4s;
}
.hm-cattile::before {
  content: ""; position: absolute; top: 0; left: 20px; right: 20px; height: 1px; z-index: 3;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity .4s;
}
.hm-cattile:hover { transform: translateY(-8px); border-color: rgba(249,115,22,.45); box-shadow: var(--shadow); }
.hm-cattile:hover::before { opacity: 1; }
.hm-catcover {
  position: absolute; inset: 0; z-index: -1; background-size: cover; background-position: center;
  background-image: var(--hc, linear-gradient(160deg, #232329, #0d0d11));
  transition: transform .9s cubic-bezier(.2,.7,.2,1);
}
.hm-cattile:hover .hm-catcover { transform: scale(1.08); }
.hm-catglow {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(to top, rgba(8,8,10,.92) 20%, rgba(8,8,10,.25) 60%, rgba(8,8,10,.35) 100%);
}
.hm-catnum {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  font-family: var(--font-display); font-size: 11px; letter-spacing: .22em; font-weight: 700;
  color: var(--ink-2); background: rgba(10,10,12,.55); border: 1px solid var(--line-2);
  padding: 5px 10px; border-radius: 999px; backdrop-filter: blur(6px);
}
.hm-catic {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  width: 44px; height: 44px; border-radius: 13px;
  background: rgba(10,10,12,.55); border: 1px solid var(--line-2);
  backdrop-filter: blur(8px); color: var(--gold-2);
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.hm-catic .ic { width: 20px; height: 20px; }
.hm-catbody {
  position: relative; z-index: 2; margin-top: auto; padding: 60px 20px 22px;
  display: flex; flex-direction: column; gap: 7px;
}
.hm-catbody b { font-family: var(--font-display); font-size: 23px; letter-spacing: -0.01em; }
.hm-catbody em { font-style: normal; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-2); }
.hm-count {
  display: inline-flex; width: max-content;
  font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-2); background: var(--gold-soft); border: 1px solid rgba(249,115,22,.3);
  padding: 5px 10px; border-radius: 999px; margin-top: 8px;
}
.hm-catgo {
  position: absolute; right: 18px; bottom: 20px; z-index: 2;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gold-grad); color: var(--bg);
  display: flex; align-items: center; justify-content: center; font-size: 17px;
  opacity: 0; transform: translateY(8px) scale(.9); transition: opacity .3s, transform .3s;
}
.hm-catgo .ic { width: 17px; height: 17px; }
.hm-cattile:hover .hm-catgo { opacity: 1; transform: none; }

/* ---------- Featured drops numbering ---------- */
.hm-feat-item { position: relative; }
.hm-feat-item::before {
  content: attr(data-n);
  position: absolute; top: -12px; right: -8px; z-index: 5;
  font-family: var(--font-display); font-weight: 800; font-size: 12px; letter-spacing: .1em;
  color: var(--bg); background: var(--gold-grad);
  min-width: 34px; height: 28px; padding: 0 8px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 18px rgba(249,115,22,.32);
}

/* ---------- Promise band ---------- */
.hm-promise { position: relative; overflow: hidden; padding: 110px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
.hm-promise-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; position: relative; z-index: 2; }
.hm-serif { font-family: var(--font-serif); font-weight: 600; letter-spacing: -0.01em; }
.hm-serif em { font-style: italic; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hm-promise-copy p { color: var(--ink-2); margin-top: 18px; max-width: 520px; line-height: 1.75; }
.hm-promise-cta { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hm-promise-card {
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.005)), var(--surface);
  border: 1px solid var(--line-2); border-radius: 22px; padding: 34px;
  position: relative; overflow: hidden;
}
.hm-promise-card::before {
  content: ""; position: absolute; top: 0; left: 28px; right: 28px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hm-card-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 26px; }
.hm-card-logo img { width: 74px; height: 74px; object-fit: cover; border-radius: 20px; border: 1px solid rgba(249,115,22,.45); box-shadow: 0 18px 40px rgba(0,0,0,.5); }
.hm-card-flag {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 10.5px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; color: var(--muted);
  background: rgba(255,255,255,.04); border: 1px solid var(--line-2); padding: 8px 13px; border-radius: 999px;
}
.hm-features { list-style: none; display: grid; gap: 18px; }
.hm-features li { display: flex; gap: 14px; align-items: flex-start; color: var(--ink-2); font-size: 14.5px; line-height: 1.6; }
.hm-features .ico {
  width: 44px; height: 44px; border-radius: 13px; flex: none;
  background: var(--gold-soft); border: 1px solid rgba(249,115,22,.3); color: var(--gold-2);
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.hm-card-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 28px;
  border-top: 1px solid var(--line); padding-top: 22px;
}
.hm-card-stats div { display: flex; flex-direction: column; gap: 4px; text-align: center; position: relative; }
.hm-card-stats div + div::before { content: ""; position: absolute; left: 0; top: 50%; translate: 0 -50%; width: 1px; height: 30px; background: var(--line-2); }
.hm-card-stats b { font-family: var(--font-display); font-size: 22px; color: var(--gold-2); }
.hm-card-stats span { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }

/* ---------- Values ---------- */
.hm-values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.hm-value {
  position: relative; overflow: hidden;
  background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 32px 26px;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .35s, box-shadow .35s;
}
.hm-value:hover { transform: translateY(-6px); border-color: rgba(249,115,22,.4); box-shadow: var(--shadow); }
.hm-value-num {
  position: absolute; top: -8px; right: 12px;
  font-family: var(--font-display); font-weight: 700; font-size: 84px; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(249,115,22,.22);
  user-select: none; pointer-events: none;
}
.hm-value .ico {
  width: 54px; height: 54px; border-radius: 16px; margin-bottom: 22px;
  background: var(--gold-soft); border: 1px solid rgba(249,115,22,.3);
  display: flex; align-items: center; justify-content: center; font-size: 26px; color: var(--gold-2);
}
.hm-value .ico i { width: 26px; height: 26px; }
.hm-value h4 { font-size: 17.5px; margin-bottom: 10px; }
.hm-value p { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* ---------- Empty arrivals ---------- */
.hm-empty {
  background: var(--surface); border: 1px solid var(--line-2); text-align: center;
  padding: 52px 22px; border-radius: 20px;
}
.hm-empty-logo {
  width: 72px; height: 72px; margin: 0 auto 20px; display: block;
  border-radius: 22px; overflow: hidden; border: 1px solid rgba(249,115,22,.45);
  box-shadow: 0 18px 44px rgba(0,0,0,.5);
}
.hm-empty-logo img { width: 100%; height: 100%; object-fit: cover; }
.hm-empty h3 { font-size: 22px; margin-bottom: 10px; }
.hm-empty p { color: var(--muted); max-width: 480px; margin: 0 auto 24px; line-height: 1.7; }
.hm-empty-cta, .hm-more { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hm-more { margin-top: 40px; }

/* ---------- Testimonials wrap ---------- */
.hm-tst {
  position: relative; overflow: hidden;
  padding: 96px 0 110px;
  background: radial-gradient(900px 420px at 50% 120%, rgba(249,115,22,.09), transparent 60%), linear-gradient(180deg, var(--bg) 0%, #171009 100%);
}
.hm-tst-quote {
  position: absolute; top: 40px; right: 0; z-index: 0; pointer-events: none; user-select: none;
  font-family: var(--font-serif); font-size: clamp(200px, 34vw, 460px); line-height: .7;
  color: transparent; -webkit-text-stroke: 1px rgba(249,115,22,.1);
}
.hm-tst .container { position: relative; z-index: 1; }

/* ==================================================================
   HOME REDESIGN — RESPONSIVE
   ================================================================== */
@media (max-width: 1080px) {
  .hm-promise-grid { grid-template-columns: 1fr; gap: 44px; }
  .hm-values { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .hm-catgrid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .hm-scroll { display: none; }
}

@media (max-width: 640px) {
  .hm-section { padding: 60px 0; }
  .hm-head { flex-wrap: wrap; gap: 12px; margin-bottom: 28px; align-items: center; }
  .hm-head-num { transform: none; }
  .hm-headlink { padding: 9px 14px; font-size: 11px; }

  /* hero */
  .hero-inner { padding: 44px 18px 54px; }
  .hm-eyebrow { font-size: 9px; letter-spacing: .22em; padding: 8px 12px; margin-bottom: 20px; gap: 8px; flex-wrap: wrap; }
  .hm-open { padding-left: 9px; }
  .hm-hero-title { font-size: clamp(30px, 10.5vw, 46px); line-height: 1.02; }
  .hm-hero-title .hm-gold { margin-left: 0; }
  .hm-hero-sub { font-size: 13.5px; margin: 18px 0 24px; line-height: 1.7; }
  .hm-hero-cta { gap: 10px; }
  .hm-hero-cta .btn { width: 100%; padding: 15px 18px; font-size: 14px; }
  .hm-hero-glass { margin-top: 32px; width: 100%; border-radius: 14px; flex-wrap: wrap; }
  .hm-stat { flex: 1 1 33%; padding: 16px 10px; align-items: center; text-align: center; gap: 4px; }
  .hm-stat b { font-size: 19px; }
  .hm-stat span { font-size: 8.5px; letter-spacing: .1em; }
  .hm-stat + .hm-stat::before { display: none; }
  .hm-ghost { font-size: 96px; bottom: 2%; right: -8%; }
  .hm-orb-a { width: 300px; height: 300px; top: -80px; left: -120px; }
  .hm-orb-b { width: 260px; height: 260px; bottom: 4%; right: -110px; }

  /* marquee */
  .hm-marquee span { letter-spacing: .2em; font-size: 10px; }

  /* categories */
  .hm-catgrid { gap: 10px; }
  .hm-cattile { border-radius: 12px; aspect-ratio: 3/4.2; }
  .hm-catnum { top: 10px; left: 10px; font-size: 9px; padding: 4px 8px; }
  .hm-catic { top: 10px; right: 10px; width: 34px; height: 34px; border-radius: 10px; font-size: 16px; }
  .hm-catic .ic { width: 16px; height: 16px; }
  .hm-catbody { padding: 44px 12px 14px; gap: 5px; }
  .hm-catbody b { font-size: 15px; }
  .hm-catbody em { font-size: 9px; letter-spacing: .08em; }
  .hm-count { font-size: 8.5px; padding: 4px 8px; margin-top: 5px; }
  .hm-catgo { display: none; }

  /* featured numbering */
  .hm-feat-item::before { top: -9px; right: -6px; min-width: 30px; height: 24px; font-size: 10.5px; }

  /* promise */
  .hm-promise { padding: 70px 0; }
  .hm-promise-card { padding: 22px 18px; border-radius: 16px; }
  .hm-card-logo img { width: 60px; height: 60px; border-radius: 16px; }
  .hm-card-flag { font-size: 9px; padding: 7px 10px; }
  .hm-features { gap: 14px; }
  .hm-features li { font-size: 13px; }
  .hm-features .ico { width: 38px; height: 38px; border-radius: 11px; font-size: 17px; }
  .hm-card-stats b { font-size: 18px; }
  .hm-card-stats span { font-size: 8.5px; letter-spacing: .1em; }
  .hm-promise-cta .btn { width: 100%; }

  /* values */
  .hm-values { grid-template-columns: 1fr; gap: 12px; }
  .hm-value { padding: 22px 18px; border-radius: 12px; }
  .hm-value-num { font-size: 64px; }
  .hm-value .ico { width: 46px; height: 46px; border-radius: 13px; margin-bottom: 16px; font-size: 22px; }
  .hm-value h4 { font-size: 15px; }
  .hm-value p { font-size: 13px; }

  /* empty + more */
  .hm-empty { padding: 40px 18px; border-radius: 14px; }
  .hm-more { margin-top: 28px; }

  /* testimonials */
  .hm-tst { padding: 64px 0; }
  .hm-tst-quote { top: 20px; }
}
