/* ===== SOFT PASTEL DESIGN SYSTEM - CSS RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: #4A4A4A;
  background: linear-gradient(135deg, #FFF5F7 0%, #E8F5E9 100%);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ===== SOFT PASTEL COLOR PALETTE ===== */
:root {
  --pastel-pink: #FFB3BA;
  --pastel-peach: #FFDFBA;
  --pastel-lavender: #E0BBE4;
  --pastel-mint: #B4E7CE;
  --pastel-blue: #BDE4F4;
  --pastel-yellow: #FFF5BA;
  --pastel-rose: #FFDDE6;
  
  --text-dark: #4A4A4A;
  --text-light: #757575;
  --white: #FFFFFF;
  --soft-shadow: rgba(0, 0, 0, 0.08);
  --dreamy-glow: rgba(255, 179, 186, 0.3);
}

/* ===== TYPOGRAPHY - SOFT & DREAMY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  letter-spacing: 0.5px;
}

h2 {
  font-size: 32px;
  letter-spacing: 0.3px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
  font-weight: 500;
}

p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 16px;
}

/* ===== CONTAINER & LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ===== BUTTONS - SOFT PASTEL STYLE ===== */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px var(--soft-shadow);
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pastel-pink) 0%, var(--pastel-peach) 100%);
  color: var(--text-dark);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px var(--dreamy-glow);
  background: linear-gradient(135deg, #FF9FA5 0%, #FFCFA5 100%);
}

.btn-secondary {
  background: var(--white);
  color: var(--text-dark);
  border: 2px solid var(--pastel-lavender);
}

.btn-secondary:hover {
  background: var(--pastel-lavender);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(224, 187, 228, 0.4);
}

/* ===== HEADER & NAVIGATION ===== */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px var(--soft-shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.main-nav img {
  height: 50px;
  width: auto;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--text-dark);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pastel-pink), var(--pastel-lavender));
  transition: width 0.3s ease;
}

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

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-peach));
  color: var(--text-dark);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  box-shadow: 0 4px 12px var(--dreamy-glow);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, var(--pastel-rose) 0%, var(--pastel-blue) 100%);
  backdrop-filter: blur(20px);
  box-shadow: -4px 0 20px var(--soft-shadow);
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
  padding: 80px 30px 30px;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--white);
  color: var(--text-dark);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px var(--soft-shadow);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav a {
  color: var(--text-dark);
  font-size: 18px;
  font-weight: 500;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: var(--white);
  transform: translateX(8px);
  box-shadow: 0 4px 12px var(--soft-shadow);
}

/* ===== HERO SECTIONS ===== */
.hero {
  background: linear-gradient(135deg, var(--pastel-rose) 0%, var(--pastel-lavender) 50%, var(--pastel-blue) 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 0 0 50px 50px;
  box-shadow: 0 8px 24px var(--soft-shadow);
  margin-bottom: 60px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  color: var(--text-dark);
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

.tagline {
  font-size: 20px;
  font-style: italic;
  color: var(--text-light);
  font-family: 'Playfair Display', serif;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 16px;
}

/* ===== VALUE PROPOSITION ===== */
.value-proposition,
.services-overview {
  text-align: center;
}

.value-proposition h2,
.services-overview h2 {
  margin-bottom: 12px;
}

.value-proposition > .container > p {
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 18px;
}

.value-grid,
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.value-item,
.service-card {
  flex: 1 1 280px;
  background: rgba(255, 255, 255, 0.9);
  padding: 32px 24px;
  border-radius: 25px;
  box-shadow: 0 4px 16px var(--soft-shadow);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.value-item:hover,
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(224, 187, 228, 0.3);
}

.service-card.featured {
  background: linear-gradient(135deg, var(--pastel-lavender) 0%, var(--pastel-blue) 100%);
  border: 3px solid var(--pastel-pink);
  transform: scale(1.05);
}

.service-card .price {
  font-size: 32px;
  font-weight: 700;
  color: var(--pastel-pink);
  font-family: 'Playfair Display', serif;
  margin: 16px 0;
}

/* ===== RECIPE & COURSE CARDS ===== */
.recipe-grid,
.course-grid,
.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.recipe-card,
.course-card,
.blog-card {
  flex: 1 1 300px;
  background: var(--white);
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 4px 16px var(--soft-shadow);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  position: relative;
}

.recipe-card:hover,
.course-card:hover,
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(255, 179, 186, 0.3);
}

.recipe-meta,
.course-meta,
.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
  font-size: 14px;
}

