/* ===========================
   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', sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #ffffff;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style-position: inside;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1D3557;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
}

/* ===========================
   SCANDINAVIAN CLEAN DESIGN
   =========================== */

:root {
  --color-primary: #E63946;
  --color-secondary: #1D3557;
  --color-accent: #F1FAEE;
  --color-light-gray: #f8f9fa;
  --color-medium-gray: #e9ecef;
  --color-dark-gray: #495057;
  --color-white: #ffffff;
  --color-text: #2c3e50;
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-xxl: 64px;
  --border-radius: 8px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s ease;
}

/* ===========================
   LAYOUT CONTAINERS
   =========================== */

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

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

/* ===========================
   HEADER & NAVIGATION
   =========================== */

header {
  background-color: var(--color-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
}

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

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

.main-nav {
  display: none;
}

.main-nav a {
  margin: 0 16px;
  color: var(--color-secondary);
  font-weight: 500;
  font-size: 14px;
  transition: var(--transition);
}

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

.header-contact {
  display: none;
}

.header-contact a {
  color: var(--color-secondary);
  font-weight: 500;
  margin-left: 16px;
}

.cta-button {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 10px 20px;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
}

.cta-button:hover {
  background-color: #d62839;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  width: 48px;
  height: 48px;
  font-size: 24px;
  border-radius: var(--border-radius);
  cursor: pointer;
  position: fixed;
  top: 16px;
  right: 20px;
  z-index: 1001;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.mobile-menu-toggle:hover {
  background-color: #d62839;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: var(--color-white);
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.2);
  z-index: 1002;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

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

.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 32px;
  color: var(--color-secondary);
  cursor: pointer;
  margin-bottom: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.mobile-menu-close:hover {
  color: var(--color-primary);
}

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

.mobile-nav a {
  color: var(--color-secondary);
  font-size: 18px;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.mobile-nav a:hover {
  background-color: var(--color-light-gray);
  color: var(--color-primary);
}

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

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: #d62839;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-secondary);
  border-color: var(--color-secondary);
}

.btn-secondary:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

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

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

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

.hero h1 {
  font-size: 48px;
  color: var(--color-secondary);
  margin-bottom: 24px;
}

.hero-subheadline {
  font-size: 18px;
  color: var(--color-dark-gray);
  margin-bottom: 32px;
}

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

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.trust-badges span {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-secondary);
  padding: 8px 16px;
  background-color: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

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

.page-hero {
  background: linear-gradient(135deg, var(--color-accent) 0%, #ffffff 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.page-hero h1 {
  font-size: 40px;
  margin-bottom: 16px;
}

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

.breadcrumbs {
  margin-top: 24px;
  font-size: 14px;
  color: var(--color-dark-gray);
}

.breadcrumbs a {
  color: var(--color-primary);
}

/* ===========================
   BENEFITS SECTION
   =========================== */

.benefits {
  padding: 60px 20px;
  background-color: var(--color-white);
}

.benefits h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.benefit-card {
  flex: 1 1 280px;
  max-width: 280px;
  background-color: var(--color-light-gray);
  padding: 32px;
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.benefit-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
}

.benefit-card h3 {
  margin-bottom: 8px;
  color: var(--color-secondary);
}

.benefit-card p {
  font-size: 14px;
  color: var(--color-dark-gray);
  margin-bottom: 0;
}

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

.featured-products,
.products-section {
  padding: 60px 20px;
  background-color: var(--color-white);
}

.featured-products h2,
.products-section h2 {
  text-align: center;
  margin-bottom: 48px;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.product-card {
  flex: 1 1 320px;
  max-width: 380px;
  background-color: var(--color-white);
  border: 1px solid var(--color-medium-gray);
  border-radius: var(--border-radius);
  padding: 32px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}

.product-card h3 {
  color: var(--color-secondary);
  margin-bottom: 8px;
}

.product-card .price {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.product-card p {
  color: var(--color-dark-gray);
  flex-grow: 1;
}

.product-detail {
  background-color: var(--color-light-gray);
  padding: 40px;
  border-radius: var(--border-radius);
  margin-bottom: 32px;
}

.product-detail h2 {
  color: var(--color-secondary);
  margin-bottom: 16px;
}

.product-detail .price {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.product-detail h3 {
  margin-top: 24px;
  margin-bottom: 16px;
}

.product-detail ul {
  margin-bottom: 24px;
  padding-left: 20px;
}

.product-detail li {
  margin-bottom: 8px;
  color: var(--color-dark-gray);
}

.delivery-info,
.warranty {
  font-size: 14px;
  color: var(--color-dark-gray);
  padding: 12px;
  background-color: var(--color-white);
  border-radius: var(--border-radius);
  margin-bottom: 16px;
}

.cta-center {
  text-align: center;
  margin-top: 40px;
}

/* ===========================
   STATS & SOCIAL PROOF
   =========================== */

.social-proof {
  padding: 60px 20px;
  background-color: var(--color-light-gray);
}

.social-proof h2 {
  text-align: center;
  margin-bottom: 48px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 60px;
}

.stat-card {
  flex: 1 1 240px;
  max-width: 280px;
  background-color: var(--color-white);
  padding: 32px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.stat-card h3 {
  font-size: 48px;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.stat-card p {
  font-size: 16px;
  color: var(--color-dark-gray);
  margin-bottom: 0;
}

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

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

.testimonial-card {
  flex: 1 1 380px;
  max-width: 500px;
  background-color: var(--color-white);
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-primary);
}

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

.testimonial-author {
  font-weight: 600;
  color: var(--color-secondary);
  font-style: normal;
  margin-bottom: 0;
}

.testimonials-section,
.testimonials-grid {
  padding: 60px 20px;
}

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

.rating {
  color: #FFB800;
  font-size: 18px;
  margin-top: 8px;
}

.author {
  font-weight: 600;
  color: var(--color-secondary);
  margin-top: 16px;
}

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

.cta-banner,
.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #d62839 100%);
  color: var(--color-white);
  text-align: center;
}

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

.cta-banner p,
.cta-section p {
  font-size: 18px;
  margin-bottom: 24px;
}

.cta-subtext {
  font-size: 14px;
  opacity: 0.9;
}

.guarantee {
  margin-top: 24px;
  font-size: 14px;
  font-style: italic;
}

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

.cta-buttons .btn-primary {
  background-color: var(--color-white);
  color: var(--color-primary);
}

.cta-buttons .btn-primary:hover {
  background-color: var(--color-accent);
}

.cta-buttons .btn-secondary {
  background-color: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.cta-buttons .btn-secondary:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
}

.contact-preview {
  font-size: 14px;
  opacity: 0.9;
}

/* ===========================
   MISSION & VALUES
   =========================== */

.mission,
.story,
.why-choose {
  padding: 60px 20px;
}

.mission h2,
.story h2,
.why-choose h2 {
  text-align: center;
  margin-bottom: 24px;
}

.mission p,
.story p {
  max-width: 800px;
  margin: 0 auto 24px;
  text-align: center;
  color: var(--color-dark-gray);
}

.values-grid,
.achievements,
.reasons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.value-card,
.achievement,
.reason-card {
  flex: 1 1 240px;
  max-width: 280px;
  background-color: var(--color-light-gray);
  padding: 32px;
  border-radius: var(--border-radius);
  text-align: center;
}

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

.achievement h3 {
  font-size: 40px;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.reason-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
}

/* ===========================
   TIPS & TRAINING
   =========================== */

.tips-categories,
.featured-tips,
.workout-plans,
.equipment-guides,
.nutrition-basics {
  padding: 60px 20px;
}

.categories-grid,
.articles-grid,
.plans-grid,
.nutrition-tips {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.category-card,
.article-card,
.plan-card,
.nutrition-tip {
  flex: 1 1 280px;
  max-width: 350px;
  background-color: var(--color-white);
  border: 1px solid var(--color-medium-gray);
  border-radius: var(--border-radius);
  padding: 32px;
  transition: var(--transition);
}

.category-card:hover,
.article-card:hover,
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}

.category-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
}

.category-card h3,
.article-card h3,
.plan-card h3,
.nutrition-tip h3 {
  text-align: center;
  margin-bottom: 12px;
}

.article-card ul,
.plan-card ul {
  margin-top: 16px;
  padding-left: 20px;
}

.plan-meta {
  font-size: 14px;
  color: var(--color-dark-gray);
  font-style: italic;
  margin-bottom: 16px;
}

.guides-list {
  max-width: 800px;
  margin: 0 auto;
}

.guide-item {
  background-color: var(--color-light-gray);
  padding: 32px;
  border-radius: var(--border-radius);
  margin-bottom: 24px;
}

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

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

.contact-methods,
.showroom-info,
.quick-faq {
  padding: 60px 20px;
}

.methods-grid,
.quick-answers {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.method-card,
.answer-item {
  flex: 1 1 240px;
  max-width: 280px;
  background-color: var(--color-light-gray);
  padding: 32px;
  border-radius: var(--border-radius);
  text-align: center;
}

.method-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
}

.method-card h3,
.answer-item h3 {
  margin-bottom: 12px;
}

.response-time {
  text-align: center;
  margin-top: 32px;
  font-weight: 600;
  color: var(--color-primary);
}

.contact-form-section {
  padding: 60px 20px;
  background-color: var(--color-light-gray);
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background-color: var(--color-white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.form-info {
  text-align: center;
  margin-bottom: 32px;
  color: var(--color-dark-gray);
}

.form-notice {
  background-color: var(--color-accent);
  padding: 24px;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--color-primary);
}

.form-notice strong {
  color: var(--color-secondary);
}

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

.detail-block {
  flex: 1 1 280px;
  max-width: 350px;
}

.detail-block h3 {
  color: var(--color-primary);
  margin-bottom: 16px;
}

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

.faq,
.faq-training,
.quick-faq {
  padding: 60px 20px;
  background-color: var(--color-white);
}

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

.faq-item {
  background-color: var(--color-light-gray);
  padding: 24px;
  border-radius: var(--border-radius);
  margin-bottom: 16px;
}

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

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

.buyer-guide {
  background-color: var(--color-accent);
  padding: 40px;
  border-radius: var(--border-radius);
  margin-top: 40px;
}

.buyer-guide h2 {
  color: var(--color-secondary);
  margin-bottom: 24px;
}

.buyer-guide h3 {
  color: var(--color-primary);
  margin-top: 24px;
  margin-bottom: 16px;
}

.buyer-guide ul {
  padding-left: 20px;
}

/* ===========================
   LEGAL PAGES
   =========================== */

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

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--color-white);
  padding: 48px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.content-wrapper h2 {
  color: var(--color-secondary);
  margin-top: 40px;
  margin-bottom: 16px;
}

.content-wrapper h3 {
  color: var(--color-primary);
  margin-top: 24px;
  margin-bottom: 12px;
}

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

.content-wrapper li {
  margin-bottom: 8px;
  color: var(--color-dark-gray);
}

.gdpr-rights,
.how-to-exercise,
.data-processing,
.complaints,
.return-process,
.warranty-info,
.contact-legal,
.contact-dpo {
  padding: 60px 20px;
}

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

.right-card {
  flex: 1 1 280px;
  max-width: 350px;
  background-color: var(--color-light-gray);
  padding: 32px;
  border-radius: var(--border-radius);
}

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

.steps-list {
  max-width: 800px;
  margin: 40px auto 0;
}

.step-item {
  background-color: var(--color-light-gray);
  padding: 24px;
  border-radius: var(--border-radius);
  margin-bottom: 16px;
  border-left: 4px solid var(--color-primary);
}

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

.browser-instructions {
  padding: 60px 20px;
  background-color: var(--color-light-gray);
}

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

.browser-item {
  flex: 1 1 240px;
  max-width: 300px;
  background-color: var(--color-white);
  padding: 24px;
  border-radius: var(--border-radius);
}

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

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

.thank-you-hero {
  padding: 100px 20px;
  background: linear-gradient(135deg, var(--color-accent) 0%, #ffffff 100%);
  text-align: center;
}

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

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #28a745;
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: bold;
  margin: 0 auto 32px;
}

.subheadline {
  font-size: 18px;
  color: var(--color-dark-gray);
  margin-bottom: 16px;
}

.next-steps,
.while-you-wait,
.contact-alternative,
.testimonial-single,
.contact-info {
  padding: 60px 20px;
}

.steps-grid,
.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.step-card,
.suggestion-card {
  flex: 1 1 280px;
  max-width: 350px;
  background-color: var(--color-white);
  border: 1px solid var(--color-medium-gray);
  padding: 32px;
  border-radius: var(--border-radius);
  text-align: center;
}

.suggestion-card h3 {
  margin-bottom: 16px;
}

.phone-large {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 24px 0;
}

.phone-large a {
  color: var(--color-primary);
}

.testimonial-card-large {
  max-width: 700px;
  margin: 40px auto 0;
  background-color: var(--color-white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--color-primary);
}

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

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

footer {
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: 60px 20px 20px;
  margin-top: 80px;
}

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

.footer-column {
  flex: 1 1 240px;
  max-width: 280px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 16px;
}

.footer-column h4 {
  color: var(--color-white);
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-column p,
.footer-column a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.8;
  display: block;
  margin-bottom: 8px;
  transition: var(--transition);
}

.footer-column a:hover {
  color: var(--color-white);
  padding-left: 4px;
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-bottom: 0;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-white);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
  padding: 24px;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 300px;
  font-size: 14px;
  color: var(--color-dark-gray);
}

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

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-accept {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.cookie-accept:hover {
  background-color: #d62839;
}

.cookie-reject {
  background-color: var(--color-medium-gray);
  color: var(--color-secondary);
}

.cookie-reject:hover {
  background-color: var(--color-dark-gray);
  color: var(--color-white);
}

.cookie-settings {
  background-color: transparent;
  color: var(--color-secondary);
  border: 1px solid var(--color-secondary);
}

.cookie-settings:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

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

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

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

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--color-dark-gray);
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal h2 {
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 16px;
  background-color: var(--color-light-gray);
  border-radius: var(--border-radius);
}

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

.cookie-category h3 {
  margin-bottom: 0;
  font-size: 16px;
}

.cookie-toggle {
  position: relative;
  width: 48px;
  height: 24px;
}

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

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-medium-gray);
  border-radius: 24px;
  transition: var(--transition);
}

.cookie-slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: var(--color-white);
  border-radius: 50%;
  transition: var(--transition);
}

input:checked + .cookie-slider {
  background-color: var(--color-primary);
}

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

input:disabled + .cookie-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

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

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

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

@media (min-width: 768px) {
  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 40px;
  }

  .main-nav {
    display: flex;
  }

  .header-contact {
    display: flex;
    align-items: center;
  }

  .mobile-menu-toggle {
    display: none;
  }

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

  .benefits-grid {
    justify-content: space-between;
  }

  .benefit-card {
    flex: 1 1 220px;
  }

  .product-grid {
    justify-content: space-between;
  }

  .stats-grid {
    justify-content: space-between;
  }

  .footer-content {
    justify-content: space-between;
  }

  .footer-column {
    flex: 0 1 auto;
  }

  .cookie-content {
    flex-wrap: nowrap;
  }

  .cookie-text {
    flex: 1;
  }

  .cookie-buttons {
    flex-wrap: nowrap;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 60px 20px;
  }

  .hero {
    padding: 120px 20px;
  }

  .benefits,
  .featured-products,
  .social-proof {
    padding: 80px 20px;
  }

  .benefit-card {
    flex: 1 1 240px;
  }
}

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

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

.mb-0 {
  margin-bottom: 0;
}

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-32 {
  margin-bottom: 32px;
}

/* ===========================
   ANIMATIONS
   =========================== */

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

.fade-in {
  animation: fadeIn 0.6s ease;
}

/* ===========================
   ACCESSIBILITY
   =========================== */

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

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

@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .cta-button,
  .btn-primary,
  .btn-secondary {
    display: none;
  }

  body {
    font-size: 12pt;
  }

  h1 {
    font-size: 24pt;
  }

  h2 {
    font-size: 18pt;
  }

  .container {
    max-width: 100%;
  }
}