/* ===========================
   Bioherby.de - CSS Stylesheet
   Grünes Bio-Design für Deutschland
   =========================== */

:root {
  /* Dunkles Grün Farbpalette */
  --primary-color: #0d5c3a;
  --secondary-color: #084230;
  --accent-color: #10754a;
  --dark-green: #052e1f;
  --light-green: #1a7a4f;
  --text-dark: #1a2e23;
  --text-light: #4a5f55;
  --bg-light: #f0f5f2;
  --bg-white: #fff;
  --border-color: #c1d4ca;
  --success-color: #0d5c3a;
  --error-color: #c93b3b;

  /* Abstände */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;

  /* Typografie */
  --font-primary: "Montserrat", -apple-system, blinkmacsystemfont, "Segoe UI",
    roboto, "Helvetica Neue", arial, sans-serif;
  --font-heading: "Montserrat", -apple-system, blinkmacsystemfont, sans-serif;

  /* Übergänge */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Schatten */
  --shadow-sm: 0 1px 3px rgb(0 0 0 / 12%);
  --shadow-md: 0 4px 6px rgb(0 0 0 / 10%);
  --shadow-lg: 0 10px 25px rgb(0 0 0 / 15%);
  --shadow-xl: 0 20px 40px rgb(0 0 0 / 20%);
}

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

html {
  scroll-behavior: smooth;
}

/* Skip Link for Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary-color);
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 0 0 4px;
  z-index: 10000;
  font-weight: 600;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 0;
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

/* Visually Hidden (for screen readers only) */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;

  /* clip: rect(0, 0, 0, 0); deprecated - use clip-path instead */
  white-space: nowrap;
  border: 0;
}

body {
  font-family: var(--font-primary);
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 400;
}

img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.5px;
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section-title {
  text-align: center;
  font-size: 3rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -1px;
  background: linear-gradient(135deg, var(--primary-color), var(--dark-green));
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 3rem;
  font-weight: 400;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ===========================
   Kopfzeile & Navigation
   =========================== */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgb(245 252 248 / 98%);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgb(0 0 0 / 8%);
  z-index: 1000;
  transition: all var(--transition-normal);
  border-bottom: 3px solid white;
}

header.scrolled {
  box-shadow: 0 4px 20px rgb(13 92 58 / 15%);
  background: rgb(240 250 245 / 99%);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem var(--spacing-md);
  max-width: 1400px;
  margin: 0 auto;
}

.logo h1 {
  font-size: 1.8rem;
  background: linear-gradient(135deg, var(--primary-color), var(--dark-green));
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.logo img {
  height: 60px;
  width: auto;
  display: block;
  transition: transform var(--transition-fast);
}

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

.nav-links {
  display: flex;
  list-style: none;
  gap: var(--spacing-md);
  align-items: center;
}

.nav-links a {
  color: var(--text-dark);
  font-weight: 600;
  font-family: var(--font-heading);
  padding: 0.7rem 1.3rem;
  border-radius: 12px;
  transition: all var(--transition-fast);
  text-decoration: none;
  position: relative;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.nav-links a:hover,
.nav-links a.active {
  background: linear-gradient(135deg, var(--primary-color), var(--dark-green));
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgb(13 92 58 / 30%);
}

/* Dropdown Menu Styles */
.nav-links .has-dropdown {
  position: relative;
}

.nav-links .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 8px 16px rgb(0 0 0 / 10%);
  border-radius: 8px;
  min-width: 200px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  z-index: 1000;
  list-style: none;
}

.nav-links .has-dropdown:hover .dropdown {
  display: block;
}

.nav-links .dropdown li {
  width: 100%;
}

.nav-links .dropdown a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-dark);
  border-radius: 0;
  width: 100%;
  text-align: left;
}

.nav-links .dropdown a:hover {
  background: var(--light-bg);
  color: var(--primary-color);
  transform: none;
}

.cart-icon {
  margin-left: var(--spacing-sm);
}

