/* Elite Vegan Recipes - Main Stylesheet */

:root {
  --cream: #F7F4EF;
  --sage: #7D8471;
  --sage-dark: #5A6150;
  --forest: #2C3527;
  --terracotta: #C4785A;
  --terracotta-light: #D4947A;
  --gold: #B8965A;
  --charcoal: #1E1E1C;
  --white: #FFFFFF;
  --youtube-red: #FF0000;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Grain overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 1000;
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: linear-gradient(to bottom, var(--cream), transparent);
  transition: background 0.3s ease;
}

nav.scrolled {
  background: var(--cream);
  box-shadow: 0 2px 20px rgba(44, 53, 39, 0.08);
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: 0.05em;
  text-decoration: none;
}

.logo span {
  color: var(--terracotta);
}

.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--forest);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--terracotta);
  transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--forest);
  color: var(--cream);
  padding: 0.75rem 1.75rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
}

.nav-cta:hover {
  background: var(--terracotta);
  transform: translateY(-2px);
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--forest);
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 8rem 4rem 4rem;
  gap: 4rem;
  align-items: center;
  position: relative;
}

.hero-content {
  max-width: 600px;
  animation: fadeInUp 1s ease forwards;
}

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

@keyframes fadeIn {
  to { opacity: 1; }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease 0.2s forwards;
  opacity: 0;
}

.hero-tag::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--terracotta);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--forest);
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease 0.4s forwards;
  opacity: 0;
}

.hero h1 em {
  font-style: italic;
  color: var(--terracotta);
}

.hero-description {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--sage-dark);
  max-width: 480px;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease 0.6s forwards;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  animation: fadeInUp 1s ease 0.8s forwards;
  opacity: 0;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  padding: 1.1rem 2.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  background: var(--terracotta-light);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(196, 120, 90, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--forest);
  padding: 1.1rem 2.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--forest);
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
}

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

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 80vh;
  animation: fadeIn 1.2s ease 0.5s forwards;
  opacity: 0;
}

.hero-image-main {
  position: absolute;
  top: 5%;
  right: 0;
  width: 85%;
  height: 75%;
  background: linear-gradient(145deg, var(--sage) 0%, var(--forest) 100%);
  border-radius: 200px 200px 20px 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-main::before {
  content: '🥗';
  font-size: 12rem;
  filter: grayscale(20%);
}

.floating-card {
  position: absolute;
  background: var(--white);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(44, 53, 39, 0.1);
  animation: float 6s ease-in-out infinite;
}

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

.floating-card.card-1 {
  bottom: 15%;
  left: -5%;
  animation-delay: 0s;
}

.floating-card.card-2 {
  top: 10%;
  left: 5%;
  animation-delay: 2s;
}

.card-emoji {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.card-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
}

.card-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--forest);
  font-weight: 500;
}

/* ===== MANIFESTO BANNER ===== */
.manifesto {
  background: var(--forest);
  padding: 5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.manifesto::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 10%;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20rem;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
}

.manifesto blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.manifesto cite {
  display: block;
  margin-top: 2rem;
  font-size: 0.85rem;
  font-style: normal;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta-light);
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.5rem;
}

.section-tag::before,
.section-tag::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--terracotta);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--sage);
  max-width: 500px;
  margin: 0 auto;
}

/* ===== FEATURED CREATORS SECTION ===== */
.featured-creators {
  padding: 8rem 4rem;
  background: var(--cream);
}

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

.creator-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.5s ease;
  text-decoration: none;
  display: block;
}

.creator-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(44, 53, 39, 0.12);
}

.creator-avatar {
  height: 200px;
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.creator-avatar .emoji-avatar {
  font-size: 5rem;
}

.platform-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--white);
  padding: 0.4rem 0.75rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.platform-badge.youtube {
  color: var(--youtube-red);
}

.platform-badge.blog {
  color: var(--forest);
}

.creator-info {
  padding: 1.5rem;
}

.creator-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.5rem;
}

.creator-specialty {
  font-size: 0.85rem;
  color: var(--sage);
  line-height: 1.5;
}

.creators-cta {
  text-align: center;
  margin-top: 4rem;
}

/* ===== FEATURED VIDEOS SECTION ===== */
.featured-videos {
  padding: 8rem 4rem;
  background: var(--white);
}

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

.video-category-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 2.5rem;
  text-decoration: none;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.video-category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--forest);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.video-category-card:hover::before {
  transform: translateY(0);
}

.video-category-card:hover {
  transform: translateY(-8px);
}

.video-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
}

.video-category-card:hover .video-icon {
  transform: scale(1.15);
}

.video-category-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
  transition: color 0.4s ease;
}

.video-category-card:hover .video-category-name {
  color: var(--cream);
}

.video-category-desc {
  font-size: 0.85rem;
  color: var(--sage);
  position: relative;
  z-index: 1;
  transition: color 0.4s ease;
}

.video-category-card:hover .video-category-desc {
  color: var(--terracotta-light);
}

