/* =====================================================
   VELORA WATCHES — Core stylesheet
   Palette: ink #080808 / #111 / #171717, gold #C9A45C / #E4C980
   Type: Playfair Display (display) + Inter (body)
===================================================== */
:root {
  --ink-0: #080808;
  --ink-1: #111111;
  --ink-2: #171717;
  --gold: #C9A45C;
  --gold-l: #E4C980;
  --text: #FFFFFF;
  --text-2: #B8B8B8;
  --line: rgba(255,255,255,0.10);
  --display: 'Playfair Display', Georgia, serif;
  --body: 'Inter', -apple-system, sans-serif;
  --ease: cubic-bezier(.22,.61,.36,1);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--ink-0); color: var(--text);
  font-family: var(--body); font-weight: 300; font-size: 16px; line-height: 1.7;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-l); text-decoration: none; transition: color .3s var(--ease); }
a:hover { color: var(--gold); }
h1,h2,h3,h4 { font-family: var(--display); font-weight: 500; line-height: 1.2; }
::selection { background: var(--gold); color: var(--ink-0); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--ink-1); }
::-webkit-scrollbar-thumb { background: #2c2c2c; border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ---------- Utility ---------- */
.section { padding: 110px 0; }
.section-sm { padding: 70px 0; }
.section-alt { background: var(--ink-1); }
.eyebrow {
  display: inline-block; font-family: var(--body); font-size: 12px; font-weight: 500;
  letter-spacing: .35em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 18px; position: relative; padding-left: 46px;
}
.eyebrow::before { content:''; position:absolute; left:0; top:50%; width:32px; height:1px; background:var(--gold); }
.section-title { font-size: clamp(30px, 4vw, 48px); margin-bottom: 16px; }
.section-lead { color: var(--text-2); max-width: 560px; font-size: 16px; }
.text-center .eyebrow { padding-left: 0; padding-right: 0; }
.text-center .eyebrow::before { display: none; }
.text-center .section-lead { margin-inline: auto; }
.gold { color: var(--gold-l); }

/* ---------- Buttons ---------- */
.btn-gold, .btn-line {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--body); font-size: 13px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  padding: 17px 38px; border: 1px solid var(--gold);
  transition: all .4s var(--ease); cursor: pointer; position: relative; overflow: hidden;
}
.btn-gold { background: var(--gold); color: var(--ink-0); }
.btn-gold:hover { background: var(--gold-l); border-color: var(--gold-l); color: var(--ink-0); transform: translateY(-2px); box-shadow: 0 14px 34px rgba(201,164,92,.22); }
.btn-line { background: transparent; color: var(--gold-l); }
.btn-line:hover { background: rgba(201,164,92,.12); color: var(--gold-l); transform: translateY(-2px); }
.btn-gold-sm, .btn-line-sm {
  font-size: 11px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  padding: 11px 18px; border: 1px solid var(--gold); cursor: pointer;
  transition: all .3s var(--ease); text-align: center; display: inline-block;
}
.btn-gold-sm { background: var(--gold); color: var(--ink-0); }
.btn-gold-sm:hover { background: var(--gold-l); color: var(--ink-0); }
.btn-gold-sm:disabled { opacity: .4; cursor: not-allowed; }
.btn-line-sm { background: rgba(8,8,8,.65); color: var(--gold-l); backdrop-filter: blur(4px); }
.btn-line-sm:hover { background: var(--gold); color: var(--ink-0); }

/* ---------- Loader ---------- */
#site-loader {
  position: fixed; inset: 0; z-index: 9999; background: var(--ink-0);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .8s var(--ease), visibility .8s;
}
#site-loader.done { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo { font-family: var(--display); font-size: 30px; letter-spacing: .3em; color: var(--text); }
.loader-logo span { display: block; font-family: var(--body); font-size: 10px; letter-spacing: .7em; color: var(--gold); margin-top: 6px; }
.loader-line { width: 220px; height: 1px; background: rgba(255,255,255,.12); margin: 34px auto 14px; overflow: hidden; }
.loader-line span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--gold), var(--gold-l)); }
.loader-percent { font-size: 12px; letter-spacing: .3em; color: var(--text-2); }

/* ---------- Scroll progress ---------- */
#scroll-progress { position: fixed; top: 0; left: 0; height: 2px; width: 0; background: linear-gradient(90deg, var(--gold), var(--gold-l)); z-index: 1200; }