.cart-icon a {
  color: var(--primary-color);
  font-size: 1.2rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

[id="cart-count"] {
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  padding: 0.2rem 0.5rem;
  font-size: 0.8rem;
  min-width: 1.5rem;
  text-align: center;
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.burger div,
.burger .line1,
.burger .line2,
.burger .line3 {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  transition: all var(--transition-normal);
  border-radius: 3px;
}

/* ===========================
   Hero Bereich
   =========================== */

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(
      135deg,
      rgb(13 92 58 / 10%) 0%,
      rgb(8 66 48 / 15%) 100%
    ),
    url("/assets/new/logo-bioherby-main_jiaogulan-tee-farm.png") center center /
      cover no-repeat;
  overflow: hidden;
  padding: 120px 20px 80px;
}

.hero-content {
  text-align: center;
  color: #0d5c3a;
  z-index: 2;
  max-width: 1100px;
  padding: 4rem;
  background: linear-gradient(
    135deg,
    rgb(0 64 0 / 50%) 0%,
    rgb(0 80 0 / 40%) 100%
  );
  border-radius: 32px;
  backdrop-filter: blur(30px) saturate(180%);
  border: 2px solid rgb(255 255 255 / 20%);
  box-shadow: 0 25px 80px rgb(0 0 0 / 40%), 0 10px 30px rgb(13 92 58 / 30%),
    inset 0 1px 0 rgb(255 255 255 / 10%);
  animation: fade-in-scale 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
}

.hero h1 {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  animation: fade-in-up 1s ease;
  font-family: var(--font-heading);
  text-shadow: 2px 4px 20px rgb(0 0 0 / 50%), 0 0 40px rgb(255 255 255 / 20%);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: white;
  position: relative;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  animation: fade-in-up 1s ease 0.2s both;
  text-shadow: 1px 2px 8px rgb(0 0 0 / 30%);
  line-height: 1.8;
  font-weight: 700;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: white;
}

.btn-primary {
  background: linear-gradient(135deg, #fff 0%, #f0f5f2 100%);
  color: var(--primary-color);
  border: none;
  padding: 1.4rem 3.8rem;
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 12px 35px rgb(0 0 0 / 35%), 0 5px 15px rgb(255 255 255 / 10%);
  animation: fade-in-up 1s ease 0.4s both;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-family: var(--font-heading);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 20px 50px rgb(0 0 0 / 45%), 0 0 30px rgb(13 92 58 / 30%);
  background: linear-gradient(135deg, #fff 0%, #e8f5e9 100%);
}

.btn-primary.large {
  padding: 1.2rem 3rem;
  font-size: 1.2rem;
}

.btn {
  background: linear-gradient(135deg, var(--primary-color), var(--dark-green));
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  box-shadow: 0 4px 12px rgb(13 92 58 / 30%);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-size: 0.95rem;
  font-family: var(--font-heading);
}

.btn:hover {
  background: linear-gradient(135deg, var(--dark-green), var(--primary-color));
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 6px 18px rgb(13 92 58 / 35%);
}

/* Schwebende Formen Animation */
.hero-animation {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.floating-shapes {
  position: relative;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  animation: float 20s infinite ease-in-out;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: white;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: white;
  top: 60%;
  right: 15%;
  animation-delay: 5s;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: white;
  bottom: 20%;
  left: 50%;
  animation-delay: 10s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  25% {
    transform: translateY(-20px) rotate(5deg);
  }

  50% {
    transform: translateY(-40px) rotate(-5deg);
  }

  75% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in-scale {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* ===========================
   Kategorien Bereich
   =========================== */

.categories {
  padding: 7rem 0;
  background: linear-gradient(180deg, #f5fcf8 0%, #e8f5ed 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--dark-green);
}

.categories::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: radial-gradient(
    ellipse at top,
    rgb(13 92 58 / 3%) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.categories h2 {
  text-align: center;
  font-size: 3.2rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-weight: 800;
  text-shadow: 0 2px 4px rgb(0 0 0 / 5%);
  position: relative;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.category-card {
  background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
  padding: 3rem;
  border-radius: 28px;
  border: 1px solid rgb(13 92 58 / 12%);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgb(0 0 0 / 8%), 0 2px 8px rgb(13 92 58 / 5%);
  display: flex;
  flex-direction: column;
}

.category-card .btn {
  margin-top: auto;
}

.category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--light-green));
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.category-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 60px rgb(13 92 58 / 20%), 0 0 40px rgb(13 92 58 / 10%);
  border-color: var(--primary-color);
  background: linear-gradient(135deg, #fff 0%, #f0f5f2 100%);
}

.category-card:hover::before {
  transform: scaleX(1);
}

.category-icon {
  font-size: 5rem;
  margin-bottom: var(--spacing-sm);
  filter: drop-shadow(0 6px 12px rgb(13 92 58 / 25%));
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.category-card:hover .category-icon {
  transform: scale(1.15) rotate(5deg) translateY(-5px);
  filter: drop-shadow(0 8px 16px rgb(13 92 58 / 35%));
}

.category-card h3 {
  color: var(--text-dark);
  font-size: 1.6rem;
  margin-bottom: 1rem;
  font-weight: 700;
  font-family: var(--font-heading);
  text-align: center;
}

.category-card ul {
  list-style: none;
  padding: 0;
  margin: var(--spacing-sm) 0;
  text-align: center;
}

.category-card li {
  padding: 0.5rem 0;
  color: var(--text-light);
}

.category-card li::before {
  content: "✓ ";
  color: var(--primary-color);
  font-weight: bold;
  margin-right: 0.5rem;
  font-size: 1.2rem;
  text-shadow: 0 2px 4px rgb(13 92 58 / 20%);
}

/* ===========================
   Ausgewählte Produkte
   =========================== */

.featured-products {
  /* Added extra outer spacing above the separating line */
  margin-top: 4rem; /* creates more space BEFORE the top line */
  padding: 6rem 0; /* inner spacing unchanged */
  background: linear-gradient(180deg, #fff 0%, #f5fcf8 50%, #fff 100%);
  border-top: 3px solid var(--dark-green);
  border-bottom: 3px solid var(--dark-green);
  position: relative;
}

.featured-products::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    rgb(13 92 58 / 3%) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.featured-products .container {
  position: relative;
  z-index: 1;
}

.featured-products h2 {
  text-align: center;
  font-size: 3.2rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-weight: 800;
  text-shadow: 0 2px 4px rgb(0 0 0 / 5%);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-bottom: var(--spacing-md);
}

.product-card {
  background: linear-gradient(145deg, #fff 0%, #f8fffe 50%, #f5fcf8 100%);
  padding: 3.5rem;
  border-radius: 28px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 12px 40px rgb(13 92 58 / 15%), 0 4px 12px rgb(0 0 0 / 5%),
    inset 0 -1px 0 rgb(13 92 58 / 5%);
  border: 2px solid rgb(13 92 58 / 12%);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(15px);
  min-height: 560px; /* increased to accommodate larger images */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgb(13 92 58 / 6%) 0%,
    transparent 50%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--primary-color) 50%,
    var(--light-green) 100%
  );
  transform: scaleX(0);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgb(13 92 58 / 30%);
}

.product-card:hover {
  transform: translateY(-16px) scale(1.03);
  box-shadow: 0 32px 64px rgb(13 92 58 / 25%), 0 12px 24px rgb(0 0 0 / 10%),
    inset 0 2px 0 rgb(255 255 255 / 90%), 0 0 0 4px rgb(13 92 58 / 5%);
  border-color: var(--primary-color);
  background: linear-gradient(145deg, #fff 0%, #f0fdf4 50%, #e8f5ed 100%);
}

.product-card:hover::after {
  opacity: 1;
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-image {
  font-size: 5.5rem; /* slight scale for icon-based products */
  margin-bottom: 2.2rem;
  height: 320px; /* enlarged from 260px */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(
    circle,
    rgb(13 92 58 / 5%) 0%,
    rgb(13 92 58 / 1.5%) 55%,
    transparent 72%
  );
  border-radius: 22px;
  position: relative;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: inset 0 2px 10px rgb(13 92 58 / 6%);
}

.product-card:hover .product-image {
  transform: scale(1.1);
  box-shadow: inset 0 2px 12px rgb(13 92 58 / 8%);
}

.product-image img {
  max-width: 95%;
  max-height: 95%;
  object-fit: contain;
  filter: drop-shadow(0 5px 14px rgb(13 92 58 / 18%));
  transition: filter 0.35s ease, transform 0.4s ease;
}

.product-card:hover .product-image img {
  filter: drop-shadow(0 10px 26px rgb(13 92 58 / 28%));
  transform: translateY(-4px) scale(1.03);
}

.product-card h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1.35rem;
  text-align: center;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.3px;
  transition: color 0.3s ease;
}

.product-card:hover h3 {
  color: var(--primary-color);
}

.price {
  font-size: 2rem;
  color: var(--primary-color);
  font-weight: 900;
  margin: 1.2rem 0;
  padding: 0.8rem 1.5rem;
  background: linear-gradient(
    135deg,
    rgb(13 92 58 / 8%) 0%,
    rgb(13 92 58 / 4%) 100%
  );
  border-radius: 12px;
  display: inline-block;
  border: 2px solid rgb(13 92 58 / 15%);
  letter-spacing: -0.5px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .price {
  background: linear-gradient(
    135deg,
    rgb(13 92 58 / 12%) 0%,
    rgb(13 92 58 / 6%) 100%
  );
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.add-to-cart {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--dark-green) 100%
  );
  color: white;
  border: none;
  padding: 1.2rem 2rem;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  font-weight: 700;
  width: 100%;
  box-shadow: 0 6px 20px rgb(13 92 58 / 30%),
    inset 0 1px 0 rgb(255 255 255 / 20%);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.add-to-cart::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgb(255 255 255 / 20%);
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

.add-to-cart:hover::before {
  width: 300px;
  height: 300px;
}

.add-to-cart:hover {
  background: linear-gradient(135deg, var(--dark-green) 0%, #052e1f 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgb(13 92 58 / 40%),
    inset 0 1px 0 rgb(255 255 255 / 30%);
}

.add-to-cart:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgb(13 92 58 / 30%);
}

.shipping-note {
  text-align: left;
  color: var(--text-light);
  font-style: italic;
  margin-top: var(--spacing-md);
}

/* ===========================
   Qualitäts-Info Bereich
   =========================== */

.quality-info {
  padding: var(--spacing-xl) 0;
  background: var(--bg-white);
  border-bottom: 3px solid var(--dark-green);
}

.quality-info h2 {
  text-align: center;
  font-size: 3.2rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-weight: 800;
  text-shadow: 0 2px 4px rgb(0 0 0 / 5%);
}

.quality-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
  text-align: center;
}

.quality-features {
  list-style: none;
  padding: 0;
  margin-top: var(--spacing-md);
}

.quality-features li {
  padding: 0.5rem 0;
  font-size: 1.1rem;
  color: var(--primary-color);
  font-weight: 500;
}

.quality-badges {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.badge {
  background: linear-gradient(135deg, var(--primary-color), var(--dark-green));
  color: white;
  padding: var(--spacing-sm);
  border-radius: 12px;
  text-align: center;
  font-weight: bold;
  font-size: 1.1rem;
}

/* ===========================
   Vorteile & Kundenmeinungen
   =========================== */

.benefits-testimonials {
  padding: var(--spacing-xl) 0;
  background: var(--bg-light);
  border-bottom: 3px solid var(--dark-green);
}

.benefits-testimonials .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
}

.benefits h2,
.testimonials h3 {
  font-size: 2rem;
  margin-bottom: var(--spacing-md);
  font-family: var(--font-heading);
  text-align: center;
}

.benefits ul {
  list-style: none;
  padding: 0;
}

.benefits li {
  padding: 0.7rem 0;
  font-size: 1.1rem;
}

.testimonial-card {
  background: var(--bg-white);
  padding: var(--spacing-md);
  border-radius: 12px;
  margin-bottom: var(--spacing-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.testimonial-card blockquote {
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
}

.testimonial-card figcaption {
  color: var(--text-light);
  font-weight: 500;
}

.disclaimer-text {
  font-size: 0.85rem;
  color: #666;
  margin-top: 1.5rem;
  text-align: center;
}

/* ===========================
   Jiaogulan Origin Section
   =========================== */

.jiaogulan-origin {
  padding: 6rem 0;
  background: linear-gradient(180deg, #f8fcfa 0%, #fff 100%);
}

.origin-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.origin-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.origin-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.highlight-box {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgb(0 0 0 / 8%);
  border-left: 4px solid var(--primary-color);
  transition: transform var(--transition-normal);
}

.highlight-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgb(0 0 0 / 12%);
}

.highlight-box h3 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.highlight-box p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0;
}

.blog-links {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e0e0e0;
}

.blog-links a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.blog-links a:hover {
  color: var(--dark-green);
  text-decoration: underline;
}

/* ===========================
   Why Bioherby Section
   =========================== */

.why-bioherby {
  padding: 6rem 0;
  background: linear-gradient(180deg, #e8f5ed 0%, #f5fcf8 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.why-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgb(0 0 0 / 8%);
  transition: all var(--transition-normal);
  text-align: center;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgb(0 0 0 / 15%);
}

.why-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.why-card h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.why-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
}

.certification-proof {
  margin-top: 3rem;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  text-align: center;
  border: 2px solid var(--primary-color);
}

.highlight-text {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.shipping-highlight {
  font-size: 1.2rem;
  color: var(--dark-green);
  font-weight: 700;
  margin: 0;
}

/* ===========================
   Jiaogulan Preparation Section
   =========================== */

.jiaogulan-preparation {
  padding: 6rem 0;
  background: linear-gradient(180deg, #fff 0%, #f8fcfa 100%);
}

.preparation-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin: 3rem 0;
}

.preparation-steps,
.preparation-tips {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgb(0 0 0 / 8%);
}

.preparation-steps h3,
.preparation-tips h3 {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.prep-list,
.tips-list {
  list-style: none;
  padding: 0;
  counter-reset: prep-counter;
}

.prep-list li {
  counter-increment: prep-counter;
  margin-bottom: 1.5rem;
  padding-left: 3rem;
  position: relative;
  line-height: 1.7;
}

.prep-list li::before {
  content: counter(prep-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.tips-list li {
  margin-bottom: 1.2rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.7;
}

.tips-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.2rem;
}

.jiaogulan-benefits {
  margin-top: 4rem;
  padding: 3rem;
  background: linear-gradient(135deg, #e8f5ed 0%, #f5fcf8 100%);
  border-radius: 16px;
}

.jiaogulan-benefits h3 {
  font-size: 1.6rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-align: center;
}

.jiaogulan-benefits > p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.benefit-item {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  font-size: 0.95rem;
  line-height: 1.6;
  box-shadow: 0 2px 8px rgb(0 0 0 / 6%);
  transition: transform var(--transition-fast);
}

.benefit-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgb(0 0 0 / 10%);
}

/* ===========================
   Newsletter Section
   =========================== */

.newsletter-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, #e8f5ed 0%, #f5fcf8 100%);
  text-align: center;
  border-bottom: 3px solid var(--dark-green);
}

.newsletter-section p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-section .newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
  justify-content: center;
}

.newsletter-section .newsletter-form input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: 2px solid rgb(13 92 58 / 20%);
  border-radius: 12px;
  font-size: 1rem;
  transition: all var(--transition-normal);
}

.newsletter-section .newsletter-form input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgb(13 92 58 / 10%);
}

.newsletter-section .newsletter-form button {
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--dark-green));
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.newsletter-section .newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgb(13 92 58 / 30%);
}

/* ===========================
   CTA Bereich
   =========================== */

.cta {
  padding: var(--spacing-xl) 0;
  background: linear-gradient(135deg, var(--primary-color), var(--dark-green));
  color: white;
  text-align: center;
  border-bottom: 3px solid var(--dark-green);
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
  font-family: var(--font-heading);
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-lg);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgb(255 255 255 / 30%);
}

/* ===========================
   Fußzeile
   =========================== */

footer {
  background: var(--text-dark);
  color: white;
  padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: var(--spacing-sm);
  color: var(--primary-color);
  text-align: left;
}

.footer-socials-title {
  margin-top: 2rem;
}

.footer-section p,
.footer-section a {
  color: #a0aec0;
  text-decoration: none;
  line-height: 1.8;
  text-align: left;
}

.footer-section a:hover {
  color: white;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.footer-section li {
  margin-bottom: var(--spacing-xs);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.newsletter-form input {
  padding: 0.7rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 0.9rem;
}

.newsletter-form button {
  padding: 0.7rem;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
}

.newsletter-form button:hover {
  background: var(--dark-green);
}

.social-links {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-sm);
  font-size: 0.9rem;
}

.social-links a {
  transition: transform var(--transition-fast);
}

.social-links a:hover {
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: left;
  padding-top: var(--spacing-md);
  border-top: 1px solid rgb(255 255 255 / 10%);
  color: #a0aec0;
  font-size: 0.9rem;
}

/* ===========================
   Nach-oben-scrollen Button
   =========================== */

.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: linear-gradient(135deg, var(--primary-color), var(--dark-green));
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-lg);
  z-index: 999;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

/* ===========================
   Responsive Design
   =========================== */

@media screen and (width <= 968px) {
  .quality-content,
  .benefits-testimonials .container {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.5rem;
  }
}

@media screen and (width <= 768px) {
  .nav-links {
    position: fixed;
    right: 0;
    top: 70px;
    background: var(--bg-white);
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    padding: var(--spacing-md);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--transition-normal);
    border-radius: 0 0 0 16px;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .burger {
    display: flex;
  }

  .burger.active .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .burger.active .line2 {
    opacity: 0;
  }

  .burger.active .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (width <= 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .categories h2,
  .featured-products h2,
  .quality-info h2 {
    font-size: 2rem;
  }
}

/* ===========================
   Category Pages
   =========================== */

/* Breadcrumb */
.breadcrumb-container {
  background: var(--light-bg);
  padding: 1rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.breadcrumb {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--dark-green);
  text-decoration: underline;
}

/* Category Header */
.category-header {
  background: linear-gradient(
    135deg,
    rgb(240 245 242 / 30%) 0%,
    rgb(255 255 255 / 50%) 100%
  );
  color: var(--text-dark);
  padding: 4rem 0 3rem;
  text-align: left;
}

.category-header-image {
  margin-bottom: 2rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.header-field-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 500px;
  border-radius: 16px;
}

.category-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary-color), var(--dark-green));
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.category-description {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 0 2rem;
  line-height: 1.6;
  color: var(--text-dark);
  font-weight: 500;
}

.category-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* DUPLICATE REMOVED: .badge { */

/* DUPLICATE REMOVED: background: linear-gradient(135deg, var(--primary-color), var(--dark-green)); */

/* DUPLICATE REMOVED: color: white; */

/* DUPLICATE REMOVED: padding: 0.6rem 1.2rem; */

/* DUPLICATE REMOVED: border-radius: 25px; */

/* DUPLICATE REMOVED: font-size: 0.95rem; */

/* DUPLICATE REMOVED: font-weight: 600; */

/* DUPLICATE REMOVED: box-shadow: 0 4px 12px rgb(13 92 58 / 25%); */

/* DUPLICATE REMOVED: transition: all var(--transition-normal); */

/* DUPLICATE REMOVED: } */

.badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgb(13 92 58 / 35%);
}

/* Subcategories Section */
.subcategories {
  padding: 4rem 0;
}

.subcategories h2 {
  text-align: left;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-dark);
}

.subcategory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.subcategory-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal),
    box-shadow var(--transition-normal);
  text-align: left;
}

.subcategory-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.subcategory-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.subcategory-image {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgb(13 92 58 / 20%));
  transition: all var(--transition-normal);
}

.subcategory-card:hover .subcategory-image {
  transform: scale(1.05);
  filter: drop-shadow(0 6px 16px rgb(13 92 58 / 30%));
}

.subcategory-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.subcategory-card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.subcategory-card .features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
  text-align: left;
}

