/* ===== DARK MODE (default) ===== */
:root {
  --gold: #C9A84C;
  --gold-light: #E8CC7A;
  --gold-dim: rgba(201,168,76,0.12);
  --black: #080808;
  --deep: #0D0D0D;
  --surface: #111111;
  --surface2: #181818;
  --border: rgba(201,168,76,0.18);
  --text: #C2BDB4;
  --text-dim: #5a5550;
  --white: #F5F0E8;
  --bg: #080808;
  --card-bg: #111111;
  --header-bg: rgba(8,8,8,0.97);
  --input-bg: #111111;
  --footer-bg: #111111;
  --shadow: rgba(0,0,0,0.5);

  /* FONTS */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-logo: 'Syncopate', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-product: 'Outfit', sans-serif;
}

/* ===== LIGHT MODE ===== */
[data-theme="light"] {
  --gold: #A07828;
  --gold-light: #C9A84C;
  --gold-dim: rgba(160,120,40,0.1);
  --black: #FAFAF8;
  --deep: #F0EDE8;
  --surface: #FFFFFF;
  --surface2: #F5F2ED;
  --border: rgba(160,120,40,0.2);
  --text: #3A342C;
  --text-dim: #999080;
  --white: #1A1510;
  --bg: #F7F4EF;
  --card-bg: #FFFFFF;
  --header-bg: rgba(247,244,239,0.97);
  --input-bg: #FFFFFF;
  --footer-bg: #1A1510;
  --shadow: rgba(0,0,0,0.12);
}
/* ============================================
   LIGHT MODE — COMPLETE OVERRIDES
   ============================================ */