/* ---------- Navbar ---------- */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1100;
  padding: 22px 0; transition: all .45s var(--ease); background: transparent;
}
.site-nav.scrolled {
  padding: 12px 0; background: rgba(8,8,8,.82);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo { font-family: var(--display); font-size: 21px; letter-spacing: .26em; color: var(--text); line-height: 1; }
.nav-logo span { display: block; font-family: var(--body); font-size: 8px; letter-spacing: .62em; color: var(--gold); margin-top: 4px; }
.nav-logo:hover { color: var(--text); }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-link { font-size: 13px; font-weight: 400; letter-spacing: .12em; text-transform: uppercase; color: var(--text-2); position: relative; padding: 6px 0; }
.nav-link::after { content:''; position:absolute; left:0; bottom:0; width:100%; height:1px; background:var(--gold); transform:scaleX(0); transform-origin:right; transition:transform .4s var(--ease); }
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); transform-origin: left; }
.nav-link i { font-size: 9px; margin-left: 4px; }
.nav-drop { position: relative; }
.nav-drop-menu {
  position: absolute; top: calc(100% + 14px); left: -18px; min-width: 230px;
  background: rgba(17,17,17,.97); border: 1px solid var(--line); padding: 12px 0;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: all .35s var(--ease); backdrop-filter: blur(14px);
}
.nav-drop:hover .nav-drop-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-drop-menu a { display: block; padding: 10px 22px; font-size: 13px; color: var(--text-2); letter-spacing: .06em; }
.nav-drop-menu a:hover { color: var(--gold-l); background: rgba(201,164,92,.06); padding-left: 28px; }
.nav-icons { display: flex; align-items: center; gap: 8px; }
.nav-icon { position: relative; width: 40px; height: 40px; display: grid; place-items: center; color: var(--text-2); background: none; border: none; font-size: 16px; cursor: pointer; transition: color .3s; }
.nav-icon:hover { color: var(--gold-l); }
.nav-count { position: absolute; top: 2px; right: 0; min-width: 17px; height: 17px; padding: 0 4px; background: var(--gold); color: var(--ink-0); font-size: 10px; font-weight: 600; border-radius: 20px; display: grid; place-items: center; }
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; cursor: pointer; }
.nav-burger span { width: 24px; height: 1.5px; background: var(--text); transition: all .35s var(--ease); }
.nav-burger.open span:nth-child(1){ transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2){ opacity: 0; }
.nav-burger.open span:nth-child(3){ transform: translateY(-6.5px) rotate(-45deg); }
.nav-search { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); background: rgba(8,8,8,.94); }
.nav-search.open { max-height: 420px; border-bottom: 1px solid var(--line); }
.nav-search form { display: flex; padding: 22px 12px; gap: 12px; }
.nav-search input { flex: 1; background: none; border: none; border-bottom: 1px solid var(--line); color: var(--text); font-size: 18px; font-family: var(--display); padding: 8px 0; outline: none; }
.nav-search input:focus { border-color: var(--gold); }
.nav-search button { background: none; border: none; color: var(--gold); font-size: 18px; cursor: pointer; }
.search-results { padding: 0 12px 20px; }
.search-results a { display: flex; gap: 14px; align-items: center; padding: 10px; border-bottom: 1px solid var(--line); color: var(--text-2); }
.search-results img { width: 46px; height: 46px; object-fit: cover; }
.search-results a:hover { color: var(--gold-l); background: rgba(255,255,255,.02); }
.nav-mobile {
  position: fixed; inset: 0; top: 0; z-index: 1050; background: rgba(8,8,8,.98);
  display: flex; flex-direction: column; justify-content: center; padding: 90px 36px 40px; gap: 4px;
  transform: translateX(100%); transition: transform .5s var(--ease);
}
.nav-mobile.open { transform: translateX(0); }
.nav-mobile a { font-family: var(--display); font-size: 26px; color: var(--text-2); padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.05); }
.nav-mobile a:hover { color: var(--gold-l); padding-left: 10px; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; padding: 140px 0 80px; }
.hero-bg { position: absolute; inset: -60px; background: radial-gradient(ellipse 70% 60% at 72% 40%, rgba(201,164,92,.10), transparent 60%), var(--ink-0); }
.hero-grid-line { position: absolute; top: 0; bottom: 0; width: 1px; background: rgba(255,255,255,.035); }
.hero-content { position: relative; z-index: 3; }
.hero-kicker { font-size: 12px; letter-spacing: .4em; text-transform: uppercase; color: var(--gold); margin-bottom: 26px; display: flex; align-items: center; gap: 16px; }
.hero-kicker::before { content:''; width: 46px; height: 1px; background: var(--gold); }
.hero-title { font-size: clamp(44px, 6.4vw, 88px); font-weight: 500; margin-bottom: 26px; }
.hero-title .w { display: inline-block; overflow: hidden; vertical-align: bottom; }
.hero-title .w span { display: inline-block; }
.hero-title em { font-style: italic; color: var(--gold-l); }
.hero-text { color: var(--text-2); max-width: 470px; font-size: 17px; margin-bottom: 42px; }
.hero-cta { display: flex; gap: 18px; flex-wrap: wrap; }
.hero-media { position: relative; z-index: 2; }
.hero-watch { position: relative; max-width: 520px; margin-left: auto; will-change: transform; }
.hero-watch img { filter: drop-shadow(0 40px 80px rgba(0,0,0,.6)); }
.hero-float {
  position: absolute; padding: 12px 18px; background: rgba(17,17,17,.82); border: 1px solid var(--line);
  backdrop-filter: blur(10px); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--text-2);
}
.hero-float b { display: block; font-family: var(--display); font-size: 17px; letter-spacing: .05em; color: var(--gold-l); font-weight: 500; }
.hero-float.f1 { top: 16%; left: -6%; }
.hero-float.f2 { bottom: 20%; right: -3%; }
.hero-ring { position: absolute; border: 1px solid rgba(201,164,92,.18); border-radius: 50%; }
.hero-ring.r1 { width: 120%; padding-top: 120%; top: -12%; left: -10%; }
.hero-ring.r2 { width: 145%; padding-top: 145%; top: -24%; left: -22%; border-color: rgba(201,164,92,.08); }
.scroll-hint { position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 4; text-align: center; color: var(--text-2); font-size: 10px; letter-spacing: .4em; text-transform: uppercase; }
.scroll-hint::after { content:''; display:block; width:1px; height:44px; margin:12px auto 0; background:linear-gradient(var(--gold), transparent); animation: scrollPulse 2s infinite; }

