/* ==========================================================================
   OMAS KÜCHENGEHEIMNIS - ELEGANT CLASSIC DESIGN SYSTEM
   Complete CSS for all pages with mobile menu and cookie consent
   ========================================================================== */

/* ==========================================================================
   CSS RESET & BASE STYLES
   ========================================================================== */

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

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.7;
  color: #2c2c2c;
  background-color: #faf8f5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style-position: inside;
}

/* ==========================================================================
   ELEGANT CLASSIC TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 600;
  line-height: 1.3;
  color: #1a1a1a;
  margin-bottom: 16px;
}

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

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

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

p {
  margin-bottom: 16px;
  color: #3a3a3a;
}

.subheadline {
  font-size: 20px;
  color: #5a5a5a;
  line-height: 1.6;
  margin-bottom: 24px;
}

.subtitle {
  font-size: 18px;
  color: #6a6a6a;
  font-style: italic;
  margin-bottom: 16px;
}

.lead {
  font-size: 22px;
  color: #4a4a4a;
  line-height: 1.6;
}

/* ==========================================================================
   ELEGANT CLASSIC COLOR PALETTE
   ========================================================================== */

:root {
  --primary-color: #8B4513;
  --primary-dark: #6d3410;
  --primary-light: #a85a1f;
  --secondary-color: #2D5016;
  --secondary-dark: #1f3a0f;
  --secondary-light: #3d6a1f;
  --accent-color: #F4E4C1;
  --accent-dark: #e6d4a8;
  --text-primary: #2c2c2c;
  --text-secondary: #5a5a5a;
  --text-light: #8a8a8a;
  --background: #faf8f5;
  --background-alt: #f5f2ed;
  --border-color: #d4cfc4;
  --shadow-subtle: rgba(0, 0, 0, 0.08);
  --shadow-medium: rgba(0, 0, 0, 0.12);
}

/* ==========================================================================
   LAYOUT CONTAINERS
   ========================================================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

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

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

header {
  background-color: #fff;
  border-bottom: 1px solid var(--border-color);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px var(--shadow-subtle);
}

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

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

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

.main-nav a {
  font-size: 16px;
  color: var(--text-primary);
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

/* ==========================================================================
   MOBILE MENU (HAMBURGER)
   ========================================================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 150;
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  width: 48px;
  height: 48px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 0 2px 8px var(--shadow-medium);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: var(--primary-dark);
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #fff;
  box-shadow: -4px 0 12px var(--shadow-medium);
  z-index: 200;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  color: var(--text-primary);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease, transform 0.3s ease;
}

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

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

.mobile-nav a {
  font-size: 18px;
  color: var(--text-primary);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.mobile-nav a:hover {
  color: var(--primary-color);
  padding-left: 8px;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .main-nav {
    display: none;
  }
}

/* ==========================================================================
   BUTTONS - ELEGANT CLASSIC STYLE
   ========================================================================== */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Georgia', serif;
  text-align: center;
  border: 2px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px var(--shadow-subtle);
}

.btn-primary {
  background-color: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  box-shadow: 0 4px 8px var(--shadow-medium);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: #fff;
  box-shadow: 0 4px 8px var(--shadow-medium);
  transform: translateY(-2px);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.cta-center {
  text-align: center;
  margin-top: 40px;
}

/* ==========================================================================
   HERO SECTION - ELEGANT CLASSIC
   ========================================================================== */

.hero {
  background: linear-gradient(135deg, #faf8f5 0%, #f5f2ed 100%);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  margin-bottom: 24px;
  color: var(--text-primary);
}

.hero .subheadline {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

/* ==========================================================================
   CARD LAYOUTS - FLEXBOX ONLY
   ========================================================================== */

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.recipe-grid,
.benefits-grid,
.service-cards,
.testimonial-grid,
.badges-grid,
.collection-grid,
.region-grid,
.pricing-grid,
.product-grid,
.stats-grid,
.contact-grid,
.tips-grid,
.story-grid,
.link-grid,
.process-steps,
.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

/* ==========================================================================
   RECIPE CARDS - ELEGANT CLASSIC
   ========================================================================== */

.recipe-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: #fff;
  border: 1px solid var(--border-color);
  padding: 28px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px var(--shadow-subtle);
  margin-bottom: 20px;
}

.recipe-card:hover {
  box-shadow: 0 6px 16px var(--shadow-medium);
  transform: translateY(-4px);
  border-color: var(--primary-color);
}

.recipe-card h3 {
  color: var(--primary-color);
  font-size: 22px;
  margin-bottom: 12px;
}

.recipe-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text-light);
}

