/* ============================================
   VALOR STOCKS KITCHEN - PROFESSIONAL CORPORATE STYLESHEET
   Professional corporate aesthetic with blue/gray palette
   ============================================ */

/* CSS RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Lato', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #f8f9fa;
  overflow-x: hidden;
}

/* TYPOGRAPHY - Professional Corporate Style */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1a2332;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

p {
  font-size: 16px;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 16px;
}

a {
  text-decoration: none;
  color: #2563eb;
  transition: color 0.3s ease;
}

a:hover {
  color: #1e40af;
}

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

ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
}

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

/* HEADER - Professional Corporate */
.site-header {
  background-color: #1e293b;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.logo img {
  height: 50px;
  width: auto;
  filter: invert(1);
}

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

.main-nav a {
  color: #e2e8f0;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  background-color: #334155;
  color: #ffffff;
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1002;
  background-color: #1e293b;
  color: #ffffff;
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #334155;
  transform: scale(1.05);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: #1e293b;
  z-index: 1001;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  color: #ffffff;
  border: none;
  font-size: 32px;
  cursor: pointer;
  padding: 8px;
  transition: transform 0.3s ease;
}

.mobile-menu-close:hover {
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #e2e8f0;
  font-size: 18px;
  padding: 12px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: block;
}

.mobile-nav a:hover {
  background-color: #334155;
  color: #ffffff;
  transform: translateX(5px);
}

/* HERO SECTION - Professional Corporate */
.hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e293b 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect fill="rgba(255,255,255,0.02)" width="50" height="50"/></svg>');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  color: #ffffff;
  font-size: 54px;
  margin-bottom: 24px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.subheadline {
  font-size: 20px;
  line-height: 1.6;
  color: #e2e8f0;
  margin-bottom: 32px;
}

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

.cta-primary,
.cta-secondary,
.cta-button,
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}

.cta-primary,
.cta-button {
  background-color: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
}