.youtube-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.5rem 1rem;
  background: rgba(196, 120, 90, 0.15);
  border-radius: 20px;
  font-size: 0.75rem;
  color: var(--terracotta);
  font-weight: 500;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.video-category-card:hover .youtube-badge {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

/* ===== COMMUNITY SUBMIT SECTION ===== */
.community-submit {
  padding: 8rem 4rem;
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.submit-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 1.5rem;
}

.submit-content p {
  font-size: 1.1rem;
  color: var(--sage-dark);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.submit-benefits {
  list-style: none;
  margin-bottom: 2rem;
}

.submit-benefits li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  font-size: 0.95rem;
  color: var(--charcoal);
}

.submit-benefits li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--terracotta);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.external-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(44, 53, 39, 0.1);
}

.external-links a {
  font-size: 0.8rem;
  color: var(--sage);
  text-decoration: none;
  transition: color 0.3s ease;
}

.external-links a:hover {
  color: var(--terracotta);
}

/* Submit Form */
.submit-form-container {
  background: var(--white);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(44, 53, 39, 0.08);
}

.submit-form-container h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  border: 1px solid rgba(44, 53, 39, 0.15);
  border-radius: 8px;
  background: var(--cream);
  color: var(--charcoal);
  transition: all 0.3s ease;
}

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

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

.submit-form-container .btn-primary {
  width: 100%;
  justify-content: center;
}

/* ===== RESOURCES SECTION ===== */
.resources {
  padding: 8rem 4rem;
  background: var(--white);
}

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

.resource-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 2rem;
  text-decoration: none;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.resource-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(44, 53, 39, 0.1);
}

.resource-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.resource-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.5rem;
}

.resource-desc {
  font-size: 0.85rem;
  color: var(--sage);
  line-height: 1.6;
  flex-grow: 1;
}

.resource-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--terracotta);
  font-weight: 500;
}

/* ===== NEWSLETTER ===== */
.newsletter {
  padding: 8rem 4rem;
  background: linear-gradient(135deg, var(--sage) 0%, var(--forest) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -25%;
  width: 150%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.newsletter h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.newsletter p {
  font-size: 1rem;
  color: rgba(247, 244, 239, 0.8);
  margin-bottom: 3rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 1.2rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: var(--cream);
  outline: none;
  transition: all 0.3s ease;
}

.newsletter-input::placeholder {
  color: rgba(247, 244, 239, 0.5);
}

.newsletter-input:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--terracotta-light);
}

.newsletter-btn {
  background: var(--terracotta);
  color: var(--white);
  padding: 1.2rem 2rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-btn:hover {
  background: var(--terracotta-light);
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
footer {
  background: var(--charcoal);
  padding: 5rem 4rem 3rem;
  color: var(--cream);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(247, 244, 239, 0.1);
}

.footer-brand .logo {
  color: var(--cream);
  margin-bottom: 1.5rem;
  display: inline-block;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(247, 244, 239, 0.6);
  max-width: 300px;
  line-height: 1.8;
}

.footer-column h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--terracotta-light);
}

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

.footer-column li {
  margin-bottom: 0.75rem;
}

.footer-column a {
  font-size: 0.85rem;
  color: rgba(247, 244, 239, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--cream);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(247, 244, 239, 0.4);
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-links a {
  color: rgba(247, 244, 239, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--terracotta-light);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  nav {
    padding: 1.5rem 2rem;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.4s ease;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    right: 0;
  }

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

  .hero {
    grid-template-columns: 1fr;
    padding: 7rem 2rem 3rem;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-visual {
    height: 50vh;
  }

  .hero-image-main {
    width: 100%;
    right: auto;
    left: 0;
  }

  .floating-card {
    display: none;
  }

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

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

  .community-submit {
    grid-template-columns: 1fr;
    gap: 4rem;
    padding: 6rem 2rem;
  }

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

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

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

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

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

  .newsletter-form {
    flex-direction: column;
  }

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }

  .manifesto {
    padding: 4rem 2rem;
  }

  .featured-creators,
  .featured-videos,
  .resources {
    padding: 5rem 2rem;
  }
}

/* ===== PAGE-SPECIFIC STYLES ===== */

/* Creators Page */
.page-hero {
  padding: 10rem 4rem 4rem;
  background: var(--cream);
  text-align: center;
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--forest);
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--sage-dark);
  max-width: 600px;
  margin: 0 auto;
}

/* Filter Bar */
.filter-bar {
  padding: 2rem 4rem;
  background: var(--white);
  border-bottom: 1px solid rgba(44, 53, 39, 0.08);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  border: 1px solid rgba(44, 53, 39, 0.15);
  border-radius: 30px;
  background: var(--white);
  color: var(--charcoal);
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}

/* Full Width Creator Grid */
.creators-page-section {
  padding: 4rem;
  background: var(--cream);
}

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

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

  .page-hero {
    padding: 8rem 2rem 3rem;
  }

  .filter-bar {
    padding: 1.5rem 2rem;
  }

  .creators-page-section {
    padding: 3rem 2rem;
  }
}

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

/* Categories Page */
.categories-page-section {
  padding: 4rem;
  background: var(--cream);
}

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

.category-large-card {
  aspect-ratio: 1;
  background: var(--white);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.category-large-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--forest);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.category-large-card:hover::before {
  transform: translateY(0);
}

.category-large-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(44, 53, 39, 0.12);
}

.category-large-card .category-icon {
  font-size: 4rem;
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
}

