/* ================================================
   ShopMixMatch — Shared Styles
   Your Vibe. Your Light.
   ================================================ */

/* Reset & Variables */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

:root {
  --bg: #070E1A;
  --bg2: #0D1827;
  --bg3: #132035;
  --accent: #C4972A;
  --accent-lt: #E8B84A;
  --accent-dim: rgba(196,151,42,0.15);
  --white: #F4F0EA;
  --muted: #6A7A92;
  --border: rgba(196,151,42,0.22);
  --success: #22C55E;
}

/* Color Theme Variants */
body.theme-gold { --accent: #C4972A; --accent-lt: #E8B84A; --accent-dim: rgba(196,151,42,0.15); --border: rgba(196,151,42,0.22); }
body.theme-red { --accent: #FF6B6B; --accent-lt: #FF8A8A; --accent-dim: rgba(255,107,107,0.15); --border: rgba(255,107,107,0.22); }
body.theme-blue { --accent: #3B82F6; --accent-lt: #60A5FA; --accent-dim: rgba(59,130,246,0.15); --border: rgba(59,130,246,0.22); }
body.theme-green { --accent: #22C55E; --accent-lt: #4ADE80; --accent-dim: rgba(34,197,94,0.15); --border: rgba(34,197,94,0.22); }
body.theme-purple { --accent: #A855F7; --accent-lt: #C084FC; --accent-dim: rgba(168,85,247,0.15); --border: rgba(168,85,247,0.22); }
body.theme-cyan { --accent: #06B6D4; --accent-lt: #22D3EE; --accent-dim: rgba(6,182,212,0.15); --border: rgba(6,182,212,0.22); }
body.theme-orange { --accent: #F97316; --accent-lt: #FB923C; --accent-dim: rgba(249,115,22,0.15); --border: rgba(249,115,22,0.22); }
body.theme-pink { --accent: #EC4899; --accent-lt: #F472B6; --accent-dim: rgba(236,72,153,0.15); --border: rgba(236,72,153,0.22); }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  transition: --accent 0.3s, --accent-lt 0.3s;
}

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ================================================
   COLOR SWITCHER
   ================================================ */
.color-switcher {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.color-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4), 0 0 30px var(--accent-dim);
  transition: all 0.3s;
  animation: glow-pulse 2s ease-in-out infinite;
}

.color-toggle:hover {
  transform: scale(1.1);
}

.color-icon {
  font-size: 24px;
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(0,0,0,0.4), 0 0 30px var(--accent-dim); }
  50% { box-shadow: 0 4px 30px rgba(0,0,0,0.5), 0 0 50px var(--accent-dim); }
}

.color-panel {
  position: absolute;
  bottom: 70px;
  right: 0;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
  min-width: 200px;
}

.color-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.color-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  text-align: center;
}

.color-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.color-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: var(--btn-color);
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 0 10px var(--btn-color);
}

.color-btn:hover {
  transform: scale(1.15);
}

.color-btn.active {
  border-color: var(--white);
  transform: scale(1.1);
}

/* ================================================
   ANNOUNCEMENT BAR
   ================================================ */
.announce {
  background: var(--accent);
  text-align: center;
  padding: 10px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  color: #08101E;
  text-transform: uppercase;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  transition: background 0.3s;
}

/* ================================================
   NAVIGATION
   ================================================ */
nav {
  position: fixed;
  top: 38px;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 5vw;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(7,14,26,.95);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s, border-color 0.3s;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--white);
  text-decoration: none;
  letter-spacing: .02em;
}

.nav-logo span {
  color: var(--accent);
  font-style: italic;
  transition: color 0.3s;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color .2s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: background 0.3s;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-etsy {
  background: var(--accent);
  color: #08101E;
  padding: 10px 20px;
  border-radius: 40px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .2s;
}

.nav-etsy:hover {
  background: var(--accent-lt);
  transform: translateY(-1px);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg2);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: var(--white);
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  transition: color .2s;
}

.mobile-menu a:hover { color: var(--accent); }

.mobile-close {
  position: absolute;
  top: 50px;
  right: 5vw;
  background: none;
  border: none;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
}

/* ================================================
   HERO SECTION
   ================================================ */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 140px 6vw 80px;
  gap: 4rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 55% 65% at 72% 50%, var(--accent-dim) 0%, transparent 60%),
    radial-gradient(ellipse 45% 80% at 18% 28%, rgba(7,28,60,.7) 0%, transparent 70%);
  transition: background 0.5s;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--accent-dim) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: .45;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 6px 18px;
  border-radius: 40px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeUp .6s ease both;
  transition: border-color 0.3s, color 0.3s;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 1.4rem;
  animation: fadeUp .6s .1s ease both;
}

