/* ===================================
   GLIMMERPULSE - SOFT PASTEL DESIGN
   Wo Heimatküche auf Weltgeschmack trifft
   =================================== */

/* 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', Roboto, sans-serif;
  line-height: 1.7;
  color: #4A4A4A;
  background: linear-gradient(135deg, #FFF5F7 0%, #FFF9FB 50%, #F5F9FF 100%);
  min-height: 100vh;
}

/* SOFT PASTEL COLORS */
:root {
  --pastel-rose: #FFB3BA;
  --pastel-peach: #FFCBA4;
  --pastel-yellow: #FFFACD;
  --pastel-mint: #BAE1D3;
  --pastel-lavender: #E0BBE4;
  --pastel-sky: #D4E4F7;
  --soft-coral: #FFB6A3;
  --soft-lilac: #E8D5F2;
  --cream: #FFF9F0;
  --soft-gray: #F5F5F5;
  --text-dark: #5A5A5A;
  --text-light: #8A8A8A;
  --white: #FFFFFF;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 16px;
}

h1 { font-size: 42px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }

p {
  margin-bottom: 16px;
  color: var(--text-dark);
}

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

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

ul {
  list-style: none;
}

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

.content-wrapper {
  width: 100%;
}

/* HEADER */
header {
  background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
  box-shadow: 0 2px 20px rgba(255, 179, 186, 0.15);
  position: sticky;
  top: 0;
  z-index: 900;
  padding: 20px 0;
}

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

.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

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

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

.main-nav a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pastel-rose), var(--pastel-peach));
  transition: width 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--pastel-rose);
  background: rgba(255, 179, 186, 0.1);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 80%;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  background: linear-gradient(135deg, var(--pastel-rose), var(--pastel-peach));
  border: none;
  color: var(--white);
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(255, 179, 186, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(255, 179, 186, 0.4);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 80px 30px 30px;
  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: var(--pastel-lavender);
  border: none;
  color: var(--white);
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  padding: 12px 20px;
  border-radius: 20px;
  background: rgba(255, 179, 186, 0.1);
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: linear-gradient(135deg, var(--pastel-rose), var(--pastel-peach));
  color: var(--white);
  transform: translateX(5px);
}

/* HERO SECTIONS */
.hero,
.page-hero,
.error-hero,
.legal-hero,
.thank-you-hero {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, var(--pastel-sky) 0%, var(--pastel-lavender) 100%);
  border-radius: 0 0 50px 50px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before,
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 179, 186, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.hero h1,
.page-hero h1,
.error-hero h1 {
  font-size: 48px;
  color: var(--text-dark);
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

.subheadline {
  font-size: 18px;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.trust-indicator,
.trust-badge {
  display: inline-block;
  padding: 10px 24px;
  background: var(--white);
  border-radius: 30px;
  font-size: 14px;
  color: var(--text-dark);
  box-shadow: 0 4px 15px rgba(255, 179, 186, 0.2);
  margin-top: 16px;
}

/* BUTTONS */
.btn-primary,
.btn-secondary,
.btn-link {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background: linear-gradient(135deg, var(--pastel-rose), var(--pastel-peach));
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 179, 186, 0.3);
}

.btn-secondary {
  background: var(--white);
  color: var(--pastel-rose);
  border: 2px solid var(--pastel-rose);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--pastel-rose), var(--pastel-peach));
  color: var(--white);
  border-color: transparent;
}

.btn-link {
  background: transparent;
  color: var(--pastel-rose);
  box-shadow: none;
  padding: 8px 16px;
  font-weight: 500;
}

.btn-link:hover {
  color: var(--pastel-peach);
  transform: translateX(5px);
}

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

/* SECTIONS */
.section,
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 36px;
  color: var(--text-dark);
}

/* CARDS & GRIDS */
.benefits-grid,
.services-grid,
.recipe-grid,
.collection-grid,
.cuisine-grid,
.insight-grid,
.fundamentals-grid,
.technique-grid,
.category-grid,
.tips-grid,
.methods-grid,
.quick-links-grid,
.link-grid,
.suggestions-grid,
.team-grid,
.social-tips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.benefit-card,
.service-card,
.recipe-card,
.collection-card,
.cuisine-card,
.insight-card,
.fundamental-card,
.technique-card,
.category-card,
.tip-card,
.method-card,
.quick-link-card,
.link-card,
.suggestion-card,
.team-member,
.social-tip {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 380px;
  background: var(--white);
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: 0 4px 20px rgba(255, 179, 186, 0.15);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
}