.category-large-card:hover .category-icon {
  transform: scale(1.15);
}

.category-large-card .category-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--forest);
  position: relative;
  z-index: 1;
  transition: color 0.4s ease;
}

.category-large-card:hover .category-name {
  color: var(--cream);
}

.category-large-card .category-desc {
  font-size: 0.85rem;
  color: var(--sage);
  position: relative;
  z-index: 1;
  transition: color 0.4s ease;
  text-align: center;
  padding: 0 1rem;
}

.category-large-card:hover .category-desc {
  color: var(--terracotta-light);
}

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

  .categories-page-section {
    padding: 3rem 2rem;
  }
}

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

/* About Page */
.about-content {
  padding: 4rem;
  max-width: 900px;
  margin: 0 auto;
}

.about-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--forest);
  margin: 3rem 0 1.5rem;
}

.about-content h2:first-child {
  margin-top: 0;
}

.about-content p {
  font-size: 1.1rem;
  color: var(--sage-dark);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.about-content ul {
  list-style: none;
  margin: 2rem 0;
}

.about-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  font-size: 1.05rem;
  color: var(--charcoal);
}

.about-content ul li::before {
  content: '🌱';
  flex-shrink: 0;
}

.highlight-box {
  background: var(--forest);
  color: var(--cream);
  padding: 3rem;
  border-radius: 20px;
  margin: 3rem 0;
}

.highlight-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--terracotta-light);
}

.highlight-box p {
  color: rgba(247, 244, 239, 0.9);
}

@media (max-width: 640px) {
  .about-content {
    padding: 3rem 2rem;
  }
}

/* Submit Page */
.submit-page-section {
  padding: 4rem;
  background: var(--cream);
}

.submit-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.submit-form-large {
  background: var(--white);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(44, 53, 39, 0.08);
}

.submit-form-large h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.5rem;
}

.submit-form-large .form-subtitle {
  font-size: 0.9rem;
  color: var(--sage);
  margin-bottom: 2rem;
}

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

@media (max-width: 1024px) {
  .submit-page-grid {
    grid-template-columns: 1fr;
  }

  .submit-page-section {
    padding: 3rem 2rem;
  }
}

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

  .submit-form-large {
    padding: 2rem;
  }
}

/* Resources Page */
.resources-page-section {
  padding: 4rem;
  background: var(--cream);
}

.resources-category {
  margin-bottom: 4rem;
}

.resources-category h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 2rem;
  text-align: center;
}

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

.resource-large-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  text-decoration: none;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.resource-large-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(44, 53, 39, 0.1);
}

.resource-large-card .resource-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.resource-large-card .resource-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.75rem;
}

.resource-large-card .resource-desc {
  font-size: 0.95rem;
  color: var(--sage);
  line-height: 1.7;
  flex-grow: 1;
}

.resource-large-card .resource-url {
  display: block;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--terracotta);
  font-weight: 500;
}

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

  .resources-page-section {
    padding: 3rem 2rem;
  }
}

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

/* ===== RECIPES PAGE STYLES ===== */

.recipes-page-section {
  padding: 4rem;
  background: var(--cream);
}

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

.recipe-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.4s ease;
  display: block;
}

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

.recipe-thumbnail {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

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

.recipe-card:hover .recipe-thumbnail img {
  transform: scale(1.05);
}

.recipe-duration {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  background: rgba(0, 0, 0, 0.75);
  color: var(--white);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
}

.recipe-views {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  background: rgba(0, 0, 0, 0.75);
  color: var(--white);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
}

.recipe-info {
  padding: 1.25rem;
}

.recipe-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.recipe-creator {
  font-size: 0.85rem;
  color: var(--sage);
  margin-bottom: 0.75rem;
}

.recipe-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.recipe-rating {
  color: var(--terracotta);
  font-weight: 500;
}

.recipe-rating .stars {
  color: var(--gold);
  letter-spacing: -2px;
}

.recipe-comments {
  color: var(--sage);
}

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

  .recipes-page-section {
    padding: 3rem 2rem;
  }
}

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

/* ===== INDIVIDUAL RECIPE PAGE STYLES ===== */

.recipe-hero {
  padding: 10rem 4rem 4rem;
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
}

.recipe-hero-content {
  max-width: 800px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--sage);
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: var(--terracotta);
}

.recipe-category-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
}

.recipe-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.recipe-meta {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.recipe-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.meta-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
}

.meta-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--forest);
  font-weight: 500;
}

.recipe-rating-large {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stars-large {
  display: flex;
  gap: 0.25rem;
}

.star {
  font-size: 1.5rem;
  color: var(--sage);
}

.star.filled {
  color: var(--gold);
}

.rating-text {
  font-weight: 500;
  color: var(--forest);
}

.rating-count {
  color: var(--sage);
  font-size: 0.9rem;
}

/* Video Player Section */
.video-player-section {
  padding: 0 4rem 3rem;
  background: var(--white);
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(44, 53, 39, 0.15);
}

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

.video-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--cream);
  border: 1px solid rgba(44, 53, 39, 0.15);
  border-radius: 30px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  color: var(--charcoal);
  cursor: pointer;
  transition: all 0.3s ease;
}

.action-btn:hover {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}

.action-btn.favorited {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}

