/* Miyan Bee Reserve - Styles */

:root {
  --primary: #1e4d2b;
  --primary-light: #2d6a3f;
  --accent: #d4a84b;
  --accent-dark: #b8923f;
  --honey: #e8a832;
  --cream: #f5f0e6;
  --cream-dark: #ebe4d6;
  --text: #2c2c2c;
  --text-light: #5a5a5a;
  --white: #ffffff;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --radius: 8px;
  --radius-lg: 16px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--cream);
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(245, 240, 230, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--cream-dark);
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--primary);
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--primary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-light);
}

.btn-full {
  width: 100%;
}

/* Badge */
.badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--accent);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50px;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

/* Hero Section */
.hero {
  padding: 160px 0 100px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-description {
  font-size: 1.15rem;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 32px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  width: 280px;
  height: 340px;
  object-fit: cover;
  border-radius: 50% 50% 45% 45% / 40% 40% 60% 60%;
  animation: float 4s ease-in-out infinite, shimmer 3s ease-in-out infinite;
  box-shadow:
    0 30px 60px rgba(0,0,0,0.25),
    0 10px 20px rgba(184,146,63,0.3);
  filter: saturate(1.1);
}

@media (max-width: 768px) {
  .hero-image {
    width: 180px;
    height: 220px;
  }
}

/* Legacy honey drop - kept for reference */
.honey-drop {
  width: 280px;
  height: 340px;
  background:
    radial-gradient(ellipse 60% 40% at 30% 25%, rgba(255,255,255,0.4) 0%, transparent 50%),
    radial-gradient(ellipse 80% 60% at 70% 70%, rgba(0,0,0,0.15) 0%, transparent 50%),
    radial-gradient(ellipse 100% 100% at 50% 50%, var(--honey) 0%, var(--accent) 40%, var(--accent-dark) 100%);
  border-radius: 50% 50% 45% 45% / 40% 40% 60% 60%;
  position: relative;
  animation: float 4s ease-in-out infinite, shimmer 3s ease-in-out infinite;
  box-shadow:
    inset -30px -30px 60px rgba(139,69,19,0.2),
    inset 20px 20px 40px rgba(255,215,0,0.3),
    inset 0 -20px 30px rgba(184,146,63,0.4),
    0 30px 60px rgba(0,0,0,0.25),
    0 10px 20px rgba(184,146,63,0.3);
  filter: saturate(1.1);
}

.honey-drop::before {
  content: '';
  position: absolute;
  top: 12%;
  left: 15%;
  width: 35%;
  height: 25%;
  background: linear-gradient(135deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0.1) 100%);
  border-radius: 50%;
  transform: rotate(-25deg);
  filter: blur(2px);
}

.honey-drop::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 20px,
      rgba(255,215,0,0.05) 20px,
      rgba(255,215,0,0.05) 40px
    );
  opacity: 0.5;
}

@keyframes shimmer {
  0%, 100% { filter: saturate(1.1) brightness(1); }
  50% { filter: saturate(1.2) brightness(1.05); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* About Section */
.about {
  padding: 100px 0;
  background: var(--white);
}

.about h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--primary);
  margin-bottom: 20px;
}

.about > .container > .about-grid > .about-content > p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 48px;
  max-width: 700px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.benefit {
  padding: 24px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  transition: transform 0.2s;
}

.benefit:hover {
  transform: translateY(-4px);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.benefit h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--primary);
  font-family: 'Inter', sans-serif;
}

.benefit p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Why Miyan Section */
.why-miyan {
  padding: 100px 0;
  background: var(--primary);
  color: var(--white);
}

.why-miyan h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 16px;
}

.section-intro {
  text-align: center;
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 60px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.stat-desc {
  display: block;
  font-size: 0.9rem;
  opacity: 0.8;
}

.mission-text {
  background: rgba(255,255,255,0.1);
  padding: 40px;
  border-radius: var(--radius-lg);
  max-width: 800px;
  margin: 0 auto;
}

.mission-text h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--accent);
}

.mission-text p {
  margin-bottom: 16px;
  line-height: 1.8;
  opacity: 0.9;
}

.mission-text p:last-child {
  margin-bottom: 0;
}

/* Products Section */
.products {
  padding: 100px 0;
  background: var(--cream);
}