.recipe-meta span {
  display: inline-block;
}

.recipe-meta .time::before {
  content: '⏱ ';
}

.recipe-meta .difficulty::before {
  content: '📊 ';
}

.region-badge {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--primary-color);
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
  border-radius: 2px;
}

/* ==========================================================================
   BENEFIT/FEATURE CARDS
   ========================================================================== */

.benefit,
.feature-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 260px;
  padding: 24px;
  background-color: #fff;
  border: 1px solid var(--border-color);
  margin-bottom: 20px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.benefit:hover {
  border-color: var(--secondary-color);
  box-shadow: 0 4px 12px var(--shadow-subtle);
}

.benefit h3 {
  color: var(--secondary-color);
  margin-bottom: 8px;
}

/* ==========================================================================
   SERVICE/PRICING CARDS
   ========================================================================== */

.service-card,
.pricing-card,
.product-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: #fff;
  border: 2px solid var(--border-color);
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover,
.pricing-card:hover,
.product-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 8px 20px var(--shadow-medium);
  transform: translateY(-6px);
}

.pricing-card.featured {
  border-color: var(--primary-color);
  border-width: 3px;
  background-color: #fffcf7;
  position: relative;
}

.pricing-card.featured .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-color);
  color: #fff;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.price {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 16px 0;
  font-family: 'Georgia', serif;
}

.period {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-light);
}

.feature-list {
  list-style: none;
  margin: 24px 0;
  padding: 0;
  text-align: left;
}

.feature-list li,
.features li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: var(--text-secondary);
}

.feature-list li::before,
.features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: 700;
}

/* ==========================================================================
   TESTIMONIALS - ELEGANT CLASSIC
   ========================================================================== */