[data-theme="light"] body { background: var(--bg); color: #3A342C; }

/* Hero */
[data-theme="light"] .hero-bg {
  background-image:
    linear-gradient(to right, rgba(247,244,239,0.94) 45%, rgba(247,244,239,0.55) 100%),
    url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?q=80&w=2070') !important;
}
[data-theme="light"] .hero-bg::after {
  background: linear-gradient(to top, #F7F4EF 0%, transparent 30%) !important;
}
[data-theme="light"] .hero h1 { color: #1A1510; }
[data-theme="light"] .hero p { color: #5A504A; }
[data-theme="light"] .hero-eyebrow span { color: var(--gold); }
[data-theme="light"] .hero-stat .num { color: var(--gold); }
[data-theme="light"] .hero-stat .lbl { color: #7A6E68; }
[data-theme="light"] .hero-divider { background: rgba(160,120,40,0.25); }
[data-theme="light"] .btn-outline { color: #3A342C; border-bottom-color: rgba(58,52,44,0.4); }
[data-theme="light"] .eyebrow-line { background: var(--gold); }

/* Header */
[data-theme="light"] header.scrolled { background: rgba(247,244,239,0.97) !important; border-bottom-color: rgba(160,120,40,0.2) !important; }
[data-theme="light"] nav a { color: #5A504A; }
[data-theme="light"] nav a:hover { color: #1A1510; }
[data-theme="light"] .logo { color: #1A1510; }

/* Marquee */
[data-theme="light"] .marquee-band { background: var(--gold); }
[data-theme="light"] .marquee-track span { color: #fff; }
[data-theme="light"] .marquee-track .dot { color: rgba(255,255,255,0.5); }

/* About */
[data-theme="light"] .about { background: #F7F4EF !important; }
[data-theme="light"] .about-img-accent { border-color: #F7F4EF !important; }
[data-theme="light"] .about h2 { color: #1A1510; }
[data-theme="light"] .about > div > p { color: #5A504A; }
[data-theme="light"] .section-label span { color: var(--gold); }
[data-theme="light"] .section-label-line { background: rgba(160,120,40,0.25); }
[data-theme="light"] .feat-text h4 { color: #1A1510; }
[data-theme="light"] .feat-text p { color: #7A6E68; }
[data-theme="light"] .feat-icon { border-color: rgba(160,120,40,0.25); }

/* Counters */
[data-theme="light"] .counters-section { background: #EDEBE5; border-color: rgba(160,120,40,0.2); }
[data-theme="light"] .counter-box { border-color: rgba(160,120,40,0.2); }
[data-theme="light"] .counter-num { color: var(--gold); }
[data-theme="light"] .counter-suffix { color: var(--gold); }
[data-theme="light"] .counter-label { color: #7A6E68; }

/* Products */
[data-theme="light"] #products,
[data-theme="light"] .products-section { background: #F7F4EF; }
[data-theme="light"] .section-header h2 { color: #1A1510; }
[data-theme="light"] .section-header p { color: #7A6E68; }
[data-theme="light"] .ftab { color: #7A6E68; border-color: rgba(160,120,40,0.25); }
[data-theme="light"] .ftab.active, [data-theme="light"] .ftab:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

/* Shop cards */
[data-theme="light"] .shop-card { background: #FFFFFF; border-color: rgba(160,120,40,0.15); box-shadow: 0 2px 16px rgba(0,0,0,0.06); }
[data-theme="light"] .shop-card:hover { border-color: var(--gold); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
[data-theme="light"] .shop-name { color: #1A1510; }
[data-theme="light"] .shop-desc { color: #7A6E68; }
[data-theme="light"] .shop-price { color: #1A1510; }
[data-theme="light"] .shop-price .unit { color: #7A6E68; }
[data-theme="light"] .shop-price-old { color: #AAA098; }
[data-theme="light"] .rating-count { color: #AAA098; }
[data-theme="light"] .shop-meta { border-top-color: rgba(160,120,40,0.12); }
[data-theme="light"] .shop-sku { color: #AAA098; }
[data-theme="light"] .btn-quick { border-color: rgba(160,120,40,0.25); color: #7A6E68; }
[data-theme="light"] .btn-quick:hover { border-color: var(--gold); color: var(--gold); }
[data-theme="light"] .shop-wishlist { background: rgba(247,244,239,0.9); border-color: rgba(160,120,40,0.2); color: #AAA098; }

/* Process */
[data-theme="light"] .process-section { background: #EDEBE5; border-color: rgba(160,120,40,0.15); }
[data-theme="light"] .process-header h2 { color: #1A1510; }
[data-theme="light"] .process-header p { color: #7A6E68; }
[data-theme="light"] .step-num { background: #EDEBE5; border-color: var(--gold); color: var(--gold); }
[data-theme="light"] .step h4 { color: #1A1510; }
[data-theme="light"] .step p { color: #7A6E68; }
[data-theme="light"] .process-steps::before { background: linear-gradient(to right, transparent, rgba(160,120,40,0.3), rgba(160,120,40,0.3), transparent); }

/* Gallery */
[data-theme="light"] .gallery-section { background: #F7F4EF; }
[data-theme="light"] .gallery-title h2 { color: #1A1510; }

/* Testimonials */
[data-theme="light"] .testimonials { background: #EDEBE5; }
[data-theme="light"] .test-header h2 { color: #1A1510; }
[data-theme="light"] .test-grid { background: rgba(160,120,40,0.15); }
[data-theme="light"] .test-card { background: #FAFAF7; }
[data-theme="light"] .test-stars { color: var(--gold); }
[data-theme="light"] .test-quote { color: #1A1510; font-style: italic; }
[data-theme="light"] .test-info h5 { color: #1A1510; }
[data-theme="light"] .test-info span { color: #7A6E68; }

/* Contact */
[data-theme="light"] .contact-section { background: #F7F4EF; }
[data-theme="light"] .contact-info h2 { color: #1A1510; }
[data-theme="light"] .contact-info > p { color: #5A504A; }
[data-theme="light"] .contact-text a, [data-theme="light"] .contact-text p { color: #1A1510; }
[data-theme="light"] .contact-text span { color: #7A6E68; }
[data-theme="light"] .contact-icon { border-color: rgba(160,120,40,0.25); }
[data-theme="light"] .field label { color: #7A6E68; }
[data-theme="light"] .field input,
[data-theme="light"] .field select,
[data-theme="light"] .field textarea { background: #FFFFFF; color: #1A1510; border-color: rgba(160,120,40,0.3); }
[data-theme="light"] .field input::placeholder,
[data-theme="light"] .field textarea::placeholder { color: #BDB4AC; }
[data-theme="light"] .field input:focus,
[data-theme="light"] .field select:focus,
[data-theme="light"] .field textarea:focus { border-color: var(--gold); }

/* Footer */
[data-theme="light"] footer { background: #1A1510; }
[data-theme="light"] .footer-brand p { color: rgba(200,190,180,0.7); }
[data-theme="light"] .footer-col a { color: rgba(200,190,180,0.6); }
[data-theme="light"] .footer-col a:hover { color: #F5F0E8; }
[data-theme="light"] .footer-col h4 { color: var(--gold-light); }
[data-theme="light"] .footer-bottom { color: rgba(200,190,180,0.5); border-top-color: rgba(200,190,180,0.1); }
[data-theme="light"] .footer-bottom span { color: var(--gold-light); }
[data-theme="light"] .soc-btn { color: rgba(200,190,180,0.5); border-color: rgba(200,190,180,0.15); }
[data-theme="light"] .soc-btn:hover { color: var(--gold-light); border-color: var(--gold-light); }

/* Scrollbar */
[data-theme="light"] ::-webkit-scrollbar-track { background: #F0EDE8; }

/* Mobile menu */
[data-theme="light"] .mobile-menu { background: rgba(247,244,239,0.99); }
[data-theme="light"] .mobile-menu a { color: #1A1510; }
[data-theme="light"] .mobile-menu a:hover { color: var(--gold); }
[data-theme="light"] .mobile-close { color: #1A1510; border-color: rgba(160,120,40,0.3); }
[data-theme="light"] .mobile-theme-btn { color: #5A504A; border-color: rgba(160,120,40,0.25); }

/* Lang bar */
[data-theme="light"] .lang-bar { border-left-color: var(--gold); }
[data-theme="light"] .lang-btn { background: rgba(247,244,239,0.95); color: #7A6E68; border-bottom-color: rgba(160,120,40,0.12); }
[data-theme="light"] .lang-btn:hover { color: #1A1510; }
[data-theme="light"] .lang-btn.active { background: var(--gold); color: #fff; }
[data-theme="light"] .theme-toggle { background: rgba(247,244,239,0.95); color: var(--gold); border-left-color: var(--gold); border-top-color: rgba(160,120,40,0.12); }
[data-theme="light"] .theme-toggle:hover { background: var(--gold); color: #fff; }
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body { background:var(--black); color:var(--text); font-family: var(--font-body); overflow-x:hidden; cursor:none; transition: background 0.4s ease, color 0.4s ease; }

/* CURSOR */
.cursor { position:fixed; width:8px; height:8px; background:var(--gold); border-radius:50%; pointer-events:none; z-index:99999; transform:translate(-50%,-50%); transition:transform 0.1s ease; mix-blend-mode:difference; }
.cursor-follower { position:fixed; width:36px; height:36px; border:1px solid rgba(201,168,76,0.5); border-radius:50%; pointer-events:none; z-index:99998; transform:translate(-50%,-50%); transition:all 0.15s ease; }
::-webkit-scrollbar { width:4px; } ::-webkit-scrollbar-track { background:var(--black); } ::-webkit-scrollbar-thumb { background:var(--gold); }

/* LANGUAGE SWITCHER */
/* VERTICAL LANG SWITCHER — fixed right side */
.lang-bar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  /* thin decorative line on the left */
  border-left: 2px solid var(--gold);
}
.lang-btn {
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: none;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  color: var(--text-dim);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 16px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.25s ease;
  width: 52px;
  text-align: center;
  position: relative;
}
.lang-btn:last-child { border-bottom: none; }
.lang-btn::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: var(--gold);
  transition: width 0.25s ease;
}
.lang-btn:hover { color: var(--white); }
.lang-btn:hover::before { width: 3px; }
.lang-btn.active {
  background: var(--gold);
  color: var(--black);
  font-weight: 800;
}
.lang-btn.active::before { display: none; }

/* Hide lang-bar on mobile — use mobile menu instead */
@media(max-width: 900px) { .lang-bar { display: none; } }

/* THEME TOGGLE BUTTON */
.theme-toggle {
  position: fixed;
  right: 0;
  top: calc(50% + 120px);
  z-index: 2000;
  width: 52px;
  height: 52px;
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(12px);
  border: none;
  border-left: 2px solid var(--gold);
  border-top: 1px solid rgba(201,168,76,0.15);
  color: var(--gold);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.theme-toggle:hover { background: var(--gold); color: var(--black); }
@media(max-width:900px) { .theme-toggle { display: none; } }

/* MOBILE THEME TOGGLE */
.mobile-theme-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-dim);
  padding: 10px 20px;
  font-size: 13px;
  font-family: var(--font-body);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 4px;
}
.mobile-theme-btn:hover { color: var(--gold); border-color: var(--gold); }
header {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  display:flex; justify-content:space-between; align-items:center;
  padding:20px 60px; transition:all 0.4s ease;
}
header.scrolled {
  background:rgba(8,8,8,0.97); backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px); padding:13px 60px;
  border-bottom:1px solid var(--border); top:0;
}
.logo { font-family:var(--font-logo); font-size:26px; letter-spacing:5px; color:var(--white); text-transform:uppercase; }
.logo span { color:var(--gold); }
nav { display:flex; align-items:center; gap:36px; }
nav a { font-size:11px; font-weight:600; letter-spacing:2.5px; text-transform:uppercase; text-decoration:none; color:rgba(200,200,200,0.7); transition:color 0.3s; position:relative; }
nav a::after { content:''; position:absolute; bottom:-4px; left:0; width:0; height:1px; background:var(--gold); transition:width 0.3s; }
nav a:hover { color:var(--white); } nav a:hover::after { width:100%; }
.header-cta { display:flex; align-items:center; gap:10px; background:transparent; border:1px solid var(--gold); color:var(--gold); padding:10px 22px; font-size:11px; font-weight:600; letter-spacing:2px; text-transform:uppercase; text-decoration:none; transition:all 0.3s; }
.header-cta:hover { background:var(--gold); color:var(--black); }
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; border:none; background:none; padding:8px; z-index:1101; position:relative; }
.hamburger span { width:26px; height:2px; background:var(--white); display:block; transition:all 0.3s; transform-origin:center; }
.hamburger.active span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity:0; transform:scaleX(0); }
.hamburger.active span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* HERO */
.hero { height:100vh; min-height:700px; position:relative; display:flex; align-items:center; overflow:hidden; }
.hero-bg { position:absolute; inset:0; background-image:linear-gradient(to right,rgba(8,8,8,0.95) 40%,rgba(8,8,8,0.5) 100%),url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?q=80&w=2070'); background-size:cover; background-position:center; }
.hero-bg::after { content:''; position:absolute; inset:0; background:linear-gradient(to top,var(--black) 0%,transparent 30%); }
.hero-content { position:relative; z-index:2; padding:0 60px; max-width:750px; }
.hero-eyebrow { display:flex; align-items:center; gap:16px; margin-bottom:28px; }
.hero-eyebrow span { font-size:10px; letter-spacing:4px; text-transform:uppercase; color:var(--gold); font-weight:600; }
.eyebrow-line { width:50px; height:1px; background:var(--gold); }
.hero h1 { font-family:var(--font-display); font-size:clamp(52px,7vw,96px); font-weight:300; line-height:1.0; color:var(--white); margin-bottom:28px; letter-spacing:-1px; }
.hero h1 em { font-style:italic; color:var(--gold); }
.hero p { font-size:16px; font-weight:300; line-height:1.8; color:rgba(200,200,200,0.7); margin-bottom:44px; max-width:480px; }
.hero-btns { display:flex; align-items:center; gap:24px; flex-wrap:wrap; }
.btn-primary { display:inline-flex; align-items:center; gap:12px; background:var(--gold); color:var(--black); padding:15px 34px; font-size:11px; font-weight:700; letter-spacing:2.5px; text-transform:uppercase; text-decoration:none; transition:all 0.3s; position:relative; overflow:hidden; }
.btn-primary::before { content:''; position:absolute; inset:0; background:var(--gold-light); transform:translateX(-100%); transition:transform 0.4s; }
.btn-primary:hover::before { transform:translateX(0); }
.btn-primary span, .btn-primary i { position:relative; z-index:1; }
.btn-outline { display:inline-flex; align-items:center; gap:10px; color:rgba(200,200,200,0.7); font-size:11px; font-weight:600; letter-spacing:2px; text-transform:uppercase; text-decoration:none; border-bottom:1px solid rgba(200,200,200,0.3); padding-bottom:4px; transition:all 0.3s; }
.btn-outline:hover { color:var(--white); border-color:var(--white); }
.hero-stats { position:absolute; bottom:50px; right:60px; z-index:2; display:flex; gap:50px; }
.hero-stat { text-align:center; }
.hero-stat .num { font-family:var(--font-display); font-size:42px; font-weight:600; color:var(--gold); line-height:1; display:block; }
.hero-stat .lbl { font-size:10px; letter-spacing:2px; text-transform:uppercase; color:var(--text-dim); margin-top:6px; display:block; }
.hero-divider { width:1px; height:60px; background:var(--border); align-self:center; }

/* MARQUEE */
.marquee-band { background:var(--gold); padding:13px 0; overflow:hidden; display:flex; }
.marquee-track { display:flex; animation:marquee 25s linear infinite; white-space:nowrap; }
.marquee-track span { font-size:11px; font-weight:700; letter-spacing:3px; text-transform:uppercase; color:var(--black); padding:0 40px; }
.marquee-track .dot { color:rgba(0,0,0,0.4); padding:0; font-size:6px; align-self:center; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ABOUT */
.about { padding:120px 60px; display:grid; grid-template-columns:1fr 1fr; gap:100px; align-items:center; max-width:1400px; margin:0 auto; background:var(--black); }
.about-visual { position:relative; }
.about-img-main { width:100%; aspect-ratio:4/5; object-fit:cover; display:block; }
.about-img-accent { position:absolute; bottom:-40px; right:-40px; width:55%; aspect-ratio:1; object-fit:cover; border:6px solid var(--black); }
.about-badge { position:absolute; top:40px; left:-30px; background:var(--gold); color:var(--black); padding:20px 24px; text-align:center; }
.about-badge .big { font-family:var(--font-display); font-size:42px; font-weight:700; display:block; line-height:1; }
.about-badge .small { font-size:9px; letter-spacing:2px; text-transform:uppercase; font-weight:700; }
.section-label { display:flex; align-items:center; gap:16px; margin-bottom:20px; }
.section-label span { font-size:10px; letter-spacing:3px; text-transform:uppercase; color:var(--gold); font-weight:600; }
.section-label-line { flex:1; height:1px; background:var(--border); max-width:60px; }
.about h2 { font-family:var(--font-display); font-size:clamp(36px,4vw,56px); font-weight:300; line-height:1.1; color:var(--white); margin-bottom:24px; }
.about h2 em { font-style:italic; color:var(--gold); }
.about > div > p { font-size:15px; line-height:1.9; font-weight:300; color:rgba(200,200,200,0.7); margin-bottom:40px; }
.feature-list { display:flex; flex-direction:column; gap:20px; margin-bottom:48px; }
.feat-item { display:flex; align-items:flex-start; gap:20px; }
.feat-icon { width:44px; height:44px; border:1px solid var(--border); display:flex; align-items:center; justify-content:center; color:var(--gold); font-size:16px; flex-shrink:0; }
.feat-text h4 { font-size:14px; font-weight:600; color:var(--white); margin-bottom:4px; }
.feat-text p { font-size:13px; color:var(--text-dim); line-height:1.6; }

/* COUNTERS */
.counters-section { background:var(--surface); border-top:1px solid var(--border); border-bottom:1px solid var(--border); padding:80px 60px; }
.counters-inner { max-width:1400px; margin:0 auto; display:grid; grid-template-columns:repeat(4,1fr); }
.counter-box { padding:20px 40px; border-right:1px solid var(--border); text-align:center; }
.counter-box:first-child { border-left:1px solid var(--border); }
.counter-num { font-family:var(--font-display); font-size:64px; font-weight:600; color:var(--gold); line-height:1; display:inline; }
.counter-suffix { color:var(--gold); font-size:32px; font-family:var(--font-display); }
.counter-label { font-size:10px; letter-spacing:2.5px; text-transform:uppercase; color:var(--text-dim); margin-top:8px; display:block; }

/* PRODUCTS */
.products-section { padding:120px 60px; max-width:1400px; margin:0 auto; }
.section-header { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:30px; flex-wrap:wrap; gap:16px; }
.section-header h2 { font-family:var(--font-display); font-size:clamp(36px,4vw,56px); font-weight:300; color:var(--white); }
.section-header h2 em { font-style:italic; color:var(--gold); }
.section-header p { font-size:13px; color:var(--text-dim); max-width:280px; text-align:right; line-height:1.7; }

/* FILTER TABS */
.filter-tabs { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:40px; }
.ftab { padding:8px 20px; background:transparent; border:1px solid var(--border); color:var(--text-dim); font-size:11px; letter-spacing:2px; text-transform:uppercase; cursor:pointer; transition:all 0.3s; font-family:var(--font-body); font-weight:600; }
.ftab.active, .ftab:hover { background:var(--gold); border-color:var(--gold); color:var(--black); }

/* SHOP CARDS */
.shop-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.shop-card { background:var(--surface); border:1px solid var(--border); display:flex; flex-direction:column; transition:border-color 0.3s,transform 0.3s,box-shadow 0.3s; position:relative; overflow:hidden; }
.shop-card:hover { border-color:var(--gold); transform:translateY(-4px); box-shadow:0 20px 50px rgba(0,0,0,0.4); }
.shop-img-wrap { position:relative; overflow:hidden; aspect-ratio:4/3; background:var(--surface2); }
.shop-img-wrap img { width:100%; height:100%; object-fit:cover; transition:transform 0.6s ease; display:block; }
.shop-card:hover .shop-img-wrap img { transform:scale(1.06); }
.shop-badge { position:absolute; top:12px; left:12px; font-size:9px; font-weight:700; letter-spacing:2px; text-transform:uppercase; padding:5px 12px; z-index:2; font-family:var(--font-body); }
.badge-sale { background:#C0392B; color:#fff; }
.badge-new { background:var(--gold); color:var(--black); }
.badge-hit { background:#1a6a3a; color:#fff; }
.shop-wishlist { position:absolute; top:12px; right:12px; z-index:2; width:34px; height:34px; background:rgba(8,8,8,0.7); border:1px solid var(--border); display:flex; align-items:center; justify-content:center; color:var(--text-dim); font-size:13px; cursor:pointer; transition:all 0.3s; border-radius:2px; }
.shop-wishlist:hover, .shop-wishlist.active { background:var(--gold-dim); border-color:var(--gold); color:var(--gold); }
.shop-body { padding:20px; flex:1; display:flex; flex-direction:column; }
.shop-cat { font-size:9px; letter-spacing:2.5px; text-transform:uppercase; color:var(--gold); margin-bottom:6px; font-weight:700; font-family:var(--font-body); }

/* UPDATED PRODUCT FONT — Space Grotesk */
.shop-name { font-family:var(--font-product); font-size:17px; font-weight:600; color:var(--white); line-height:1.3; margin-bottom:10px; letter-spacing:-0.3px; }
.shop-desc { font-size:12px; color:var(--text-dim); line-height:1.7; margin-bottom:12px; flex:1; font-family:var(--font-body); font-weight:300; }
.shop-rating { display:flex; align-items:center; gap:6px; margin-bottom:14px; }
.stars { color:var(--gold); font-size:11px; letter-spacing:2px; }
.rating-count { font-size:11px; color:var(--text-dim); }
.shop-price-row { display:flex; align-items:flex-end; justify-content:space-between; margin-bottom:14px; flex-wrap:wrap; gap:4px; }
.shop-price { font-family:var(--font-product); font-size:22px; font-weight:700; color:var(--white); letter-spacing:-0.5px; }
.shop-price .unit { font-size:11px; color:var(--text-dim); font-weight:400; font-family:var(--font-body); margin-left:3px; }
.shop-price-old { font-size:12px; color:var(--text-dim); text-decoration:line-through; font-family:var(--font-body); }
.shop-actions { display:flex; gap:10px; }
.btn-cart { flex:1; background:var(--gold); color:var(--black); border:none; padding:12px 14px; font-size:11px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; cursor:pointer; transition:all 0.3s; display:flex; align-items:center; justify-content:center; gap:8px; font-family:var(--font-body); }
.btn-cart:hover { background:var(--gold-light); }
.btn-quick { width:44px; background:transparent; border:1px solid var(--border); color:var(--text-dim); cursor:pointer; transition:all 0.3s; display:flex; align-items:center; justify-content:center; font-size:14px; }
.btn-quick:hover { border-color:var(--gold); color:var(--gold); }
.shop-meta { padding:12px 20px; border-top:1px solid var(--border); display:flex; align-items:center; justify-content:space-between; }
.shop-stock { font-size:11px; color:#2ecc71; display:flex; align-items:center; gap:6px; }
.shop-stock::before { content:''; width:6px; height:6px; border-radius:50%; background:#2ecc71; display:inline-block; }
.shop-stock.low { color:#e67e22; } .shop-stock.low::before { background:#e67e22; }
.shop-sku { font-size:10px; color:var(--text-dim); letter-spacing:1px; }

/* PROCESS */
.process-section { padding:120px 60px; background:var(--surface); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.process-inner { max-width:1400px; margin:0 auto; }
.process-header { text-align:center; margin-bottom:80px; }
.process-header h2 { font-family:var(--font-display); font-size:clamp(36px,4vw,56px); font-weight:300; color:var(--white); margin-bottom:16px; }
.process-header h2 em { font-style:italic; color:var(--gold); }
.process-header p { color:var(--text-dim); font-size:15px; }
.process-steps { display:grid; grid-template-columns:repeat(4,1fr); position:relative; }
.process-steps::before { content:''; position:absolute; top:30px; left:12.5%; width:75%; height:1px; background:linear-gradient(to right,transparent,var(--border),var(--border),transparent); }
.step { padding:0 30px; text-align:center; }
.step-num { width:60px; height:60px; border:1px solid var(--gold); border-radius:50%; display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-size:22px; color:var(--gold); margin:0 auto 30px; background:var(--surface); position:relative; z-index:1; }
.step h4 { font-size:14px; font-weight:600; color:var(--white); letter-spacing:0.5px; margin-bottom:12px; }
.step p { font-size:13px; color:var(--text-dim); line-height:1.7; }

/* GALLERY */
.gallery-section { padding:120px 0; overflow:hidden; }
.gallery-title { padding:0 60px; margin-bottom:50px; }
.gallery-title h2 { font-family:var(--font-display); font-size:clamp(36px,4vw,56px); font-weight:300; color:var(--white); }
.gallery-title h2 em { font-style:italic; color:var(--gold); }
.gallery-strip { display:flex; gap:3px; overflow-x:auto; padding:0 60px; scrollbar-width:none; }
.gallery-strip::-webkit-scrollbar { display:none; }
.gallery-item { flex-shrink:0; width:360px; height:480px; position:relative; overflow:hidden; }
.gallery-item img { width:100%; height:100%; object-fit:cover; transition:transform 0.6s ease; }
.gallery-item:hover img { transform:scale(1.05); }
.gallery-caption { position:absolute; bottom:0; left:0; right:0; padding:20px; background:linear-gradient(transparent,rgba(0,0,0,0.85)); font-size:12px; color:var(--text-dim); letter-spacing:1px; opacity:0; transform:translateY(10px); transition:all 0.3s; }
.gallery-item:hover .gallery-caption { opacity:1; transform:translateY(0); }

/* TESTIMONIALS */
.testimonials { padding:120px 60px; background:var(--deep); }
.test-inner { max-width:1400px; margin:0 auto; }
.test-header { margin-bottom:60px; }
.test-header h2 { font-family:var(--font-display); font-size:clamp(36px,4vw,56px); font-weight:300; color:var(--white); }
.test-header h2 em { font-style:italic; color:var(--gold); }
.test-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; background:var(--border); }
.test-card { background:var(--surface2); padding:48px 40px; }
.test-stars { color:var(--gold); font-size:12px; letter-spacing:4px; margin-bottom:24px; }
.test-quote { font-family:var(--font-display); font-size:20px; font-weight:300; font-style:italic; color:var(--white); line-height:1.7; margin-bottom:32px; }
.test-author { display:flex; align-items:center; gap:16px; }
.test-avatar { width:48px; height:48px; border-radius:50%; object-fit:cover; border:2px solid var(--border); }
.test-info h5 { font-size:14px; font-weight:600; color:var(--white); }
.test-info span { font-size:12px; color:var(--text-dim); letter-spacing:1px; }

/* CTA */
.cta-band { padding:100px 60px; background:var(--gold); display:flex; align-items:center; justify-content:space-between; gap:40px; flex-wrap:wrap; }
.cta-band h2 { font-family:var(--font-display); font-size:clamp(32px,4vw,54px); font-weight:300; color:var(--black); line-height:1.1; max-width:600px; }
.cta-band h2 strong { font-weight:700; }
.cta-actions { display:flex; align-items:center; gap:20px; flex-wrap:wrap; }
.btn-cta-dark { background:var(--black); color:var(--gold); padding:18px 40px; font-size:11px; font-weight:700; letter-spacing:2.5px; text-transform:uppercase; text-decoration:none; transition:all 0.3s; display:inline-flex; align-items:center; gap:12px; }
.btn-cta-dark:hover { background:var(--deep); }
.btn-cta-outline { background:transparent; border:2px solid var(--black); color:var(--black); padding:16px 40px; font-size:11px; font-weight:700; letter-spacing:2.5px; text-transform:uppercase; text-decoration:none; transition:all 0.3s; }
.btn-cta-outline:hover { background:var(--black); color:var(--gold); }

/* CONTACT */
.contact-section { padding:120px 60px; max-width:1400px; margin:0 auto; }
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:100px; align-items:start; }
.contact-info h2 { font-family:var(--font-display); font-size:clamp(36px,4vw,56px); font-weight:300; color:var(--white); margin-bottom:24px; }
.contact-info h2 em { font-style:italic; color:var(--gold); }
.contact-info > p { color:var(--text-dim); font-size:15px; line-height:1.8; margin-bottom:40px; }
.contact-items { display:flex; flex-direction:column; gap:24px; }
.contact-item { display:flex; align-items:center; gap:20px; }
.contact-icon { width:48px; height:48px; border:1px solid var(--border); display:flex; align-items:center; justify-content:center; color:var(--gold); font-size:16px; flex-shrink:0; }
.contact-text span { font-size:11px; letter-spacing:2px; text-transform:uppercase; color:var(--text-dim); display:block; margin-bottom:4px; }
.contact-text a, .contact-text p { font-size:16px; color:var(--white); text-decoration:none; font-weight:500; }
.contact-text a:hover { color:var(--gold); }
.contact-form { display:flex; flex-direction:column; gap:16px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.field { display:flex; flex-direction:column; gap:8px; }
.field label { font-size:10px; letter-spacing:2px; text-transform:uppercase; color:var(--text-dim); }
.field input, .field select, .field textarea { background:var(--surface); border:1px solid var(--border); color:var(--white); padding:14px 18px; font-size:14px; font-family:var(--font-body); outline:none; transition:border-color 0.3s; resize:none; }
.field input:focus, .field select:focus, .field textarea:focus { border-color:var(--gold); }
.field select option { background:var(--surface); }
.submit-btn { background:var(--gold); border:none; color:var(--black); padding:18px 40px; font-size:11px; font-weight:700; letter-spacing:2.5px; text-transform:uppercase; cursor:pointer; transition:all 0.3s; display:flex; align-items:center; gap:12px; align-self:flex-start; font-family:var(--font-body); }
.submit-btn:hover { background:var(--gold-light); }

/* FOOTER */
footer { background:var(--surface); border-top:1px solid var(--border); padding:60px; }
.footer-inner { max-width:1400px; margin:0 auto; display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:60px; }
.footer-brand .logo { font-size:26px; display:block; margin-bottom:20px; color: #efe2cd; }
.footer-brand p { font-size:13px; color:var(--text-dim); line-height:1.8; max-width:300px; }
.footer-socials { display:flex; gap:16px; margin-top:28px; }
.soc-btn { width:40px; height:40px; border:1px solid var(--border); display:flex; align-items:center; justify-content:center; color:var(--text-dim); font-size:14px; text-decoration:none; transition:all 0.3s; }
.soc-btn:hover { border-color:var(--gold); color:var(--gold); }
.footer-col h4 { font-size:10px; letter-spacing:3px; text-transform:uppercase; color:var(--gold); margin-bottom:24px; font-weight:700; }
.footer-col a { display:block; font-size:14px; color:var(--text-dim); text-decoration:none; margin-bottom:14px; transition:color 0.3s; }
.footer-col a:hover { color:var(--white); }
.footer-bottom { max-width:1400px; margin:50px auto 0; padding-top:30px; border-top:1px solid var(--border); display:flex; justify-content:space-between; align-items:center; font-size:12px; color:var(--text-dim); flex-wrap:wrap; gap:10px; }
.footer-bottom span { color:var(--gold); }

/* MOBILE MENU */
.mobile-menu { position:fixed; inset:0; background:rgba(8,8,8,0.99); z-index:1100; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:32px; transform:translateX(100%); transition:transform 0.45s cubic-bezier(0.77,0,0.18,1); backdrop-filter:blur(12px); visibility:hidden; }
.mobile-menu.open { transform:translateX(0); visibility:visible; }
.mobile-menu a { font-family:var(--font-display); font-size:40px; font-weight:300; color:var(--white); text-decoration:none; opacity:0; transform:translateX(30px); transition:color 0.3s,opacity 0.4s ease,transform 0.4s ease; }
.mobile-menu.open a { opacity:1; transform:translateX(0); }
.mobile-menu.open a:nth-child(2){transition-delay:0.05s} .mobile-menu.open a:nth-child(3){transition-delay:0.10s} .mobile-menu.open a:nth-child(4){transition-delay:0.15s} .mobile-menu.open a:nth-child(5){transition-delay:0.20s} .mobile-menu.open a:nth-child(6){transition-delay:0.25s}
.mobile-menu a:hover { color:var(--gold); }
.mobile-close { position:absolute; top:24px; right:24px; background:none; border:1px solid var(--border); color:var(--white); font-size:18px; cursor:pointer; width:44px; height:44px; display:flex; align-items:center; justify-content:center; transition:border-color 0.3s,color 0.3s; }
.mobile-close:hover { border-color:var(--gold); color:var(--gold); }
.mobile-lang { display:flex; gap:8px; margin-top:8px; }
.mobile-lang .lang-btn {
  font-size:11px; padding:8px 18px; width:auto;
  background:transparent; border:1px solid var(--border) !important;
  border-left:none !important;
  color:var(--text-dim);
}
.mobile-lang .lang-btn::before { display:none; }
.mobile-lang .lang-btn.active { background:var(--gold) !important; color:var(--black); border-color:var(--gold) !important; }

/* ANIMATIONS */
.reveal { opacity:0; transform:translateY(40px); transition:opacity 0.8s ease,transform 0.8s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-left { opacity:0; transform:translateX(-40px); transition:opacity 0.8s ease,transform 0.8s ease; }
.reveal-left.visible { opacity:1; transform:translateX(0); }
.reveal-right { opacity:0; transform:translateX(40px); transition:opacity 0.8s ease,transform 0.8s ease; }
.reveal-right.visible { opacity:1; transform:translateX(0); }
.delay-1{transition-delay:0.1s} .delay-2{transition-delay:0.2s} .delay-3{transition-delay:0.3s} .delay-4{transition-delay:0.4s}
@keyframes fadeUp{from{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}
.hero-eyebrow{animation:fadeUp 0.8s ease 0.3s both} .hero h1{animation:fadeUp 0.8s ease 0.5s both} .hero p{animation:fadeUp 0.8s ease 0.7s both} .hero-btns{animation:fadeUp 0.8s ease 0.9s both} .hero-stats{animation:fadeUp 0.8s ease 1.1s both}

/* RESPONSIVE */
@media(max-width:1100px){
  header{padding:16px 30px} header.scrolled{padding:10px 30px}
  .hero-content{padding:0 30px} .hero-stats{right:30px;gap:30px}
  .about{padding:80px 30px;gap:60px} .counters-section{padding:60px 30px}
  .products-section,.testimonials,.cta-band,.contact-section{padding-left:30px;padding-right:30px}
  .gallery-title{padding:0 30px} .footer-inner{grid-template-columns:1fr 1fr;gap:40px}
  .shop-grid{grid-template-columns:repeat(3,1fr)}
}
@media(max-width:900px){
  nav,.header-cta{display:none} .hamburger{display:flex}
  .about{grid-template-columns:1fr;gap:50px} .about-img-accent{width:45%;right:-20px;bottom:-20px}
  .counters-inner{grid-template-columns:repeat(2,1fr)}
  .counter-box:nth-child(odd){border-left:1px solid var(--border)} .counter-box:nth-child(2){border-right:1px solid var(--border)}
  .process-steps{grid-template-columns:1fr 1fr;gap:50px} .process-steps::before{display:none}
  .test-grid{grid-template-columns:1fr;background:none;gap:16px}
  .contact-grid{grid-template-columns:1fr;gap:60px}
  .footer-inner{grid-template-columns:1fr 1fr}
  .section-header{flex-direction:column;align-items:flex-start} .section-header p{text-align:left}
  .shop-grid{grid-template-columns:repeat(2,1fr)}
  /* hero stats on tablet */
  .hero-stats{gap:24px; bottom:30px; right:20px;}
  .hero-stat .num{font-size:32px}
}
@media(max-width:600px){
  /* Header */
  header{padding:14px 20px} header.scrolled{padding:10px 20px}

  /* Hero — full fix */
  .hero{
    height:auto;
    min-height:100svh;
    padding-top:80px;
    padding-bottom:40px;
    flex-direction:column;
    justify-content:flex-start;
    align-items:flex-start;
  }
  .hero-bg{
    background-image:
      linear-gradient(to bottom, rgba(8,8,8,0.7) 0%, rgba(8,8,8,0.85) 100%),
      url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?q=80&w=2070');
  }
  .hero-content{
    padding: 0 20px;
    max-width:100%;
    width:100%;
  }
  .hero-eyebrow{margin-bottom:18px}
  .hero h1{
    font-size: clamp(38px, 10vw, 56px);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
  }
  .hero p{
    font-size:14px;
    margin-bottom:28px;
    max-width:100%;
  }
  .hero-btns{
    flex-direction:column;
    align-items:flex-start;
    gap:16px;
    width:100%;
  }
  .btn-primary{
    width:100%;
    justify-content:center;
    padding:14px 20px;
  }
  .btn-outline{padding-bottom:2px}

  /* Hero stats — horizontal row below content */
  .hero-stats{
    position:static;
    display:flex;
    flex-direction:row;
    justify-content:flex-start;
    flex-wrap:nowrap;
    gap:0;
    padding:28px 20px 0;
    width:100%;
    border-top:1px solid var(--border);
    margin-top:28px;
  }
  .hero-stat{
    flex:1;
    text-align:center;
    padding:0 8px;
  }
  .hero-stat .num{font-size:28px; font-weight:600}
  .hero-stat .lbl{font-size:9px; letter-spacing:1px; margin-top:4px}
  .hero-divider{width:1px; height:40px; background:var(--border); align-self:center; flex-shrink:0}

  /* About */
  .about{padding:60px 20px} .about-badge{left:-8px} .about-img-accent{display:none}
  .about h2{font-size:clamp(28px,8vw,40px)}

  /* Counters */
  .counters-section{padding:50px 20px}
  .counter-box{padding:16px 12px}
  .counter-num{font-size:38px}
  .counter-suffix{font-size:22px}
  .counter-label{font-size:9px;letter-spacing:1.5px}

  /* Products */
  .products-section{padding:70px 20px}
  .shop-grid{grid-template-columns:1fr}
  .section-header h2{font-size:clamp(28px,8vw,40px)}

  /* Filter tabs */
  .filter-tabs{gap:6px}
  .ftab{padding:7px 14px; font-size:10px; letter-spacing:1.5px}

  /* Process */
  .process-steps{grid-template-columns:1fr; gap:36px}
  .process-section{padding:70px 20px}
  .process-header h2{font-size:clamp(28px,8vw,40px)}

  /* Gallery */
  .gallery-section{padding:70px 0}
  .gallery-title{padding:0 20px}
  .gallery-strip{padding:0 20px}
  .gallery-item{width:260px; height:340px}

  /* Testimonials */
  .testimonials{padding:70px 20px}
  .test-grid{gap:12px}
  .test-card{padding:32px 24px}
  .test-quote{font-size:17px}
  .test-header h2{font-size:clamp(28px,8vw,40px)}

  /* CTA */
  .cta-band{padding:60px 20px; flex-direction:column; align-items:flex-start; gap:28px}
  .cta-band h2{font-size:clamp(26px,7vw,38px)}
  .cta-actions{flex-direction:column; align-items:stretch; width:100%}
  .btn-cta-dark, .btn-cta-outline{text-align:center; justify-content:center; padding:16px 20px}

  /* Contact */
  .contact-section{padding:70px 20px}
  .contact-info h2{font-size:clamp(28px,8vw,40px)}
  .form-row{grid-template-columns:1fr}
  .submit-btn{width:100%; justify-content:center; align-self:stretch}

  /* Footer */
  footer{padding:40px 20px}
  .footer-inner{grid-template-columns:1fr; gap:32px}
  .footer-bottom{flex-direction:column; text-align:center; gap:8px}
  .footer-brand p{max-width:100%}
}

@media(hover:none),(pointer:coarse){
  .cursor,.cursor-follower{display:none}
  body{cursor:auto}
  button,a{cursor:pointer}
}

/* Extra small phones */
@media(max-width:380px){
  .hero h1{font-size:34px}
  .hero-stat .num{font-size:24px}
  .hero-divider{display:none}
  .hero-stat{border-right:1px solid var(--border)}
  .hero-stat:last-child{border-right:none}
}
  .hero h1{font-size:34px}
  .hero-stat .num{font-size:24px}
  .hero-divider{display:none}
  .hero-stat{border-right:1px solid var(--border)}
  .hero-stat:last-child{border-right:none}
}