.subcategory-card .features li {
  padding: 0.5rem 0;
  color: var(--text-dark);
  border-bottom: 1px solid var(--light-bg);
}

.subcategory-card .features li:last-child {
  border-bottom: none;
}

/* Info Section */
.info-section {
  background: var(--light-bg);
  padding: 4rem 0;
}

.info-section h2 {
  text-align: left;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.info-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.info-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.info-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Product Category Page */
.product-category {
  padding: 2rem 0;
}

.product-hero {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 3rem;
  align-items: center;
}

.placeholder-image {
  font-size: 10rem;
  text-align: center;
  background: var(--light-bg);
  padding: 3rem;
  border-radius: 16px;
}

.product-hero-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  object-fit: cover;
  max-width: 600px;
  margin: 0 auto;
}

/* DUPLICATE REMOVED: .product-image { */

/* DUPLICATE REMOVED: display: flex; */

/* DUPLICATE REMOVED: align-items: center; */

/* DUPLICATE REMOVED: justify-content: center; */

/* DUPLICATE REMOVED: } */

.product-info .lead {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.product-info .badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.product-info .badge {
  background: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
}

/* DUPLICATE REMOVED: .product-grid { */

/* DUPLICATE REMOVED: display: grid; */

/* DUPLICATE REMOVED: grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */

/* DUPLICATE REMOVED: gap: 2rem; */

/* DUPLICATE REMOVED: margin-bottom: 3rem; */

/* DUPLICATE REMOVED: } */

/* DUPLICATE REMOVED: .product-card { */

/* DUPLICATE REMOVED: background: white; */

/* DUPLICATE REMOVED: padding: 2rem; */

/* DUPLICATE REMOVED: border-radius: 16px; */

/* DUPLICATE REMOVED: box-shadow: var(--shadow-md); */

/* DUPLICATE REMOVED: transition: transform var(--transition-normal); */

/* DUPLICATE REMOVED: position: relative; */

/* DUPLICATE REMOVED: } */

/* DUPLICATE REMOVED: .product-card:hover { */

/* DUPLICATE REMOVED: transform: translateY(-5px); */

/* DUPLICATE REMOVED: box-shadow: var(--shadow-lg); */

/* DUPLICATE REMOVED: } */

.product-card.featured {
  border: 2px solid var(--primary-color);
}

.bestseller-badge {
  position: absolute;
  top: -10px;
  right: 10px;
  background: var(--accent-color);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* DUPLICATE REMOVED: .product-card h3 { */

/* DUPLICATE REMOVED: font-size: 1.4rem; */

/* DUPLICATE REMOVED: margin-bottom: 1rem; */

/* DUPLICATE REMOVED: color: var(--text-dark); */

/* DUPLICATE REMOVED: } */

.product-card .price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.product-card .price-per-unit,
.product-card .size {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.product-card .save {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.product-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.product-card ul li {
  padding: 0.5rem 0;
  color: var(--text-dark);
  border-bottom: 1px solid var(--light-bg);
}

.product-card ul li:last-child {
  border-bottom: none;
}

.product-details {
  margin: 4rem 0;
}

.product-details h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: left;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.detail-card {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: 12px;
}

.detail-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.detail-card p,
.detail-card ul {
  color: var(--text-dark);
  line-height: 1.6;
}

.detail-card ul {
  list-style: none;
  padding: 0;
}

.detail-card ul li {
  padding: 0.4rem 0;
}

.notice-box,
.tips-box {
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.notice-box h3,
.tips-box h2 {
  color: #92400e;
  margin-bottom: 1rem;
}

.notice-box p,
.tips-box ul {
  color: #78350f;
  line-height: 1.6;
}

.tips-box ul {
  list-style: none;
  padding: 0;
}

.tips-box ul li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.tips-box ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #f59e0b;
  font-weight: bold;
}

/* Brewing Guide */
.brewing-guide {
  background: var(--light-bg);
  padding: 3rem;
  border-radius: 16px;
  margin: 3rem 0;
}

.brewing-guide h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.brewing-grid,
.brewing-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.brewing-card,
.step {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.brewing-card h3,
.step h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.brewing-card ul,
.step p {
  color: var(--text-dark);
  line-height: 1.8;
}

.brewing-card ul {
  list-style: none;
  padding: 0;
}

.brewing-card ul li {
  padding: 0.4rem 0;
}

/* Growing Guide */
.growing-guide {
  margin: 4rem 0;
}

.growing-guide h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.guide-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.guide-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.guide-card ul {
  list-style: none;
  padding: 0;
}

.guide-card ul li {
  padding: 0.4rem 0;
  color: var(--text-dark);
  line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
  margin: 4rem 0;
}

.benefits-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

/* Tea Grades Table */
.grade-system {
  margin: 4rem 0;
}

.grade-system h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.tea-grades {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.tea-grades thead {
  background: var(--primary-color);
  color: white;
}

.tea-grades th,
.tea-grades td {
  padding: 1rem;
  text-align: left;
}

.tea-grades tbody tr {
  border-bottom: 1px solid var(--light-bg);
}

.tea-grades tbody tr:hover {
  background: var(--light-bg);
}

.tea-grades .note {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Footer for category pages */

/* DUPLICATE REMOVED: footer { */

/* DUPLICATE REMOVED: background: var(--text-dark); */

/* DUPLICATE REMOVED: color: white; */

/* DUPLICATE REMOVED: padding: 2rem 0; */

/* DUPLICATE REMOVED: text-align: center; */

/* DUPLICATE REMOVED: margin-top: 4rem; */

/* DUPLICATE REMOVED: } */

footer a {
  color: var(--primary-color);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Responsive for category pages */
@media screen and (width <= 768px) {
  .category-header h1 {
    font-size: 2rem;
  }

  .product-hero {
    grid-template-columns: 1fr;
  }

  .placeholder-image {
    font-size: 6rem;
    padding: 2rem;
  }

  .subcategory-grid,
  .product-grid,
  .info-grid,
  .details-grid,
  .brewing-grid,
  .brewing-steps,
  .guide-grid {
    grid-template-columns: 1fr;
  }

  .nav-links .dropdown {
    position: static;
    box-shadow: none;
    padding-left: 1rem;
    margin-top: 0.5rem;
    background: var(--light-bg);
  }

  .nav-links .has-dropdown:hover .dropdown {
    display: none;
  }

  .nav-links .has-dropdown.active .dropdown {
    display: block;
  }
}

/* Intro Story Section */
.intro-story {
  background: linear-gradient(180deg, #e8f5ed 0%, #f5fcf8 100%);
  padding: 6rem 0;
  margin: 0;
  border-bottom: 3px solid var(--dark-green);
}

.intro-story .container {
  max-width: 1000px;
}

.intro-image-hero {
  margin-bottom: 2rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-jiaogulan-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 16px;
}

.intro-content h3 {
  color: var(--primary-color);
  font-size: 1.7rem;
  margin-top: 2.5rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
  font-family: var(--font-heading);
  text-align: center;
}

.intro-highlight {
  background: linear-gradient(
    135deg,
    rgb(255 255 255 / 95%) 0%,
    rgb(240 245 242 / 90%) 100%
  );
  padding: 1.8rem;
  border-left: 5px solid var(--primary-color);
  border-radius: 12px;
  font-size: 1.15rem;

  /* ===========================
   Certification Logos Section
   =========================== */

  .certification-logos {
    background: white;
    padding: 6rem 0;
    margin: 0;
    text-align: center;
    border-bottom: 3px solid var(--dark-green);
  }

  .certification-logos h2 {
    background: linear-gradient(
      135deg,
      var(--primary-color),
      var(--dark-green)
    );
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    line-height: 1.3;
    font-weight: 700;
  }

  .logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    justify-items: center;
  }

  .logo-item {
    text-align: center;
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgb(0 0 0 / 5%);
    transition: all var(--transition-normal);
    border: 1px solid rgb(13 92 58 / 5%);
    width: 100%;
    max-width: 280px;
  }

  .logo-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgb(13 92 58 / 12%);
    border-color: var(--primary-color);
    background: white;
  }

  .logo-item img {
    width: auto;
    max-width: 200px;
    height: auto;
    margin: 0 auto 1.5rem;
    display: block;
    border-radius: 8px;
    object-fit: contain;
  }

  .logo-item p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.4;
    font-family: var(--font-heading);
    text-align: center;
  }

  .single-certificate {
    text-align: center;
    padding: 3rem;
    padding-bottom: 10rem;
    max-width: 900px;
    margin: 0 auto;
    border-bottom: 3px solid var(--dark-green);
  }

  .single-certificate img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgb(13 92 58 / 15%);
    transition: all var(--transition-normal);
  }

  .single-certificate img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 32px rgb(13 92 58 / 25%);
  }

  /* Legacy styles */
  margin-bottom: 2rem;
  box-shadow: 0 4px 16px rgb(13 92 58 / 12%);
}

.intro-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-family: var(--font-primary);
  text-align: center;
}

.quality-note {
  background: #fff3e0;
  border-left: 4px solid #ff9800;
  padding: 1.2rem;
  border-radius: 8px;
  font-size: 1rem;
}

.greeting {
  text-align: center;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--secondary-color);
  margin-top: 2.5rem;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.greeting strong {
  color: var(--primary-color);
  font-size: 1.2rem;
  font-style: normal;
}

/* Comprehensive Intro Styles for Category Pages */
.comprehensive-intro {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  margin-bottom: 3rem;
  text-align: center;
}

.comprehensive-intro .lead {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--light-bg);
  text-align: center;
}

.comprehensive-intro h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.comprehensive-intro p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: center;
}

.comprehensive-intro em {
  color: var(--secondary-color);
  font-style: italic;
}

.quality-guarantee {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  font-size: 1.1rem;
  margin-top: 2rem;
  box-shadow: var(--shadow-sm);
}

.quality-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.quality-image-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.cert-image,
.book-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1rem;
}

.image-caption {
  font-size: 0.95rem;
  color: var(--secondary-color);
  font-weight: 500;
  margin: 0;
}

/* Product Showcase Styles */
.product-showcase {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 2px solid rgb(13 92 58 / 10%);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 2rem;
}

.showcase-item {
  text-align: center;
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgb(13 92 58 / 10%);
  transition: all var(--transition-normal);
  border: 2px solid rgb(13 92 58 / 8%);
}

.showcase-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgb(13 92 58 / 20%);
  border-color: var(--primary-color);
}