.products h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  text-align: center;
  color: var(--primary);
  margin-bottom: 16px;
}

.products .section-intro {
  color: var(--text-light);
  margin-bottom: 60px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.product-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  z-index: 0;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.product-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--honey) 100%);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(212,168,75,0.4);
  z-index: 2;
}

.product-image {
  width: 100%;
  height: 200px;
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  max-width: 100%;
  max-height: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

/* ===== HONEY JAR - Dramatic 3D Glass Jar ===== */
.product-image.honey-jar {
  background: none;
  position: relative;
  width: 130px;
  height: 190px;
  filter: drop-shadow(0 20px 30px rgba(180,120,20,0.4));
}

/* Jar body - glass container with honey */
.product-image.honey-jar::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 150px;
  background:
    /* Strong glass highlight - left */
    linear-gradient(100deg,
      rgba(255,255,255,0.7) 0%,
      rgba(255,255,255,0.3) 5%,
      transparent 20%
    ),
    /* Subtle right reflection */
    linear-gradient(90deg,
      transparent 80%,
      rgba(255,255,255,0.2) 95%,
      rgba(255,255,255,0.4) 100%
    ),
    /* Honey swirl effect */
    radial-gradient(ellipse 150% 100% at 30% 90%,
      rgba(139,90,10,0.6) 0%,
      transparent 50%
    ),
    /* Light hitting honey from top */
    radial-gradient(ellipse 80% 50% at 50% 10%,
      #ffd54f 0%,
      transparent 60%
    ),
    /* Deep honey gradient */
    linear-gradient(180deg,
      #ffc107 0%,
      #ffb300 15%,
      #ff8f00 40%,
      #e65100 70%,
      #bf360c 100%
    );
  border-radius: 15px 15px 25px 25px;
  box-shadow:
    inset 4px 0 15px rgba(255,255,255,0.5),
    inset -4px 0 10px rgba(0,0,0,0.15),
    inset 0 -20px 40px rgba(139,69,19,0.4),
    inset 0 10px 20px rgba(255,215,0,0.3),
    0 15px 40px rgba(0,0,0,0.3),
    0 5px 15px rgba(230,140,0,0.5);
  border: 2px solid rgba(255,255,255,0.3);
}

/* Jar lid - premium wooden cap */
.product-image.honey-jar::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 28px;
  background:
    linear-gradient(180deg,
      #4a7c59 0%,
      #2d5a3a 30%,
      #1e4d2b 70%,
      #153d22 100%
    );
  border-radius: 8px 8px 3px 3px;
  box-shadow:
    inset 0 4px 8px rgba(255,255,255,0.25),
    inset 0 -4px 8px rgba(0,0,0,0.4),
    0 6px 15px rgba(0,0,0,0.35),
    0 2px 5px rgba(0,0,0,0.2);
}

/* Glass shine highlight */
.honey-jar-highlight {
  position: absolute;
  top: 40px;
  left: 15px;
  width: 25px;
  height: 80px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.8) 0%,
    rgba(255,255,255,0.4) 30%,
    rgba(255,255,255,0.1) 60%,
    transparent 100%
  );
  border-radius: 50%;
  transform: rotate(-5deg);
  z-index: 2;
  pointer-events: none;
}

/* ===== PROPOLIS TINCTURE - Premium Dropper Bottle ===== */
.product-image.propolis-tincture {
  background: none;
  position: relative;
  width: 90px;
  height: 190px;
  filter: drop-shadow(0 15px 25px rgba(90,30,20,0.5));
}

/* Bottle body - deep amber glass */
.product-image.propolis-tincture::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 130px;
  background:
    /* Glass shine left */
    linear-gradient(100deg,
      rgba(255,180,150,0.5) 0%,
      rgba(255,150,100,0.2) 8%,
      transparent 25%
    ),
    /* Right edge */
    linear-gradient(90deg,
      transparent 85%,
      rgba(255,150,100,0.15) 100%
    ),
    /* Deep liquid effect */
    radial-gradient(ellipse 100% 80% at 50% 100%,
      #1a0a05 0%,
      transparent 70%
    ),
    /* Top light */
    radial-gradient(ellipse 80% 40% at 50% 15%,
      #c0392b 0%,
      transparent 60%
    ),
    /* Rich propolis color */
    linear-gradient(180deg,
      #a93226 0%,
      #922b21 20%,
      #7b241c 40%,
      #641e16 60%,
      #4a1812 80%,
      #2c0f0a 100%
    );
  border-radius: 10px 10px 6px 6px;
  box-shadow:
    inset 3px 0 10px rgba(255,100,80,0.3),
    inset -3px 0 8px rgba(0,0,0,0.3),
    inset 0 -15px 30px rgba(0,0,0,0.5),
    0 10px 25px rgba(0,0,0,0.35),
    0 3px 10px rgba(120,40,30,0.5);
  border: 1px solid rgba(150,80,60,0.3);
}