/* Recipe Content Section */
.recipe-content-section {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 4rem;
  padding: 4rem;
  background: var(--cream);
}

.recipe-main {
  max-width: 100%;
}

/* Highlights Section */
.highlights-section {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 3rem;
}

.highlights-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 2rem;
}

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

.highlight-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.highlight-emoji {
  font-size: 2rem;
  flex-shrink: 0;
}

.highlight-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--forest);
  margin-bottom: 0.25rem;
}

.highlight-text p {
  font-size: 0.8rem;
  color: var(--sage);
}

/* Recipe Overview */
.recipe-overview {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 3rem;
}

.recipe-overview h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 1rem;
}

.recipe-overview > p {
  font-size: 1rem;
  color: var(--sage-dark);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.key-ingredients h3,
.pro-tips h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 1rem;
}

.ingredient-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
  margin-bottom: 2rem;
}

.ingredient-tags li {
  background: var(--cream);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--charcoal);
}

.pro-tips ul {
  list-style: none;
}

.pro-tips li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(44, 53, 39, 0.08);
  font-size: 0.9rem;
  color: var(--sage-dark);
  line-height: 1.6;
}

.pro-tips li:last-child {
  border-bottom: none;
}

.pro-tips li strong {
  color: var(--forest);
}

/* Comments Section */
.comments-section {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
}

.comments-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.comments-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--forest);
}

.comment-count {
  font-size: 0.85rem;
  color: var(--sage);
}

/* Add Comment Form */
.add-comment-form {
  background: var(--cream);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.add-comment-form h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 1.5rem;
}

.rating-input {
  margin-bottom: 1.5rem;
}

.rating-input label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 0.5rem;
}

.star-rating-input {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 0.25rem;
}

.star-rating-input input {
  display: none;
}

.star-rating-input label {
  font-size: 1.75rem;
  color: var(--sage);
  cursor: pointer;
  transition: color 0.2s ease;
}

.star-rating-input label:hover,
.star-rating-input label:hover ~ label,
.star-rating-input input:checked ~ label {
  color: var(--gold);
}

/* Comment Cards */
.comments-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.comment-card {
  padding: 1.5rem;
  border-radius: 12px;
  background: var(--cream);
}

.comment-card.featured {
  background: linear-gradient(135deg, var(--forest) 0%, var(--sage-dark) 100%);
  color: var(--cream);
}

.comment-card.featured .commenter-name,
.comment-card.featured .comment-text {
  color: var(--cream);
}

.comment-card.featured .comment-date,
.comment-card.featured .stars {
  color: var(--terracotta-light);
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.commenter-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.commenter-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 1rem;
}

.commenter-name {
  font-weight: 500;
  color: var(--forest);
}

.comment-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 0.15rem 0.5rem;
  border-radius: 10px;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-left: 0.5rem;
}

.comment-rating .stars {
  color: var(--gold);
  font-size: 0.9rem;
}

.comment-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--charcoal);
}

.comment-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(44, 53, 39, 0.08);
}

.comment-card.featured .comment-footer {
  border-top-color: rgba(247, 244, 239, 0.2);
}

.comment-date {
  font-size: 0.8rem;
  color: var(--sage);
}

.comment-actions {
  display: flex;
  gap: 1rem;
}

.helpful-btn,
.reply-btn {
  background: none;
  border: none;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  color: var(--sage);
  cursor: pointer;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.helpful-btn:hover,
.reply-btn:hover {
  color: var(--terracotta);
}

.helpful-btn.voted {
  color: var(--terracotta);
}

.load-more-btn {
  width: 100%;
  margin-top: 2rem;
  padding: 1rem;
  background: transparent;
  border: 1px solid rgba(44, 53, 39, 0.15);
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  color: var(--charcoal);
  cursor: pointer;
  transition: all 0.3s ease;
}

.load-more-btn:hover {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}

/* Recipe Sidebar */
.recipe-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.creator-sidebar-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
}

.creator-sidebar-avatar {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.creator-sidebar-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.5rem;
}

.creator-sidebar-card p {
  font-size: 0.85rem;
  color: var(--sage);
  margin-bottom: 1.5rem;
}

.sidebar-section {
  background: var(--white);
  border-radius: 20px;
  padding: 1.5rem;
}

.sidebar-section h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 1rem;
}

