/* ============================================
   NEON WIND - MODERN BOLD DESIGN SYSTEM
   Authentic German Cuisine with Modern Twist
   ============================================ */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* MODERN BOLD TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 900;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 48px;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

h2 {
  font-size: 36px;
  font-weight: 800;
}

h3 {
  font-size: 24px;
  font-weight: 700;
}

h4 {
  font-size: 20px;
  font-weight: 700;
}

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

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

li {
  margin-bottom: 8px;
}

a {
  color: #D84315;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

a:hover {
  color: #C33000;
  text-decoration: underline;
}

strong {
  font-weight: 700;
  color: #000000;
}

blockquote {
  border-left: 6px solid #D84315;
  padding: 20px 24px;
  margin: 32px 0;
  background-color: #FFF3E0;
  font-style: italic;
  font-size: 18px;
  font-weight: 600;
  color: #333333;
}

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

/* BUTTON STYLES - BOLD & GEOMETRIC */
.btn {
  display: inline-block;
  padding: 18px 36px;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  border-radius: 0;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.btn-primary {
  background-color: #D84315;
  color: #ffffff;
  border: 3px solid #000000;
}

.btn-primary:hover {
  background-color: #C33000;
  color: #ffffff;
}

.btn-secondary {
  background-color: #558B2F;
  color: #ffffff;
  border: 3px solid #000000;
}

.btn-secondary:hover {
  background-color: #447021;
  color: #ffffff;
}

.btn-tertiary {
  background-color: #FFF3E0;
  color: #D84315;
  border: 3px solid #D84315;
}

.btn-tertiary:hover {
  background-color: #FFE0B2;
  color: #C33000;
  border-color: #C33000;
}

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

/* HEADER - BOLD MODERN STYLE */
header {
  background-color: #000000;
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border-bottom: 4px solid #D84315;
}

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

.logo a {
  font-family: 'Merriweather', serif;
  font-size: 28px;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
}

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

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

.main-nav a {
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
}

.main-nav a:hover {
  background-color: #D84315;
  border-color: #D84315;
  transform: translateY(-2px);
  text-decoration: none;
}

/* MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background-color: #D84315;
  color: #ffffff;
  border: 3px solid #000000;
  padding: 12px 16px;
  font-size: 24px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

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

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background-color: #000000;
  z-index: 1999;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #D84315;
  color: #ffffff;
  border: 3px solid #ffffff;
  padding: 8px 16px;
  font-size: 28px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1;
}

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

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

.mobile-nav a {
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  padding: 20px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid #333333;
  transition: all 0.3s ease;
  display: block;
}

.mobile-nav a:hover {
  color: #D84315;
  padding-left: 16px;
  border-bottom-color: #D84315;
  text-decoration: none;
}

/* HERO SECTIONS - BOLD & IMPACTFUL */
.hero {
  background: linear-gradient(135deg, #D84315 0%, #E65100 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 8px solid #000000;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(45deg, rgba(0,0,0,0.1) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(0,0,0,0.1) 25%, transparent 25%);
  background-size: 60px 60px;
  opacity: 0.3;
}

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

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
  line-height: 1.1;
}

.hero p {
  color: #FFF3E0;
  font-size: 20px;
  margin-bottom: 32px;
  font-weight: 600;
  line-height: 1.5;
}

.trust-badge {
  display: inline-block;
  background-color: #000000;
  color: #ffffff;
  padding: 12px 24px;
  font-weight: 800;
  font-size: 16px;
  margin-top: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 3px solid #ffffff;
}

.time-badge {
  display: inline-block;
  background-color: #558B2F;
  color: #ffffff;
  padding: 12px 24px;
  font-weight: 800;
  font-size: 18px;
  margin: 24px 0;
  border: 3px solid #000000;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
}

.tagline {
  font-style: italic;
  font-size: 18px;
  color: #FFE0B2;
  font-weight: 600;
}

/* SECTION SPACING - CONSISTENT LAYOUT */
section {
  padding: 60px 20px;
  position: relative;
}

section:nth-child(even) {
  background-color: #FFF3E0;
}

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

/* CARD COMPONENTS - GEOMETRIC & BOLD */
.card-container,
.benefits-grid,
.services-grid,
.recipe-grid,
.testimonial-grid,
.collections-grid,
.category-grid,
.region-grid,
.dish-grid,
.course-grid,
.team-grid,
.stats-grid,
.methods-grid,
.faq-grid,
.contacts-grid,
.page-grid,
.content-grid,
.tips-grid,
.week-plan,
.season-grid,
.stories-grid,
.values-grid,
.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.benefit,
.service-card,
.recipe-card,
.testimonial-card,
.collection-card,
.category-card,
.region-card,
.dish-card,
.course-card,
.team-member,
.stat-card,
.method-card,
.faq-card,
.contact-card,
.page-card,
.content-card,
.tip-card,
.day-card,
.season-card,
.story-card,
.value-card,
.tier-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: #ffffff;
  border: 4px solid #000000;
  padding: 32px;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.benefit:hover,
.service-card:hover,
.recipe-card:hover,
.collection-card:hover,
.category-card:hover,
.region-card:hover,
.dish-card:hover,
.course-card:hover,
.team-member:hover,
.method-card:hover,
.faq-card:hover,
.contact-card:hover,
.page-card:hover,
.content-card:hover,
.tip-card:hover,
.story-card:hover,
.value-card:hover,
.tier-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.15);
}