.benefit-card:hover,
.service-card:hover,
.recipe-card:hover,
.collection-card:hover,
.cuisine-card:hover,
.insight-card:hover,
.fundamental-card:hover,
.technique-card:hover,
.category-card:hover,
.tip-card:hover,
.method-card:hover,
.quick-link-card:hover,
.link-card:hover,
.suggestion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(255, 179, 186, 0.25);
}

.service-card.featured {
  border: 3px solid var(--pastel-rose);
  background: linear-gradient(135deg, rgba(255, 179, 186, 0.05), rgba(255, 203, 164, 0.05));
}

.service-card img,
.benefit-card img,
.category-card img,
.insight-card img,
.method-card img,
.link-card img,
.quick-link-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 4px 10px rgba(255, 179, 186, 0.2));
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: var(--pastel-mint);
  margin: 16px 0;
}

.recipe-count {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, var(--pastel-mint), var(--pastel-sky));
  color: var(--white);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-right: 8px;
}

.time {
  display: inline-block;
  padding: 6px 16px;
  background: var(--soft-gray);
  color: var(--text-dark);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.rating {
  color: var(--pastel-peach);
  font-size: 18px;
  margin-top: 12px;
}

/* TESTIMONIALS */
.testimonials {
  background: linear-gradient(135deg, var(--pastel-lavender) 0%, var(--pastel-sky) 100%);
  padding: 60px 20px;
  border-radius: 30px;
  margin-bottom: 60px;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 500px;
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.testimonial-card p {
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.8;
}

.testimonial-card .author {
  font-weight: 600;
  color: var(--pastel-rose);
  font-style: normal;
  margin-bottom: 8px;
}

.testimonial-snippet {
  background: var(--white);
  border-radius: 15px;
  padding: 24px;
  margin-top: 32px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* FILTER SECTION */
.filter-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
}

.filter {
  padding: 12px 24px;
  border: 2px solid var(--pastel-rose);
  border-radius: 25px;
  background: var(--white);
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter:hover,
.filter:focus {
  background: linear-gradient(135deg, var(--pastel-rose), var(--pastel-peach));
  color: var(--white);
  outline: none;
}

/* TAB NAVIGATION */
.tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}

.tab {
  padding: 12px 28px;
  background: var(--white);
  border: 2px solid var(--pastel-sky);
  border-radius: 25px;
  color: var(--text-dark);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab:hover,
.tab.active {
  background: linear-gradient(135deg, var(--pastel-sky), var(--pastel-lavender));
  color: var(--white);
  border-color: transparent;
  transform: translateY(-2px);
}

/* TEXT SECTIONS */
.text-section {
  margin-bottom: 40px;
  background: var(--white);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 2px 15px rgba(255, 179, 186, 0.1);
}

.text-section h2,
.text-section h3 {
  color: var(--text-dark);
  margin-bottom: 16px;
}

.text-section ul {
  list-style: disc;
  margin-left: 24px;
  margin-bottom: 16px;
}

.text-section li {
  margin-bottom: 8px;
  color: var(--text-dark);
  line-height: 1.7;
}

.text-section a {
  color: var(--pastel-rose);
  text-decoration: underline;
}

.text-section a:hover {
  color: var(--pastel-peach);
}

.last-updated {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 16px;
}

/* STEPS & PROCESS */
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.step {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 240px;
  max-width: 320px;
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(255, 179, 186, 0.15);
  margin-bottom: 20px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--pastel-rose), var(--pastel-peach));
  color: var(--white);
  font-size: 28px;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(255, 179, 186, 0.3);
}

/* ERROR PAGE */
.error-code {
  font-size: 120px;
  font-weight: 700;
  color: var(--pastel-rose);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 24px;
}

/* THANK YOU PAGE */
.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--pastel-mint), var(--pastel-sky));
  color: var(--white);
  font-size: 60px;
  border-radius: 50%;
  margin-bottom: 32px;
  box-shadow: 0 8px 30px rgba(186, 225, 211, 0.3);
  animation: successPulse 2s infinite;
}

@keyframes successPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

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

.faq-item {
  background: var(--white);
  border-radius: 15px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 15px rgba(255, 179, 186, 0.1);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 25px rgba(255, 179, 186, 0.2);
}

.faq-item h3 {
  color: var(--pastel-rose);
  margin-bottom: 12px;
}

/* CTA SECTIONS */
.cta-section,
.cta-banner,
.workshop-cta,
.contact-cta {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--pastel-peach) 0%, var(--pastel-rose) 100%);
  border-radius: 30px;
  margin-bottom: 60px;
  color: var(--white);
}

