/* ========================================
   LAMPADKA LANDING — Dark Premium Theme
   ======================================== */

:root {
  /* Dark backgrounds */
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #1a1a1a;
  --bg-card-hover: #222222;
  --bg-surface: #2a2a2a;

  /* Gold accent */
  --gold: #C5A55A;
  --gold-light: #D4B96E;
  --gold-dark: #A88B3D;
  --gold-glow: rgba(197, 165, 90, 0.15);
  --gold-border: rgba(197, 165, 90, 0.25);

  /* Silver accent */
  --silver: #C0C0C0;
  --silver-light: #E8E8E8;
  --silver-dark: #999999;

  /* Text */
  --text-primary: #F0F0F0;
  --text-secondary: #B0B0B0;
  --text-muted: #777777;
  --text-dim: #555555;

  /* Borders */
  --border: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.12);

  /* Misc */
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-gold: 0 4px 24px rgba(197, 165, 90, 0.2);
  --transition: 0.3s ease;
  --nav-height: 70px;

  /* Status */
  --success: #4CAF50;
  --error: #e53935;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }
a, button, [role="button"], select, label[for], .product-card, .faq-q, .hero-dot, .card-car-btn, .card-car-dot, .modal-close, .modal-car-btn, .modal-car-dots .dot, .social-link, .testimonials-dot, .nav-burger { cursor: pointer; }
button { border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* ===== TYPOGRAPHY ===== */
.heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 80px 0;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #1a1a1a;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(197, 165, 90, 0.35);
  color: #1a1a1a;
}

.btn-outline {
  background: rgba(197, 165, 90, 0.1);
  color: var(--gold);
  border: 2px solid var(--gold);
  font-weight: 600;
}
.btn-outline:hover {
  background: var(--gold);
  color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(197, 165, 90, 0.3);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.05rem;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  z-index: 1000;
  transition: var(--transition);
  background: transparent;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--gold); }

.nav-phone {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold) !important;
}

.nav-cta {
  background: var(--gold) !important;
  color: #fff !important;
  padding: .5rem 1.2rem !important;
  border-radius: 6px;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: #B08A30 !important; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  cursor: pointer;
  z-index: 1001;
}
.burger span {
  display: block;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
  .burger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    background: var(--bg-secondary);
    padding: 100px 32px 40px;
    gap: 20px;
    transition: right 0.35s ease;
    border-left: 1px solid var(--border);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1rem; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  background: var(--bg-primary);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: blur(2px);
  transition: opacity 1.5s ease;
  animation: heroZoom 8s ease forwards;
}
.hero-bg-img.active {
  opacity: 0.2;
}
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1); } }
.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: .3s;
}
.hero-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 50% 40%, rgba(197, 165, 90, 0.06) 0%, transparent 70%),
    repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(255,255,255,0.015) 50px, rgba(255,255,255,0.015) 51px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-label::before,
.hero-label::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold-border);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5.5vw, 3.5rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-price-current {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
}

.hero-price-old {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.hero-price-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: rgba(197, 165, 90, 0.15);
  border: 1px solid var(--gold-border);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Decorative corner ornaments */
.hero-ornament {
  position: absolute;
  width: 80px;
  height: 80px;
  opacity: 0.1;
  pointer-events: none;
}
.hero-ornament.tl { top: 80px; left: 40px; }
.hero-ornament.br { bottom: 40px; right: 40px; transform: rotate(180deg); }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--bg-primary);
  padding: 48px 0;
  border-bottom: 1px solid var(--gold-border);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item {
  text-align: center;
}
.trust-icon {
  margin-bottom: 12px;
}
.trust-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.trust-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 16px;
  }
  .trust-bar { padding: 36px 0; }
  .trust-number { font-size: 1.7rem; }
}
@media (max-width: 400px) {
  .trust-grid { gap: 24px 12px; }
  .trust-number { font-size: 1.5rem; }
  .trust-label { font-size: 0.8rem; }
}

/* ===== GALLERY ===== */
.products-section {
  background: var(--bg-secondary);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}