/* ---------- Trust bar ---------- */
.trust-bar { border-block: 1px solid var(--line); background: var(--ink-1); overflow: hidden; padding: 22px 0; }
.trust-track { display: flex; gap: 70px; width: max-content; animation: marquee 30s linear infinite; }
.trust-bar:hover .trust-track { animation-play-state: paused; }
.trust-item { display: flex; align-items: center; gap: 14px; font-size: 12px; letter-spacing: .24em; text-transform: uppercase; color: var(--text-2); white-space: nowrap; }
.trust-item i { color: var(--gold); font-size: 15px; }

/* ---------- Category cards ---------- */
.cat-card { position: relative; overflow: hidden; display: block; aspect-ratio: 4/5; background: var(--ink-2); }
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.cat-card:hover img { transform: scale(1.07); }
.cat-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(8,8,8,.92)); display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; }
.cat-overlay h3 { font-size: 23px; margin: 0 0 4px; color: var(--text); }
.cat-overlay p { font-size: 13px; color: var(--text-2); margin: 0 0 14px; }
.cat-overlay .cat-link { font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-l); display: inline-flex; align-items: center; gap: 10px; transform: translateY(8px); opacity: 0; transition: all .45s var(--ease); }
.cat-card:hover .cat-link { transform: translateY(0); opacity: 1; }