.sidebar-recipes {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sidebar-recipe-card {
  display: flex;
  gap: 1rem;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.sidebar-recipe-card:hover {
  opacity: 0.8;
}

.sidebar-recipe-card img {
  width: 100px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}

.sidebar-recipe-card h4 {
  font-size: 0.9rem;
  color: var(--forest);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.sidebar-recipe-card span {
  font-size: 0.75rem;
  color: var(--sage);
}

.sidebar-newsletter {
  background: var(--forest);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
}

.sidebar-newsletter h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.sidebar-newsletter p {
  font-size: 0.85rem;
  color: rgba(247, 244, 239, 0.7);
  margin-bottom: 1.5rem;
}

.sidebar-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sidebar-newsletter-form input {
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  color: var(--cream);
}

.sidebar-newsletter-form input::placeholder {
  color: rgba(247, 244, 239, 0.5);
}

.sidebar-newsletter-form button {
  padding: 0.9rem;
  background: var(--terracotta);
  border: none;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  cursor: pointer;
  transition: background 0.3s ease;
}

.sidebar-newsletter-form button:hover {
  background: var(--terracotta-light);
}

/* More Recipes Section */
.more-recipes-section {
  padding: 4rem;
  background: var(--white);
}

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

.recipe-card-small {
  text-decoration: none;
  transition: transform 0.3s ease;
}

.recipe-card-small:hover {
  transform: translateY(-5px);
}

.recipe-card-small img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.75rem;
}

.recipe-card-info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.25rem;
}

.recipe-card-info span {
  font-size: 0.8rem;
  color: var(--sage);
}

/* Recipe Page Responsive */
@media (max-width: 1024px) {
  .recipe-hero {
    padding: 8rem 2rem 3rem;
  }

  .video-player-section {
    padding: 0 2rem 2rem;
  }

  .recipe-content-section {
    grid-template-columns: 1fr;
    padding: 3rem 2rem;
  }

  .recipe-sidebar {
    order: -1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

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

  .recipes-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .more-recipes-section {
    padding: 3rem 2rem;
  }
}

@media (max-width: 640px) {
  .recipe-meta {
    gap: 1.5rem;
  }

  .video-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .recipe-sidebar {
    grid-template-columns: 1fr;
  }

  .recipes-row {
    grid-template-columns: 1fr;
  }

  .comment-header {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* ===== HOMEPAGE POPULAR RECIPES SECTION ===== */

.popular-recipes {
  padding: 8rem 4rem;
  background: var(--white);
}

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

.popular-recipe-card {
  background: var(--cream);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.4s ease;
  display: block;
}

.popular-recipe-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(44, 53, 39, 0.12);
}

.popular-recipe-card .recipe-thumbnail {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.popular-recipe-card .recipe-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.popular-recipe-card:hover .recipe-thumbnail img {
  transform: scale(1.05);
}

.popular-recipe-card .play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 53, 39, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.popular-recipe-card:hover .play-overlay {
  opacity: 1;
}

.play-overlay .play-icon {
  width: 60px;
  height: 60px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--terracotta);
}

.popular-recipe-card .rank-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  width: 32px;
  height: 32px;
  background: var(--terracotta);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
}

.popular-recipe-card .recipe-info {
  padding: 1.25rem;
}

.popular-recipe-card .recipe-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.popular-recipe-card .recipe-creator {
  font-size: 0.8rem;
  color: var(--sage);
  margin-bottom: 0.5rem;
}

.popular-recipe-card .recipe-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
}

.popular-recipe-card .recipe-rating .stars {
  color: var(--gold);
}

.popular-recipe-card .recipe-rating span:last-child {
  color: var(--sage);
}

.popular-recipes-cta {
  text-align: center;
  margin-top: 3rem;
}

@media (max-width: 1024px) {
  .popular-recipes {
    padding: 6rem 2rem;
  }

  .popular-recipes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ===== RECIPE BOOK SECTION ===== */

.recipe-book {
  padding: 8rem 4rem;
  background: var(--cream);
}

.recipe-category-section {
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(44, 53, 39, 0.1);
}

.recipe-category-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.category-icon-large {
  font-size: 3rem;
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(44, 53, 39, 0.08);
  flex-shrink: 0;
}

.category-title-group {
  flex: 1;
}

.category-title-group h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.25rem;
}

.category-title-group p {
  font-size: 0.95rem;
  color: var(--sage);
}

.category-view-all {
  font-size: 0.85rem;
  color: var(--terracotta);
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.category-view-all:hover {
  color: var(--terracotta-light);
}

.category-recipes-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.recipe-card-compact {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
}

.recipe-card-compact:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(44, 53, 39, 0.12);
}

.recipe-card-compact img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.recipe-card-compact:hover img {
  transform: scale(1.05);
}

.recipe-card-compact-info {
  padding: 1rem;
}

.recipe-card-compact-info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.recipe-card-compact-info span {
  font-size: 0.75rem;
  color: var(--sage);
}

/* Category Filter Bar */
.category-filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
  padding: 1.5rem 2rem;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(44, 53, 39, 0.08);
  position: sticky;
  top: 80px;
  z-index: 50;
}

.category-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--forest);
  background: var(--cream);
  border: 2px solid transparent;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.category-filter-btn:hover {
  background: var(--sage);
  color: var(--white);
  transform: translateY(-2px);
}

.category-filter-btn.active {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}

.category-filter-btn span {
  font-size: 1.1rem;
}

.category-filter-btn.view-all-btn {
  background: var(--forest);
  color: var(--white);
  font-weight: 500;
}

.category-filter-btn.view-all-btn:hover {
  background: var(--charcoal);
}