.benefit h3,
.service-card h3,
.recipe-card h3,
.testimonial-card h3,
.collection-card h3,
.category-card h3,
.region-card h3,
.dish-card h3,
.course-card h3,
.team-member h3,
.method-card h3,
.faq-card h3,
.contact-card h3,
.content-card h3,
.tip-card h3,
.story-card h3,
.value-card h3,
.tier-card h3 {
  color: #D84315;
  font-size: 22px;
  margin-bottom: 16px;
  font-weight: 800;
}

/* TESTIMONIALS - HIGH CONTRAST FOR READABILITY */
.testimonial-card {
  background-color: #ffffff;
  border-color: #558B2F;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 32px;
}

.testimonial-card p {
  color: #1a1a1a;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
}

.testimonial-card .author {
  color: #558B2F;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}

/* PRICING TIERS */
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  justify-content: center;
}

.tier-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  max-width: 380px;
  text-align: center;
}

.tier-card.featured {
  border-color: #D84315;
  border-width: 6px;
  transform: scale(1.05);
  background-color: #FFF3E0;
}

.tier-card .badge {
  background-color: #D84315;
  color: #ffffff;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 16px;
  border: 2px solid #000000;
}

.tier-card .price {
  font-size: 42px;
  font-weight: 900;
  color: #000000;
  margin: 24px 0;
  font-family: 'Merriweather', serif;
}

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

.tier-card ul li {
  padding: 12px 0;
  border-bottom: 2px solid #e0e0e0;
  font-weight: 600;
  position: relative;
  padding-left: 32px;
}

.tier-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #558B2F;
  font-weight: 900;
  font-size: 20px;
}

/* VALUE PROPOSITION */
.value-proposition {
  background-color: #000000;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  border-top: 8px solid #D84315;
  border-bottom: 8px solid #D84315;
}

.value-proposition h2 {
  color: #ffffff;
  font-size: 42px;
  margin-bottom: 24px;
}

.value-proposition p {
  color: #FFF3E0;
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto 40px;
  font-weight: 600;
}

/* FEATURED SECTIONS */
.featured-recipes,
.featured-dishes,
.featured-collections,
.featured-courses {
  padding: 80px 20px;
  background-color: #ffffff;
}

.featured-recipes h2,
.featured-dishes h2,
.featured-collections h2,
.featured-courses h2 {
  text-align: center;
  font-size: 42px;
  color: #000000;
  margin-bottom: 48px;
}

/* SEARCH & FILTERS - BOLD STYLING */
.search-box {
  display: flex;
  gap: 0;
  max-width: 600px;
  margin: 32px auto;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.15);
}

.search-input {
  flex: 1;
  padding: 18px 24px;
  font-size: 16px;
  border: 4px solid #000000;
  border-right: none;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
}

.search-input:focus {
  outline: none;
  background-color: #FFF3E0;
}

.search-button {
  padding: 18px 32px;
  background-color: #D84315;
  color: #ffffff;
  border: 4px solid #000000;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-button:hover {
  background-color: #C33000;
}