.showcase-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  transition: transform var(--transition-normal);
}

.showcase-item:hover .showcase-image {
  transform: scale(1.05);
}

.showcase-caption {
  font-size: 1.1rem;
  color: var(--primary-color);
  font-weight: 600;
  margin: 0;
}

@media screen and (width <= 768px) {
  .intro-story {
    padding: 2rem 0;
  }

  .intro-content h2 {
    font-size: 1.6rem;
  }

  .intro-content h3 {
    font-size: 1.3rem;
  }

  .intro-content p,
  .comprehensive-intro p {
    font-size: 1rem;
  }

  .comprehensive-intro {
    padding: 1.5rem;
  }
}

/* ===========================
   FAQ Section Styles
   =========================== */

.faq-section {
  background: linear-gradient(
    135deg,
    rgb(240 245 242 / 50%) 0%,
    rgb(255 255 255 / 80%) 100%
  );
  padding: 5rem 0;
  margin: 3rem 0 0;
}

.faq-section h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary-color), var(--dark-green));
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.faq-intro {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 3rem;
}

.faq-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background: white;
  border-radius: 12px;
  border: 2px solid rgb(13 92 58 / 10%);
  overflow: hidden;
  transition: all var(--transition-normal);
  box-shadow: 0 2px 8px rgb(13 92 58 / 5%);
}

