/* CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #C64100;
  --secondary-color: #8B2E00;
  --accent-color: #FFE66D;
  --earth-brown: #6B4423;
  --sage-green: #8B9D83;
  --cream: #F5F1E8;
  --warm-beige: #E8DCC4;
  --text-dark: #2C1810;
  --text-light: #5A4A3A;
  --white: #FFFFFF;
  --shadow: rgba(0, 0, 0, 0.1);
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--cream);
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(139, 157, 131, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(198, 65, 0, 0.03) 0%, transparent 50%);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Fredoka', 'Comic Sans MS', cursive;
  font-weight: 600;
  color: var(--primary-color);
  line-height: 1.3;
}

h1 { font-size: 48px; margin-bottom: 24px; }
h2 { font-size: 32px; margin-bottom: 20px; }
h3 { font-size: 24px; margin-bottom: 16px; }
h4 { font-size: 18px; margin-bottom: 12px; }

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

ul, ol { margin-left: 24px; margin-bottom: 16px; }
li { margin-bottom: 8px; color: var(--text-light); }

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover { color: var(--secondary-color); }

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

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

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px var(--shadow);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

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

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: var(--cream);
  box-shadow: -4px 0 20px var(--shadow);
  z-index: 1002;
  padding: 80px 30px 30px;
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

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

.mobile-nav a {
  display: block;
  padding: 16px 20px;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  background: var(--white);
  border-radius: 12px;
  border: 2px solid var(--warm-beige);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateX(8px);
}

/* Header Styles */
header {
  background: var(--white);
  padding: 20px 0;
  box-shadow: 0 2px 12px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--accent-color);
}

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

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

.logo a {
  display: block;
}

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

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

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
  transition: width 0.3s ease;
}

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

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--sage-green) 0%, var(--earth-brown) 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

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

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: var(--white);
  font-size: 56px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--cream);
  margin-bottom: 32px;
  line-height: 1.6;
}

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

.trust-badge {
  color: var(--white);
  font-weight: 600;
  font-size: 18px;
  margin-top: 20px;
}

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

.btn-primary {
  background: var(--primary-color);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(198, 65, 0, 0.3);
}

.btn-primary:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(198, 65, 0, 0.4);
}

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

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

/* Section Styles */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.value-proposition,
.featured-products,
.category-showcase,
.products-section,
.features-section,
.techniques-section,
.benefits-section,
.values-section,
.team-section,
.achievements-section {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 4px 20px var(--shadow);
  padding: 50px 30px;
}

section h2 {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 16px;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
  border-radius: 2px;
}

/* Grid Layouts - Using Flexbox */
.benefits-grid,
.products-grid,
.categories-grid,
.features-grid,
.techniques-grid,
.values-grid,
.team-grid,
.achievements-grid,
.bundles-grid,
.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

/* Card Styles */
.benefit-card,
.product-card,
.category-card,
.feature-card,
.technique-card,
.value-card,
.team-card,
.achievement-card,
.bundle-card,
.method-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: var(--cream);
  padding: 30px 24px;
  border-radius: 16px;
  border: 3px solid var(--warm-beige);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.benefit-card::before,
.feature-card::before,
.value-card::before {
  content: '🌿';
  position: absolute;
  top: -15px;
  left: 20px;
  font-size: 32px;
  background: var(--white);
  padding: 8px 12px;
  border-radius: 50%;
  box-shadow: 0 2px 8px var(--shadow);
}

.benefit-card:hover,
.product-card:hover,
.category-card:hover,
.feature-card:hover,
.technique-card:hover,
.value-card:hover,
.team-card:hover,
.achievement-card:hover,
.bundle-card:hover,
.method-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px var(--shadow);
  border-color: var(--primary-color);
}

.product-card,
.category-card,
.bundle-card {
  background: var(--white);
}

.product-card h3,
.category-card h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
}

.product-card p,
.category-card p {
  color: var(--text-light);
  font-size: 15px;
  flex-grow: 1;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 16px 0;
}

.rating {
  color: var(--accent-color);
  font-size: 18px;
  margin-bottom: 12px;
  text-shadow: 0 1px 2px var(--shadow);
}