.product-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(197,165,90,.12);
}
.card-carousel { position: relative; overflow: hidden; }
.card-carousel-track { display: flex; transition: transform .4s ease; }
.card-slide { flex: 0 0 100%; width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.card-placeholder {
  flex: 0 0 100%; width: 100%; aspect-ratio: 3/4;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-secondary); color: var(--text-muted);
  font-size: 0.85rem; text-align: center; padding: 20px;
}
.card-car-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; border-radius: 50%; border: none;
  background: rgba(0,0,0,.6); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; transition: opacity .3s; z-index: 2;
}
.product-card:hover .card-car-btn { opacity: 1; }
.card-car-prev { left: .5rem; }
.card-car-next { right: .5rem; }
.card-car-dots {
  position: absolute; bottom: .6rem; left: 50%;
  transform: translateX(-50%); display: flex; gap: 5px; z-index: 2;
}
.card-car-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,.35); border: none; padding: 0;
  cursor: pointer; transition: .3s;
}
.card-car-dot.active { background: var(--gold); width: 18px; border-radius: 4px; }
.card-body { padding: 20px; }
.card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem; font-weight: 600; color: var(--text-primary);
  margin-bottom: 6px;
}
.card-desc { font-size: 0.82rem; color: var(--text-secondary); margin-bottom: 12px; }
.card-price { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.card-price-current {
  font-family: var(--font-heading);
  font-size: 1.4rem; font-weight: 700; color: var(--gold);
}
.card-price-old {
  font-size: 0.9rem; color: var(--text-muted);
  text-decoration: line-through;
}
.card-badge {
  font-size: 0.72rem; font-weight: 700; color: #fff;
  background: var(--accent-red, #b44a3f); padding: 2px 8px;
  border-radius: 4px;
}
.card-order-btn {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px; padding: 10px 20px; border: none;
  border-radius: 8px; background: var(--gold); color: #1a1a1a;
  font-family: var(--font-body); font-size: 0.88rem; font-weight: 600;
  cursor: pointer; transition: var(--transition); width: 100%;
  justify-content: center;
}
.card-order-btn:hover { background: var(--gold-light); }

/* ===== BENEFITS ===== */
.benefits-section {
  background: var(--bg-primary);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition);
}
.benefit-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-glow);
  border-radius: 50%;
  color: var(--gold);
}
.benefit-icon svg {
  width: 28px;
  height: 28px;
}

.benefit-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

/* ===== SPECS TABLE ===== */
.specs-section {
  background: var(--bg-secondary);
}

.specs-table {
  max-width: 680px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.specs-row {
  display: flex;
  border-bottom: 1px solid var(--border);
}
.specs-row:last-child { border-bottom: none; }

.specs-label {
  flex: 0 0 40%;
  padding: 16px 24px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-secondary);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  gap: 10px;
}
.specs-label svg {
  flex-shrink: 0;
  color: var(--gold);
  width: 18px;
  height: 18px;
}

.specs-value {
  flex: 1;
  padding: 16px 24px;
  font-size: 0.92rem;
  color: var(--text-primary);
  background: var(--bg-primary);
}

@media (max-width: 560px) {
  .specs-row { flex-direction: column; }
  .specs-label { flex: none; padding: 12px 20px 4px; background: var(--bg-primary); }
  .specs-value { padding: 4px 20px 12px; }
}

/* ===== HOW IT WORKS ===== */
.steps-section {
  background: var(--bg-primary);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

/* Connector line between steps */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.66% + 36px);
  right: calc(16.66% + 36px);
  height: 1px;
  background: var(--border-light);
}

.step-card {
  text-align: center;
  position: relative;
}

.step-number {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

.step-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 640px) {
  .steps-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid::before { display: none; }
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--bg-secondary);
}