.difficulty,
.time,
.rating,
.badge,
.spots {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  background: var(--pastel-yellow);
  color: var(--text-dark);
}

.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--pastel-pink);
  color: var(--text-dark);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 2px 8px var(--soft-shadow);
}

/* ===== PRICING CARDS ===== */
.pricing-plans {
  text-align: center;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.pricing-card {
  flex: 1 1 300px;
  background: var(--white);
  padding: 40px 32px;
  border-radius: 25px;
  box-shadow: 0 4px 16px var(--soft-shadow);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  margin-bottom: 20px;
}

.pricing-card.featured {
  background: linear-gradient(135deg, var(--pastel-rose) 0%, var(--pastel-peach) 100%);
  border: 3px solid var(--pastel-lavender);
  transform: scale(1.08);
}

.pricing-card .price {
  font-size: 40px;
  font-weight: 700;
  color: var(--pastel-pink);
  font-family: 'Playfair Display', serif;
}

.pricing-card .price span {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-light);
}

.features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  margin: 20px 0;
}

.features li {
  padding: 8px 0;
  color: var(--text-dark);
  font-size: 15px;
}

.guarantee {
  margin-top: 30px;
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: linear-gradient(135deg, var(--pastel-mint) 0%, var(--pastel-blue) 100%);
  padding: 60px 20px;
  border-radius: 30px;
  margin-bottom: 60px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 40px;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.testimonial-card {
  flex: 1 1 400px;
  background: var(--white);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px var(--soft-shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card p:first-child {
  font-size: 16px;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.8;
}

.customer-name,
.member-name,
.student-name {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 15px;
}

.membership-type {
  font-size: 13px;
  color: var(--text-light);
  padding: 6px 12px;
  background: var(--pastel-yellow);
  border-radius: 15px;
  display: inline-block;
  margin-top: 8px;
}

/* ===== STEPS & PROCESS ===== */
.how-it-works,
.how-membership-works {
  background: var(--white);
  padding: 60px 20px;
  border-radius: 30px;
}

.steps,
.timeline-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-around;
  margin-top: 40px;
}

.step,
.step-card {
  flex: 1 1 250px;
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, var(--pastel-rose) 0%, var(--pastel-peach) 100%);
  border-radius: 20px;
  box-shadow: 0 4px 16px var(--soft-shadow);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.step:hover,
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(255, 179, 186, 0.4);
}

.step-number,
.step-icon {
  width: 60px;
  height: 60px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--pastel-pink);
  box-shadow: 0 4px 12px var(--soft-shadow);
}