.testimonials {
  background-color: var(--background-alt);
  padding: 60px 20px;
  margin-bottom: 60px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  background-color: #fff;
  padding: 32px;
  border-left: 4px solid var(--primary-color);
  box-shadow: 0 2px 8px var(--shadow-subtle);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.testimonial-card p {
  font-style: italic;
  font-size: 18px;
  color: #2c2c2c;
  line-height: 1.6;
}

.customer-name {
  font-weight: 600;
  color: var(--primary-color);
  font-style: normal;
  font-size: 14px;
  margin-top: 8px;
}

/* ==========================================================================
   TRUST BADGES
   ========================================================================== */

.trust-badges {
  padding: 40px 20px;
  background-color: #fff;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 60px;
}

.badge {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 16px;
  font-weight: 600;
  color: var(--secondary-color);
  background-color: var(--accent-color);
  border-radius: 2px;
}

/* ==========================================================================
   FILTER SECTION
   ========================================================================== */

.filter-section {
  background-color: #fff;
  padding: 32px;
  border: 1px solid var(--border-color);
  margin-bottom: 40px;
}

.filter-dropdown {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 200px;
  padding: 12px 16px;
  font-size: 16px;
  font-family: 'Georgia', serif;
  border: 1px solid var(--border-color);
  border-radius: 2px;
  background-color: #fff;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.filter-dropdown:hover,
.filter-dropdown:focus {
  border-color: var(--primary-color);
  outline: none;
}

/* ==========================================================================
   PAGE HEADER
   ========================================================================== */

.page-header {
  background: linear-gradient(135deg, #faf8f5 0%, #f5f2ed 100%);
  padding: 60px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 60px;
}

.page-header h1 {
  margin-bottom: 16px;
}

/* ==========================================================================
   CTA BANNERS
   ========================================================================== */

.cta-banner,
.cta-community,
.cta-final {
  background-color: var(--accent-color);
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
  border-top: 3px solid var(--primary-color);
  border-bottom: 3px solid var(--primary-color);
}

.cta-banner h2,
.cta-community h2,
.cta-final h2 {
  color: var(--primary-color);
  margin-bottom: 16px;
}

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

/* ==========================================================================
   TWO-COLUMN LAYOUTS
   ========================================================================== */

.two-columns {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.column {
  flex: 1 1 calc(50% - 40px);
  min-width: 300px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.text-image-section > * {
  flex: 1 1 calc(50% - 30px);
  min-width: 280px;
}

/* ==========================================================================
   TIMELINE
   ========================================================================== */

.timeline {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
  padding-left: 32px;
  border-left: 3px solid var(--primary-color);
}

.milestone {
  position: relative;
  padding-left: 32px;
}

.milestone::before {
  content: '';
  position: absolute;
  left: -38px;
  top: 0;
  width: 12px;
  height: 12px;
  background-color: var(--primary-color);
  border-radius: 50%;
  border: 3px solid #fff;
}

.milestone h3 {
  color: var(--primary-color);
  font-size: 24px;
  margin-bottom: 8px;
}

/* ==========================================================================
   VALUES & STATISTICS
   ========================================================================== */

.values {
  background-color: #fff;
  padding: 32px;
  border: 1px solid var(--border-color);
  margin-top: 40px;
}

.values h3 {
  color: var(--secondary-color);
  margin-bottom: 16px;
}

.values ul {
  list-style: none;
  padding: 0;
}

.values li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: var(--text-secondary);
}

.values li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

.stat {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
  background-color: #fff;
  border: 1px solid var(--border-color);
}

.stat h3 {
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.stat p {
  font-size: 16px;
  color: var(--text-secondary);
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */

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

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.faq-item {
  background-color: #fff;
  padding: 24px;
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--secondary-color);
}

.faq-item h3 {
  color: var(--secondary-color);
  font-size: 18px;
  margin-bottom: 12px;
}

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

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

.contact-option {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  text-align: center;
  padding: 32px;
  background-color: #fff;
  border: 1px solid var(--border-color);
  margin-bottom: 20px;
}

.contact-option h3 {
  color: var(--primary-color);
  margin-bottom: 16px;
}

.form-placeholder {
  background-color: #fff;
  border: 2px dashed var(--border-color);
  padding: 40px;
  margin-top: 32px;
  text-align: center;
}

.form-placeholder p {
  margin-bottom: 16px;
  color: var(--text-secondary);
}

.form-info {
  background-color: var(--accent-color);
  padding: 24px;
  margin-bottom: 24px;
  border-left: 4px solid var(--primary-color);
}

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

.address-card {
  background-color: #fff;
  padding: 32px;
  border: 1px solid var(--border-color);
  margin-top: 24px;
  max-width: 400px;
}

/* ==========================================================================
   LEGAL PAGES
   ========================================================================== */

.legal-page {
  padding: 60px 20px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: #fff;
  padding: 40px;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 8px var(--shadow-subtle);
}

.legal-content h2 {
  color: var(--primary-color);
  margin-top: 32px;
  margin-bottom: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.legal-content h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content h3 {
  color: var(--secondary-color);
  margin-top: 24px;
  margin-bottom: 12px;
}

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

.legal-content li {
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.legal-content a {
  color: var(--primary-color);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--primary-dark);
}

.last-updated {
  font-style: italic;
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 24px;
}

/* ==========================================================================
   THANK YOU PAGE
   ========================================================================== */

.thank-you-page {
  padding: 80px 20px;
  text-align: center;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
  background-color: #fff;
  padding: 60px 40px;
  border: 2px solid var(--primary-color);
  box-shadow: 0 4px 16px var(--shadow-medium);
}

.thank-you-content h1 {
  color: var(--primary-color);
  margin-bottom: 16px;
}

.confirmation-details,
.next-steps {
  margin: 32px 0;
  text-align: left;
  background-color: var(--accent-color);
  padding: 24px;
  border-radius: 2px;
}

.confirmation-details h2,
.next-steps h2 {
  color: var(--secondary-color);
  margin-bottom: 16px;
}

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

/* ==========================================================================
   FOOTER - ELEGANT CLASSIC
   ========================================================================== */

footer {
  background-color: #2c2c2c;
  color: #d4cfc4;
  padding: 60px 0 24px;
  margin-top: 80px;
  border-top: 4px solid var(--primary-color);
}

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

.footer-brand,
.footer-links,
.footer-contact {
  flex: 1 1 calc(33.333% - 40px);
  min-width: 250px;
}

.footer-brand img {
  height: 50px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-brand p,
.footer-contact p {
  color: #a39d91;
  font-size: 14px;
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 16px;
  font-family: 'Georgia', serif;
}

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

.footer-links a {
  color: #a39d91;
  font-size: 14px;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 4px;
}

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

.footer-bottom p {
  color: #8a8a8a;
  font-size: 14px;
}

/* ==========================================================================
   COOKIE CONSENT BANNER
   ========================================================================== */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2c2c2c;
  color: #fff;
  padding: 24px;
  box-shadow: 0 -4px 16px var(--shadow-medium);
  z-index: 1000;
  display: none;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-consent.show {
  display: block;
  transform: translateY(0);
}

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

.cookie-text {
  flex: 1 1 400px;
}

.cookie-text p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #d4cfc4;
}

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

.cookie-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Georgia', serif;
}

.cookie-accept {
  background-color: var(--primary-color);
  color: #fff;
}

.cookie-accept:hover {
  background-color: var(--primary-dark);
}

.cookie-reject {
  background-color: transparent;
  color: #d4cfc4;
  border: 1px solid #d4cfc4;
}

.cookie-reject:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

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

.cookie-settings:hover {
  color: #fff;
}

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

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

.cookie-modal-content {
  background-color: #fff;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-primary);
}

.cookie-category {
  margin-bottom: 24px;
  padding: 16px;
  border: 1px solid var(--border-color);
  background-color: var(--background);
}

.cookie-category h3 {
  margin-bottom: 8px;
  color: var(--primary-color);
}

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

.toggle-switch {
  position: relative;
  width: 50px;
  height: 24px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 24px;
}

.toggle-slider::before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background-color: var(--primary-color);
}

input:checked + .toggle-slider::before {
  transform: translateX(26px);
}

input:disabled + .toggle-slider {
  background-color: var(--secondary-color);
  cursor: not-allowed;
}

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

/* ==========================================================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ========================================================================== */

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .subheadline {
    font-size: 18px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  .recipe-card,
  .benefit,
  .service-card,
  .pricing-card,
  .product-card,
  .testimonial-card,
  .region-card,
  .collection-card,
  .contact-option,
  .stat,
  .badge {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .column {
    flex: 1 1 100%;
  }
  
  .text-image-section {
    flex-direction: column;
  }
  
  .text-image-section > * {
    flex: 1 1 100%;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-brand,
  .footer-links,
  .footer-contact {
    flex: 1 1 100%;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .timeline {
    padding-left: 24px;
  }
  
  .milestone::before {
    left: -32px;
  }
  
  .legal-content {
    padding: 24px;
  }
  
  .thank-you-content {
    padding: 40px 24px;
  }
  
  .action-buttons {
    flex-direction: column;
  }
  
  .filter-dropdown {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .price {
    font-size: 28px;
  }
  
  .mobile-menu {
    width: 100%;
    right: -100%;
  }
  
  .mobile-menu.active {
    right: 0;
  }
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal {
    display: none !important;
  }
  
  header {
    position: static;
  }
  
  .btn {
    border: 1px solid #000;
  }
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

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

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

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

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

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

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

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

.section-intro {
  max-width: 700px;
  margin: 0 auto 32px;
  text-align: center;
  font-size: 18px;
  color: var(--text-secondary);
}

/* ==========================================================================
   ANIMATIONS & TRANSITIONS
   ========================================================================== */

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

@keyframes slideIn {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* ==========================================================================
   ACCESSIBILITY
   ========================================================================== */

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

:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* ==========================================================================
   END OF STYLESHEET
   ========================================================================== */
