/* ============================================================
   Wild Coins — Premium CSS Stylesheet
   Dark earthy tones with gold & copper accents
   ============================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Lato:wght@300;400;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* ---- CSS Variables ---- */
:root {
  --bg-darkest:   #0f0b05;
  --bg-dark:      #1a1208;
  --bg-mid:       #231a0c;
  --bg-card:      #2a1e0e;
  --bg-light:     #3a2a14;
  --gold:         #c9941a;
  --gold-light:   #f0c040;
  --gold-pale:    #f8e8a0;
  --copper:       #b87333;
  --copper-light: #d4956a;
  --cream:        #f5ead8;
  --cream-dim:    #c8b89a;
  --cream-muted:  #9a8870;
  --white:        #ffffff;
  --divider:      #5a3e1b;
  --red-sale:     #c0392b;

  --font-heading: 'Cinzel', serif;
  --font-body:    'Lato', sans-serif;
  --font-accent:  'Playfair Display', serif;

  --shadow-gold:  0 4px 30px rgba(201,148,26,0.25);
  --shadow-deep:  0 8px 40px rgba(0,0,0,0.6);
  --radius:       8px;
  --radius-lg:    16px;
  --transition:   0.3s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg-dark);
  color: var(--cream);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

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

/* ---- Utility ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-gold-light { color: var(--gold-light); }
.text-cream-dim { color: var(--cream-dim); }

/* ---- Section Spacing ---- */
section { padding: 90px 0; }

/* ---- Section Label ---- */
.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

/* ---- Section Title ---- */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-family: var(--font-accent);
  font-size: 18px;
  color: var(--cream-dim);
  font-style: italic;
  margin-bottom: 32px;
}

/* ---- Gold Divider ---- */
.gold-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 20px auto;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

#navbar.scrolled {
  background: rgba(15, 11, 5, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(201,148,26,0.4));
  transition: transform var(--transition);
}
.nav-logo img:hover { transform: scale(1.04); }

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

.nav-links a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--bg-dark) !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 700 !important;
  letter-spacing: 1px;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

/* Mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--cream);
  transition: all var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0;
  background: var(--bg-darkest);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,148,26,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 80% 50%, rgba(184,115,51,0.06) 0%, transparent 60%),
    linear-gradient(180deg, #0f0b05 0%, #1a1208 50%, #0f0b05 100%);
}

/* Subtle animated particles */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: float-particle 8s infinite;
}

@keyframes float-particle {
  0%   { opacity: 0; transform: translateY(0) scale(0); }
  20%  { opacity: 0.6; transform: translateY(-30px) scale(1); }
  80%  { opacity: 0.3; transform: translateY(-120px) scale(0.8); }
  100% { opacity: 0; transform: translateY(-180px) scale(0); }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 120px 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,148,26,0.15);
  border: 1px solid rgba(201,148,26,0.4);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--gold-light);
  margin-bottom: 8px;
  text-shadow: 0 2px 20px rgba(201,148,26,0.3);
}

.hero-title-sub {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 400;
  color: var(--cream-dim);
  margin-bottom: 24px;
  letter-spacing: 2px;
}

.hero-desc {
  font-size: 16px;
  color: var(--cream-dim);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-price-box {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(42, 30, 14, 0.8);
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  margin-bottom: 36px;
  backdrop-filter: blur(10px);
}

.hero-price-was {
  font-size: 14px;
  color: var(--cream-muted);
  text-decoration: line-through;
}

.hero-price-now {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.hero-price-label {
  font-size: 12px;
  color: var(--cream-dim);
}

.hero-save-badge {
  background: var(--red-sale);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-dark);
  box-shadow: 0 4px 20px rgba(201,148,26,0.4);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--bg-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,148,26,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--divider);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* Hero image grid */
.hero-visual {
  position: relative;
}

.hero-coins-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero-coin-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201,148,26,0.2);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.hero-coin-item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold);
}

.hero-coin-item img { width: 100%; height: 180px; object-fit: cover; }

.hero-coin-item:first-child {
  grid-column: 1 / -1;
}
.hero-coin-item:first-child img { height: 220px; }

.hero-coin-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(15,11,5,0.9) 0%, transparent 100%);
  padding: 20px 12px 10px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  text-align: center;
}

/* ============================================================
   STATS BAR
   ============================================================ */
#stats-bar {
  background: var(--bg-mid);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  padding: 36px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid var(--divider);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cream-muted);
}

/* ============================================================
   ABOUT / COLLECTION INTRO
   ============================================================ */
#about {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

#about::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,148,26,0.05) 0%, transparent 70%);
  pointer-events: none;
}

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

.about-image-stack {
  position: relative;
  height: 500px;
}

.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(201,148,26,0.3);
  box-shadow: var(--shadow-deep);
  overflow: hidden;
}
.about-img-main img { width: 100%; height: 320px; object-fit: cover; }