@media (max-width: 1200px) {
  .category-recipes-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1024px) {
  .recipe-book {
    padding: 6rem 2rem;
  }

  .category-header {
    flex-wrap: wrap;
  }

  .category-view-all {
    width: 100%;
    margin-top: 0.5rem;
  }

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

@media (max-width: 768px) {
  .category-filter-bar {
    padding: 1rem;
    gap: 0.5rem;
    top: 70px;
  }

  .category-filter-btn {
    padding: 0.5rem 0.85rem;
    font-size: 0.8rem;
  }

  .category-filter-btn span {
    font-size: 0.95rem;
  }

  .category-recipes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-icon-large {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }

  .category-title-group h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .category-recipes-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== CATEGORY DETAIL PAGE STYLES ===== */

.category-detail-hero {
  padding: 10rem 4rem 4rem;
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
  text-align: center;
}

.category-detail-hero .category-icon-hero {
  font-size: 5rem;
  margin-bottom: 1.5rem;
}

.category-detail-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 1rem;
}

.category-detail-hero .category-intro {
  font-size: 1.15rem;
  color: var(--sage-dark);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.category-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

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

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--terracotta);
  display: block;
}

.stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
}

/* Category Overview Section */
.category-overview {
  padding: 4rem;
  background: var(--white);
}

.overview-content {
  max-width: 900px;
  margin: 0 auto;
}

.overview-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 1.5rem;
}

.overview-content p {
  font-size: 1.05rem;
  color: var(--sage-dark);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.overview-tips {
  background: var(--cream);
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem 0;
}

.overview-tips h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 1rem;
}

.overview-tips ul {
  list-style: none;
}

.overview-tips li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--charcoal);
  border-bottom: 1px solid rgba(44, 53, 39, 0.08);
}

.overview-tips li:last-child {
  border-bottom: none;
}

.overview-tips li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--terracotta);
  font-weight: 600;
}

/* Video Carousel Section */
.video-carousel-section {
  padding: 4rem;
  background: var(--cream);
}

.video-carousel-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--forest);
  text-align: center;
  margin-bottom: 0.5rem;
}

.video-carousel-section .section-subtitle {
  text-align: center;
  margin-bottom: 2.5rem;
}

.video-carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.video-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 1rem 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.video-carousel::-webkit-scrollbar {
  display: none;
}

.carousel-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
}

.carousel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(44, 53, 39, 0.12);
}

.carousel-thumbnail {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.carousel-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.carousel-card:hover .carousel-thumbnail img {
  transform: scale(1.05);
}

.carousel-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(44, 53, 39, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.carousel-card:hover .carousel-play-btn {
  opacity: 1;
}

.carousel-play-btn span {
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--terracotta);
}

.carousel-info {
  padding: 1.25rem;
}

.carousel-info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.carousel-info .creator {
  font-size: 0.8rem;
  color: var(--sage);
  margin-bottom: 0.5rem;
}

.carousel-info .meta {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--sage);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(44, 53, 39, 0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--forest);
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}

/* Affiliate Products Section */
.products-section {
  padding: 4rem;
  background: var(--white);
}

.products-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--forest);
  text-align: center;
  margin-bottom: 0.5rem;
}

.products-section .section-subtitle {
  text-align: center;
  margin-bottom: 2.5rem;
}

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

.product-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(44, 53, 39, 0.1);
}

.product-image {
  width: 120px;
  height: 120px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.product-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.5rem;
}

.product-card .product-desc {
  font-size: 0.85rem;
  color: var(--sage);
  line-height: 1.5;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.product-card .product-price {
  font-weight: 600;
  color: var(--terracotta);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.product-card .shop-btn {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  background: var(--forest);
  color: var(--white);
  border-radius: 30px;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.3s ease;
}

.product-card:hover .shop-btn {
  background: var(--terracotta);
}

.affiliate-disclosure {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.8rem;
  color: var(--sage);
  font-style: italic;
}

/* Resources Page Redesign */
.resource-guide-section {
  padding: 4rem;
  background: var(--cream);
}

.resource-guide-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 3rem;
}

.guide-header {
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--forest) 0%, var(--sage-dark) 100%);
  color: var(--cream);
}

.guide-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.guide-header p {
  font-size: 1rem;
  opacity: 0.85;
}

.guide-content {
  padding: 2.5rem;
}

.guide-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--forest);
  margin: 2rem 0 1rem;
}

.guide-content h3:first-child {
  margin-top: 0;
}

.guide-content p {
  font-size: 1rem;
  color: var(--sage-dark);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.guide-content ul {
  list-style: none;
  margin: 1.5rem 0;
}

.guide-content li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--charcoal);
  border-bottom: 1px solid rgba(44, 53, 39, 0.08);
}

.guide-content li:last-child {
  border-bottom: none;
}

.guide-content li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--terracotta);
}

/* Responsive for new sections */
@media (max-width: 1024px) {
  .category-detail-hero,
  .category-overview,
  .video-carousel-section,
  .products-section {
    padding: 3rem 2rem;
  }

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

  .carousel-card {
    flex: 0 0 280px;
  }
}

@media (max-width: 640px) {
  .category-stats {
    gap: 2rem;
  }

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

  .carousel-card {
    flex: 0 0 260px;
  }
}

/* ===== RESOURCES PAGE STYLES ===== */

/* Resource Page Navigation */
.resource-nav {
  background: var(--white);
  padding: 1rem 2rem;
  position: sticky;
  top: 80px;
  z-index: 90;
  border-bottom: 1px solid rgba(44, 53, 39, 0.1);
}