/* ===== CTA BANNERS ===== */
.cta-banner,
.cta-membership {
  background: linear-gradient(135deg, var(--pastel-lavender) 0%, var(--pastel-pink) 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 30px;
  box-shadow: 0 8px 24px var(--soft-shadow);
  margin-bottom: 60px;
}

.cta-banner h2 {
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 18px;
  margin-bottom: 24px;
  color: var(--text-dark);
}

/* ===== FILTER SIDEBAR ===== */
.recipe-content {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.filter-sidebar {
  flex: 0 0 250px;
  background: var(--white);
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 4px 16px var(--soft-shadow);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.filter-group {
  margin-bottom: 24px;
}

.filter-group h4 {
  margin-bottom: 12px;
  color: var(--text-dark);
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  cursor: pointer;
  color: var(--text-light);
  font-size: 14px;
}

.filter-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  cursor: pointer;
}

.recipe-main {
  flex: 1;
}

/* ===== BLOG SECTIONS ===== */
.featured-post {
  background: linear-gradient(135deg, var(--pastel-peach) 0%, var(--pastel-yellow) 100%);
  padding: 50px 20px;
  border-radius: 30px;
  margin-bottom: 60px;
}

.featured-article {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 40px 0;
}

.category-filters button {
  padding: 10px 24px;
  border-radius: 25px;
  background: var(--white);
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.category-filters button:hover,
.category-filters button.active {
  background: var(--pastel-lavender);
  border-color: var(--pastel-pink);
  transform: translateY(-2px);
}

/* ===== CONTACT FORMS ===== */
.contact-form-section {
  max-width: 700px;
  margin: 0 auto;
}

.form-wrapper {
  background: var(--white);
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 4px 16px var(--soft-shadow);
  margin-top: 30px;
}

.form-field {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-weight: 500;
  color: var(--text-dark);
  font-size: 15px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 14px 18px;
  border: 2px solid var(--pastel-lavender);
  border-radius: 15px;
  font-family: inherit;
  font-size: 15px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.8);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--pastel-pink);
  box-shadow: 0 0 0 3px rgba(255, 179, 186, 0.2);
}

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

/* ===== NEWSLETTER ===== */
.newsletter-signup {
  background: linear-gradient(135deg, var(--pastel-blue) 0%, var(--pastel-mint) 100%);
  padding: 60px 20px;
  border-radius: 30px;
  text-align: center;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 24px auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1 1 250px;
  padding: 14px 20px;
  border: none;
  border-radius: 25px;
  font-size: 15px;
  box-shadow: 0 4px 12px var(--soft-shadow);
}

.privacy-notice {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 16px;
}

/* ===== INFO GRIDS ===== */
.info-grid,
.benefits-grid,
.stats-grid,
.support-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.info-card,
.benefit-item,
.stat-item,
.support-card {
  flex: 1 1 280px;
  background: var(--white);
  padding: 32px 24px;
  border-radius: 20px;
  box-shadow: 0 4px 16px var(--soft-shadow);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.info-card:hover,
.benefit-item:hover,
.support-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(224, 187, 228, 0.3);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--pastel-pink);
  font-family: 'Playfair Display', serif;
  display: block;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  color: var(--text-light);
  display: block;
}