.cta-section h2,
.cta-banner h2 {
  color: var(--white);
  margin-bottom: 24px;
}

.cta-section p,
.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 24px;
}

.guarantee {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  font-size: 14px;
  margin-top: 16px;
  color: var(--white);
}

/* CONTACT PAGE */
.form-note {
  background: var(--white);
  border-radius: 15px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(255, 179, 186, 0.15);
}

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

.location-info {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  margin-top: 32px;
  box-shadow: 0 4px 20px rgba(255, 179, 186, 0.15);
}

.location-info p {
  margin-bottom: 12px;
  color: var(--text-dark);
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, var(--pastel-lavender) 0%, var(--pastel-sky) 100%);
  padding: 60px 20px 20px;
  margin-top: 80px;
  border-radius: 50px 50px 0 0;
}

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

.footer-col {
  flex: 1 1 calc(25% - 40px);
  min-width: 200px;
}

.footer-col h3,
.footer-col h4 {
  color: var(--text-dark);
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-col p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.8;
}

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

.footer-nav a {
  color: var(--text-light);
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-nav a:hover {
  color: var(--pastel-rose);
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 2px solid rgba(255, 179, 186, 0.2);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-light);
  font-size: 14px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.15);
  padding: 24px;
  z-index: 950;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 400px;
  color: var(--text-dark);
  font-size: 14px;
  line-height: 1.6;
}

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

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

.cookie-accept {
  background: linear-gradient(135deg, var(--pastel-mint), var(--pastel-sky));
  color: var(--white);
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(186, 225, 211, 0.3);
}

.cookie-reject {
  background: var(--soft-gray);
  color: var(--text-dark);
}

.cookie-reject:hover {
  background: var(--pastel-rose);
  color: var(--white);
}

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

.cookie-settings:hover {
  color: var(--pastel-peach);
}

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

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

.modal-content {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

.modal-content h2 {
  color: var(--text-dark);
  margin-bottom: 24px;
}

.cookie-category {
  background: var(--soft-gray);
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 16px;
}

.cookie-category h3 {
  color: var(--text-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background: var(--pastel-rose);
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.3s ease;
}

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

.cookie-toggle.active {
  background: var(--pastel-mint);
}

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

.cookie-toggle.disabled {
  background: var(--soft-gray);
  cursor: not-allowed;
  opacity: 0.5;
}

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

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  h3 { font-size: 20px; }
  
  /* Header */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Hero */
  .hero,
  .page-hero {
    padding: 60px 20px;
  }
  
  .hero h1,
  .page-hero h1 {
    font-size: 32px;
  }
  
  /* Cards */
  .benefit-card,
  .service-card,
  .recipe-card,
  .collection-card,
  .cuisine-card,
  .insight-card,
  .fundamental-card,
  .technique-card,
  .category-card,
  .tip-card,
  .method-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .step {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Footer */
  .footer-col {
    flex: 1 1 100%;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }
  
  /* CTA Buttons */
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
  
  /* Error Code */
  .error-code {
    font-size: 80px;
  }
}

@media (max-width: 480px) {
  /* Typography */
  h1 { font-size: 26px; }
  h2 { font-size: 22px; }
  
  /* Container */
  .container {
    padding: 0 16px;
  }
  
  /* Mobile Menu */
  .mobile-menu {
    width: 100%;
    right: -100%;
  }
  
  .mobile-menu.active {
    right: 0;
  }
  
  /* Cards */
  .benefit-card,
  .service-card,
  .recipe-card {
    padding: 24px 20px;
  }
  
  /* Price */
  .price {
    font-size: 24px;
  }
  
  /* Success Icon */
  .success-icon {
    width: 80px;
    height: 80px;
    font-size: 48px;
  }
}

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

.benefit-card,
.service-card,
.recipe-card,
.testimonial-card {
  animation: fadeIn 0.6s ease forwards;
}

.benefit-card:nth-child(1),
.service-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2),
.service-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3),
.service-card:nth-child(3) { animation-delay: 0.3s; }
.benefit-card:nth-child(4),
.service-card:nth-child(4) { animation-delay: 0.4s; }

/* SMOOTH SCROLLING */
html {
  scroll-behavior: smooth;
}

/* ACCESSIBILITY */
*:focus {
  outline: 2px solid var(--pastel-rose);
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid var(--pastel-rose);
  outline-offset: 2px;
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none !important;
  }
}