body {
  margin: 0;
  background: #0f0f0f;
  color: #f5f5f5;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 4rem 1.5rem;
}

h1, h2, h3 {
  font-family: 'Inter Tight', sans-serif;
  line-height: 1.2;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; margin-top: 3rem; }
h3 { font-size: 1.4rem; }

p { color: #b3b3b3; font-size: 1.05rem; }

.hero {
  position: relative;
  text-align: center;
}

.hero img {
  width: 100%;
  border-radius: 12px;
}

.hero-text {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  max-width: 800px;
  width: 90%; /* safeguard for mobile */
}

.cta {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.9rem 1.8rem;
  background: #d97706;
  color: #000;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  transition: transform 0.2s, background 0.2s;
}

.cta:hover {
  background: #f59e0b;
  transform: scale(1.05);
}

.section-divider {
  margin: 5rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.image-center img {
  width: 100%;
  max-width: 600px;
  display: block;
  margin: 2rem auto;
  border-radius: 10px;
}
.ava-dessert {
  display: flex;
  justify-content: center;
  margin: 4rem 0 2rem;
}

.ava-dessert img {
  max-width: 420px;
  width: 100%;
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}


.grid-2 {
  grid-template-columns: 1fr;
}

.grid-3 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}


.quote {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  margin: 3rem 0;
  color: #f5f5f5;
}

/* Smooth scroll for the 'Buy' anchor link */
html {
  scroll-behavior: smooth;
}

/* --- NEW ADDITIONS FOR FIXES --- */

/* 1. Limited Time Offer Card */
.offer-card {
  background: linear-gradient(135deg, #1f1f1f 0%, #161616 100%);
  border: 1px solid #333;
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  margin: 5rem auto;
  max-width: 700px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.offer-card h3 {
  margin-top: 0;
  color: #d97706; /* Match CTA */
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.offer-card h2 {
    margin-top: 10px;
    margin-bottom: 20px;
}

.email-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.email-input {
  padding: 12px 16px;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #444;
  background: #0a0a0a;
  color: #fff;
  flex: 1;
  min-width: 250px;
  max-width: 400px;
}

.subscribe-btn {
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 700;
  background: #d97706;
  color: #000;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}

.subscribe-btn:hover {
  background: #f59e0b;
  transform: translateY(-2px);
}

/* 2. Responsive Video Container */
.video-section {
    margin: 4rem 0;
    text-align: center;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px; /* Optional cap */
  margin: 0 auto;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.video-wrapper iframe, 
.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* 3. Popup Modal */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: #1a1a1a;
  padding: 3rem;
  border-radius: 16px;
  border: 1px solid #333;
  text-align: center;
  max-width: 400px;
  width: 90%;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

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

.modal-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.close-modal-btn {
  margin-top: 1.5rem;
  background: transparent;
  border: 1px solid #444;
  color: #bbb;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
}
.close-modal-btn:hover {
  background: #333;
  color: #fff;
}

:root {
--silky-50: #fefaf3;
--silky-200: #f7e8d0;
--silky-700: #7d5a2a;
--silky-800: #5c421f;
--silky-900: #3b2a14;
--gold-400: #d4af37;
--pink-100: #fff5f7;
--pink-200: #fed7e2;
--pink-600: #d53f8c;
--accent-orange: #f4a261;
}

.article-container { max-width: 900px; margin: 0 auto; padding: 3rem 2rem 5rem; font-family: sans-serif; } 
.recipe-card-island {
max-width: 850px; margin: 2rem auto; border-radius: 24px;
box-shadow: 0 20px 40px rgba(59, 42, 20, 0.1); overflow: hidden;
border: 4px solid var(--gold-400); background-color: var(--silky-50);
}

.bg-silky-50 { background-color: var(--silky-50) !important; }
.bg-silky-900 { background-color: var(--silky-900) !important; color: white !important; }
.text-silky-900 { color: var(--silky-900) !important; }
.border-gold-400 { border-color: var(--gold-400) !important; }

.disclaimer {
font-size: 0.85rem; color: var(--silky-700);
border-left: 3px solid var(--accent-orange); padding-left: 1rem; margin-top: 2rem; 
}