h1 em, h2 em {
  color: var(--accent);
  font-style: italic;
  transition: color 0.3s;
}

.hero-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 440px;
  margin-bottom: 2rem;
  animation: fadeUp .6s .2s ease both;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp .6s .3s ease both;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  animation: fadeUp .6s .4s ease both;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--accent);
  transition: color 0.3s;
}

.stat-label {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hero-img-stack {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeUp .8s .2s ease both;
}

.glow-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--accent-dim);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-ring 3s ease-in-out infinite;
  transition: border-color 0.3s;
}

.glow-ring:nth-child(1) { width: 280px; height: 280px; }
.glow-ring:nth-child(2) { width: 380px; height: 380px; opacity: 0.5; animation-delay: .5s; }
.glow-ring:nth-child(3) { width: 480px; height: 480px; opacity: 0.3; animation-delay: 1s; }

@keyframes pulse-ring {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.04); opacity: .55; }
}

.hero-lamp-wrap {
  position: relative;
  z-index: 2;
}

.hero-lamp-img {
  width: 280px;
  height: 420px;
  object-fit: cover;
  border-radius: 140px 140px 60px 60px;
  box-shadow: 0 0 60px var(--accent-dim), 0 20px 60px rgba(0,0,0,0.5);
  animation: lamp-glow 2.5s ease-in-out infinite;
  transition: box-shadow 0.3s;
}

@keyframes lamp-glow {
  0%, 100% { box-shadow: 0 0 60px var(--accent-dim), 0 20px 60px rgba(0,0,0,0.5); }
  50% { box-shadow: 0 0 100px var(--accent-dim), 0 20px 80px rgba(0,0,0,0.4); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ================================================
   BUTTONS
   ================================================ */
.btn-primary {
  background: var(--accent);
  color: #08101E;
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  transition: all .25s;
  cursor: pointer;
  display: inline-block;
  font-family: 'Raleway', sans-serif;
}

.btn-primary:hover {
  background: var(--accent-lt);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--accent-dim);
}

.btn-outline {
  border: 1.5px solid var(--accent-dim);
  background: transparent;
  color: var(--white);
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .25s;
  display: inline-block;
  cursor: pointer;
  font-family: 'Raleway', sans-serif;
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ================================================
   TICKER
   ================================================ */
.ticker-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  overflow: hidden;
  background: var(--bg2);
  transition: border-color 0.3s;
}

.ticker {
  display: flex;
  gap: 3.5rem;
  white-space: nowrap;
  animation: ticker 25s linear infinite;
}

.ticker-item {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: .9rem;
}

.ticker-item::before {
  content: '✦';
  color: var(--accent);
  font-size: 9px;
  transition: color 0.3s;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ================================================
   FEATURES
   ================================================ */
#features {
  padding: 80px 6vw;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.feat {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  transition: border-color 0.3s;
}

.feat:last-child { border-right: none; }

.feat-icon {
  width: 50px;
  height: 50px;
  background: var(--accent-dim);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 22px;
  transition: background 0.3s;
}

.feat h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  margin-bottom: .5rem;
}

.feat p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ================================================
   SECTIONS - GENERAL
   ================================================ */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .5rem;
  display: block;
  transition: color 0.3s;
}

.section-header h2,
section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 900;
  line-height: 1.1;
}

/* ================================================
   PAGE HEADER
   ================================================ */
.page-header {
  padding: 160px 6vw 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 30%, var(--accent-dim) 0%, transparent 60%);
  transition: background 0.5s;
}

.page-header-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--accent-dim) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: .4;
}

.page-header h1 {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 1rem;
}

.page-header p {
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto;
}

/* ================================================
   FEATURED PRODUCTS (HOME)
   ================================================ */
#featured {
  padding: 100px 6vw;
}

.product-grid-home {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* ================================================
   PRODUCT CARDS
   ================================================ */
#shop {
  padding: 60px 6vw 100px;
}

.pcard {
  background: var(--bg2);
  border-radius: 16px;
  overflow: hidden;
  transition: all .3s;
  position: relative;
  border: 1px solid var(--border);
}

.pcard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-lt), var(--accent));
  opacity: 0;
  transition: opacity .3s;
  z-index: 2;
}

.pcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
}

.pcard:hover::before { opacity: 1; }

.pbadge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent);
  color: #08101E;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  z-index: 3;
  transition: background 0.3s;
}

.pcard-img {
  aspect-ratio: 1;
  background: var(--bg3);
  overflow: hidden;
}

.pcard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.pcard:hover .pcard-img img {
  transform: scale(1.05);
}