/* Dropper bulb - rubber squeeze */
.product-image.propolis-tincture::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 45px;
  background:
    radial-gradient(ellipse 100% 70% at 50% 25%,
      #555 0%,
      #333 40%,
      #1a1a1a 100%
    );
  border-radius: 50% 50% 25% 25%;
  box-shadow:
    inset 3px 3px 10px rgba(255,255,255,0.15),
    inset -3px -3px 10px rgba(0,0,0,0.5),
    0 5px 12px rgba(0,0,0,0.4);
}

/* Dropper neck/collar */
.propolis-neck {
  position: absolute;
  top: 46px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 12px;
  background: linear-gradient(180deg, #444 0%, #222 100%);
  border-radius: 2px;
  z-index: 2;
  box-shadow:
    inset 0 2px 3px rgba(255,255,255,0.1),
    0 3px 6px rgba(0,0,0,0.4);
}

/* ===== GIFT SET - Luxury Box with Bow ===== */
.product-image.gift-set {
  background: none;
  position: relative;
  width: 160px;
  height: 150px;
  filter: drop-shadow(0 20px 35px rgba(30,77,43,0.5));
}

/* Box base - 3D perspective */
.product-image.gift-set::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translateX(-50%) perspective(300px) rotateX(8deg);
  width: 140px;
  height: 100px;
  background:
    /* Subtle texture */
    repeating-linear-gradient(
      95deg,
      transparent 0px,
      transparent 12px,
      rgba(255,255,255,0.03) 12px,
      rgba(255,255,255,0.03) 14px
    ),
    /* Rich green gradient */
    linear-gradient(180deg,
      #3d8b5a 0%,
      #2d7048 20%,
      #236038 50%,
      #1a5030 80%,
      #144025 100%
    );
  border-radius: 8px;
  box-shadow:
    inset 0 3px 10px rgba(255,255,255,0.2),
    inset 0 -5px 15px rgba(0,0,0,0.3),
    inset 5px 0 10px rgba(255,255,255,0.1),
    inset -5px 0 10px rgba(0,0,0,0.15),
    0 20px 50px rgba(0,0,0,0.4),
    0 8px 20px rgba(30,77,43,0.5);
}

/* Ribbon cross - golden satin */
.product-image.gift-set::after {
  content: '';
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translateX(-50%) perspective(300px) rotateX(8deg);
  width: 140px;
  height: 100px;
  background:
    /* Vertical ribbon with shine */
    linear-gradient(90deg,
      transparent 0%,
      transparent 40%,
      #d4a43f 40%,
      #f4d03f 43%,
      #ffd54f 50%,
      #f4d03f 57%,
      #d4a43f 60%,
      transparent 60%,
      transparent 100%
    ),
    /* Horizontal ribbon with shine */
    linear-gradient(180deg,
      transparent 0%,
      transparent 35%,
      #d4a43f 35%,
      #f4d03f 40%,
      #ffd54f 50%,
      #f4d03f 60%,
      #d4a43f 65%,
      transparent 65%,
      transparent 100%
    );
  border-radius: 8px;
  pointer-events: none;
}

/* Ribbon bow - luxurious loops */
.gift-bow {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 40px;
  z-index: 2;
}