.about-img-secondary {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(201,148,26,0.3);
  box-shadow: var(--shadow-deep);
  overflow: hidden;
}
.about-img-secondary img { width: 100%; height: 220px; object-fit: cover; }

.about-img-badge {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--bg-dark);
  border: 2px solid var(--gold);
  border-radius: 50%;
  width: 80px; height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: var(--shadow-gold);
}
.about-img-badge span:first-child {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.about-img-badge span:last-child {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--cream-dim);
  text-transform: uppercase;
}

.about-text {}

.about-features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  transition: transform var(--transition);
}
.about-feature:hover { transform: translateX(4px); }

.about-feature-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(201,148,26,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.about-feature-text h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.about-feature-text p {
  font-size: 13px;
  color: var(--cream-dim);
  line-height: 1.5;
}

/* ============================================================
   PRODUCTS
   ============================================================ */
#products {
  background: var(--bg-darkest);
  position: relative;
}

#products::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 50%, rgba(201,148,26,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.products-header {
  text-align: center;
  margin-bottom: 60px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Product Card */
.product-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--divider);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold);
}

.product-card-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--red-sale);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 5;
  text-transform: uppercase;
}

.product-card-images {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.product-card-images img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease;
}

.product-card-images img.img-back {
  opacity: 0;
}

.product-card:hover .product-card-images img.img-front { opacity: 0; }
.product-card:hover .product-card-images img.img-back  { opacity: 1; }

.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15,11,5,0.7) 0%, transparent 50%);
}

.product-card-body {
  padding: 22px;
}

.product-card-number {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.product-card-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.product-card-subtitle {
  font-family: var(--font-accent);
  font-size: 13px;
  font-style: italic;
  color: var(--cream-dim);
  margin-bottom: 12px;
}

.product-card-desc {
  font-size: 13px;
  color: var(--cream-dim);
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-symbolism {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 8px 12px;
  background: rgba(201,148,26,0.08);
  border-radius: 6px;
  border-left: 2px solid var(--gold);
}
.product-card-symbolism span:first-child {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold);
  text-transform: uppercase;
  white-space: nowrap;
}
.product-card-symbolism span:last-child {
  font-size: 12px;
  color: var(--cream-dim);
  font-style: italic;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--divider);
}

.product-price {
  display: flex;
  flex-direction: column;
}
.product-price-was {
  font-size: 12px;
  color: var(--cream-muted);
  text-decoration: line-through;
}
.product-price-now {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.product-price-unit {
  font-size: 11px;
  color: var(--cream-muted);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 11px;
}

/* Wide card for 5th item */
.product-card.wide {
  grid-column: span 1;
}

/* ============================================================
   PRODUCT MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  backdrop-filter: blur(6px);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: var(--bg-card);
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform var(--transition);
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-mid);
  border: 1px solid var(--divider);
  color: var(--cream);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all var(--transition);
}
.modal-close:hover { background: var(--gold); color: var(--bg-dark); }

.modal-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.modal-gallery {
  padding: 24px;
}

.modal-main-img {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid var(--divider);
}
.modal-main-img img { width: 100%; height: 280px; object-fit: cover; }

.modal-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.modal-thumb {
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--transition);
}
.modal-thumb.active { border-color: var(--gold); }
.modal-thumb img { width: 100%; height: 60px; object-fit: cover; }

.modal-info {
  padding: 32px 28px 28px 8px;
}

.modal-number {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 900;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.modal-subtitle {
  font-family: var(--font-accent);
  font-size: 15px;
  font-style: italic;
  color: var(--cream-dim);
  margin-bottom: 16px;
}

.modal-divider {
  height: 1px;
  background: var(--divider);
  margin: 16px 0;
}

.modal-desc {
  font-size: 14px;
  color: var(--cream-dim);
  line-height: 1.7;
  margin-bottom: 20px;
}

.modal-features-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.modal-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.modal-features-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--cream-dim);
}
.modal-features-list li::before {
  content: '▸';
  color: var(--gold);
  flex-shrink: 0;
}

.modal-price-box {
  background: var(--bg-mid);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-price-left {}
.modal-price-was-label { font-size: 11px; color: var(--cream-muted); }
.modal-price-was-val {
  font-size: 14px;
  color: var(--cream-muted);
  text-decoration: line-through;
}
.modal-price-right { text-align: right; }
.modal-price-now-label { font-size: 11px; color: var(--gold-light); }
.modal-price-now-val {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.modal-price-now-unit { font-size: 12px; color: var(--cream-muted); }

/* ============================================================
   SPECS SECTION
   ============================================================ */
#specs {
  background: var(--bg-mid);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--divider);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 48px;
}

.spec-item {
  background: var(--bg-card);
  padding: 32px 28px;
  text-align: center;
  transition: background var(--transition);
}
.spec-item:hover { background: var(--bg-light); }

.spec-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.spec-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.spec-value {
  font-size: 15px;
  color: var(--cream);
  font-weight: 700;
  margin-bottom: 4px;
}

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