.faq-item:hover {
  border-color: var(--primary-color);
  box-shadow: 0 4px 16px rgb(13 92 58 / 12%);
  transform: translateY(-2px);
}

.faq-item[open] {
  border-color: var(--primary-color);
  box-shadow: 0 6px 20px rgb(13 92 58 / 15%);
}

.faq-question {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  background: linear-gradient(
    90deg,
    rgb(13 92 58 / 2%) 0%,
    rgb(255 255 255 / 0%) 100%
  );
  transition: all var(--transition-fast);
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question:hover {
  background: linear-gradient(
    90deg,
    rgb(13 92 58 / 5%) 0%,
    rgb(13 92 58 / 1%) 100%
  );
}

.faq-question h3 {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin: 0;
  font-weight: 600;
  flex: 1;
}

.faq-icon {
  font-size: 2rem;
  color: var(--primary-color);
  font-weight: 300;
  transition: transform var(--transition-normal);
  margin-left: 1rem;
  flex-shrink: 0;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 2rem 2rem;
  color: var(--text-dark);
  line-height: 1.7;
}

.faq-answer p {
  margin-bottom: 1rem;
}

.faq-answer ul,
.faq-answer ol {
  margin: 1rem 0 1rem 1.5rem;
  line-height: 1.8;
}

.faq-answer li {
  margin-bottom: 0.5rem;
}

.faq-answer strong {
  color: var(--primary-color);
  font-weight: 600;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.comparison-table th,
.comparison-table td {
  padding: 0.8rem;
  text-align: left;
  border-bottom: 1px solid rgb(13 92 58 / 10%);
}

.comparison-table th {
  background: linear-gradient(135deg, var(--primary-color), var(--dark-green));
  color: white;
  font-weight: 600;
}

.comparison-table tr:hover {
  background: rgb(13 92 58 / 3%);
}

/* Benefits Section */

/* DUPLICATE REMOVED: .benefits-section { */

/* DUPLICATE REMOVED: background: white; */

/* DUPLICATE REMOVED: padding: 5rem 0; */

/* DUPLICATE REMOVED: border-top: 3px solid var(--primary-color); */

/* DUPLICATE REMOVED: } */

/* DUPLICATE REMOVED: .benefits-section h2 { */

/* DUPLICATE REMOVED: text-align: center; */

/* DUPLICATE REMOVED: font-size: 2.5rem; */

/* DUPLICATE REMOVED: margin-bottom: 3rem; */

/* DUPLICATE REMOVED: color: var(--primary-color); */

/* DUPLICATE REMOVED: } */

/* DUPLICATE REMOVED: .benefits-grid { */

/* DUPLICATE REMOVED: display: grid; */

/* DUPLICATE REMOVED: grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); */

/* DUPLICATE REMOVED: gap: 2rem; */

/* DUPLICATE REMOVED: max-width: 1200px; */

/* DUPLICATE REMOVED: margin: 0 auto; */

/* DUPLICATE REMOVED: } */

.benefit-card {
  background: linear-gradient(135deg, rgb(240 245 242 / 50%) 0%, white 100%);
  padding: 2rem;
  border-radius: 16px;
  border: 2px solid rgb(13 92 58 / 10%);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--light-green));
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgb(13 92 58 / 18%);
  border-color: var(--primary-color);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--dark-green));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgb(13 92 58 / 30%);
}