.quick-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

.quick-filters button {
  padding: 12px 24px;
  background-color: #ffffff;
  color: #000000;
  border: 3px solid #000000;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.quick-filters button:hover {
  background-color: #D84315;
  color: #ffffff;
}

.popular-searches {
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  color: #666666;
  font-weight: 600;
}

/* FILTER SIDEBAR */
.recipes-layout {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.filter-sidebar {
  flex: 0 0 280px;
  background-color: #ffffff;
  border: 4px solid #000000;
  padding: 32px;
  height: fit-content;
  position: sticky;
  top: 100px;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.1);
}

.filter-sidebar h2 {
  font-size: 24px;
  margin-bottom: 24px;
  color: #D84315;
}

.filter-sidebar h3 {
  font-size: 18px;
  margin-bottom: 16px;
  margin-top: 24px;
  color: #000000;
  font-weight: 800;
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 2px solid #f0f0f0;
}

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

.reset-filters {
  width: 100%;
  margin-top: 24px;
  padding: 12px;
  background-color: #558B2F;
  color: #ffffff;
  border: 3px solid #000000;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.reset-filters:hover {
  background-color: #447021;
}

.recipes-content {
  flex: 1;
  min-width: 0;
}

.sort-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding: 20px;
  background-color: #FFF3E0;
  border: 3px solid #D84315;
  flex-wrap: wrap;
  gap: 16px;
}

.sort-bar p {
  font-weight: 800;
  font-size: 16px;
  color: #000000;
  margin: 0;
}

.sort-bar select {
  padding: 10px 16px;
  border: 3px solid #000000;
  font-weight: 700;
  background-color: #ffffff;
  cursor: pointer;
  font-size: 14px;
}

/* TEXT + IMAGE SECTIONS */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 60px 0;
  flex-wrap: wrap;
}

.text-image-section img {
  flex: 1 1 45%;
  max-width: 500px;
  border: 6px solid #000000;
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.15);
}

.text-image-section .content {
  flex: 1 1 45%;
  min-width: 300px;
}

/* FOOTER - BOLD & STRUCTURED */
footer {
  background-color: #000000;
  color: #ffffff;
  padding: 60px 20px 20px;
  border-top: 8px solid #D84315;
}

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

.footer-section {
  flex: 1 1 250px;
}

.footer-section h3 {
  color: #D84315;
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-section p {
  color: #cccccc;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 500;
}

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

.footer-nav a {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  padding-left: 0;
}

.footer-nav a:hover {
  color: #D84315;
  padding-left: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 2px solid #333333;
}

.footer-bottom p {
  color: #999999;
  font-size: 14px;
  font-weight: 600;
}

/* ERROR PAGE STYLES */
.error-hero {
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
  padding: 100px 20px;
  text-align: center;
}

.error-content h1 {
  font-size: 120px;
  color: #D84315;
  margin-bottom: 24px;
  text-shadow: 8px 8px 0 rgba(0, 0, 0, 0.3);
}

.error-content h2 {
  color: #ffffff;
  font-size: 36px;
  margin-bottom: 16px;
}

.error-content p {
  color: #FFF3E0;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 600;
}

.search-help,
.popular-pages,
.help-section {
  padding: 60px 20px;
  text-align: center;
}

/* LEGAL PAGES */
.legal-hero {
  background-color: #000000;
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  border-bottom: 6px solid #D84315;
}

.legal-hero h1 {
  color: #ffffff;
  font-size: 48px;
}

.legal-hero p {
  color: #FFF3E0;
  font-size: 18px;
  font-weight: 600;
}

.last-updated {
  color: #cccccc;
  font-size: 14px;
  font-style: italic;
  margin-top: 16px;
}

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

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 60px;
  border: 4px solid #000000;
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.1);
}

.content-wrapper h2 {
  color: #D84315;
  font-size: 32px;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 4px solid #FFF3E0;
}

.content-wrapper h3 {
  color: #558B2F;
  font-size: 22px;
  margin-top: 32px;
  margin-bottom: 16px;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #558B2F 0%, #689F38 100%);
  padding: 100px 20px;
  text-align: center;
}

.thank-you-content h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
}

