/* ============================================
   WILD TIDE - PROFESSIONAL CORPORATE CSS
   Design Style: Professional Corporate
   Mobile-First Responsive Design
   ============================================ */

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

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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #2d3748;
  background-color: #ffffff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  color: #2C5F5D;
  margin-bottom: 16px;
}

h1 { font-size: 48px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }
h4 { font-size: 18px; }

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

a {
  color: #2C5F5D;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #D4A574;
}

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

ul {
  list-style: none;
}

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

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

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

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

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 6px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

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

.btn-primary:hover {
  background-color: #234948;
  border-color: #234948;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 95, 93, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #2C5F5D;
  border-color: #2C5F5D;
}

.btn-secondary:hover {
  background-color: #2C5F5D;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 95, 93, 0.2);
}

/* ============================================
   MOBILE MENU TOGGLE BUTTON
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background-color: #2C5F5D;
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  font-size: 24px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

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

/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background-color: #ffffff;
  z-index: 1002;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.2);
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #2C5F5D;
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 6px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  display: block;
  padding: 16px 20px;
  font-size: 18px;
  font-weight: 600;
  color: #2C5F5D;
  background-color: #F4E8D8;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background-color: #2C5F5D;
  color: #ffffff;
  transform: translateX(8px);
}

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

header {
  background-color: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

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

.main-nav a {
  font-size: 16px;
  font-weight: 600;
  color: #2C5F5D;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #D4A574;
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #D4A574;
}

.main-nav a:hover::after {
  width: 100%;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  background: linear-gradient(135deg, #2C5F5D 0%, #234948 100%);
  color: #ffffff;
  padding: 80px 20px;
  margin-bottom: 60px;
}

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

.hero h1 {
  color: #ffffff;
  font-size: 48px;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 20px;
  color: #F4E8D8;
  margin-bottom: 32px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* ============================================
   PAGE HERO
   ============================================ */

.page-hero {
  background: linear-gradient(135deg, #2C5F5D 0%, #234948 100%);
  color: #ffffff;
  padding: 60px 20px 40px;
  margin-bottom: 60px;
}

.page-hero h1 {
  color: #ffffff;
  font-size: 42px;
  margin-bottom: 16px;
}

.page-hero .subtitle {
  font-size: 18px;
  color: #F4E8D8;
  margin-bottom: 0;
}

.breadcrumb {
  font-size: 14px;
  color: #F4E8D8;
  margin-bottom: 20px;
}

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

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

.last-updated {
  font-size: 14px;
  color: #F4E8D8;
  font-style: italic;
}

/* ============================================
   SECTIONS
   ============================================ */

.section,
.introduction,
.services,
.categories,
.how-it-works,
.testimonials,
.newsletter,
.intro,
.courses,
.featured-course,
.workshops,
.featured-workshop,
.corporate,
.story,
.mission,
.philosophy,
.sustainability,
.location,
.featured-post,
.blog-posts,
.contact-intro,
.contact-content,
.quick-contact,
.confirmation,
.continue-browsing,
.community,
.recipes,
.featured-recipes,
.collections,
.filters,
.legal-content {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section-intro {
  text-align: center;
  font-size: 18px;
  color: #4a5568;
  max-width: 700px;
  margin: 0 auto 40px;
}

.content-wrapper h2 {
  text-align: center;
  margin-bottom: 32px;
}

.content-wrapper p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 24px;
}

/* ============================================
   GRID LAYOUTS - FLEXBOX ONLY
   ============================================ */

.values-grid,
.services-grid,
.category-grid,
.testimonial-grid,
.course-grid,
.workshop-grid,
.benefits-grid,
.philosophy-grid,
.blog-grid,
.recipe-grid,
.featured-grid,
.collection-grid,
.contact-grid,
.suggestion-grid,
.quick-options {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.value-item,
.service-card,
.category-card,
.testimonial-card,
.course-card,
.workshop-card,
.benefit-item,
.value-card,
.principle-card,
.blog-card,
.recipe-card,
.featured-card,
.collection-card,
.option-card,
.suggestion-card {
  flex: 1 1 300px;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 24px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: relative;
}

.value-item:hover,
.service-card:hover,
.category-card:hover,
.course-card:hover,
.workshop-card:hover,
.benefit-item:hover,
.value-card:hover,
.principle-card:hover,
.blog-card:hover,
.recipe-card:hover,
.featured-card:hover,
.collection-card:hover,
.option-card:hover,
.suggestion-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(44, 95, 93, 0.15);
  border-color: #D4A574;
}

.value-item h3,
.service-card h3,
.category-card h3,
.course-card h3,
.workshop-card h3,
.benefit-item h3,
.value-card h3,
.principle-card h3,
.blog-card h3,
.recipe-card h3,
.featured-card h3,
.collection-card h3,
.option-card h3,
.suggestion-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.value-item p,
.category-card p,
.benefit-item p,
.value-card p,
.principle-card p {
  color: #718096;
  font-size: 16px;
}

/* ============================================
   SERVICE & COURSE CARDS
   ============================================ */

.service-card,
.course-card,
.workshop-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #2C5F5D;
  margin: 12px 0;
}