.benefit-card h3 {
  color: var(--primary-color);
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.benefit-card p {
  color: var(--text-dark);
  line-height: 1.6;
}

/* Quality Guarantee Section */
.quality-guarantee-section {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--dark-green) 100%
  );
  padding: 5rem 0;
  color: white;
}

.quality-guarantee-section h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 3rem;
  color: white;
}

.guarantee-content {
  max-width: 900px;
  margin: 0 auto;
}

.guarantee-badge-large {
  background: rgb(255 255 255 / 15%);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 2rem;
  border: 2px solid rgb(255 255 255 / 20%);
}

.badge-icon {
  width: 80px;
  height: 80px;
  background: white;
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 24px rgb(0 0 0 / 20%);
}

.guarantee-badge-large h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.badge-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
}

.guarantee-features {
  background: rgb(255 255 255 / 10%);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 16px;
  border: 2px solid rgb(255 255 255 / 15%);
}

.feature-row {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
  font-size: 1.1rem;
}

.feature-row:last-child {
  border-bottom: none;
}

.feature-icon {
  font-size: 1.8rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.feature-row strong {
  color: white;
  margin-right: 0.3rem;
}

@media screen and (width <= 768px) {
  .faq-section h2 {
    font-size: 2rem;
  }

  .faq-question {
    padding: 1.2rem 1.5rem;
  }

  .faq-question h3 {
    font-size: 1.1rem;
  }

  .faq-answer {
    padding: 0 1.5rem 1.5rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefits-section h2 {
    font-size: 2rem;
  }

  .quality-guarantee-section h2 {
    font-size: 2rem;
  }

  .guarantee-badge-large {
    padding: 2rem 1.5rem;
  }

  .feature-row {
    font-size: 1rem;
  }
}

/* Comprehensive Content Styles */
.comprehensive-content {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  margin: 2rem 0;
  line-height: 1.8;
}

.comprehensive-content h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.comprehensive-content p {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.comprehensive-content .lead {
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.7;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--light-bg);
}

.comprehensive-content strong {
  color: var(--secondary-color);
  font-weight: 600;
}

.comprehensive-content em {
  color: var(--primary-color);
  font-style: italic;
}

@media screen and (width <= 768px) {
  .comprehensive-content {
    padding: 1.5rem;
  }

  .comprehensive-content h3 {
    font-size: 1.3rem;
  }

  .comprehensive-content p,
  .comprehensive-content .lead {
    font-size: 1rem;
  }
}

/* ===========================
   Shop Page Styles
   =========================== */

/* Shop Header */
.shop-header {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: white;
  padding: 4rem 0;
  text-align: center;
  border-radius: 0 0 50px 50px;
  margin-bottom: 3rem;
}

.shop-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.shop-intro {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.8;
  opacity: 0.95;
}

.shop-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgb(255 255 255 / 15%);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgb(255 255 255 / 20%);
  transition: var(--transition-normal);
}

.feature-badge:hover {
  background: rgb(255 255 255 / 25%);
  transform: translateY(-2px);
}

/* DUPLICATE REMOVED: .badge-icon { */

/* DUPLICATE REMOVED: font-size: 1.2rem; */

/* DUPLICATE REMOVED: } */

/* Filter Section */
.filter-section {
  background: var(--bg-light);
  padding: 2rem 0;
  margin-bottom: 3rem;
  border-radius: 20px;
}

.filter-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.filter-group label {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1rem;
}

.filter-group select {
  padding: 0.75rem 2rem 0.75rem 1rem;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  font-size: 1rem;
  font-family: var(--font-primary);
  background: white;
  cursor: pointer;
  transition: var(--transition-normal);
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230d5c3a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
}

.filter-group select:hover {
  border-color: var(--primary-color);
}

.filter-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgb(13 92 58 / 10%);
}