/* ===== LEGAL PAGES ===== */
.legal-hero {
  background: linear-gradient(135deg, var(--pastel-lavender) 0%, var(--pastel-blue) 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 0 0 30px 30px;
}

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

.content-wrapper {
  background: var(--white);
  padding: 50px 40px;
  border-radius: 25px;
  box-shadow: 0 4px 16px var(--soft-shadow);
  margin-top: -40px;
}

.content-wrapper h2 {
  margin-top: 40px;
  margin-bottom: 16px;
}

.content-wrapper h3 {
  margin-top: 24px;
  margin-bottom: 12px;
}

.content-wrapper ul {
  list-style: disc;
  margin-left: 24px;
  margin-bottom: 16px;
}

.content-wrapper ul li {
  padding: 6px 0;
  color: var(--text-light);
}

/* ===== ERROR PAGES ===== */
.error-hero,
.thank-you-hero {
  background: linear-gradient(135deg, var(--pastel-rose) 0%, var(--pastel-peach) 100%);
  padding: 100px 20px;
  text-align: center;
  border-radius: 30px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-code {
  font-size: 120px;
  font-weight: 700;
  color: var(--pastel-pink);
  font-family: 'Playfair Display', serif;
  line-height: 1;
  margin-bottom: 20px;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: var(--pastel-mint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: var(--white);
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(180, 231, 206, 0.4);
}

.link-cards,
.action-cards,
.explore-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.link-card,
.action-card,
.explore-card {
  flex: 1 1 280px;
  background: var(--white);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px var(--soft-shadow);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
  position: relative;
}

/* ===== FAQ SECTIONS ===== */
.faq {
  max-width: 900px;
  margin: 60px auto;
}

.faq h2 {
  text-align: center;
  margin-bottom: 40px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: var(--white);
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 4px 16px var(--soft-shadow);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 20px rgba(224, 187, 228, 0.3);
}

.faq-item h3 {
  margin-bottom: 12px;
  color: var(--text-dark);
}

.faq-item p {
  color: var(--text-light);
  margin: 0;
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(135deg, var(--pastel-lavender) 0%, var(--pastel-pink) 100%);
  padding: 60px 20px 20px;
  margin-top: 80px;
  border-radius: 30px 30px 0 0;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-brand,
.footer-links,
.footer-contact,
.footer-legal {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand img {
  height: 50px;
  width: auto;
  margin-bottom: 12px;
}

.footer-brand p,
.footer-contact p {
  color: var(--text-dark);
  font-size: 14px;
  line-height: 1.6;
}

footer h4 {
  color: var(--text-dark);
  font-size: 18px;
  margin-bottom: 12px;
}

footer ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

footer a {
  color: var(--text-dark);
  font-size: 14px;
  transition: all 0.3s ease;
}

footer a:hover {
  color: var(--pastel-pink);
  transform: translateX(4px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(74, 74, 74, 0.1);
  color: var(--text-light);
  font-size: 14px;
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--pastel-lavender) 0%, var(--pastel-pink) 100%);
  padding: 24px;
  box-shadow: 0 -4px 20px var(--soft-shadow);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  backdrop-filter: blur(10px);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1 1 400px;
  color: var(--text-dark);
  font-size: 14px;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-accept,
.cookie-reject,
.cookie-settings {
  padding: 10px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cookie-accept {
  background: var(--pastel-mint);
  color: var(--text-dark);
}

.cookie-reject {
  background: var(--white);
  color: var(--text-dark);
  border: 2px solid var(--pastel-lavender);
}

.cookie-settings {
  background: transparent;
  color: var(--text-dark);
  text-decoration: underline;
}

/* ===== COOKIE MODAL ===== */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 1999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: var(--white);
  padding: 40px;
  border-radius: 25px;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 12px 40px var(--soft-shadow);
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--pastel-pink);
  color: var(--text-dark);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
}

.cookie-category {
  margin: 24px 0;
  padding: 20px;
  background: var(--pastel-rose);
  border-radius: 15px;
}

.cookie-category h4 {
  margin-bottom: 8px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  h3 { font-size: 20px; }
  
  .main-nav ul {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-buttons a {
    width: 100%;
  }
  
  .value-grid,
  .service-grid,
  .recipe-grid,
  .course-grid,
  .pricing-grid {
    flex-direction: column;
  }
  
  .recipe-content {
    flex-direction: column;
  }
  
  .filter-sidebar {
    position: static;
    flex: 1;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .content-wrapper {
    padding: 30px 20px;
  }
  
  .error-code {
    font-size: 80px;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-accept,
  .cookie-reject {
    width: 100%;
  }
  
  .service-card.featured {
    transform: scale(1);
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  section {
    padding: 30px 16px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  
  .container {
    padding: 0 16px;
  }
  
  .hero {
    padding: 40px 16px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.hero-content {
  animation: fadeInUp 0.8s ease;
}

.value-item,
.service-card {
  animation: fadeInUp 0.6s ease;
  animation-fill-mode: both;
}

.value-item:nth-child(1),
.service-card:nth-child(1) { animation-delay: 0.1s; }
.value-item:nth-child(2),
.service-card:nth-child(2) { animation-delay: 0.2s; }
.value-item:nth-child(3),
.service-card:nth-child(3) { animation-delay: 0.3s; }

/* ===== ACCESSIBILITY ===== */
:focus-visible {
  outline: 3px solid var(--pastel-pink);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.mt-4 { margin-top: 32px; }
.mb-4 { margin-bottom: 32px; }
.p-4 { padding: 32px; }

/* ===== PRINT STYLES ===== */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none !important;
  }
}