.testimonials-carousel {
  position: relative;
  padding: 0 48px;
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform .4s ease;
}
.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 0;
}
.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.testimonials-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.testimonials-btn:hover { border-color: var(--gold); color: var(--gold); }
.testimonials-prev,
.testimonials-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}
.testimonials-prev { left: 0px; }
.testimonials-next { right: 0px; }
@media (max-width: 768px) {
  .testimonials-carousel { padding: 0 36px; }
}
.testimonials-dots {
  display: flex;
  gap: 6px;
}
.testimonials-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: .3s;
}
.testimonials-dot.active {
  background: var(--gold);
  width: 20px;
  border-radius: 4px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  transition: var(--transition);
}
.testimonial-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.testimonial-card .testimonial-stars,
.testimonial-card .testimonial-text,
.testimonial-card .testimonial-author {
  padding-left: 28px;
  padding-right: 28px;
}
.testimonial-card .testimonial-stars { padding-top: 24px; margin-bottom: 8px; }
.testimonial-card .testimonial-author { padding-bottom: 24px; }
.testimonial-card:hover {
  border-color: var(--gold-border);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: var(--gold);
}
.testimonial-stars svg { width: 16px; height: 16px; }

.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
}

.testimonial-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
}
.testimonial-location {
  font-size: 0.78rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .testimonial-card { flex: 0 0 85%; }
}

/* ===== FAQ ===== */
.faq-section {
  background: var(--bg-primary);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  transition: var(--transition);
}
.faq-q:hover { color: var(--gold); }

.faq-q svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-q svg {
  transform: rotate(45deg);
  color: var(--gold);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-a p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== ORDER FORM ===== */
.order-section {
  background: var(--bg-secondary);
  position: relative;
}

.order-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 800px 400px at 50% 50%, rgba(197, 165, 90, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.order-form-wrap {
  max-width: 540px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197, 165, 90, 0.1);
}

.form-input.error,
.form-select.error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.1);
}
.form-input.valid,
.form-select.valid {
  border-color: var(--success);
}
.form-error {
  display: none;
  font-size: 0.78rem;
  color: var(--error);
  margin-top: 6px;
}
.form-select.error + .form-error,
.form-input.error + .form-error {
  display: block;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23777' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

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

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

.price-preview {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.price-preview-label {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 4px;
}
.price-preview-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}
.price-preview-discount {
  font-size: 0.82rem;
  color: var(--success);
  font-weight: 600;
}

.price-preview-old {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-preview-badge {
  display: inline-flex;
  padding: 4px 12px;
  background: rgba(197, 165, 90, 0.15);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
}

.submit-btn {
  width: 100%;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #1a1a1a;
  font-size: 1.05rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(197, 165, 90, 0.35);
}
.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* ===== DELIVERY SECTION ===== */
.delivery-section {
  background: var(--bg-primary);
}

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

.delivery-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
}

.delivery-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.delivery-card h3 svg { color: var(--gold); flex-shrink: 0; }

.delivery-card ul { list-style: none; }
.delivery-card li {
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.delivery-card li svg {
  flex-shrink: 0;
  color: var(--gold);
  width: 16px;
  height: 16px;
  margin-top: 3px;
}

@media (max-width: 640px) {
  .delivery-grid { grid-template-columns: 1fr; }
}

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

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.footer-brand-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 4px 0;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--gold); }

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition);
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-bottom {
  max-width: 1140px;
  margin: 40px auto 0;
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}
.footer-bottom a {
  color: var(--text-muted);
  text-decoration: underline;
}
.footer-bottom a:hover { color: var(--gold); }

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .footer-socials { justify-content: center; }
}

/* ===== STICKY MOBILE CTA ===== */
.sticky-cta {
  position: fixed;
  bottom: -80px;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 12px 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: bottom 0.35s ease;
}
.sticky-cta.visible {
  bottom: 0;
}