.pinfo {
  padding: 1.5rem;
}

.pname {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin-bottom: .5rem;
}

.pdesc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.pfeatures {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.2rem;
}

.pfeat-tag {
  background: var(--accent-dim);
  border: 1px solid var(--border);
  color: var(--accent-lt);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.pprice-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.pprice {
  font-size: 26px;
  font-weight: 700;
  color: var(--accent);
  font-family: 'Playfair Display', serif;
  transition: color 0.3s;
}

.pprice small {
  font-size: 11px;
  color: var(--muted);
  font-weight: 400;
  font-family: 'Raleway', sans-serif;
  display: block;
  margin-top: -2px;
}

.btn-add {
  padding: 10px 20px;
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--white);
  border-radius: 40px;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
  text-decoration: none;
}

.btn-add:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #08101E;
}

/* ================================================
   FULL PRODUCT LAYOUT (Shop Page)
   ================================================ */
.products-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.product-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  background: var(--bg2);
  border-radius: 20px;
  border: 1px solid var(--border);
  overflow: hidden;
  padding: 2.5rem;
  transition: border-color 0.3s;
}

.product-full:nth-child(even) {
  direction: rtl;
}

.product-full:nth-child(even) > * {
  direction: ltr;
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gallery-main {
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg3);
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-main:hover img {
  transform: scale(1.03);
}

.gallery-thumbs {
  display: flex;
  gap: 0.5rem;
}

.thumb {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.6;
  transition: all 0.2s;
}

.thumb:hover,
.thumb.active {
  opacity: 1;
  border-color: var(--accent);
}

.product-details {
  display: flex;
  flex-direction: column;
}

.pbadge-inline {
  display: inline-block;
  background: var(--accent);
  color: #08101E;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 1rem;
  width: fit-content;
  transition: background 0.3s;
}

.pbadge-inline.f1 {
  background: linear-gradient(90deg, #1E3A8A, #DC2626);
}

.product-details h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin-bottom: 0.3rem;
}

.product-subtitle {
  font-size: 14px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.5rem;
  transition: color 0.3s;
}

.product-desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.product-price-section {
  background: var(--bg3);
  border-radius: 14px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.price-main {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
}

.price-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price-value {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  transition: color 0.3s;
}

.price-note {
  font-size: 12px;
  color: var(--muted);
}

.price-option {
  font-size: 13px;
  color: var(--muted);
  padding-top: 0.8rem;
  border-top: 1px solid var(--border);
  margin-top: 0.8rem;
}

.product-actions {
  display: flex;
  gap: 1rem;
  margin-top: auto;
  flex-wrap: wrap;
}

.direct-note {
  margin-top: 1.5rem;
  font-size: 13px;
  color: var(--accent-lt);
  background: var(--accent-dim);
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}

/* Custom Product Card */
.custom-product {
  background: linear-gradient(135deg, var(--bg3), var(--bg2));
}

.custom-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem;
}

.custom-icon-large {
  font-size: 80px;
  margin-bottom: 1.5rem;
}

.custom-visual h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 0.5rem;
}

.custom-visual p {
  color: var(--muted);
  max-width: 300px;
}

/* ================================================
   SHOP INFO BAR
   ================================================ */
.shop-info-bar {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 30px 6vw;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  transition: border-color 0.3s;
}

.info-item {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.info-icon {
  font-size: 18px;
}

/* ================================================
   MODES PREVIEW (Home)
   ================================================ */
#modes-preview {
  padding: 100px 6vw;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  transition: border-color 0.3s;
}

.modes-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.modes-content h2 {
  margin-bottom: 1rem;
}

.modes-content p {
  color: var(--muted);
  margin-bottom: 2rem;
}

.modes-demo {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.mode-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--c);
  box-shadow: 0 0 20px var(--c);
  animation: mode-pulse 2s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 0.2s);
}

.mode-dot:nth-child(1) { --i: 0; }
.mode-dot:nth-child(2) { --i: 1; }
.mode-dot:nth-child(3) { --i: 2; }
.mode-dot:nth-child(4) { --i: 3; }
.mode-dot:nth-child(5) { --i: 4; }
.mode-dot:nth-child(6) { --i: 5; }
.mode-dot:nth-child(7) { --i: 6; }
.mode-dot:nth-child(8) { --i: 7; }

@keyframes mode-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: .8; }
}

.modes-tags {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.mode-tag {
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  transition: border-color 0.3s;
}

/* ================================================
   DIRECT BANNER
   ================================================ */
#direct-banner {
  padding: 60px 6vw;
  background: linear-gradient(135deg, var(--accent-dim), transparent);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, border-color 0.3s;
}