.resource-nav-inner {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.resource-nav-item {
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--forest);
  background: var(--cream);
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.resource-nav-item:hover {
  background: var(--sage);
  color: var(--white);
}

/* Section Subtitle */
.section-subtitle {
  font-size: 1.05rem;
  color: var(--sage);
  text-align: center;
  margin: -1rem auto 2.5rem;
  max-width: 600px;
}

/* Product Card Enhancements */
.product-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.75rem;
}

.product-card p {
  font-size: 0.9rem;
  color: var(--sage-dark);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.product-card .product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.product-features span {
  font-size: 0.75rem;
  padding: 0.3rem 0.6rem;
  background: var(--white);
  border-radius: 20px;
  color: var(--sage);
}

.product-recommendation {
  font-size: 0.85rem;
  color: var(--charcoal);
  background: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.product-link {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background: var(--terracotta);
  color: var(--white);
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.product-link:hover {
  background: var(--forest);
  transform: translateY(-2px);
}

.product-badge {
  display: inline-block;
  padding: 0.35rem 0.8rem;
  background: var(--terracotta);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 20px;
  margin-bottom: 1rem;
}

/* Guide Cards */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.guide-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(44, 53, 39, 0.08);
}

.guide-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

.guide-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 1rem;
}

.guide-content p {
  font-size: 0.95rem;
  color: var(--sage-dark);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.guide-content ol,
.guide-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.guide-content li {
  font-size: 0.9rem;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.guide-content strong {
  color: var(--forest);
}

/* Nutrient Grid */
.nutrition-info {
  background: var(--cream);
  border-radius: 16px;
  padding: 2rem;
  margin-top: 2.5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.nutrition-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--forest);
  text-align: center;
  margin-bottom: 1.5rem;
}

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

.nutrient-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--terracotta);
  margin-bottom: 0.5rem;
}

.nutrient-item p {
  font-size: 0.85rem;
  color: var(--sage-dark);
  line-height: 1.6;
}

/* Category Benefits Grid */
.category-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2.5rem 0;
}

.benefit-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--cream);
  border-radius: 16px;
}

.benefit-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

.benefit-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.5rem;
}

.benefit-item p {
  font-size: 0.9rem;
  color: var(--sage-dark);
  line-height: 1.6;
}

/* Tips Section */
.tips-section {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(44, 53, 39, 0.1);
}

.tips-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--forest);
  text-align: center;
  margin-bottom: 2rem;
}

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

.tip-card {
  background: var(--cream);
  border-radius: 12px;
  padding: 1.5rem;
}

.tip-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 0.75rem;
}

.tip-card p {
  font-size: 0.85rem;
  color: var(--sage-dark);
  line-height: 1.6;
}

/* Category Icon Large */
.category-icon-large {
  font-size: 4rem;
  display: block;
  margin-bottom: 1.5rem;
}

/* Related Categories */
.related-categories {
  padding: 4rem;
  background: var(--cream);
  text-align: center;
}

.related-categories h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 2rem;
}

.related-grid {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.related-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: var(--white);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(44, 53, 39, 0.1);
}

.related-icon {
  font-size: 1.5rem;
}

.related-name {
  font-size: 1rem;
  font-weight: 500;
  color: var(--forest);
}

/* Carousel CTA */
.carousel-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* Responsive for Resources Page */
@media (max-width: 1024px) {
  .guides-grid {
    grid-template-columns: 1fr;
  }

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

  .category-benefits {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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

@media (max-width: 768px) {
  .resource-nav {
    top: 70px;
  }

  .resource-nav-inner {
    gap: 0.5rem;
  }

  .resource-nav-item {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

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

  .related-grid {
    flex-direction: column;
    align-items: center;
  }
}

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

/* ===== NEW THIS WEEK PAGE STYLES ===== */

.new-week-hero {
  padding: 10rem 4rem 4rem;
  background: linear-gradient(135deg, var(--forest) 0%, var(--sage-dark) 100%);
  text-align: center;
  color: var(--cream);
}

.new-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--terracotta);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.new-week-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  margin-bottom: 1rem;
}

.new-week-hero p {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.week-info {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Featured New Recipe */
.featured-new-recipe {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 4rem;
  background: var(--white);
  align-items: center;
}

.featured-label {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  background: var(--terracotta);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.featured-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 0.5rem;
}

.featured-creator {
  font-size: 1rem;
  color: var(--terracotta);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.featured-desc {
  font-size: 1.05rem;
  color: var(--sage-dark);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.featured-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--sage);
}

.featured-meta strong {
  color: var(--forest);
}

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

.video-card-placeholder {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--cream) 0%, var(--sage) 100%);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.placeholder-icon {
  font-size: 4rem;
}

.placeholder-text {
  font-size: 0.9rem;
  color: var(--forest);
  font-weight: 500;
}

/* New Recipes Section */
.new-recipes-section {
  padding: 4rem;
  background: var(--cream);
}

.new-recipes-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--forest);
  text-align: center;
  margin-bottom: 0.5rem;
}

.new-recipes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.new-recipe-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.new-recipe-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(44, 53, 39, 0.1);
}

.new-recipe-visual {
  position: relative;
  padding: 2rem;
  background: linear-gradient(135deg, var(--cream) 0%, rgba(125, 132, 113, 0.2) 100%);
  text-align: center;
}

.new-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.3rem 0.6rem;
  background: var(--terracotta);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 4px;
}

