/* ========================================
   GEOMETRIC STRUCTURED DESIGN SYSTEM
   SchnellGenuss - CSS Stylesheet
======================================== */

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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

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

/* ========================================
   GEOMETRIC TYPOGRAPHY
======================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #1a1a1a;
  letter-spacing: -0.5px;
}

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

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

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

h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
}

strong {
  font-weight: 600;
  color: #1a1a1a;
}

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

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

/* ========================================
   GEOMETRIC HEADER
======================================== */
header {
  background-color: #ffffff;
  border-bottom: 3px solid #C44536;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
}

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

.main-nav a {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 0;
  position: relative;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #C44536;
  border-bottom-color: #C44536;
}

/* ========================================
   MOBILE MENU
======================================== */
.mobile-menu-toggle {
  display: none;
  font-size: 28px;
  color: #C44536;
  background: transparent;
  border: 2px solid #C44536;
  padding: 8px 16px;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #C44536;
  color: #ffffff;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 280px;
  height: 100vh;
  background-color: #2F5233;
  padding: 80px 30px 30px;
  z-index: 1002;
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 4px 0 16px rgba(0, 0, 0, 0.2);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 32px;
  color: #ffffff;
  background: transparent;
  border: 2px solid #ffffff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: #ffffff;
  color: #2F5233;
}

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

.mobile-nav a {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #F4E4C1;
  padding-left: 8px;
}