/* Product Category Sections */

/* DUPLICATE REMOVED: .product-category { */

/* DUPLICATE REMOVED: margin-bottom: 5rem; */

/* DUPLICATE REMOVED: } */

.product-category h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-align: center;
}

.category-intro {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

/* Product Cards - Enhanced */
.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 2;
  box-shadow: var(--shadow-md);
}

.product-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 1rem 0;
  line-height: 1.6;
  min-height: 3rem;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.product-meta span {
  font-size: 0.85rem;
  padding: 0.4rem 0.8rem;
  border-radius: 15px;
  background: var(--bg-light);
  color: var(--text-dark);
  font-weight: 500;
}

.product-meta .cert {
  background: rgb(13 92 58 / 10%);
  color: var(--primary-color);
}

.product-meta .origin {
  background: rgb(16 117 74 / 10%);
  color: var(--accent-color);
}

.product-meta .savings {
  background: rgb(201 59 59 / 10%);
  color: var(--error-color);
}

.product-meta .feature {
  background: rgb(8 66 48 / 10%);
  color: var(--secondary-color);
}

/* DUPLICATE REMOVED: .price { */

/* DUPLICATE REMOVED: display: flex; */

/* DUPLICATE REMOVED: flex-direction: column; */

/* DUPLICATE REMOVED: gap: 0.25rem; */