.recipe-placeholder-icon {
  font-size: 3.5rem;
}

.new-recipe-info {
  padding: 1.5rem;
}

.new-recipe-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.25rem;
}

.new-recipe-info .creator-name {
  font-size: 0.85rem;
  color: var(--terracotta);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.new-recipe-info .recipe-desc {
  font-size: 0.9rem;
  color: var(--sage-dark);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.watch-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--forest);
  text-decoration: none;
  transition: color 0.3s ease;
}

.watch-link:hover {
  color: var(--terracotta);
}

/* Creator Highlights */
.creator-highlights {
  padding: 4rem;
  background: var(--white);
  text-align: center;
}

.creator-highlights h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 0.5rem;
}

.creators-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.creator-bubble {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.creator-bubble:hover {
  transform: translateY(-5px);
}

.creator-avatar {
  width: 80px;
  height: 80px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border: 3px solid var(--sage);
}

.creator-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--forest);
}

.post-count {
  font-size: 0.75rem;
  color: var(--terracotta);
  font-weight: 600;
}

/* Archive Section */
.archive-section {
  padding: 4rem;
  background: var(--cream);
}

.archive-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--forest);
  text-align: center;
  margin-bottom: 2rem;
}

.archive-grid {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.archive-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 1.25rem 2rem;
  background: var(--white);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.archive-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(44, 53, 39, 0.08);
}

.archive-date {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--forest);
}

.archive-count {
  font-size: 0.8rem;
  color: var(--sage);
}

/* New Week Newsletter */
.new-week-newsletter {
  background: linear-gradient(135deg, var(--sage-dark) 0%, var(--forest) 100%);
}

/* ===== NOTIFICATION BELL ===== */

.notification-bell {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
}

.bell-button {
  position: relative;
  width: 56px;
  height: 56px;
  background: var(--terracotta);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(196, 120, 90, 0.4);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bell-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(196, 120, 90, 0.5);
}

.bell-icon {
  font-size: 1.5rem;
  color: var(--white);
}

.bell-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 22px;
  height: 22px;
  background: var(--forest);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--cream);
}

.bell-tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  right: 0;
  width: 280px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(44, 53, 39, 0.15);
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.notification-bell:hover .bell-tooltip,
.notification-bell.active .bell-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.bell-tooltip::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 20px;
  width: 16px;
  height: 16px;
  background: var(--white);
  transform: rotate(45deg);
}

.tooltip-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(44, 53, 39, 0.1);
}

.tooltip-header h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--forest);
}

.tooltip-header .new-count {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--terracotta);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tooltip-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.5rem 0;
}

.tooltip-item-icon {
  font-size: 1.5rem;
}

.tooltip-item-info h5 {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.15rem;
}

.tooltip-item-info p {
  font-size: 0.75rem;
  color: var(--sage);
}

.tooltip-cta {
  display: block;
  margin-top: 1rem;
  padding: 0.6rem 1rem;
  background: var(--forest);
  color: var(--white);
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: background 0.3s ease;
}

.tooltip-cta:hover {
  background: var(--terracotta);
}

/* Responsive for New This Week */
@media (max-width: 1024px) {
  .featured-new-recipe {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .new-recipes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .new-week-hero {
    padding: 8rem 2rem 3rem;
  }

  .featured-new-recipe {
    padding: 2rem;
  }

  .new-recipes-section,
  .creator-highlights,
  .archive-section {
    padding: 3rem 2rem;
  }

  .new-recipes-grid {
    grid-template-columns: 1fr;
  }

  .creators-row {
    gap: 1.5rem;
  }

  .creator-avatar {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

@media (max-width: 640px) {
  .notification-bell {
    bottom: 1.5rem;
    right: 1.5rem;
  }

  .bell-button {
    width: 50px;
    height: 50px;
  }

  .bell-tooltip {
    width: 260px;
    right: -10px;
  }
}

/* ===== VIDEO FALLBACK STYLES ===== */

.video-fallback {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--forest) 0%, var(--sage-dark) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fallback-content {
  text-align: center;
  color: var(--cream);
  padding: 2rem;
}

.fallback-icon {
  font-size: 4rem;
  display: block;
  margin-bottom: 1rem;
}

.fallback-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.fallback-content p {
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 1.5rem;
}

.fallback-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--terracotta);
  color: var(--white);
  text-decoration: none;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.fallback-btn:hover {
  background: var(--white);
  color: var(--forest);
  transform: translateY(-2px);
}

/* Video container that's been replaced with fallback */
.video-container.fallback-applied {
  background: transparent;
}

/* ===== VIDEO THUMBNAIL PREVIEW ===== */
/* Lightweight preview that loads iframe on click */

.video-thumbnail-preview {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: var(--forest);
}

.video-thumbnail-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.video-thumbnail-preview:hover img {
  transform: scale(1.02);
  filter: brightness(0.85);
}

.video-thumbnail-preview .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 2;
}

.video-thumbnail-preview:hover .play-button {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.video-thumbnail-preview .play-button svg {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.video-title-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .video-thumbnail-preview .play-button svg {
    width: 54px;
    height: 38px;
  }

  .video-title-overlay {
    font-size: 1rem;
    padding: 2rem 1rem 1rem;
  }
}