.cta-primary:hover,
.cta-button:hover {
  background-color: #1e40af;
  border-color: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.cta-secondary,
.btn {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.cta-secondary:hover,
.btn:hover {
  background-color: #ffffff;
  color: #1e293b;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.trust-badge,
.trust-indicator {
  font-size: 14px;
  color: #cbd5e1;
  font-weight: 500;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #334155 0%, #1e293b 100%);
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.page-hero h1 {
  color: #ffffff;
  margin-bottom: 16px;
}

.page-hero .subheadline {
  max-width: 700px;
  margin: 0 auto 24px;
}

/* SECTIONS - Professional Spacing */
.section,
.value-proposition,
.services-overview,
.testimonials,
.cta-banner,
.filter-navigation,
.recipe-grid,
.chef-spotlight,
.membership-cta,
.course-types,
.upcoming-courses,
.masterclass-program,
.services-detailed,
.guarantee-section,
.story-section,
.mission-vision,
.team-section,
.stats-section,
.location-section,
.featured-posts,
.blog-categories,
.blog-grid,
.newsletter-signup,
.contact-info,
.contact-form-section,
.team-contact,
.booking-cta,
.popular-links,
.help-section,
.error-hero,
.thank-you-hero,
.next-steps,
.explore-content,
.special-offer,
.legal-hero,
.legal-content,
.rights-request {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section h2,
.value-proposition h2,
.services-overview h2 {
  text-align: center;
  color: #1e293b;
  margin-bottom: 32px;
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: #64748b;
}

/* BENEFITS GRID - Flexbox Layout */
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 20px;
}

.benefit-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  background-color: #ffffff;
  padding: 32px 24px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
  border-color: #2563eb;
}

.benefit-card h3 {
  color: #1e293b;
  font-size: 24px;
  margin-bottom: 8px;
}

.benefit-card p {
  color: #64748b;
  font-size: 15px;
}

/* SERVICES GRID - Flexbox Layout */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.service-card,
.service-block {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card:hover,
.service-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
  border-color: #2563eb;
}

.service-card h3,
.service-block h2 {
  color: #1e293b;
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p,
.service-block p {
  color: #64748b;
  flex-grow: 1;
}

.price,
.price-display {
  font-size: 28px;
  font-weight: 700;
  color: #2563eb;
  margin: 12px 0;
}

/* TESTIMONIALS - Dark Text on Light Background */
.testimonials {
  background-color: #f1f5f9;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 24px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #2563eb;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card p {
  color: #334155;
  font-size: 16px;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-card .author {
  color: #64748b;
  font-style: normal;
  font-weight: 600;
  margin-top: 8px;
}

.rating {
  text-align: center;
  font-size: 18px;
  color: #1e293b;
  font-weight: 600;
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e293b 100%);
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  border-radius: 12px;
  margin: 60px 20px;
}

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

.cta-banner p {
  color: #e2e8f0;
  font-size: 18px;
  margin-bottom: 32px;
}

.guarantee,
.trial-offer {
  margin-top: 16px;
  font-size: 14px;
  color: #cbd5e1;
}

/* RECIPE & COURSE CARDS */
.recipes-display,
.courses-grid,
.posts-grid,
.articles-grid,
.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}

.recipe-card,
.course-card,
.post-card,
.article-card,
.link-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.recipe-card:hover,
.course-card:hover,
.post-card:hover,
.article-card:hover,
.link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
  border-color: #2563eb;
}

.recipe-card h3,
.course-card h3,
.post-card h3,
.article-card h3 {
  color: #1e293b;
  font-size: 20px;
}

.difficulty,
.time,
.meta {
  font-size: 14px;
  color: #64748b;
}

/* FILTER NAVIGATION */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.filter-group {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
}

.filter-group h3 {
  color: #1e293b;
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 600;
}

.filter-group p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
}

/* FORMATS & FEATURES */
.formats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.format-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

.format-card h3 {
  color: #1e293b;
  margin-bottom: 12px;
}

.features-list,
.benefits-list,
.guarantees-list,
.program-outline,
.steps-list,
.contacts-list {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.features-list li,
.benefits-list li,
.guarantees-list li,
.program-outline li,
.contacts-list li {
  padding: 12px 0 12px 32px;
  color: #334155;
  position: relative;
  border-bottom: 1px solid #e2e8f0;
}

.features-list li:before,
.benefits-list li:before,
.guarantees-list li:before,
.program-outline li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: 700;
  font-size: 18px;
}

.steps-list {
  counter-reset: step-counter;
  list-style: none;
}

.steps-list li {
  counter-increment: step-counter;
  padding: 16px 0 16px 40px;
  position: relative;
  color: #334155;
  margin-bottom: 16px;
}

.steps-list li:before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  width: 28px;
  height: 28px;
  background-color: #2563eb;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

/* TEAM & STATS */
.team-grid,
.chefs-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}

.team-member,
.chef-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
  border: 1px solid #e2e8f0;
}

.team-member h3,
.chef-card h3 {
  color: #1e293b;
  margin-bottom: 8px;
}

.role {
  color: #2563eb;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
  display: block;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 20px;
}

.stat {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
}

.stat .number {
  font-size: 48px;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 8px;
  display: block;
}

.stat p {
  color: #64748b;
  font-size: 16px;
}

/* BLOG CATEGORIES */
.categories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
}

.category {
  background-color: #e2e8f0;
  color: #1e293b;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.category:hover {
  background-color: #2563eb;
  color: #ffffff;
}

/* CONTACT INFO */
.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 24px;
}

.info-block {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #2563eb;
}

.info-block h3 {
  color: #1e293b;
  font-size: 18px;
  margin-bottom: 12px;
}

.response-note,
.form-note {
  text-align: center;
  color: #64748b;
  font-style: italic;
  margin-top: 24px;
}

/* ERROR PAGE */
.error-code {
  font-size: 120px;
  font-weight: 700;
  color: #2563eb;
  line-height: 1;
  margin-bottom: 24px;
}

.humorous-message {
  font-size: 18px;
  color: #64748b;
  font-style: italic;
  margin-top: 16px;
}

/* THANK YOU PAGE */
.success-icon {
  width: 80px;
  height: 80px;
  background-color: #10b981;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.coupon {
  font-size: 24px;
  font-weight: 700;
  color: #2563eb;
  background-color: #e0e7ff;
  padding: 16px 24px;
  border-radius: 8px;
  display: inline-block;
  margin: 16px 0;
}

.terms {
  font-size: 12px;
  color: #94a3b8;
  font-style: italic;
}

/* SUGGESTIONS GRID */
.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}

.suggestion-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