/* ========================================
   GEOMETRIC BUTTONS
======================================== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: #C44536;
  color: #ffffff;
  border-color: #C44536;
}

.btn-primary:hover {
  background-color: #A33828;
  border-color: #A33828;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(196, 69, 54, 0.3);
}

.btn-secondary {
  background-color: #2F5233;
  color: #ffffff;
  border-color: #2F5233;
}

.btn-secondary:hover {
  background-color: #1e3421;
  border-color: #1e3421;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(47, 82, 51, 0.3);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 24px;
}

/* ========================================
   HERO SECTIONS - GEOMETRIC STRUCTURED
======================================== */
.hero, .page-hero, .error-hero, .thank-you-hero {
  background: linear-gradient(135deg, #2F5233 0%, #1e3421 100%);
  color: #ffffff;
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background-color: rgba(196, 69, 54, 0.1);
  transform: rotate(45deg);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background-color: rgba(244, 228, 193, 0.1);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.hero-content {
  max-width: 700px;
  position: relative;
  z-index: 1;
}

.hero h1, .page-hero h1, .error-hero h1, .thank-you-hero h1 {
  color: #ffffff;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero p, .page-hero p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 32px;
  color: #F4E4C1;
}

.hero.premium {
  background: linear-gradient(135deg, #C44536 0%, #A33828 100%);
}

/* ========================================
   BREADCRUMB NAVIGATION
======================================== */
.breadcrumb {
  font-size: 14px;
  margin-bottom: 20px;
  color: #F4E4C1;
  font-weight: 600;
}

.breadcrumb a {
  color: #F4E4C1;
  text-decoration: underline;
}

.breadcrumb a:hover {
  color: #ffffff;
}

/* ========================================
   CARD LAYOUTS - GEOMETRIC GRID
======================================== */
.card-container, .benefits-grid, .recipe-grid, .services-grid,
.testimonial-grid, .features-grid, .plans-grid, .contact-grid,
.links-grid, .collections-grid, .region-grid, .category-grid,
.time-tabs, .tips-grid, .tradition-grid, .action-grid, .steps-grid,
.faq-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.card, .benefit-card, .recipe-card, .service-card, .testimonial-card,
.feature-card, .plan-card, .contact-card, .link-card, .collection-card,
.region-card, .category-card, .time-tab, .tip-card, .tradition-card,
.action-card, .step-card, .faq-category {
  background-color: #ffffff;
  border: 2px solid #e0e0e0;
  padding: 24px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  position: relative;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.card::before, .benefit-card::before, .recipe-card::before,
.service-card::before, .plan-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background-color: #C44536;
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.card:hover::before, .benefit-card:hover::before,
.recipe-card:hover::before, .service-card:hover::before,
.plan-card:hover::before {
  transform: scaleY(1);
}

.card:hover, .benefit-card:hover, .recipe-card:hover,
.service-card:hover, .plan-card:hover, .link-card:hover,
.collection-card:hover, .region-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: #C44536;
}

.card h3, .benefit-card h3, .recipe-card h3, .service-card h3 {
  color: #2F5233;
  margin-bottom: 12px;
  font-size: 20px;
}

.card p, .benefit-card p, .recipe-card p {
  color: #4a4a4a;
  font-size: 15px;
  line-height: 1.7;
}

/* ========================================
   TESTIMONIALS - DARK TEXT ON LIGHT
======================================== */
.testimonials {
  background-color: #F4E4C1;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.testimonials h2 {
  text-align: center;
  color: #2F5233;
  margin-bottom: 40px;
}

.testimonial-card {
  background-color: #ffffff;
  border: 2px solid #2F5233;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-card p {
  color: #1a1a1a;
  font-size: 16px;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 12px;
}

.testimonial-card strong {
  color: #2F5233;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.trust-badge {
  text-align: center;
  font-weight: 700;
  color: #C44536;
  font-size: 18px;
  margin-top: 32px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========================================
   PRICING PLANS - GEOMETRIC STRUCTURE
======================================== */
.pricing-plans {
  padding: 60px 20px;
  background-color: #fafafa;
}

.pricing-plans h2 {
  text-align: center;
  color: #2F5233;
  margin-bottom: 48px;
}

.plan-card {
  background-color: #ffffff;
  border: 3px solid #e0e0e0;
  padding: 32px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.plan-card.popular {
  border-color: #C44536;
  transform: scale(1.05);
}

.plan-card.popular .badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background-color: #C44536;
  color: #ffffff;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.plan-card h3 {
  color: #2F5233;
  font-size: 24px;
  margin-bottom: 16px;
}

.price {
  font-size: 32px;
  font-weight: 700;
  color: #C44536;
  margin: 16px 0;
  display: block;
}

.savings {
  color: #2F5233;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 16px;
}

.plan-card ul {
  list-style: none;
  margin: 24px 0;
  text-align: left;
}

.plan-card ul li {
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  color: #4a4a4a;
  font-size: 15px;
}

.plan-card ul li::before {
  content: '✓';
  color: #2F5233;
  font-weight: 700;
  margin-right: 8px;
}

.guarantee {
  text-align: center;
  color: #4a4a4a;
  font-size: 14px;
  margin-top: 32px;
  font-style: italic;
}

/* ========================================
   CTA SECTIONS
======================================== */
.cta-banner, .cta-section, .cta-final {
  background: linear-gradient(135deg, #C44536 0%, #A33828 100%);
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.1);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

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

.cta-banner p, .cta-section p, .cta-final p {
  color: #F4E4C1;
  font-size: 18px;
  margin-bottom: 24px;
}

.price-badge {
  display: inline-block;
  background-color: #2F5233;
  color: #ffffff;
  padding: 12px 24px;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  border: 2px solid #ffffff;
}

/* ========================================
   FEATURED SECTIONS
======================================== */
.value-proposition, .featured-recipes, .services-overview,
.featured-collections, .premium-features {
  padding: 60px 20px;
  background-color: #fafafa;
}

.value-proposition h2, .featured-recipes h2, .services-overview h2,
.featured-collections h2, .premium-features h2 {
  text-align: center;
  color: #2F5233;
  margin-bottom: 48px;
}

/* ========================================
   SEARCH & FILTER
======================================== */
.search-filter {
  background-color: #f5f5f5;
  padding: 32px 20px;
  margin-bottom: 40px;
  border: 2px solid #e0e0e0;
}

.search-bar {
  margin-bottom: 24px;
}

.search-bar input {
  width: 100%;
  padding: 16px 20px;
  font-size: 16px;
  border: 2px solid #C44536;
  background-color: #ffffff;
  font-family: 'Open Sans', sans-serif;
}

.search-bar input:focus {
  outline: none;
  border-color: #2F5233;
  box-shadow: 0 0 0 3px rgba(47, 82, 51, 0.1);
}

.filter-options {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.filter-options select {
  flex: 1;
  min-width: 200px;
  padding: 14px 16px;
  font-size: 15px;
  border: 2px solid #e0e0e0;
  background-color: #ffffff;
  font-family: 'Open Sans', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-options select:hover {
  border-color: #C44536;
}

/* ========================================
   CONTACT FORM
======================================== */
.contact-form-section {
  padding: 60px 20px;
  background-color: #fafafa;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 40px;
  border: 2px solid #e0e0e0;
}

.form-note, .privacy-note {
  font-size: 14px;
  color: #666;
  margin-top: 16px;
}

.privacy-note a {
  color: #C44536;
  text-decoration: underline;
}

/* ========================================
   FAQ SECTION
======================================== */
.faq-section, .faq-preview {
  padding: 60px 20px;
  background-color: #ffffff;
}

.faq-section h2, .faq-preview h2 {
  text-align: center;
  color: #2F5233;
  margin-bottom: 40px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: #fafafa;
  border-left: 4px solid #C44536;
  padding: 24px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background-color: #f0f0f0;
  border-left-width: 6px;
}

.faq-item h3 {
  color: #2F5233;
  font-size: 18px;
  margin-bottom: 12px;
}

.faq-item p {
  color: #4a4a4a;
  font-size: 15px;
  line-height: 1.7;
}

/* ========================================
   ERROR PAGE
======================================== */
.error-code {
  font-size: 120px;
  font-weight: 700;
  color: #C44536;
  line-height: 1;
  margin-bottom: 24px;
  font-family: 'Merriweather', serif;
}

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

/* ========================================
   THANK YOU PAGE
======================================== */
.success-icon {
  width: 80px;
  height: 80px;
  background-color: #2F5233;
  color: #ffffff;
  font-size: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.thank-you-hero .container {
  text-align: center;
}

/* ========================================
   BADGES & LABELS
======================================== */
.benefit-badge, .tagline, .social-proof {
  display: inline-block;
  background-color: #F4E4C1;
  color: #2F5233;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 16px;
  border: 2px solid #2F5233;
}

/* ========================================
   LEGAL CONTENT
======================================== */
.legal-content {
  padding: 40px 20px;
  background-color: #ffffff;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

.content-wrapper h2 {
  color: #2F5233;
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 4px solid #C44536;
  padding-left: 16px;
}

.content-wrapper h3 {
  color: #4a4a4a;
  margin-top: 24px;
  margin-bottom: 12px;
}

.content-wrapper p {
  color: #4a4a4a;
  margin-bottom: 16px;
}

.content-wrapper a {
  color: #C44536;
  text-decoration: underline;
}

.content-wrapper a:hover {
  color: #A33828;
}

/* ========================================
   FOOTER - GEOMETRIC STRUCTURE
======================================== */
footer {
  background-color: #2F5233;
  color: #ffffff;
  padding: 48px 20px 24px;
  margin-top: 60px;
  border-top: 4px solid #C44536;
}

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

.footer-brand, .footer-links, .footer-contact {
  flex: 1;
  min-width: 250px;
}

.footer-brand img {
  height: 50px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: #F4E4C1;
  font-size: 14px;
  line-height: 1.7;
}

footer h4 {
  color: #F4E4C1;
  font-size: 16px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid #C44536;
  padding-bottom: 8px;
}

.footer-links a, .footer-contact p {
  display: block;
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #F4E4C1;
  padding-left: 8px;
}

.footer-copy {
  text-align: center;
  color: #F4E4C1;
  font-size: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* ========================================
   COOKIE CONSENT BANNER
======================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2F5233;
  color: #ffffff;
  padding: 20px;
  z-index: 2000;
  border-top: 3px solid #C44536;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.cookie-banner p {
  flex: 1;
  margin: 0;
  font-size: 14px;
  color: #F4E4C1;
}

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

.cookie-buttons button {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background-color: #C44536;
  color: #ffffff;
  border-color: #C44536;
}

.cookie-accept:hover {
  background-color: #A33828;
}

.cookie-reject {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.cookie-reject:hover {
  background-color: #ffffff;
  color: #2F5233;
}

.cookie-settings {
  background-color: transparent;
  color: #F4E4C1;
  border-color: #F4E4C1;
}

.cookie-settings:hover {
  background-color: #F4E4C1;
  color: #2F5233;
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background-color: #ffffff;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  border: 3px solid #C44536;
  position: relative;
}

.cookie-modal h2 {
  color: #2F5233;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 16px;
  margin-bottom: 16px;
  background-color: #fafafa;
  border-left: 4px solid #C44536;
}

.cookie-category h3 {
  color: #2F5233;
  font-size: 18px;
  margin-bottom: 8px;
}

.cookie-category label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #4a4a4a;
  cursor: pointer;
}

.cookie-category input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 768px) {
  /* Mobile Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  /* Mobile Navigation */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Mobile Header */
  header .container {
    justify-content: space-between;
  }
  
  /* Mobile Hero */
  .hero, .page-hero, .error-hero {
    padding: 48px 20px;
  }
  
  /* Mobile Cards - Single Column */
  .card, .benefit-card, .recipe-card, .service-card,
  .testimonial-card, .feature-card, .plan-card,
  .contact-card, .link-card, .collection-card,
  .region-card, .category-card, .time-tab, .tip-card,
  .tradition-card, .action-card, .step-card, .faq-category {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Mobile Grid Layouts */
  .card-container, .benefits-grid, .recipe-grid, .services-grid,
  .testimonial-grid, .features-grid, .plans-grid, .contact-grid,
  .links-grid, .collections-grid, .region-grid, .category-grid,
  .time-tabs, .tips-grid, .tradition-grid, .action-grid, .steps-grid,
  .faq-categories {
    flex-direction: column;
    gap: 20px;
  }
  
  /* Mobile Buttons */
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  /* Mobile Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-brand, .footer-links, .footer-contact {
    min-width: 100%;
  }
  
  /* Mobile Cookie Banner */
  .cookie-banner .container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  /* Mobile Filter */
  .filter-options {
    flex-direction: column;
  }
  
  .filter-options select {
    width: 100%;
    min-width: 100%;
  }
  
  /* Mobile Plan Cards */
  .plan-card.popular {
    transform: scale(1);
  }
  
  /* Mobile Error Code */
  .error-code {
    font-size: 80px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  
  .container {
    padding: 0 16px;
  }
  
  .section {
    padding: 32px 16px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .hero, .page-hero, .error-hero {
    padding: 40px 16px;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes slideInFromLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

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

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

/* Apply animations on page load */
.hero-content {
  animation: slideUp 0.8s ease-out;
}

.card, .benefit-card, .recipe-card {
  animation: fadeIn 0.6s ease-out;
}

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

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.p-1 { padding: 8px; }
.p-2 { padding: 16px; }
.p-3 { padding: 24px; }
.p-4 { padding: 32px; }

/* ========================================
   PRINT STYLES
======================================== */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header nav,
  footer {
    display: none;
  }
  
  body {
    color: #000;
    background: #fff;
  }
  
  a {
    text-decoration: underline;
  }
}