/* DUPLICATE REMOVED: margin: 1rem 0; */

/* DUPLICATE REMOVED: } */

.current-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
}

.unit-price {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Trust Section */
.trust-section {
  background: var(--bg-light);
  padding: 5rem 0;
  margin: 5rem 0;
  border-radius: 30px;
}

.trust-section h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 3rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.trust-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.trust-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.trust-card h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.trust-card p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* Newsletter Privacy */
.newsletter-privacy {
  margin-top: 1rem;
  text-align: center;
}

.newsletter-privacy small {
  color: var(--text-light);
  font-size: 0.9rem;
}

.newsletter-privacy a {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Footer Grid */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-col h3 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

/* DUPLICATE REMOVED: .footer-bottom { */

/* DUPLICATE REMOVED: border-top: 1px solid var(--border-color); */

/* DUPLICATE REMOVED: padding-top: 2rem; */

/* DUPLICATE REMOVED: text-align: center; */

/* DUPLICATE REMOVED: } */

.payment-methods {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.payment-methods span {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Responsive Styles for Shop */
@media screen and (width <= 768px) {
  .shop-header h1 {
    font-size: 2rem;
  }

  .shop-intro {
    font-size: 1rem;
  }

  .shop-features {
    gap: 1rem;
  }

  .feature-badge {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .filter-controls {
    flex-direction: column;
    gap: 1rem;
  }

  .filter-group {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .filter-group select {
    width: 100%;
  }

  .product-category h2 {
    font-size: 1.8rem;
  }

  .category-intro {
    font-size: 1rem;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ===========================
   Legal Pages Styles
   (Impressum, Datenschutz, AGB)
   =========================== */

.legal-page {
  padding: var(--spacing-xl) 0;
  background: var(--bg-white);
  min-height: 60vh;
}

.legal-page .section-title {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--spacing-md);
  background: var(--bg-light);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.legal-content h2 {
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-xs);
  border-bottom: 3px solid var(--accent-color);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  color: var(--secondary-color);
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
}

.legal-content h4 {
  color: var(--text-dark);
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: var(--spacing-sm);
  margin-bottom: var(--spacing-xs);
}

.legal-content p {
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: var(--spacing-sm);
  font-size: 1rem;
}

.legal-content ul,
.legal-content ol {
  margin-left: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
  color: var(--text-dark);
}

.legal-content li {
  margin-bottom: var(--spacing-xs);
  line-height: 1.7;
}

.legal-content a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
  overflow-wrap: break-word;
}

.legal-content a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.legal-content strong {
  color: var(--secondary-color);
  font-weight: 700;
}

.legal-content .last-updated {
  margin-top: var(--spacing-lg);
  padding-top: var(--spacing-md);
  border-top: 2px solid var(--border-color);
  font-style: italic;
  color: var(--text-light);
}

/* Responsive Legal Pages */
@media (width <= 768px) {
  .legal-page {
    padding: var(--spacing-md) 0;
  }

  .legal-page .section-title {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
  }

  .legal-content {
    padding: var(--spacing-sm);
  }

  .legal-content h2 {
    font-size: 1.5rem;
  }

  .legal-content h3 {
    font-size: 1.2rem;
  }

  .legal-content h4 {
    font-size: 1.1rem;
  }
}