/* ============================================================
   GALLERY
   ============================================================ */
#gallery {
  background: var(--bg-dark);
}

.gallery-header { text-align: center; margin-bottom: 48px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid transparent;
  transition: border-color var(--transition), transform var(--transition);
}
.gallery-item:hover {
  border-color: var(--gold);
  transform: scale(1.02);
}

.gallery-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-item.featured {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item.featured img { height: 100%; min-height: 372px; }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15,11,5,0.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-label {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
}

/* ============================================================
   ORDERING / CTA SECTION
   ============================================================ */
#order {
  background: var(--bg-darkest);
  position: relative;
  overflow: hidden;
}

#order::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,148,26,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.order-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.order-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.order-subtitle {
  font-size: 18px;
  color: var(--cream-dim);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.order-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 800px;
  margin: 0 auto 48px;
}

.order-card {
  background: var(--bg-card);
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.order-card:hover { border-color: var(--gold); transform: translateY(-4px); }

.order-card.featured {
  border-color: var(--gold);
  position: relative;
}

.order-card-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  white-space: nowrap;
}

.order-card-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.order-card-qty {
  font-size: 13px;
  color: var(--cream-muted);
  margin-bottom: 20px;
}

.order-card-price-was {
  font-size: 14px;
  color: var(--cream-muted);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.order-card-price-now {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.order-card-price-unit {
  font-size: 12px;
  color: var(--cream-muted);
  margin-bottom: 20px;
}

.order-card-saving {
  display: inline-block;
  background: rgba(192,57,43,0.2);
  color: #e74c3c;
  border: 1px solid rgba(192,57,43,0.4);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.order-note {
  font-size: 13px;
  color: var(--cream-muted);
  max-width: 600px;
  margin: 0 auto;
  font-style: italic;
}

/* ============================================================
   CONTACT
   ============================================================ */
#contact {
  background: var(--bg-mid);
  border-top: 1px solid var(--divider);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info {}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(201,148,26,0.12);
  border: 1px solid rgba(201,148,26,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item-text h4 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.contact-item-text p,
.contact-item-text a {
  font-size: 15px;
  color: var(--cream-dim);
  line-height: 1.5;
}
.contact-item-text a:hover { color: var(--gold-light); }

/* Contact form */
.contact-form-wrap {}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.form-input,
.form-select,
.form-textarea {
  background: var(--bg-card);
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,148,26,0.15);
}

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

.form-select option {
  background: var(--bg-card);
  color: var(--cream);
}

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

.form-submit-note {
  font-size: 12px;
  color: var(--cream-muted);
  text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--bg-darkest);
  border-top: 1px solid var(--divider);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 2px 8px rgba(201,148,26,0.3));
}

.footer-brand-desc {
  font-size: 13px;
  color: var(--cream-muted);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13px;
  color: var(--cream-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact-list li {
  font-size: 13px;
  color: var(--cream-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer-contact-list li span:first-child { flex-shrink: 0; }
.footer-contact-list a { color: var(--cream-muted); }
.footer-contact-list a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid var(--divider);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom-text {
  font-size: 12px;
  color: var(--cream-muted);
}

.footer-disclaimer {
  font-size: 11px;
  color: var(--cream-muted);
  opacity: 0.7;
  max-width: 500px;
  text-align: right;
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
#scroll-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg-dark);
  border: none;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(201,148,26,0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  z-index: 999;
}
#scroll-top.visible { opacity: 1; pointer-events: all; }
#scroll-top:hover { transform: translateY(-3px); background: var(--gold-light); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
.fade-up-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item.featured { grid-column: span 1; grid-row: span 1; }
  .gallery-item.featured img { min-height: 180px; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: rgba(15,11,5,0.98);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    transition: right var(--transition);
    border-left: 1px solid var(--divider);
    backdrop-filter: blur(20px);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 16px; }
  .nav-toggle { display: flex; }

  .hero-content { grid-template-columns: 1fr; gap: 40px; padding-top: 100px; }
  .hero-visual { order: -1; }
  .hero-coins-grid { grid-template-columns: 1fr 1fr; }
  .hero-coin-item:first-child { grid-column: 1 / -1; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-stack { height: 300px; }
  .about-img-main { width: 80%; }
  .about-img-secondary { width: 50%; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--divider); border-top: 1px solid var(--divider); }
  .stat-item:nth-child(4) { border-top: 1px solid var(--divider); }

  .products-grid { grid-template-columns: 1fr; }
  .specs-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .order-cards { grid-template-columns: 1fr; max-width: 400px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-disclaimer { text-align: center; }

  .modal-inner { grid-template-columns: 1fr; }
  .modal-info { padding: 0 24px 24px; }
}

@media (max-width: 480px) {
  .hero-price-box { flex-wrap: wrap; gap: 8px; }
  .hero-actions { flex-direction: column; }
  .btn { justify-content: center; }
}