.gift-bow::before,
.gift-bow::after {
  content: '';
  position: absolute;
  width: 28px;
  height: 35px;
  background:
    radial-gradient(ellipse at 30% 30%, #ffd54f 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, #b8860b 0%, #d4a43f 40%, #f4d03f 100%);
  border-radius: 50% 50% 45% 45%;
  box-shadow:
    inset 3px 3px 8px rgba(255,255,255,0.5),
    inset -2px -2px 6px rgba(0,0,0,0.2),
    2px 4px 10px rgba(0,0,0,0.3);
}

.gift-bow::before {
  left: 0;
  transform: rotate(-30deg);
}

.gift-bow::after {
  right: 0;
  transform: rotate(30deg);
}

/* Bow center knot */
.gift-bow-center {
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  background:
    radial-gradient(circle at 30% 30%, #ffd54f 0%, transparent 50%),
    radial-gradient(circle, #d4a43f 0%, #b8860b 100%);
  border-radius: 50%;
  z-index: 3;
  box-shadow:
    inset 2px 2px 5px rgba(255,255,255,0.6),
    0 3px 8px rgba(0,0,0,0.3);
}

.product-card h3 {
  font-size: 1.35rem;
  color: var(--primary);
  margin-bottom: 12px;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.product-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.product-size {
  display: block;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  z-index: 1;
  width: fit-content;
  margin: 0 auto;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: var(--white);
}

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

.contact h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--primary);
  margin-bottom: 16px;
}

.contact > .container > .contact-content > p {
  color: var(--text-light);
  margin-bottom: 40px;
}

.contact-form {
  text-align: left;
}

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

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
  background: var(--white);
}

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

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

.contact-form .btn {
  margin-top: 8px;
}

.form-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 16px;
}

.form-success {
  padding: 40px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  text-align: center;
}

.form-success svg {
  width: 64px;
  height: 64px;
  color: var(--primary);
  margin-bottom: 20px;
}

.form-success h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
}

.form-success p {
  color: var(--text-light);
}

/* Footer */
.footer {
  padding: 48px 0;
  background: var(--primary);
  color: var(--white);
}

.footer-content {
  text-align: center;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.footer-tagline {
  font-size: 0.95rem;
  opacity: 0.8;
  margin-bottom: 24px;
}

.footer-copyright {
  font-size: 0.85rem;
  opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding: 120px 0 80px;
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    order: -1;
  }

  .honey-drop {
    width: 180px;
    height: 220px;
  }

  .stats-grid {
    gap: 30px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .mission-text {
    padding: 24px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ===== Waitlist Button ===== */
.btn-waitlist {
  display: block;
  width: fit-content;
  margin: 20px auto 0;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(30,77,43,0.25);
}

.btn-waitlist:hover {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(30,77,43,0.35);
}

.btn-waitlist:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(30,77,43,0.25);
}

/* ===== Modal Styles ===== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal {
  background: var(--white);
  border-radius: 24px;
  max-width: 440px;
  width: 100%;
  position: relative;
  box-shadow: 0 25px 80px rgba(0,0,0,0.3);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s ease;
  overflow: hidden;
}

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

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--cream);
  color: var(--text);
  font-size: 24px;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 10;
}

.modal-close:hover {
  background: var(--cream-dark);
  transform: rotate(90deg);
}

.modal-content {
  padding: 48px 40px 40px;
  text-align: center;
}

.modal-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-icon svg {
  width: 32px;
  height: 32px;
  color: var(--white);
}

.modal-content h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 12px;
  font-family: 'Playfair Display', Georgia, serif;
}

.modal-content h3 span {
  color: var(--accent-dark);
}

.modal-content > p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 28px;
}

.waitlist-form .form-group {
  margin-bottom: 16px;
}

.waitlist-form input {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--cream-dark);
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  text-align: center;
  transition: all 0.2s;
}

.waitlist-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(30,77,43,0.1);
}

.waitlist-form input::placeholder {
  color: var(--text-light);
}

.modal-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 16px;
}

/* Modal Success State */
.modal-success {
  padding: 48px 40px 40px;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: successPulse 0.6s ease;
}

@keyframes successPulse {
  0% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

.success-icon svg {
  width: 40px;
  height: 40px;
  color: var(--white);
}

.modal-success h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 12px;
  font-family: 'Playfair Display', Georgia, serif;
}

.modal-success p {
  color: var(--text-light);
  margin-bottom: 28px;
}

.btn-secondary {
  background: var(--cream);
  color: var(--primary);
  padding: 14px 28px;
  border: none;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: var(--cream-dark);
}
