/* ===================================
   OMAS KÜCHENSCHATZ - LUXURY PREMIUM DESIGN
   Traditional German Recipes with Premium Aesthetic
   =================================== */

/* CSS RESET & NORMALIZE */
* {
  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.7;
  color: #2c2c2c;
  background: linear-gradient(to bottom, #fdfbf7 0%, #f8f5f0 100%);
  overflow-x: hidden;
}

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

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, #8B4513 0%, #C17817 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(139, 69, 19, 0.1);
}

h2 {
  font-size: 32px;
  color: #8B4513;
  position: relative;
  padding-bottom: 16px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #C17817 0%, #F4E4C1 100%);
}

h3 {
  font-size: 24px;
  color: #6b3410;
}

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

a {
  color: #8B4513;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #C17817;
  transform: translateY(-1px);
}

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

/* PREMIUM HEADER */
header {
  background: linear-gradient(135deg, #ffffff 0%, #fdfbf7 100%);
  box-shadow: 0 4px 20px rgba(139, 69, 19, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid #F4E4C1;
}

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

.logo {
  flex-shrink: 0;
}

.logo img {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(139, 69, 19, 0.15));
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

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

.main-nav a {
  font-size: 16px;
  font-weight: 600;
  color: #2c2c2c;
  padding: 8px 16px;
  border-radius: 8px;
  position: relative;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #C17817 0%, #F4E4C1 100%);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #8B4513;
  background: rgba(244, 228, 193, 0.2);
}

.main-nav a:hover::before {
  width: 80%;
}

/* MOBILE MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #8B4513 0%, #C17817 100%);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(139, 69, 19, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(135deg, #ffffff 0%, #fdfbf7 100%);
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.15);
  z-index: 1999;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #8B4513;
  color: #8B4513;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  font-size: 18px;
  font-weight: 600;
  color: #2c2c2c;
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(244, 228, 193, 0.1);
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: rgba(244, 228, 193, 0.3);
  border-left-color: #C17817;
  transform: translateX(8px);
  color: #8B4513;
}

/* HERO SECTION - PREMIUM */
.hero {
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.03) 0%, rgba(244, 228, 193, 0.1) 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(193, 120, 23, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(244, 228, 193, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

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

.hero-subtitle {
  font-size: 20px;
  color: #6b3410;
  font-weight: 600;
  margin-bottom: 24px;
  font-family: 'Merriweather', serif;
}

/* PREMIUM BUTTONS */
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px 0;
}

.cta-primary,
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: linear-gradient(135deg, #8B4513 0%, #C17817 100%);
  color: white;
  font-size: 18px;
  font-weight: 700;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(139, 69, 19, 0.3);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  letter-spacing: 0.5px;
}

.cta-primary:hover,
.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(139, 69, 19, 0.4);
  background: linear-gradient(135deg, #6b3410 0%, #8B4513 100%);
  color: white;
}

.cta-button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: transparent;
  color: #8B4513;
  font-size: 18px;
  font-weight: 700;
  border-radius: 12px;
  border: 2px solid #C17817;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.cta-button-secondary:hover {
  background: #F4E4C1;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(193, 120, 23, 0.2);
}

.trust-badge {
  font-size: 14px;
  color: #6b3410;
  font-weight: 600;
  margin-top: 24px;
  padding: 12px 24px;
  background: rgba(244, 228, 193, 0.3);
  border-radius: 50px;
  display: inline-block;
  border: 1px solid rgba(193, 120, 23, 0.2);
}

/* SECTIONS */
.section,
.features,
.categories,
.testimonials,
.recipes-grid,
.collections,
.time-filters,
.quick-recipes,
.current-season,
.seasonal-recipes,
.regional-specialties,
.course-categories,
.featured-courses,
.how-it-works,
.course-benefits,
.origin-story,
.mission-vision,
.team,
.statistics,
.contact-methods,
.contact-form-section,
.faq-quick,
.location {
  margin-bottom: 60px;
  padding: 60px 20px;
}

.page-header {
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.05) 0%, rgba(244, 228, 193, 0.15) 100%);
  padding: 60px 20px;
  text-align: center;
  border-bottom: 3px solid #F4E4C1;
}

.breadcrumb {
  font-size: 14px;
  color: #6b3410;
  margin-bottom: 16px;
  font-weight: 600;
}