/* LEGAL PAGES */
.legal-hero {
  background-color: #f1f5f9;
  padding: 48px 20px;
  text-align: center;
  border-bottom: 3px solid #2563eb;
}

.last-updated {
  font-size: 14px;
  color: #64748b;
  font-style: italic;
  margin-bottom: 16px;
}

.subtitle,
.brand-statement {
  font-size: 18px;
  color: #64748b;
  font-weight: 500;
}

.content-block {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
  border-left: 4px solid #2563eb;
}

.content-block h2 {
  color: #1e293b;
  font-size: 24px;
  margin-bottom: 16px;
  text-align: left;
}

.content-block p {
  color: #4a5568;
  line-height: 1.7;
}

.content-block a {
  color: #2563eb;
  text-decoration: underline;
}

/* FOOTER - Professional Corporate */
.site-footer {
  background-color: #1e293b;
  color: #e2e8f0;
  padding: 48px 20px 24px;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-col {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
}

.footer-col h3 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-col p {
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav a {
  color: #cbd5e1;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: #94a3b8;
  font-size: 14px;
}

/* COOKIE CONSENT BANNER */
#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1e293b;
  color: #e2e8f0;
  padding: 20px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: none;
  animation: slideUp 0.4s ease;
}

#cookie-consent.show {
  display: block;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

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

.cookie-text {
  flex: 1 1 60%;
  min-width: 250px;
}

.cookie-text p {
  color: #cbd5e1;
  font-size: 14px;
  margin: 0;
}

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

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn.accept {
  background-color: #2563eb;
  color: #ffffff;
}

.cookie-btn.accept:hover {
  background-color: #1e40af;
}

.cookie-btn.reject {
  background-color: #64748b;
  color: #ffffff;
}

.cookie-btn.reject:hover {
  background-color: #475569;
}

.cookie-btn.settings {
  background-color: transparent;
  color: #e2e8f0;
  border: 1px solid #e2e8f0;
}

.cookie-btn.settings:hover {
  background-color: #334155;
}

/* COOKIE PREFERENCES MODAL */
#cookie-preferences {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

#cookie-preferences.show {
  display: flex;
}

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

.cookie-modal {
  background-color: #ffffff;
  max-width: 600px;
  width: 100%;
  border-radius: 12px;
  padding: 32px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-modal h2 {
  color: #1e293b;
  margin-bottom: 16px;
}

.cookie-category {
  padding: 16px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  margin-bottom: 16px;
}

.cookie-category h3 {
  color: #334155;
  font-size: 18px;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background-color: #cbd5e1;
  border-radius: 13px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-toggle.active {
  background-color: #2563eb;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle.active::after {
  transform: translateX(24px);
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* RESPONSIVE DESIGN - Mobile First */
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 22px;
  }
  
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .subheadline {
    font-size: 16px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .benefit-card,
  .service-card,
  .testimonial-card,
  .recipe-card,
  .course-card,
  .format-card,
  .team-member,
  .chef-card,
  .stat,
  .info-block,
  .suggestion-card,
  .footer-col {
    flex: 1 1 100%;
  }
  
  .services-grid,
  .benefits-grid,
  .testimonials-grid,
  .recipes-display,
  .courses-grid,
  .formats-grid,
  .team-grid,
  .chefs-grid,
  .stats-grid,
  .posts-grid,
  .articles-grid,
  .info-grid,
  .suggestions-grid,
  .footer-content {
    flex-direction: column;
  }
  
  .filter-group {
    flex: 1 1 100%;
  }
  
  .error-code {
    font-size: 80px;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .benefit-card,
  .service-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .team-member,
  .chef-card,
  .stat {
    flex: 1 1 calc(50% - 24px);
  }
}

/* SMOOTH TRANSITIONS */
* {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

button,
a,
.cta-button,
.btn {
  transition: all 0.3s ease;
}

/* ACCESSIBILITY */
:focus {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-consent,
  #cookie-preferences {
    display: none !important;
  }
  
  .site-header {
    position: static;
  }
}

/* UTILITY CLASSES */
.text-center {
  text-align: center;
}

.mt-16 {
  margin-top: 16px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mt-32 {
  margin-top: 32px;
}

.mb-32 {
  margin-bottom: 32px;
}

/* LOADING ANIMATION */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.loading {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}