.direct-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.direct-icon {
  font-size: 48px;
}

.direct-text {
  flex: 1;
  min-width: 300px;
}

.direct-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 0.5rem;
}

.direct-text p {
  color: var(--muted);
  font-size: 15px;
}

/* ================================================
   DIRECT ORDERS (About)
   ================================================ */
#direct-orders {
  padding: 80px 6vw;
  background: linear-gradient(135deg, var(--accent-dim), transparent);
  border-top: 1px solid var(--border);
  text-align: center;
  transition: background 0.3s, border-color 0.3s;
}

.direct-orders-content {
  max-width: 600px;
  margin: 0 auto;
}

.direct-orders-icon {
  font-size: 64px;
  margin-bottom: 1rem;
}

.direct-orders-content h2 {
  margin-bottom: 1rem;
}

.direct-orders-content > p {
  color: var(--muted);
  margin-bottom: 2rem;
}

.direct-orders-options {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.payment-method {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg2);
  padding: 12px 20px;
  border-radius: 40px;
  border: 1px solid var(--border);
  font-weight: 600;
}

.payment-method .method-icon {
  font-size: 20px;
}

/* ================================================
   SHIPPING
   ================================================ */
#shipping {
  padding: 80px 6vw;
  text-align: center;
}

#shipping h2 {
  margin-bottom: 3rem;
}

.ship-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.ship-card {
  background: var(--bg2);
  padding: 2rem 1.5rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  transition: all .3s;
}

.ship-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
}

.ship-icon {
  font-size: 32px;
  margin-bottom: 1rem;
}

.ship-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  margin-bottom: .5rem;
}

.ship-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ================================================
   CTA SECTION
   ================================================ */
#cta {
  padding: 100px 6vw;
  text-align: center;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  transition: border-color 0.3s;
}

#cta h2 {
  margin-bottom: 1rem;
}

#cta p {
  color: var(--muted);
  max-width: 450px;
  margin: 0 auto 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ================================================
   ABOUT PAGE
   ================================================ */
#about-content {
  padding: 80px 6vw;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--muted);
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

.about-text p.highlight {
  color: var(--accent);
  font-weight: 600;
  font-size: 18px;
  transition: color 0.3s;
}

.about-visual {
  display: flex;
  justify-content: center;
}

.about-img {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px var(--accent-dim);
  transition: box-shadow 0.3s;
}

/* Light Modes Section */
#light-modes {
  padding: 80px 6vw;
  text-align: center;
}

#light-modes h2 {
  margin-bottom: 3rem;
}

.modes-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.mode-item {
  background: var(--bg2);
  padding: 2rem 1.5rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  text-align: center;
  transition: border-color 0.3s;
}

.mode-item:hover {
  border-color: var(--accent);
}

.mode-name {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin-bottom: 0.5rem;
  color: var(--accent);
  transition: color 0.3s;
}

.mode-desc {
  font-size: 13px;
  color: var(--muted);
}

/* Included */
#included {
  padding: 80px 6vw;
  background: var(--bg2);
  text-align: center;
  border-top: 1px solid var(--border);
  transition: border-color 0.3s;
}

#included h2 {
  margin-bottom: 3rem;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.included-item {
  text-align: center;
}

.included-icon {
  font-size: 42px;
  margin-bottom: 1rem;
}

.included-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  margin-bottom: .3rem;
}

.included-item p {
  font-size: 13px;
  color: var(--muted);
}

/* Values */
#values {
  padding: 80px 6vw;
  text-align: center;
}

#values h2 {
  margin-bottom: 3rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.value-card {
  background: var(--bg2);
  padding: 2.5rem 1.5rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  transition: all .3s;
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.value-icon {
  font-size: 36px;
  margin-bottom: 1rem;
}

.value-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  margin-bottom: .7rem;
}

.value-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* Made in NL */
#made-in-nl {
  padding: 80px 6vw;
  text-align: center;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  transition: border-color 0.3s;
}

.nl-content {
  max-width: 600px;
  margin: 0 auto;
}

.nl-flag {
  font-size: 64px;
  display: block;
  margin-bottom: 1.5rem;
}

.nl-content h2 {
  margin-bottom: 1rem;
}

.nl-content p {
  color: var(--muted);
}

/* ================================================
   CONTACT PAGE
   ================================================ */
#contact-section {
  padding: 80px 6vw;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h2 {
  margin-bottom: 1rem;
}

.contact-info > p {
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  transition: all .3s;
}

.contact-method:hover {
  border-color: var(--accent);
  transform: translateX(5px);
}

.contact-method .method-icon {
  font-size: 28px;
}