/* ---------- Product cards ---------- */
.product-card { background: var(--ink-2); border: 1px solid var(--line); transition: all .45s var(--ease); height: 100%; display: flex; flex-direction: column; }
.product-card:hover { border-color: rgba(201,164,92,.4); transform: translateY(-6px); box-shadow: 0 26px 54px rgba(0,0,0,.45); }
.product-media { position: relative; overflow: hidden; aspect-ratio: 1; background: var(--ink-1); }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.product-card:hover .product-media img { transform: scale(1.06); }
.product-badges { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 6px; }
.badge-tag { font-size: 9px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; padding: 5px 10px; }
.badge-new  { background: #f5f2ea; color: var(--ink-0); }
.badge-sale { background: #7c2d2d; color: #fff; }
.badge-best { background: var(--gold); color: var(--ink-0); }
.product-actions { position: absolute; top: 12px; right: 12px; display: flex; flex-direction: column; gap: 8px; opacity: 0; transform: translateX(10px); transition: all .4s var(--ease); }
.product-card:hover .product-actions { opacity: 1; transform: translateX(0); }
.icon-btn { width: 38px; height: 38px; border: 1px solid var(--line); background: rgba(8,8,8,.72); color: var(--text-2); display: grid; place-items: center; cursor: pointer; transition: all .3s; backdrop-filter: blur(6px); }
.icon-btn:hover, .icon-btn.active { background: var(--gold); color: var(--ink-0); border-color: var(--gold); }
.icon-btn.active i::before { content: "\f004"; font-weight: 900; }
.product-hover-cta { position: absolute; left: 12px; right: 12px; bottom: 12px; display: flex; gap: 8px; opacity: 0; transform: translateY(12px); transition: all .4s var(--ease); }
.product-hover-cta > * { flex: 1; }
.product-card:hover .product-hover-cta { opacity: 1; transform: translateY(0); }
.product-body { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 5px; flex: 1; }
.product-cat { font-size: 10px; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); }
.product-name { font-size: 18px; margin: 0; }
.product-name a { color: var(--text); }
.product-name a:hover { color: var(--gold-l); }
.product-rating { color: var(--gold); font-size: 12px; }
.product-rating span { color: var(--text-2); margin-left: 4px; }
.product-price { display: flex; align-items: baseline; gap: 10px; margin-top: 2px; }
.price-now { font-family: var(--display); font-size: 19px; color: var(--gold-l); }
.price-was { font-size: 13px; color: var(--text-2); text-decoration: line-through; }
.stock-note { font-size: 11px; color: #6f9b6f; letter-spacing: .04em; margin-top: auto; padding-top: 8px; }
.stock-note.low { color: #c9a45c; }
.stock-note.out { color: #a05656; }

/* ---------- Scroll showcase ---------- */
.showcase { position: relative; background: var(--ink-1); overflow: clip; }
.showcase-stage { min-height: 300vh; position: relative; }
.showcase-pin { position: sticky; top: 0; height: 100vh; display: flex; align-items: center; overflow: hidden; }
.showcase-watch { position: absolute; width: min(42vw, 460px); left: 60%; top: 50%; transform: translate(-50%,-50%); will-change: transform; z-index: 2; }
.showcase-watch img { filter: drop-shadow(0 40px 90px rgba(0,0,0,.65)); }
.showcase-copy { position: relative; z-index: 3; max-width: 400px; }
.showcase-feature { position: absolute; opacity: 0; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--text-2); padding: 12px 18px; border: 1px solid var(--line); background: rgba(8,8,8,.7); backdrop-filter: blur(8px); z-index: 4; }
.showcase-feature b { display: block; font-family: var(--display); color: var(--gold-l); font-size: 16px; letter-spacing: .04em; font-weight: 500; }
.showcase-final { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; opacity: 0; z-index: 5; pointer-events: none; }
.showcase-final .btn-gold { pointer-events: auto; }

/* ---------- Split section ---------- */
.split-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 78vh; }
.split-half { position: relative; overflow: hidden; display: flex; align-items: flex-end; padding: 54px; min-height: 480px; }
.split-half img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.split-half:hover img { transform: scale(1.06); }
.split-half::after { content:''; position:absolute; inset:0; background:linear-gradient(180deg, rgba(8,8,8,.15), rgba(8,8,8,.88)); }
.split-inner { position: relative; z-index: 2; }
.split-inner h3 { font-size: clamp(28px, 3vw, 42px); }
.split-inner p { color: var(--text-2); max-width: 340px; }

/* ---------- Counters / craftsmanship ---------- */
.craft-img { position: relative; overflow: hidden; }
.craft-img img { width: 100%; }
.craft-img::after { content:''; position:absolute; inset:0; border:1px solid rgba(201,164,92,.35); transform:translate(16px,16px); pointer-events:none; }
.counters { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 40px; }
.counter { background: var(--ink-1); padding: 28px 24px; }
.counter b { display: block; font-family: var(--display); font-size: 34px; color: var(--gold-l); font-weight: 500; }
.counter span { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--text-2); }
.craft-timeline { margin-top: 46px; border-left: 1px solid rgba(201,164,92,.3); padding-left: 28px; display: grid; gap: 22px; }
.craft-step { position: relative; }
.craft-step::before { content:''; position:absolute; left:-32.5px; top:8px; width:8px; height:8px; background:var(--gold); border-radius:50%; }
.craft-step b { font-family: var(--display); font-weight: 500; color: var(--text); font-size: 17px; display: block; }
.craft-step span { color: var(--text-2); font-size: 14px; }

/* ---------- Video ---------- */
.video-section { position: relative; min-height: 82vh; display: grid; place-items: center; overflow: hidden; }
.video-section video, .video-fallback { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-section::after { content:''; position:absolute; inset:0; background:rgba(8,8,8,.62); }
.video-inner { position: relative; z-index: 2; text-align: center; padding: 60px 20px; }
.video-inner h2 { font-size: clamp(30px, 4.4vw, 54px); }
.video-play { width: 74px; height: 74px; border-radius: 50%; border: 1px solid var(--gold); background: rgba(8,8,8,.5); color: var(--gold-l); font-size: 20px; display: grid; place-items: center; margin: 0 auto 30px; cursor: pointer; transition: all .4s; }
.video-play:hover { background: var(--gold); color: var(--ink-0); transform: scale(1.08); }

/* ---------- Style cards ---------- */
.style-card { display: block; border: 1px solid var(--line); background: var(--ink-2); padding: 34px 26px; text-align: center; transition: all .4s var(--ease); height: 100%; }
.style-card i { font-size: 26px; color: var(--gold); margin-bottom: 16px; transition: transform .4s; }
.style-card h3 { font-size: 19px; color: var(--text); margin: 0 0 6px; }
.style-card span { font-size: 12px; color: var(--text-2); }
.style-card:hover { border-color: rgba(201,164,92,.5); transform: translateY(-6px); background: #1b1a17; }
.style-card:hover i { transform: translateY(-4px) scale(1.1); }

/* ---------- Testimonials ---------- */
.testi-slider { position: relative; }
.testi-track { display: flex; transition: transform .7s var(--ease); }
.testi-slide { min-width: 100%; padding: 8px; }
.testi-card { background: var(--ink-2); border: 1px solid var(--line); padding: 44px; max-width: 720px; margin: 0 auto; text-align: center; position: relative; }
.testi-card::before { content:'\201C'; position:absolute; top:8px; left:26px; font-family:var(--display); font-size:110px; color:rgba(201,164,92,.16); line-height:1; }
.testi-stars { color: var(--gold); margin-bottom: 18px; }
.testi-text { font-family: var(--display); font-size: 20px; font-style: italic; color: var(--text); line-height: 1.6; }
.testi-person { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 26px; }
.testi-person img { width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--gold); }
.testi-person b { display: block; font-weight: 500; color: var(--text); font-size: 15px; }
.testi-person span { font-size: 12px; color: var(--text-2); }
.testi-verified { color: #6f9b6f; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.testi-verified i { margin-right: 5px; }
.testi-nav { display: flex; justify-content: center; gap: 12px; margin-top: 30px; }
.testi-nav button { width: 46px; height: 46px; border: 1px solid var(--line); background: none; color: var(--text-2); cursor: pointer; transition: all .3s; }
.testi-nav button:hover { border-color: var(--gold); color: var(--gold-l); }

/* ---------- Instagram ---------- */
.insta-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.insta-item { position: relative; overflow: hidden; aspect-ratio: 1; display: block; }
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.insta-item::after { content:'\f16d'; font-family:'Font Awesome 6 Brands'; position:absolute; inset:0; display:grid; place-items:center; font-size:26px; color:var(--gold-l); background:rgba(8,8,8,.66); opacity:0; transition:opacity .4s; }
.insta-item:hover img { transform: scale(1.1); }
.insta-item:hover::after { opacity: 1; }

/* ---------- Newsletter ---------- */
.newsletter { background: linear-gradient(135deg, #14110b, var(--ink-1)); border-block: 1px solid var(--line); }
.news-form { display: flex; max-width: 520px; margin-top: 26px; border: 1px solid var(--line); background: rgba(8,8,8,.5); }
.news-form input { flex: 1; background: none; border: none; padding: 17px 22px; color: var(--text); font-size: 15px; outline: none; }
.news-form button { border: none; background: var(--gold); color: var(--ink-0); padding: 0 32px; font-size: 12px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; cursor: pointer; transition: background .3s; }
.news-form button:hover { background: var(--gold-l); }
.news-msg { margin-top: 14px; font-size: 14px; min-height: 20px; }
.news-msg.ok { color: #8fbc8f; } .news-msg.err { color: #d98b8b; }

/* ---------- Footer ---------- */
.site-footer { background: #060606; border-top: 1px solid var(--line); padding: 90px 0 0; }
.footer-logo { font-family: var(--display); font-size: 24px; letter-spacing: .26em; }
.footer-logo span { display: block; font-family: var(--body); font-size: 9px; letter-spacing: .6em; color: var(--gold); margin-top: 5px; }
.footer-desc { color: var(--text-2); font-size: 14px; margin: 22px 0; max-width: 320px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 40px; height: 40px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--text-2); font-size: 14px; transition: all .3s; }
.footer-social a:hover { border-color: var(--gold); color: var(--gold-l); transform: translateY(-3px); }
.footer-title { font-size: 15px; letter-spacing: .18em; text-transform: uppercase; color: var(--text); margin-bottom: 22px; font-family: var(--body); font-weight: 500; }
.site-footer a { display: block; color: var(--text-2); font-size: 14px; padding: 6px 0; }
.site-footer a:hover { color: var(--gold-l); padding-left: 6px; }
.site-footer .footer-social a, .site-footer .footer-logo { padding: 0; }
.footer-small { color: var(--text-2); font-size: 13px; }
.footer-news { display: flex; border: 1px solid var(--line); margin-bottom: 8px; }
.footer-news input { flex: 1; background: none; border: none; padding: 13px 16px; color: var(--text); outline: none; font-size: 14px; }
.footer-news button { border: none; background: var(--gold); color: var(--ink-0); padding: 0 22px; font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; cursor: pointer; }
.footer-news-msg { font-size: 13px; min-height: 18px; }
.footer-news-msg.ok { color: #8fbc8f; } .footer-news-msg.err { color: #d98b8b; }
.footer-contact { margin-top: 20px; display: grid; gap: 6px; font-size: 13px; color: var(--text-2); }
.footer-contact i { color: var(--gold); width: 18px; }
.footer-bottom { margin-top: 60px; border-top: 1px solid var(--line); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 13px; color: var(--text-2); }
.footer-pay { font-size: 24px; display: flex; gap: 12px; color: #555; }

/* ---------- Page header ---------- */
.page-head { padding: 180px 0 70px; background: radial-gradient(ellipse 60% 70% at 50% 0%, rgba(201,164,92,.08), transparent), var(--ink-0); border-bottom: 1px solid var(--line); }
.breadcrumbs { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-2); margin-bottom: 18px; }
.breadcrumbs a { color: var(--text-2); } .breadcrumbs a:hover { color: var(--gold-l); }
.breadcrumbs i { font-size: 9px; margin: 0 8px; }
.page-title { font-size: clamp(34px, 5vw, 58px); margin: 0; }

/* ---------- Shop filters ---------- */
.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 44px; align-items: start; }
.filter-panel { position: sticky; top: 110px; border: 1px solid var(--line); background: var(--ink-1); padding: 26px; }
.filter-group { border-bottom: 1px solid var(--line); padding: 18px 0; }
.filter-group:last-child { border-bottom: 0; }
.filter-group h4 { font-family: var(--body); font-size: 12px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--text); margin-bottom: 14px; }
.filter-check { display: flex; align-items: center; gap: 10px; padding: 5px 0; font-size: 14px; color: var(--text-2); cursor: pointer; }
.filter-check input { accent-color: var(--gold); width: 15px; height: 15px; }
.filter-check:hover { color: var(--text); }
.price-inputs { display: flex; gap: 10px; }
.price-inputs input { width: 100%; background: var(--ink-2); border: 1px solid var(--line); color: var(--text); padding: 9px 12px; font-size: 13px; outline: none; }
.price-inputs input:focus { border-color: var(--gold); }
.shop-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 26px; gap: 16px; flex-wrap: wrap; }
.shop-count { color: var(--text-2); font-size: 14px; }
.shop-sort select { background: var(--ink-2); border: 1px solid var(--line); color: var(--text); padding: 10px 16px; font-size: 13px; outline: none; }
.filter-clear { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-2); background: none; border: none; cursor: pointer; }
.filter-clear:hover { color: var(--gold-l); }
.filter-mobile-toggle { display: none; }
#shopGrid.loading { opacity: .4; pointer-events: none; transition: opacity .3s; }
.empty-state { text-align: center; padding: 90px 20px; border: 1px dashed var(--line); }
.empty-state i { font-size: 42px; color: var(--gold); opacity: .5; margin-bottom: 20px; }
.empty-state h3 { color: var(--text); }
.empty-state p { color: var(--text-2); }

/* ---------- Product details ---------- */
.pd-gallery { position: sticky; top: 110px; }
.pd-main { border: 1px solid var(--line); background: var(--ink-1); overflow: hidden; cursor: zoom-in; }
.pd-main img { width: 100%; transition: transform .5s var(--ease); transform-origin: var(--zx, 50%) var(--zy, 50%); }
.pd-main:hover img { transform: scale(1.7); }
.pd-thumbs { display: flex; gap: 10px; margin-top: 12px; }
.pd-thumbs img { width: 84px; height: 84px; object-fit: cover; border: 1px solid var(--line); cursor: pointer; opacity: .55; transition: all .3s; }
.pd-thumbs img.active, .pd-thumbs img:hover { opacity: 1; border-color: var(--gold); }
.pd-cat { font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); }
.pd-title { font-size: clamp(30px, 3.6vw, 46px); margin: 10px 0 14px; }
.pd-rating { color: var(--gold); font-size: 14px; margin-bottom: 20px; }
.pd-rating span { color: var(--text-2); margin-left: 8px; }
.pd-price { display: flex; align-items: baseline; gap: 16px; padding: 22px 0; border-block: 1px solid var(--line); margin-bottom: 24px; }
.pd-price .now { font-family: var(--display); font-size: 34px; color: var(--gold-l); }
.pd-price .was { font-size: 18px; color: var(--text-2); text-decoration: line-through; }
.pd-price .save { font-size: 12px; background: #7c2d2d; color: #fff; padding: 4px 10px; letter-spacing: .1em; }
.pd-desc { color: var(--text-2); }
.pd-option-label { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--text); margin: 22px 0 10px; }
.pd-option-label span { color: var(--text-2); text-transform: none; letter-spacing: 0; }
.color-dots { display: flex; gap: 10px; }
.color-dot { width: 30px; height: 30px; border-radius: 50%; border: 2px solid transparent; outline: 1px solid var(--line); cursor: pointer; transition: all .25s; }
.color-dot.active { border-color: var(--ink-0); outline: 2px solid var(--gold); transform: scale(1.1); }
.strap-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.strap-pill { border: 1px solid var(--line); padding: 9px 18px; font-size: 13px; color: var(--text-2); cursor: pointer; transition: all .25s; background: none; }
.strap-pill.active { border-color: var(--gold); color: var(--gold-l); background: rgba(201,164,92,.08); }
.qty-row { display: flex; gap: 14px; margin: 28px 0; flex-wrap: wrap; }
.qty-box { display: flex; border: 1px solid var(--line); }
.qty-box button { width: 48px; background: none; border: none; color: var(--text); font-size: 16px; cursor: pointer; }
.qty-box button:hover { color: var(--gold-l); }
.qty-box input { width: 56px; text-align: center; background: none; border: none; border-inline: 1px solid var(--line); color: var(--text); font-size: 15px; outline: none; }
.pd-meta { display: grid; gap: 10px; padding: 22px; border: 1px solid var(--line); background: var(--ink-1); font-size: 14px; color: var(--text-2); margin-top: 30px; }
.pd-meta i { color: var(--gold); width: 22px; }
.pd-tabs { margin-top: 90px; }
.pd-tabs .nav-tabs { border-bottom: 1px solid var(--line); gap: 8px; }
.pd-tabs .nav-tabs .nav-link { background: none; border: none; border-bottom: 2px solid transparent; border-radius: 0; color: var(--text-2); font-size: 13px; letter-spacing: .16em; text-transform: uppercase; padding: 14px 22px; }
.pd-tabs .nav-tabs .nav-link.active { color: var(--gold-l); border-bottom-color: var(--gold); }
.pd-tabs .tab-content { padding: 36px 4px; color: var(--text-2); }
.spec-table { width: 100%; }
.spec-table td { padding: 13px 16px; border-bottom: 1px solid var(--line); font-size: 14px; }
.spec-table td:first-child { color: var(--text); width: 240px; font-weight: 500; }
.review-item { border-bottom: 1px solid var(--line); padding: 22px 0; }
.review-item .r-head { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.review-item b { color: var(--text); font-weight: 500; }
.review-item .r-stars { color: var(--gold); font-size: 12px; }
.review-form input, .review-form textarea, .review-form select { width: 100%; background: var(--ink-2); border: 1px solid var(--line); color: var(--text); padding: 13px 16px; margin-bottom: 14px; outline: none; font-size: 14px; }
.review-form input:focus, .review-form textarea:focus { border-color: var(--gold); }

/* ---------- Cart / checkout ---------- */
.cart-table { width: 100%; }
.cart-table th { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--text-2); padding: 14px; border-bottom: 1px solid var(--line); font-weight: 500; text-align: left; }
.cart-table td { padding: 20px 14px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.cart-prod { display: flex; gap: 16px; align-items: center; }
.cart-prod img { width: 76px; height: 76px; object-fit: cover; border: 1px solid var(--line); }
.cart-prod b { display: block; font-family: var(--display); font-weight: 500; color: var(--text); }
.cart-prod span { font-size: 12px; color: var(--text-2); }
.cart-remove { background: none; border: none; color: var(--text-2); cursor: pointer; font-size: 15px; }
.cart-remove:hover { color: #d98b8b; }
.summary-box { border: 1px solid var(--line); background: var(--ink-1); padding: 30px; position: sticky; top: 110px; }
.summary-box h3 { font-size: 22px; margin-bottom: 20px; }
.sum-row { display: flex; justify-content: space-between; padding: 11px 0; font-size: 14px; color: var(--text-2); border-bottom: 1px solid rgba(255,255,255,.05); }
.sum-row.total { border-top: 1px solid var(--line); border-bottom: 0; margin-top: 8px; padding-top: 18px; color: var(--text); font-size: 17px; }
.sum-row.total b { font-family: var(--display); color: var(--gold-l); font-size: 22px; }
.form-label-v { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--text); margin-bottom: 8px; display: block; }
.form-input { width: 100%; background: var(--ink-2); border: 1px solid var(--line); color: var(--text); padding: 14px 16px; font-size: 14px; outline: none; transition: border .3s; }
.form-input:focus { border-color: var(--gold); }
.form-input.is-invalid { border-color: #a05656; }
.invalid-note { color: #d98b8b; font-size: 12px; margin-top: 5px; min-height: 16px; }
.pay-option { display: flex; align-items: center; gap: 14px; border: 1px solid var(--line); padding: 18px 20px; margin-bottom: 12px; cursor: pointer; transition: all .3s; }
.pay-option:hover { border-color: rgba(201,164,92,.4); }
.pay-option input { accent-color: var(--gold); }
.pay-option i { color: var(--gold); font-size: 18px; width: 26px; }
.pay-option b { color: var(--text); font-weight: 500; font-size: 15px; display: block; }
.pay-option span { font-size: 12px; color: var(--text-2); }
.pay-option.disabled { opacity: .45; cursor: not-allowed; }

/* ---------- Auth & account ---------- */
.auth-card { max-width: 460px; margin: 0 auto; border: 1px solid var(--line); background: var(--ink-1); padding: 46px; }
.auth-card h1 { font-size: 30px; text-align: center; margin-bottom: 8px; }
.auth-card .sub { text-align: center; color: var(--text-2); font-size: 14px; margin-bottom: 30px; }
.alert-v { padding: 14px 18px; font-size: 14px; margin-bottom: 20px; border: 1px solid; }
.alert-v.ok { border-color: rgba(111,155,111,.4); background: rgba(111,155,111,.08); color: #8fbc8f; }
.alert-v.err { border-color: rgba(160,86,86,.4); background: rgba(160,86,86,.08); color: #d98b8b; }
.account-nav { border: 1px solid var(--line); background: var(--ink-1); }
.account-nav a { display: flex; align-items: center; gap: 12px; padding: 15px 22px; color: var(--text-2); font-size: 14px; border-bottom: 1px solid rgba(255,255,255,.05); }
.account-nav a.active, .account-nav a:hover { color: var(--gold-l); background: rgba(201,164,92,.05); }
.account-nav i { width: 18px; color: var(--gold); }
.order-status { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; padding: 5px 12px; }
.st-pending { background: rgba(201,164,92,.14); color: var(--gold-l); }
.st-confirmed, .st-processing { background: rgba(100,140,190,.16); color: #9dbfe4; }
.st-shipped { background: rgba(140,110,190,.16); color: #c3aee6; }
.st-delivered { background: rgba(111,155,111,.16); color: #8fbc8f; }
.st-cancelled { background: rgba(160,86,86,.16); color: #d98b8b; }

/* ---------- Toasts ---------- */
.toast-stack { position: fixed; bottom: 26px; right: 26px; z-index: 3000; display: grid; gap: 10px; }
.v-toast { background: var(--ink-2); border: 1px solid var(--gold); border-left-width: 3px; color: var(--text); padding: 15px 22px; font-size: 14px; min-width: 280px; box-shadow: 0 16px 40px rgba(0,0,0,.5); animation: toastIn .45s var(--ease); display: flex; gap: 12px; align-items: center; }
.v-toast i { color: var(--gold-l); }
.v-toast.err { border-color: #a05656; } .v-toast.err i { color: #d98b8b; }
.v-toast.out { animation: toastOut .4s var(--ease) forwards; }

/* ---------- Quick view ---------- */
.qv-content { background: var(--ink-1); border: 1px solid var(--line); border-radius: 0; }
.qv-loading { text-align: center; padding: 70px; color: var(--gold); font-size: 26px; }
.qv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.qv-grid img { border: 1px solid var(--line); }
.qv-body h3 { font-size: 26px; }