.thank-you-content p {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 24px;
  font-weight: 600;
}

.next-steps,
.suggested-content {
  padding: 60px 20px;
}

/* CTA SECTIONS */
.cta-section,
.cta-final,
.cta-premium {
  background: linear-gradient(135deg, #D84315 0%, #E65100 100%);
  padding: 80px 20px;
  text-align: center;
  border-top: 8px solid #000000;
  border-bottom: 8px solid #000000;
}

.cta-section h2,
.cta-final h2,
.cta-premium h2 {
  color: #ffffff;
  font-size: 42px;
  margin-bottom: 24px;
}

.cta-section p,
.cta-final p,
.cta-premium p {
  color: #FFF3E0;
  font-size: 20px;
  margin-bottom: 32px;
  font-weight: 600;
}

.cta-section ul,
.cta-final ul,
.cta-premium ul {
  text-align: left;
  max-width: 500px;
  margin: 32px auto;
  list-style: none;
  padding: 0;
}

.cta-section ul li,
.cta-final ul li,
.cta-premium ul li {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  padding: 12px 0;
  padding-left: 40px;
  position: relative;
}

.cta-section ul li::before,
.cta-final ul li::before,
.cta-premium ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-size: 24px;
  color: #558B2F;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #000000;
  color: #ffffff;
  padding: 24px;
  z-index: 10000;
  border-top: 6px solid #D84315;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

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

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

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

.cookie-text p {
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 8px;
  font-weight: 600;
}

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

.cookie-buttons button {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  border: 3px solid #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}

#accept-all-cookies {
  background-color: #558B2F;
  color: #ffffff;
}

#accept-all-cookies:hover {
  background-color: #447021;
}

#reject-all-cookies {
  background-color: transparent;
  color: #ffffff;
}

#reject-all-cookies:hover {
  background-color: #ffffff;
  color: #000000;
}

#cookie-settings {
  background-color: #D84315;
  color: #ffffff;
}

#cookie-settings:hover {
  background-color: #C33000;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background-color: #ffffff;
  padding: 48px;
  max-width: 700px;
  width: 100%;
  border: 6px solid #D84315;
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.3);
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-content h2 {
  color: #D84315;
  font-size: 32px;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  margin-bottom: 20px;
  background-color: #FFF3E0;
  border: 3px solid #000000;
}

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

.cookie-toggle {
  width: 60px;
  height: 30px;
  background-color: #cccccc;
  border: 3px solid #000000;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.cookie-toggle.active {
  background-color: #558B2F;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background-color: #000000;
  transition: all 0.3s ease;
}

.cookie-toggle.active::after {
  left: calc(100% - 21px);
}

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

.cookie-modal-buttons button {
  flex: 1;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  border: 3px solid #000000;
  cursor: pointer;
  transition: all 0.3s ease;
}

#save-cookie-preferences {
  background-color: #558B2F;
  color: #ffffff;
}

#close-cookie-modal {
  background-color: #ffffff;
  color: #000000;
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 42px;
  }
  
  .hero p {
    font-size: 18px;
  }
  
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .benefit,
  .service-card,
  .recipe-card,
  .testimonial-card,
  .collection-card,
  .category-card,
  .region-card,
  .dish-card,
  .course-card,
  .team-member,
  .stat-card,
  .method-card,
  .faq-card,
  .contact-card,
  .page-card,
  .content-card,
  .tip-card,
  .day-card,
  .season-card,
  .story-card,
  .value-card,
  .tier-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .recipes-layout {
    flex-direction: column;
  }
  
  .filter-sidebar {
    position: static;
    flex: 1 1 100%;
  }
  
  .text-image-section {
    flex-direction: column;
  }
  
  .text-image-section img {
    max-width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .content-wrapper {
    padding: 32px 20px;
  }
  
  .error-content h1 {
    font-size: 80px;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-buttons button {
    flex: 1;
    min-width: 120px;
  }
  
  .cookie-modal-content {
    padding: 32px 20px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .btn {
    padding: 14px 24px;
    font-size: 14px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  .error-content h1 {
    font-size: 60px;
  }
}

/* ACCESSIBILITY */
*:focus {
  outline: 3px solid #D84315;
  outline-offset: 2px;
}

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

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