.course-meta,
.workshop-meta,
.recipe-meta,
.post-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #718096;
  margin-top: 12px;
}

.course-meta span,
.workshop-meta span,
.recipe-meta span,
.post-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ============================================
   STEPS SECTION
   ============================================ */

.steps {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.step {
  flex: 1 1 280px;
  text-align: center;
  padding: 24px;
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background-color: #2C5F5D;
  color: #ffffff;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 16px;
}

.step h3 {
  margin-bottom: 12px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
  background-color: #F4E8D8;
}

.testimonial-card {
  background-color: #ffffff;
  padding: 32px;
  border-left: 4px solid #D4A574;
}

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

.testimonial-card .author {
  font-size: 14px;
  font-weight: 600;
  color: #2C5F5D;
  font-style: normal;
  margin-bottom: 0;
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */

.newsletter {
  background: linear-gradient(135deg, #2C5F5D 0%, #234948 100%);
  color: #ffffff;
  border-radius: 12px;
  margin: 60px 20px;
}

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

.newsletter h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.newsletter p {
  color: #F4E8D8;
  margin-bottom: 24px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.email-input {
  flex: 1 1 300px;
  padding: 14px 20px;
  border: 2px solid #F4E8D8;
  border-radius: 6px;
  font-size: 16px;
  background-color: #ffffff;
  color: #2d3748;
}

.email-input:focus {
  outline: none;
  border-color: #D4A574;
}

.privacy-note {
  font-size: 14px;
  color: #F4E8D8;
}

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

.privacy-note a:hover {
  color: #D4A574;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background-color: #1a1a1a;
  color: #cbd5e0;
  padding: 60px 20px 20px;
  margin-top: 80px;
}

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

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

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.tagline {
  font-size: 14px;
  color: #a0aec0;
  line-height: 1.6;
}

.footer-column h4 {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 600;
}

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

.footer-column nav a,
.footer-column p,
.footer-column a {
  color: #cbd5e0;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-column nav a:hover,
.footer-column a:hover {
  color: #D4A574;
}

.footer-bottom {
  border-top: 1px solid #2d3748;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.legal-links a {
  font-size: 14px;
  color: #cbd5e0;
}

.legal-links a:hover {
  color: #D4A574;
}

.copyright {
  font-size: 14px;
  color: #a0aec0;
  margin: 0;
}

/* ============================================
   FILTERS
   ============================================ */

.filter-bar {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding: 24px;
  background-color: #F4E8D8;
  border-radius: 8px;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 200px;
}

.filter-group label {
  font-weight: 600;
  color: #2C5F5D;
  font-size: 14px;
}

.filter-select {
  padding: 10px 16px;
  border: 1px solid #cbd5e0;
  border-radius: 6px;
  font-size: 14px;
  background-color: #ffffff;
  color: #2d3748;
  cursor: pointer;
  min-width: 150px;
}

.filter-select:focus {
  outline: none;
  border-color: #2C5F5D;
}

/* ============================================
   CATEGORY FILTER BUTTONS
   ============================================ */

.category-filter {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
}

.category-btn {
  padding: 10px 20px;
  background-color: #F4E8D8;
  color: #2C5F5D;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
  background-color: #2C5F5D;
  color: #ffffff;
}

/* ============================================
   FEATURED CONTENT
   ============================================ */

.featured-article {
  background-color: #F4E8D8;
  padding: 40px;
  border-radius: 12px;
  position: relative;
}

.badge {
  display: inline-block;
  background-color: #D4A574;
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.featured-article h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.featured-content {
  background-color: #F4E8D8;
  padding: 32px;
  border-radius: 8px;
  margin-top: 24px;
}

.featured-content h3 {
  margin-top: 24px;
  margin-bottom: 16px;
}

.featured-content ul {
  list-style: disc;
  margin-left: 24px;
}

.featured-content ul li {
  margin-bottom: 8px;
  color: #4a5568;
}

/* ============================================
   LISTS
   ============================================ */

.benefits-list,
.workshop-types,
.sustainability-list,
.next-steps {
  list-style: none;
  margin: 24px 0;
}

.benefits-list li,
.workshop-types li,
.sustainability-list li,
.next-steps li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #4a5568;
  font-size: 16px;
}

.benefits-list li::before,
.workshop-types li::before,
.sustainability-list li::before,
.next-steps li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #D4A574;
  font-weight: 700;
  font-size: 18px;
}

/* ============================================
   CONTACT FORM
   ============================================ */

.contact-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-form-wrapper,
.contact-info-wrapper {
  flex: 1 1 400px;
}

.form-container {
  background-color: #F4E8D8;
  padding: 32px;
  border-radius: 8px;
  margin-top: 24px;
}

.form-note {
  background-color: #ffffff;
  padding: 16px;
  border-radius: 6px;
  margin-bottom: 24px;
  color: #4a5568;
  font-size: 14px;
  border-left: 4px solid #D4A574;
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  font-weight: 600;
  color: #2C5F5D;
  margin-bottom: 8px;
  font-size: 14px;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #cbd5e0;
  border-radius: 6px;
  font-size: 16px;
  font-family: inherit;
  background-color: #ffffff;
  color: #2d3748;
  transition: border-color 0.3s ease;
}

.form-field input[type="text"]:focus,
.form-field input[type="email"]:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #2C5F5D;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-weight: 400;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 4px;
  cursor: pointer;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}

.contact-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #2C5F5D;
}

.contact-item p {
  color: #4a5568;
  line-height: 1.8;
}

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

.thank-you-hero {
  background: linear-gradient(135deg, #2C5F5D 0%, #234948 100%);
  color: #ffffff;
  padding: 80px 20px;
  margin-bottom: 60px;
}

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

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #D4A574;
  color: #ffffff;
  border-radius: 50%;
  font-size: 48px;
  line-height: 80px;
  margin: 0 auto 24px;
  font-weight: 700;
}

.stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  flex: 1 1 200px;
}

.stat-number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #2C5F5D;
  margin-bottom: 8px;
}