/* Testimonials Section */
.testimonials {
  background: linear-gradient(135deg, var(--warm-beige) 0%, var(--cream) 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  max-width: 500px;
  background: var(--white);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 16px var(--shadow);
  border-left: 5px solid var(--primary-color);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.testimonial-card p:first-child {
  font-size: 16px;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.7;
}

.customer-name {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 14px;
}

.testimonial-card .rating {
  color: var(--accent-color);
  font-size: 20px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '🎨';
  position: absolute;
  top: -30px;
  right: -30px;
  font-size: 120px;
  opacity: 0.1;
}

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

.cta-section p {
  color: var(--cream);
  font-size: 18px;
  margin-bottom: 24px;
}

.contact-info {
  color: var(--white);
  font-size: 16px;
  margin-top: 20px;
}

/* Contact Info Section */
.contact-info-section,
.contact-methods,
.shipping-section,
.contact-details {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 16px;
  margin-bottom: 40px;
}

.contact-details p,
.shipping-info p {
  margin-bottom: 16px;
  font-size: 16px;
  color: var(--text-dark);
}

.contact-details strong,
.shipping-info strong {
  color: var(--primary-color);
  display: block;
  margin-bottom: 8px;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, var(--earth-brown) 0%, var(--sage-green) 100%);
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
  border-radius: 20px;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  color: var(--cream);
  font-size: 18px;
}

.last-updated,
.effective-date {
  color: var(--cream);
  font-size: 14px;
  font-style: italic;
  margin-top: 12px;
}

/* Product Intro */
.product-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.product-intro p {
  font-size: 18px;
  color: var(--text-light);
}

/* FAQ Section */
.faq-section {
  background: var(--white);
  padding: 50px 30px;
  border-radius: 16px;
  margin-bottom: 60px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item {
  padding: 24px;
  background: var(--cream);
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px var(--shadow);
  transform: translateX(8px);
}

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

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

/* Story Section */
.story-section,
.sustainability-section,
.legal-content {
  background: var(--white);
  padding: 50px 30px;
  border-radius: 16px;
  margin-bottom: 60px;
}

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

/* Bundle Section */
.bundle-section {
  background: var(--warm-beige);
  padding: 50px 30px;
  border-radius: 16px;
  margin-bottom: 60px;
}

/* Shipping Info */
.shipping-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}

/* Thank You Hero */
.thank-you-hero {
  background: linear-gradient(135deg, var(--sage-green) 0%, var(--primary-color) 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 20px;
  margin-bottom: 60px;
}

.thank-you-hero h1 {
  color: var(--white);
  font-size: 56px;
}

.success-message {
  color: var(--accent-color);
  font-size: 24px;
  font-weight: 600;
}

/* Confirmation Section */
.confirmation-section,
.next-steps,
.explore-section,
.return-home {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 16px;
  margin-bottom: 40px;
  text-align: center;
}

.suggestions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* Legal Content */
.legal-content h2 {
  text-align: left;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.legal-content h2::after {
  display: none;
}

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

.legal-content ul {
  margin-left: 24px;
  margin-bottom: 20px;
}

.legal-content li {
  margin-bottom: 8px;
}

/* Cookie Categories */
.category-list,
.third-party {
  margin-top: 32px;
}

.category-item {
  padding: 24px;
  background: var(--cream);
  border-radius: 12px;
  margin-bottom: 20px;
  border-left: 4px solid var(--sage-green);
}

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

/* Footer Styles */
footer {
  background: var(--earth-brown);
  color: var(--cream);
  padding: 50px 20px 20px;
  margin-top: 60px;
  border-top: 5px solid var(--accent-color);
}

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

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

.footer-section h4 {
  color: var(--accent-color);
  margin-bottom: 16px;
  font-size: 20px;
}

.footer-section p {
  color: var(--cream);
  font-size: 14px;
  line-height: 1.7;
}

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

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

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

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 230, 109, 0.2);
}

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

/* Cookie Consent Banner */
#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 24px 20px;
  box-shadow: 0 -4px 20px var(--shadow);
  z-index: 999;
  border-top: 4px solid var(--primary-color);
  display: none;
}

#cookie-consent-banner.show {
  display: block;
  animation: slideUp 0.4s ease;
}

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

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

.cookie-banner-text {
  flex: 1 1 300px;
  color: var(--text-dark);
}

.cookie-banner-text p {
  margin-bottom: 8px;
  font-size: 14px;
}

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

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

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

#cookie-settings-modal.show {
  display: flex;
  animation: fadeIn 0.3s ease;
}

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

.cookie-modal-content {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 8px 32px var(--shadow);
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.cookie-category {
  padding: 20px;
  background: var(--cream);
  border-radius: 12px;
  margin-bottom: 16px;
  border-left: 4px solid var(--sage-green);
}

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

.cookie-category p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 0;
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

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

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

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

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

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

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

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

/* Responsive Styles */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  .mobile-menu {
    display: block;
  }

  .main-nav {
    display: none;
  }

  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }

  .hero h1 {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .benefit-card,
  .product-card,
  .category-card,
  .feature-card,
  .technique-card,
  .value-card,
  .team-card,
  .achievement-card,
  .bundle-card,
  .method-card {
    flex: 1 1 100%;
  }

  .testimonial-card {
    flex: 1 1 100%;
  }

  .footer-content {
    flex-direction: column;
    gap: 32px;
  }

  .cookie-banner-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner-buttons {
    width: 100%;
  }

  .cookie-banner-buttons .btn {
    flex: 1;
    text-align: center;
  }

  section {
    padding: 30px 15px;
  }

  .value-proposition,
  .featured-products,
  .category-showcase,
  .products-section,
  .features-section,
  .techniques-section,
  .benefits-section,
  .values-section,
  .team-section,
  .achievements-section {
    padding: 40px 20px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }

  .hero h1 {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .price {
    font-size: 20px;
  }

  .thank-you-hero h1 {
    font-size: 36px;
  }

  .success-message {
    font-size: 18px;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Selection Styles */
::selection {
  background: var(--accent-color);
  color: var(--text-dark);
}

/* Focus Styles for Accessibility */
a:focus,
button:focus,
input:focus {
  outline: 3px solid var(--accent-color);
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cta-section,
  #cookie-consent-banner {
    display: none;
  }

  body {
    background: white;
  }

  a {
    text-decoration: underline;
  }
}