.sticky-cta-price {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sticky-cta-price .current {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
}
.sticky-cta-price .old {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.sticky-cta .btn {
  padding: 10px 24px;
  font-size: 0.88rem;
}

/* ===== CONTACT BUBBLE ===== */
.contact-bubble {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 998;
}

.contact-bubble-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.contact-bubble-btn:hover { transform: scale(1.08); }
.contact-bubble-btn svg { width: 24px; height: 24px; }

.contact-bubble-menu {
  position: absolute;
  bottom: 68px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
}

.contact-bubble.open .contact-bubble-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.bubble-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  transition: var(--transition);
  text-decoration: none;
}
.bubble-link:hover {
  border-color: var(--gold-border);
  color: var(--gold);
}
.bubble-link svg { flex-shrink: 0; width: 18px; height: 18px; }

/* When sticky CTA is visible, move bubble up */
.sticky-cta.visible ~ .contact-bubble {
  bottom: 84px;
}

/* ===== ANIMATIONS ===== */
.anim {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.anim.visible {
  opacity: 1;
  transform: translateY(0);
}

.anim-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.anim-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delay for grids */
.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.2s; }
.anim-delay-3 { transition-delay: 0.3s; }
.anim-delay-4 { transition-delay: 0.4s; }

/* ===== UTILITY ===== */
.text-gold { color: var(--gold); }
.text-silver { color: var(--silver-light); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ===== CANDLE FLAME (nav logo) ===== */
.brand-flame {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.flame-icon {
  width: 12px;
  height: 20px;
  position: relative;
  display: inline-block;
}
.flame-icon::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 9px;
  height: 16px;
  margin-left: -4.5px;
  background: radial-gradient(ellipse at 50% 90%, var(--gold) 0%, #e8a626 40%, rgba(232,166,38,0) 70%);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  animation: flame-flicker 1.5s ease-in-out infinite alternate;
}
.flame-icon::after {
  content: '';
  position: absolute;
  bottom: 1px;
  left: 50%;
  width: 5px;
  height: 10px;
  margin-left: -2.5px;
  background: radial-gradient(ellipse at 50% 90%, #fff8e1 0%, #ffd54f 60%, rgba(255,213,79,0) 100%);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  animation: flame-flicker 1s ease-in-out 0.3s infinite alternate;
}
@keyframes flame-flicker {
  0%   { transform: scaleX(1) scaleY(1) rotate(-1deg); opacity: 0.9; }
  25%  { transform: scaleX(0.9) scaleY(1.06) rotate(1deg); opacity: 1; }
  50%  { transform: scaleX(1.05) scaleY(0.95) rotate(-0.5deg); opacity: 0.85; }
  75%  { transform: scaleX(0.95) scaleY(1.03) rotate(1.5deg); opacity: 1; }
  100% { transform: scaleX(1) scaleY(1) rotate(-1deg); opacity: 0.9; }
}

/* ===== HERO SPARKS ===== */
.hero-sparks {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.hero-spark {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: spark-rise linear infinite;
}
.hero-spark:nth-child(1)  { left: 12%; animation-duration: 7s;  animation-delay: 0s; }
.hero-spark:nth-child(2)  { left: 28%; animation-duration: 6s;  animation-delay: 1.5s; }
.hero-spark:nth-child(3)  { left: 48%; animation-duration: 8s;  animation-delay: 0.4s; }
.hero-spark:nth-child(4)  { left: 62%; animation-duration: 5.5s;animation-delay: 2.2s; }
.hero-spark:nth-child(5)  { left: 78%; animation-duration: 7.5s;animation-delay: 0.8s; }
.hero-spark:nth-child(6)  { left: 35%; animation-duration: 6.5s;animation-delay: 3s; }
.hero-spark:nth-child(7)  { left: 55%; animation-duration: 5s;  animation-delay: 1.2s; }
.hero-spark:nth-child(8)  { left: 85%; animation-duration: 7.2s;animation-delay: 0.6s; }
@keyframes spark-rise {
  0%   { bottom: -5%; opacity: 0; transform: translateX(0) scale(1); }
  10%  { opacity: 0.6; }
  50%  { opacity: 0.3; transform: translateX(10px) scale(0.7); }
  80%  { opacity: 0.1; }
  100% { bottom: 105%; opacity: 0; transform: translateX(-6px) scale(0.2); }
}

/* ===== SECTION GLOW SEPARATORS ===== */
.section-glow {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-border) 30%, var(--gold) 50%, var(--gold-border) 70%, transparent 100%);
  opacity: 0.35;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}
.section-glow::after {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 40px;
  background: radial-gradient(ellipse at center, rgba(197,165,90,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ===== DIVIDER ===== */
.section-divider {
  width: 60px;
  height: 1px;
  background: var(--gold-border);
  margin: 0 auto 32px;
}

/* ===== PRODUCT MODAL ===== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  overflow: hidden;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: var(--bg-card);
  border-radius: 16px 16px 0 0;
  max-height: 100svh;
  overflow-y: auto;
  overflow-x: hidden;
  transform: translateY(40px);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
}
.modal-overlay.open .modal {
  transform: translateY(0);
}

@media (min-width: 769px) {
  .modal-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .modal {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    border-radius: 16px;
    width: 820px;
    max-width: calc(100vw - 2rem);
    max-height: 90vh;
    overflow: visible;
    transform: scale(0.95) translateY(10px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: auto;
  }
  .modal-overlay.open .modal {
    transform: scale(1) translateY(0);
  }
}

/* Modal close button */
.modal-close {
  position: sticky;
  top: 0.75rem;
  margin-left: auto;
  margin-right: 0.75rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  z-index: 10;
  color: var(--text-primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}
.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
}
@media (min-width: 769px) {
  .modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    margin: 0;
    background: rgba(0, 0, 0, 0.5);
  }
  .modal-close:hover {
    background: rgba(0, 0, 0, 0.7);
  }
}

/* Modal carousel */
.modal-carousel {
  position: relative;
  flex-shrink: 0;
}
.modal-carousel-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  user-select: none;
  -webkit-user-select: none;
  cursor: grab;
  touch-action: pan-y;
}
.modal-carousel-track:active {
  cursor: grabbing;
}
.modal-carousel-track img {
  flex: 0 0 100%;
  width: 100%;
  height: auto;
  display: block;
}
@media (min-width: 769px) {
  .modal-carousel {
    border-radius: 16px 0 0 16px;
    overflow: hidden;
  }
  .modal-carousel-track img {
    height: 90vh;
    object-fit: cover;
  }
}

.modal-car-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  color: var(--gold);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: 0.2s;
}
.modal-car-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}
.modal-car-prev { left: 0.5rem; }
.modal-car-next { right: 0.5rem; }

.modal-car-dots {
  position: absolute;
  bottom: 0.8rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 1;
}
.modal-car-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: 0.3s;
}
.modal-car-dots .dot.active {
  background: var(--gold);
  width: 20px;
  border-radius: 4px;
}

/* Modal body */
.modal-body {
  padding: 1.4rem 1.4rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
  background: var(--bg-card);
}
@media (min-width: 769px) {
  .modal-body {
    padding: 2rem 2.5rem;
    justify-content: flex-start;
    overflow-y: auto;
    max-height: 90vh;
    scrollbar-width: thin;
  }
}
.modal-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
  word-break: break-word;
}
@media (min-width: 769px) {
  .modal-body h2 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }
}
.modal-body p {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.65;
}

/* Modal price */
.modal-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  flex-wrap: wrap;
}
@media (min-width: 769px) {
  .modal-price {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}
.modal-price-old {
  font-size: 1.05rem;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 400;
}
.modal-price-badge {
  font-size: 0.72rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #fff;
  background: var(--error);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  vertical-align: middle;
}

/* Modal specs */
.modal-specs {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.modal-specs-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.modal-specs-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.85rem;
}
.modal-specs-row:last-child { border-bottom: none; }
.modal-specs-row svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--gold);
  opacity: 0.7;
}
.modal-specs-label {
  color: var(--text-muted);
  white-space: nowrap;
}
.modal-specs-value {
  margin-left: auto;
  color: var(--text-primary);
  font-weight: 500;
  text-align: right;
}

/* Modal order button */
.modal-order-btn {
  width: 100%;
  margin-top: 1.5rem;
}

/* Mobile close button sizing */
@media (max-width: 768px) {
  .modal-close {
    width: 44px;
    height: 44px;
    z-index: 20;
  }
}