.stat-label {
  display: block;
  font-size: 16px;
  color: #718096;
}

/* ============================================
   CTA SECTIONS
   ============================================ */

.cta {
  background: linear-gradient(135deg, #2C5F5D 0%, #234948 100%);
  color: #ffffff;
  padding: 60px 20px;
  border-radius: 12px;
  margin: 60px 20px;
}

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

.cta h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.cta p {
  color: #F4E8D8;
  font-size: 18px;
  margin-bottom: 32px;
}

.cta .btn {
  margin: 0 10px;
}

/* ============================================
   LEGAL CONTENT
   ============================================ */

.legal-content .content-wrapper {
  max-width: 900px;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 24px;
  text-align: left;
}

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

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

.contact-section {
  background-color: #F4E8D8;
  padding: 32px;
  border-radius: 8px;
  margin-top: 40px;
}

.contact-section h2 {
  margin-top: 0;
}

.location-info {
  background-color: #F4E8D8;
  padding: 32px;
  border-radius: 8px;
  margin-top: 24px;
}

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

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 20px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-consent.active {
  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 {
  color: #cbd5e0;
  margin-bottom: 0;
  font-size: 14px;
}

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

.cookie-buttons .btn {
  padding: 10px 24px;
  font-size: 14px;
}

.cookie-settings-btn {
  background-color: transparent;
  color: #D4A574;
  border: 1px solid #D4A574;
  padding: 10px 24px;
  font-size: 14px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.cookie-settings-btn:hover {
  background-color: #D4A574;
  color: #ffffff;
}

/* ============================================
   COOKIE PREFERENCES MODAL
   ============================================ */

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

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

.cookie-modal-content {
  background-color: #ffffff;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background-color: #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #2d3748;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background-color: #cbd5e0;
  transform: rotate(90deg);
}

.cookie-category {
  padding: 20px;
  background-color: #F4E8D8;
  border-radius: 8px;
  margin-bottom: 16px;
}

.cookie-category h3 {
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background-color: #cbd5e0;
  border-radius: 13px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-toggle.active {
  background-color: #2C5F5D;
}

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

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

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

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

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

@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: flex;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Header adjustments */
  .header-content {
    padding-right: 70px;
  }
  
  /* Hero sections */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .page-hero {
    padding: 40px 20px 30px;
  }
  
  .page-hero h1 {
    font-size: 28px;
  }
  
  /* CTA buttons */
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  /* Sections */
  .section,
  .introduction,
  .services,
  .categories,
  .how-it-works,
  .testimonials,
  .newsletter {
    padding: 32px 20px;
    margin-bottom: 40px;
  }
  
  /* Grids - stack on mobile */
  .values-grid,
  .services-grid,
  .category-grid,
  .testimonial-grid,
  .course-grid,
  .workshop-grid,
  .benefits-grid,
  .philosophy-grid,
  .blog-grid,
  .recipe-grid,
  .featured-grid,
  .collection-grid {
    flex-direction: column;
  }
  
  .value-item,
  .service-card,
  .category-card,
  .testimonial-card,
  .course-card,
  .workshop-card,
  .benefit-item,
  .value-card,
  .principle-card,
  .blog-card,
  .recipe-card,
  .featured-card,
  .collection-card {
    flex: 1 1 100%;
  }
  
  /* Steps */
  .steps {
    flex-direction: column;
  }
  
  /* Newsletter */
  .newsletter-form {
    flex-direction: column;
  }
  
  .email-input {
    width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .legal-links {
    justify-content: center;
  }
  
  /* Filters */
  .filter-bar {
    flex-direction: column;
  }
  
  .filter-group {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .filter-select {
    width: 100%;
  }
  
  /* Featured article */
  .featured-article {
    padding: 24px;
  }
  
  /* Contact */
  .contact-grid {
    flex-direction: column;
  }
  
  .form-container {
    padding: 24px;
  }
  
  /* Stats */
  .stats {
    flex-direction: column;
    gap: 24px;
  }
  
  /* Cookie consent */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons .btn,
  .cookie-settings-btn {
    width: 100%;
  }
  
  /* Cookie modal */
  .cookie-modal-content {
    padding: 24px;
  }
  
  .cookie-modal-actions {
    flex-direction: column;
  }
  
  .cookie-modal-actions .btn {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .values-grid,
  .services-grid,
  .category-grid,
  .course-grid,
  .workshop-grid,
  .blog-grid,
  .recipe-grid {
    gap: 20px;
  }
  
  .value-item,
  .service-card,
  .category-card,
  .course-card,
  .workshop-card,
  .blog-card,
  .recipe-card {
    flex: 1 1 calc(50% - 10px);
  }
}

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

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

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

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

/* Apply animations */
.mobile-menu.active {
  animation: slideInRight 0.4s ease;
}

.value-item,
.service-card,
.category-card,
.course-card,
.blog-card,
.recipe-card {
  animation: slideInUp 0.5s ease;
}

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

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

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

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

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

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

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  header,
  footer,
  .newsletter,
  .cta {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
  }
  
  h1 { font-size: 24pt; }
  h2 { font-size: 18pt; }
  h3 { font-size: 14pt; }
  
  a {
    color: #000;
    text-decoration: underline;
  }
  
  .container {
    max-width: 100%;
    padding: 0;
  }
}