.breadcrumb a {
  color: #8B4513;
  transition: color 0.3s ease;
}

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

/* PREMIUM CARDS */
.feature-grid,
.category-grid,
.recipe-grid,
.recipe-cards,
.collection-grid,
.course-grid,
.steps-grid,
.contact-grid,
.faq-grid,
.stats-grid,
.team-grid,
.region-grid,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.feature-card,
.category-card,
.recipe-card,
.collection-card,
.course-card,
.step-card,
.contact-card,
.faq-item,
.stat-card,
.team-member,
.region-card,
.content-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  background: linear-gradient(135deg, #ffffff 0%, #fdfbf7 100%);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(139, 69, 19, 0.08);
  border: 2px solid rgba(244, 228, 193, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.feature-card::before,
.category-card::before,
.recipe-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(193, 120, 23, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.feature-card:hover,
.category-card:hover,
.recipe-card:hover,
.collection-card:hover,
.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(139, 69, 19, 0.15);
  border-color: #C17817;
}

.feature-card:hover::before,
.category-card:hover::before,
.recipe-card:hover::before {
  top: -25%;
  right: -25%;
}

.feature-card h3,
.category-card h3,
.recipe-card h3,
.collection-card h3,
.course-card h3 {
  color: #8B4513;
  margin-bottom: 16px;
  font-size: 20px;
}

.feature-card p,
.category-card p,
.recipe-card p {
  color: #4a4a4a;
  line-height: 1.7;
}

/* RECIPE META */
.recipe-meta {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.recipe-meta span,
.time-badge,
.seasonal-badge,
.badge,
.recipe-count,
.trust-indicators {
  font-size: 14px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #F4E4C1 0%, rgba(244, 228, 193, 0.5) 100%);
  border-radius: 50px;
  font-weight: 600;
  color: #6b3410;
  border: 1px solid rgba(193, 120, 23, 0.2);
}

.time,
.difficulty {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* COURSE META */
.course-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid rgba(244, 228, 193, 0.3);
}

.course-meta span {
  font-size: 14px;
  font-weight: 600;
  color: #6b3410;
}

/* PREMIUM TESTIMONIALS */
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background: linear-gradient(135deg, #ffffff 0%, #fdfbf7 100%);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(139, 69, 19, 0.1);
  border-left: 4px solid #C17817;
  position: relative;
}

.testimonial-card::before {
  content: '❝';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 60px;
  color: rgba(193, 120, 23, 0.15);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #2c2c2c;
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-card .author {
  font-weight: 700;
  color: #8B4513;
  font-style: normal;
  font-size: 14px;
  margin-bottom: 0;
}

/* FILTER BUTTONS */
.filter-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
}

.filter-btn,
.season-tab {
  padding: 14px 28px;
  background: linear-gradient(135deg, #ffffff 0%, #fdfbf7 100%);
  border: 2px solid #C17817;
  border-radius: 50px;
  color: #8B4513;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 15px;
}

.filter-btn:hover,
.season-tab:hover {
  background: linear-gradient(135deg, #8B4513 0%, #C17817 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 69, 19, 0.3);
}

.season-tab.active {
  background: linear-gradient(135deg, #8B4513 0%, #C17817 100%);
  color: white;
  box-shadow: 0 6px 20px rgba(139, 69, 19, 0.3);
}

/* SEASON NAVIGATION */
.season-navigation {
  padding: 40px 20px;
  background: rgba(244, 228, 193, 0.1);
}

.season-tabs {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* FEATURED INGREDIENTS */
.featured-ingredients {
  background: linear-gradient(135deg, rgba(244, 228, 193, 0.2) 0%, rgba(244, 228, 193, 0.05) 100%);
  padding: 24px;
  border-radius: 12px;
  margin: 32px 0;
  border: 2px solid rgba(193, 120, 23, 0.2);
}

.featured-ingredients h3 {
  color: #8B4513;
  margin-bottom: 16px;
}

.featured-ingredients ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.featured-ingredients li {
  padding: 8px 20px;
  background: white;
  border-radius: 50px;
  color: #6b3410;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(139, 69, 19, 0.1);
}

/* BENEFITS LIST */
.benefits-list {
  list-style: none;
  margin-top: 32px;
}

.benefits-list li {
  padding: 16px 20px 16px 60px;
  background: linear-gradient(135deg, #ffffff 0%, #fdfbf7 100%);
  margin-bottom: 16px;
  border-radius: 12px;
  border-left: 4px solid #C17817;
  position: relative;
  box-shadow: 0 4px 16px rgba(139, 69, 19, 0.08);
  transition: all 0.3s ease;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #8B4513 0%, #C17817 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

.benefits-list li:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 24px rgba(139, 69, 19, 0.12);
}

/* TEAM MEMBER */
.team-member {
  text-align: center;
}

.position {
  color: #C17817;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
}

.team-note {
  text-align: center;
  color: #6b3410;
  font-style: italic;
  margin-top: 32px;
}

/* STATISTICS */
.stat-card {
  text-align: center;
  padding: 40px 32px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, #8B4513 0%, #C17817 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  font-family: 'Merriweather', serif;
}

.stat-label {
  color: #6b3410;
  font-weight: 600;
  font-size: 16px;
}

/* MILESTONES */
.milestones {
  background: linear-gradient(135deg, rgba(244, 228, 193, 0.2) 0%, rgba(244, 228, 193, 0.05) 100%);
  padding: 32px;
  border-radius: 12px;
  margin: 32px 0;
  border: 2px solid rgba(193, 120, 23, 0.2);
}

.milestones ul {
  list-style: none;
  margin-top: 20px;
}

.milestones li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(193, 120, 23, 0.15);
  color: #4a4a4a;
}

.milestones li:last-child {
  border-bottom: none;
}

/* VALUES */
.values {
  margin-top: 40px;
  background: linear-gradient(135deg, rgba(244, 228, 193, 0.2) 0%, rgba(244, 228, 193, 0.05) 100%);
  padding: 32px;
  border-radius: 12px;
  border: 2px solid rgba(193, 120, 23, 0.2);
}

.values ul {
  list-style: none;
  margin-top: 20px;
}

.values li {
  padding: 16px 0;
  color: #4a4a4a;
}

.values strong {
  color: #8B4513;
  font-size: 18px;
}

/* CONTACT & LOCATION */
.location-info {
  background: linear-gradient(135deg, rgba(244, 228, 193, 0.2) 0%, rgba(244, 228, 193, 0.05) 100%);
  padding: 32px;
  border-radius: 12px;
  margin-top: 32px;
  border: 2px solid rgba(193, 120, 23, 0.2);
}

.location-info p {
  margin-bottom: 20px;
}

/* ERROR PAGE */
.error-section {
  padding: 100px 20px;
  text-align: center;
}

.error-code {
  font-size: 120px;
  font-weight: 700;
  background: linear-gradient(135deg, #8B4513 0%, #C17817 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Merriweather', serif;
  line-height: 1;
  margin-bottom: 32px;
}

.helpful-links {
  margin: 40px 0;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.helpful-links ul {
  list-style: none;
  margin-top: 20px;
}

.helpful-links li {
  padding: 12px 0;
}

.helpful-links a {
  font-size: 18px;
  font-weight: 600;
  color: #8B4513;
  transition: all 0.3s ease;
  display: inline-block;
}

.helpful-links a:hover {
  transform: translateX(8px);
  color: #C17817;
}

.support-text {
  font-size: 16px;
  margin: 32px 0;
}

/* THANK YOU PAGE */
.thank-you-section {
  padding: 100px 20px;
  text-align: center;
}

.what-next,
.meanwhile,
.next-steps,
.cta-section {
  margin: 40px auto;
  max-width: 600px;
  background: linear-gradient(135deg, rgba(244, 228, 193, 0.2) 0%, rgba(244, 228, 193, 0.05) 100%);
  padding: 32px;
  border-radius: 12px;
  border: 2px solid rgba(193, 120, 23, 0.2);
}

.what-next ul,
.next-steps ul {
  list-style: none;
  margin-top: 20px;
  text-align: left;
}

.what-next li,
.next-steps li {
  padding: 12px 0 12px 40px;
  position: relative;
}

.what-next li::before,
.next-steps li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #C17817;
  font-weight: 700;
  font-size: 20px;
}

/* LEGAL CONTENT */
.legal-content {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h1 {
  margin-bottom: 40px;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 24px;
}

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 16px;
  font-size: 20px;
}

.legal-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.legal-content ul {
  margin: 20px 0 20px 40px;
}

.legal-content li {
  margin-bottom: 12px;
  line-height: 1.7;
}

/* PREMIUM FOOTER */
footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  color: #f8f5f0;
  padding: 60px 20px 24px;
  margin-top: 80px;
  border-top: 4px solid #C17817;
}

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

.footer-brand {
  flex: 1 1 300px;
}

.footer-brand img {
  height: 50px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.footer-brand p {
  color: rgba(248, 245, 240, 0.8);
  font-size: 14px;
  line-height: 1.6;
}

.footer-links {
  flex: 2 1 600px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1 1 150px;
}

.footer-column h3 {
  color: #F4E4C1;
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.footer-column a {
  display: block;
  color: rgba(248, 245, 240, 0.7);
  font-size: 14px;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.footer-column a:hover {
  color: #F4E4C1;
  transform: translateX(4px);
}

.footer-column p {
  color: rgba(248, 245, 240, 0.7);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(244, 228, 193, 0.2);
}

.footer-bottom p {
  color: rgba(248, 245, 240, 0.6);
  font-size: 14px;
}

/* COOKIE CONSENT BANNER */
#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #ffffff 0%, #fdfbf7 100%);
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.15);
  padding: 24px;
  z-index: 10000;
  border-top: 3px solid #C17817;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

.cookie-consent-text {
  flex: 1 1 400px;
  color: #2c2c2c;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cookie-accept {
  background: linear-gradient(135deg, #8B4513 0%, #C17817 100%);
  color: white;
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 69, 19, 0.3);
}

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

.cookie-reject:hover {
  background: rgba(139, 69, 19, 0.1);
}

.cookie-settings {
  background: transparent;
  color: #6b3410;
  border-color: #C17817;
}

.cookie-settings:hover {
  background: rgba(193, 120, 23, 0.1);
}

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

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

.cookie-modal-content {
  background: linear-gradient(135deg, #ffffff 0%, #fdfbf7 100%);
  padding: 40px;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 3px solid #C17817;
}

.cookie-modal-content h2 {
  color: #8B4513;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(244, 228, 193, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(193, 120, 23, 0.2);
}

.cookie-category h3 {
  color: #6b3410;
  margin-bottom: 12px;
  font-size: 18px;
}

.cookie-category p {
  font-size: 14px;
  color: #4a4a4a;
  margin-bottom: 12px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 50px;
  height: 26px;
  appearance: none;
  background: #ccc;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked {
  background: linear-gradient(135deg, #8B4513 0%, #C17817 100%);
}

.cookie-toggle input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked::before {
  transform: translateX(24px);
}

.cookie-toggle input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Mobile Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Mobile Header */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .header-content {
    padding: 16px 0;
  }
  
  .logo img {
    height: 50px;
  }
  
  /* Mobile Hero */
  .hero {
    padding: 60px 20px;
  }
  
  /* Mobile Cards */
  .feature-card,
  .category-card,
  .recipe-card,
  .collection-card,
  .course-card,
  .step-card,
  .contact-card,
  .stat-card,
  .team-member,
  .region-card,
  .content-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
    min-width: 100%;
    padding: 32px 24px;
  }
  
  /* Mobile Sections */
  .section,
  .features,
  .categories,
  .testimonials {
    padding: 40px 20px;
  }
  
  /* Mobile Footer */
  .footer-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer-links {
    flex-direction: column;
  }
  
  /* Mobile Buttons */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-primary,
  .cta-button,
  .cta-button-secondary {
    width: 100%;
  }
  
  /* Mobile Cookie Banner */
  .cookie-consent-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-consent-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
    text-align: center;
  }
  
  /* Mobile Modal */
  .cookie-modal-content {
    padding: 24px;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-modal-buttons .cookie-btn {
    width: 100%;
  }
  
  /* Mobile Error */
  .error-code {
    font-size: 80px;
  }
  
  /* Mobile Stats */
  .stat-number {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  .hero {
    padding: 40px 16px;
  }
  
  .section {
    padding: 32px 16px;
  }
  
  .feature-card,
  .category-card,
  .recipe-card {
    padding: 24px;
  }
}

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

button:focus,
a:focus {
  outline: 3px solid #C17817;
  outline-offset: 2px;
}

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

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

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

/* Apply animations */
.feature-card,
.category-card,
.recipe-card {
  animation: fadeInUp 0.6s ease-out forwards;
}

.mobile-menu.active {
  animation: slideInRight 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}