.method-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 2px;
}

.method-info span {
  font-size: 14px;
  color: var(--muted);
}

.contact-note {
  background: var(--accent-dim);
  border: 1px solid var(--border);
  padding: 1.2rem;
  border-radius: 10px;
  transition: background 0.3s, border-color 0.3s;
}

.contact-note p {
  font-size: 14px;
  color: var(--accent-lt);
  margin: 0;
  transition: color 0.3s;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--bg2);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}

.contact-form-wrap h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.form-group label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  color: var(--white);
  transition: border-color .2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
}

.form-group select {
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn-primary {
  margin-top: .5rem;
}

/* ================================================
   FAQ
   ================================================ */
#faq {
  padding: 80px 6vw;
  background: var(--bg2);
  text-align: center;
  border-top: 1px solid var(--border);
  transition: border-color 0.3s;
}

#faq h2 {
  margin-bottom: 3rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: left;
}

.faq-item {
  background: var(--bg3);
  padding: 1.8rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}

.faq-item:hover {
  border-color: var(--accent);
}

.faq-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  margin-bottom: .7rem;
  color: var(--accent);
  transition: color 0.3s;
}

.faq-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ================================================
   PAYMENT
   ================================================ */
#payment {
  padding: 80px 6vw;
  text-align: center;
}

#payment h2 {
  margin-bottom: 3rem;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.payment-card {
  background: var(--bg2);
  padding: 2rem 1.5rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  transition: all .3s;
}

.payment-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
}

.payment-icon {
  font-size: 32px;
  margin-bottom: 1rem;
}

.payment-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  margin-bottom: .3rem;
}

.payment-card p {
  font-size: 12px;
  color: var(--muted);
}

/* ================================================
   FOOTER
   ================================================ */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 6vw 30px;
  transition: border-color 0.3s;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 1rem;
}

.footer-logo span {
  color: var(--accent);
  font-style: italic;
  transition: color 0.3s;
}

.footer-tagline {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: .8rem;
}

.soc {
  width: 40px;
  height: 40px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  transition: all .2s;
}

.soc:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
}

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: .6rem;
}

.footer-col a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: color .2s;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 1rem;
  transition: border-color 0.3s;
}

.footer-bottom a {
  color: var(--muted);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--accent);
}

/* ================================================
   REVEAL ANIMATION
   ================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1100px) {
  .product-grid-home {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .product-full {
    grid-template-columns: 1fr;
  }
  
  .product-full:nth-child(even) {
    direction: ltr;
  }
  
  .modes-list,
  .values-grid,
  .included-grid,
  .ship-grid,
  .payment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  #hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 160px;
  }
  
  .hero-content { order: 1; }
  .hero-img-stack { order: 0; margin-bottom: 2rem; }
  
  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-lamp-img {
    width: 220px;
    height: 330px;
  }
  
  #features {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .feat {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  
  .feat:nth-child(odd) {
    border-right: 1px solid var(--border);
  }
  
  .feat:nth-last-child(-n+2) {
    border-bottom: none;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .about-visual {
    order: -1;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-right {
    display: none;
  }
  
  .nav-burger {
    display: flex;
  }
  
  .product-grid-home {
    grid-template-columns: 1fr;
  }
  
  #features {
    grid-template-columns: 1fr;
  }
  
  .feat {
    border-right: none !important;
    border-bottom: 1px solid var(--border);
  }
  
  .feat:last-child {
    border-bottom: none;
  }
  
  .modes-list,
  .values-grid,
  .included-grid,
  .ship-grid,
  .payment-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-socials {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .shop-info-bar {
    gap: 1.5rem;
  }
  
  .info-item {
    font-size: 12px;
  }
  
  .direct-content {
    flex-direction: column;
    text-align: center;
  }
  
  .direct-text {
    text-align: center;
  }
  
  .color-switcher {
    bottom: 20px;
    right: 20px;
  }
  
  .color-toggle {
    width: 50px;
    height: 50px;
  }
  
  .color-icon {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .announce {
    font-size: 9px;
    padding: 8px 10px;
  }
  
  nav {
    top: 34px;
    height: 60px;
  }
  
  .page-header {
    padding-top: 140px;
  }
  
  .contact-form-wrap {
    padding: 1.5rem;
  }
  
  .product-full {
    padding: 1.5rem;
  }
  
  .product-details h2 {
    font-size: 26px;
  }
  
  .price-value {
    font-size: 28px;
  }
  
  .product-actions {
    flex-direction: column;
  }
  
  .product-actions .btn-primary,
  .product-actions .btn-outline {
    width: 100%;
    text-align: center;
  }
}
