/* ============================================================
   IMKEREI GERHARD BRAUN - Shop Stylesheet
   Design: Matching Shopify Theme
   Farben: Grün #559F60, Creme #F7F6F2, Beige #ECE8DB, Braun #B99569
   Schrift: Archivo
   ============================================================ */

/* --- Lokale Schriftart (DSGVO-konform, kein Google Fonts) --- */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400 700;
  font-stretch: 100%;
  font-display: swap;
  src: url('/static/shop/fonts/archivo-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400 700;
  font-stretch: 100%;
  font-display: swap;
  src: url('/static/shop/fonts/archivo-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* --- Reset & Basis --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #559F60;
  --primary-dark: #478a51;
  --bg-cream: #F7F6F2;
  --bg-beige: #ECE8DB;
  --text-dark: #1a1a1a;
  --text-muted: #6b6b6b;
  --border-light: #DEDDD9;
  --accent-brown: #B99569;
  --accent-red: #D63A2F;
  --badge-new: #417365;
  --badge-sold: #A5A4AB;
  --white: #ffffff;
  --black: #000000;
  --radius: 1rem;
  --radius-sm: 0.5rem;
  --shadow: 0 2px 12px rgba(0,0,0,0.06);
  --transition: 0.3s cubic-bezier(0.3, 1, 0.3, 1);
  --max-width: 1410px;
}

html { font-size: 62.5%; scroll-behavior: smooth; }

body {
  font-family: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-cream);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 6.4rem;
}

@media (max-width: 768px) {
  .container { padding: 0 2.4rem; }
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(3.2rem, 1.56vw + 2rem, 4rem); }
h2 { font-size: clamp(2.4rem, 1.25vw + 1.6rem, 3.2rem); }
h3 { font-size: clamp(1.8rem, 0.8vw + 1.2rem, 2.2rem); }
h4 { font-size: 1.8rem; }

p { margin-bottom: 1.6rem; }
p:last-child { margin-bottom: 0; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 4.8rem;
  padding: 0 3.2rem;
  font-family: inherit;
  font-size: 1.4rem;
  font-weight: 500;
  text-transform: capitalize;
  border: 1px solid var(--black);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  gap: 0.8rem;
}

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

.btn-primary:hover {
  background: #333;
}

.btn-secondary {
  background: var(--white);
  color: var(--black);
  border-color: var(--border-light);
}

.btn-secondary:hover {
  background: var(--bg-cream);
}

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

.btn-green:hover {
  background: var(--primary-dark);
}

.btn-sm {
  height: 3.6rem;
  padding: 0 2rem;
  font-size: 1.3rem;
}

.btn-full { width: 100%; }

/* --- Announcement Bar --- */
.announcement-bar {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 0.8rem 2rem;
  font-size: 1.3rem;
  font-weight: 500;
}

/* --- Header / Navigation --- */
.site-header {
  background: var(--bg-cream);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 7.2rem;
}

.logo img {
  height: 5rem;
  width: auto;
}

.logo-text {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
}

/* Desktop Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 3.2rem;
}

.main-nav a {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 0.4rem 0;
  position: relative;
  transition: var(--transition);
}

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

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

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

/* Mega Menu */
.nav-item {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 2.4rem;
  min-width: 60rem;
  display: none;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  z-index: 100;
}

.nav-item:hover .mega-menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.mega-menu-card {
  text-align: center;
  padding: 1.6rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.mega-menu-card:hover {
  background: var(--bg-cream);
}

.mega-menu-card img {
  width: 100%;
  border-radius: var(--radius-sm);
  margin-bottom: 1.2rem;
}

.mega-menu-card h4 {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

.mega-menu-card p {
  font-size: 1.2rem;
  color: var(--text-muted);
}

/* Header Icons */
.header-icons {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header-icon {
  position: relative;
  font-size: 2rem;
  color: var(--text-dark);
  transition: var(--transition);
}

.header-icon:hover {
  color: var(--primary);
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--black);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Menu */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.4rem;
  cursor: pointer;
  padding: 0.4rem;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--white);
  z-index: 2000;
  padding: 2.4rem;
  overflow-y: auto;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3.2rem;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.4rem;
  cursor: pointer;
}

.mobile-nav a {
  display: block;
  padding: 1.4rem 0;
  font-size: 1.8rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border-light);
}

@media (max-width: 960px) {
  .main-nav { display: none; }
  .mobile-toggle { display: block; }
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 85rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.05) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 60rem;
  padding: 6.4rem;
}

.hero h1 {
  font-size: clamp(3.6rem, 3vw + 1rem, 5.2rem);
  margin-bottom: 1.6rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 1.8rem;
  margin-bottom: 2.4rem;
  opacity: 0.95;
}

@media (max-width: 768px) {
  .hero { min-height: 50rem; }
  .hero-content { padding: 2.4rem 2.4rem; }
}

/* --- Feature Cards (USP) --- */
.features {
  padding: 5.6rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
}

.feature-card {
  text-align: center;
  padding: 3.2rem 2rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.feature-icon {
  font-size: 3.2rem;
  color: var(--primary);
  margin-bottom: 1.6rem;
}

.feature-card h4 {
  margin-bottom: 0.8rem;
  font-size: 1.5rem;
}

.feature-card p {
  font-size: 1.3rem;
  color: var(--text-muted);
}

@media (max-width: 960px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* --- Product Grid --- */
.section {
  padding: 5.6rem 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3.2rem;
}

.section-header a {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--primary);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.product-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-beige);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}

.badge-sale { background: var(--accent-red); }
.badge-new { background: var(--badge-new); }
.badge-sold { background: var(--badge-sold); }

.product-info {
  padding: 2rem;
}

.product-name {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.product-price .from {
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--text-muted);
}

.product-price-per {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 1.6rem;
}

.product-card .btn {
  width: 100%;
}

@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
}

/* --- Product Detail --- */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6.4rem;
  padding: 4rem 0;
}

.product-gallery img {
  width: 100%;
  border-radius: var(--radius);
}

.product-detail-info h1 {
  font-size: 3.2rem;
  margin-bottom: 1.6rem;
}

.product-detail-price {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.product-detail-per-kg {
  font-size: 1.4rem;
  color: var(--text-muted);
  margin-bottom: 2.4rem;
}

.product-options {
  margin-bottom: 2.4rem;
}

.product-options label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
}

.size-options {
  display: flex;
  gap: 1.2rem;
}

.size-option {
  padding: 1rem 2rem;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 500;
  transition: var(--transition);
}

.size-option:hover,
.size-option.active {
  border-color: var(--black);
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 2.4rem;
}

.quantity-btn {
  width: 4.8rem;
  height: 4.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--border-light);
  font-size: 1.8rem;
  cursor: pointer;
  transition: var(--transition);
}

.quantity-btn:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.quantity-btn:last-child { border-radius: 0 var(--radius) var(--radius) 0; }

.quantity-btn:hover { background: var(--bg-cream); }

.quantity-input {
  width: 6rem;
  height: 4.8rem;
  text-align: center;
  border: 1px solid var(--border-light);
  border-left: none;
  border-right: none;
  font-size: 1.5rem;
  font-family: inherit;
}

.product-description {
  margin-top: 3.2rem;
  padding-top: 3.2rem;
  border-top: 1px solid var(--border-light);
}

.product-description h3 {
  margin-bottom: 1.6rem;
}

@media (max-width: 768px) {
  .product-detail {
    grid-template-columns: 1fr;
    gap: 3.2rem;
  }
}

/* --- About Section (Homepage) --- */
.about-section {
  background: var(--bg-beige);
  padding: 5.6rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.8rem;
  align-items: center;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}

.about-images img {
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.about-text h2 {
  margin-bottom: 2rem;
}

.about-text p {
  color: var(--text-muted);
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* --- Business Section --- */
.business-section {
  padding: 5.6rem 0;
}

.partner-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4.8rem;
  flex-wrap: wrap;
  padding: 3.2rem 0;
  opacity: 0.6;
}

.partner-logos img {
  height: 4rem;
  width: auto;
  filter: grayscale(100%);
  transition: var(--transition);
}

.partner-logos img:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* --- B2B Page --- */
.b2b-hero {
  background: var(--bg-beige);
  padding: 6.4rem 0;
  text-align: center;
}

.b2b-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
  padding: 5.6rem 0;
}

.b2b-feature {
  text-align: center;
  padding: 3.2rem 2rem;
}

.b2b-feature img {
  width: 8rem;
  height: 8rem;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 1.6rem;
}

.b2b-feature h4 {
  margin-bottom: 0.8rem;
}

.b2b-feature p {
  font-size: 1.3rem;
  color: var(--text-muted);
}

.b2b-contact-form {
  max-width: 60rem;
  margin: 0 auto;
  padding: 5.6rem 0;
}

@media (max-width: 768px) {
  .b2b-features { grid-template-columns: repeat(2, 1fr); }
}

/* --- Newsletter --- */
.newsletter {
  background: var(--primary);
  color: var(--white);
  padding: 5.6rem 0;
  text-align: center;
}

.newsletter h2 {
  margin-bottom: 1.2rem;
}

.newsletter p {
  margin-bottom: 2.4rem;
  opacity: 0.9;
}

.newsletter-form {
  display: flex;
  gap: 1.2rem;
  max-width: 48rem;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  height: 4.8rem;
  padding: 0 2rem;
  border: none;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1.4rem;
}

.newsletter-form .btn {
  border-color: var(--white);
  white-space: nowrap;
}

@media (max-width: 480px) {
  .newsletter-form { flex-direction: column; }
}

/* --- Footer --- */
.site-footer {
  background: var(--bg-beige);
  padding: 5.6rem 0 2.4rem;
  border-top: 1px solid var(--border-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.2rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col a {
  display: block;
  padding: 0.4rem 0;
  font-size: 1.3rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-col p {
  font-size: 1.3rem;
  color: var(--text-muted);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2.4rem;
  border-top: 1px solid var(--border-light);
  font-size: 1.2rem;
  color: var(--text-muted);
}

.payment-icons {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.payment-icons img {
  height: 2.4rem;
  width: auto;
}

.payment-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 0.4rem 0.8rem;
  height: 2.8rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 1.6rem; text-align: center; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* --- Forms --- */
.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 1.2rem 1.6rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1.4rem;
  background: var(--white);
  transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(85, 159, 96, 0.15);
}

.form-textarea {
  min-height: 12rem;
  resize: vertical;
}

/* --- Cart --- */
.cart-table {
  width: 100%;
  border-collapse: collapse;
}

.cart-table th {
  text-align: left;
  padding: 1.2rem 0;
  border-bottom: 2px solid var(--border-light);
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cart-table td {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-light);
  vertical-align: middle;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.cart-item img {
  width: 8rem;
  height: 8rem;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.cart-item-name {
  font-weight: 600;
}

.cart-item-variant {
  font-size: 1.3rem;
  color: var(--text-muted);
}

.cart-remove {
  background: none;
  border: none;
  color: var(--accent-red);
  cursor: pointer;
  font-size: 1.3rem;
  text-decoration: underline;
}

.cart-summary {
  max-width: 40rem;
  margin-left: auto;
  padding: 3.2rem;
  background: var(--bg-cream);
  border-radius: var(--radius);
  margin-top: 3.2rem;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  font-size: 1.4rem;
}

.cart-summary-total {
  font-weight: 700;
  font-size: 1.8rem;
  padding-top: 1.6rem;
  margin-top: 0.8rem;
  border-top: 2px solid var(--border-light);
}

@media (max-width: 768px) {
  .cart-table thead { display: none; }
  .cart-table tr { display: flex; flex-wrap: wrap; padding: 1.6rem 0; border-bottom: 1px solid var(--border-light); gap: 0.8rem; align-items: center; }
  .cart-table td { padding: 0; border: none; }
  .cart-table td:first-child { width: 100%; }
  .cart-table td:last-child { margin-left: auto; }
}

.cart-free-shipping {
  background: var(--primary);
  color: var(--white);
  padding: 1.2rem 2rem;
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

/* --- Landing Pages --- */
.landing-hero {
  background: var(--bg-beige);
  padding: 5.6rem 0;
}

.landing-hero h1 {
  margin-bottom: 2rem;
}

.landing-content {
  padding: 5.6rem 0;
}

.landing-content h2 {
  margin-bottom: 1.6rem;
}

.landing-content ul {
  list-style: disc;
  padding-left: 2rem;
  margin-bottom: 2rem;
}

.landing-content ul li {
  padding: 0.4rem 0;
  font-size: 1.5rem;
}

/* --- Verkaufsstellen --- */
.store-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.store-card {
  background: var(--white);
  padding: 2.4rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.store-card h4 {
  color: var(--primary);
  margin-bottom: 0.8rem;
}

.store-card p {
  font-size: 1.3rem;
  color: var(--text-muted);
}

@media (max-width: 960px) {
  .store-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .store-list { grid-template-columns: 1fr; }
}

/* --- FAQ --- */
.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 600;
}

.faq-question::after {
  content: '+';
  font-size: 2rem;
  font-weight: 300;
  transition: var(--transition);
}

.faq-item.active .faq-question::after {
  content: '\2212';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 50rem;
}

.faq-answer-inner {
  padding-bottom: 2rem;
  font-size: 1.4rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* --- Legal Pages --- */
.legal-page {
  max-width: 80rem;
  margin: 0 auto;
  padding: 4rem 0;
}

.legal-page h1 {
  margin-bottom: 3.2rem;
}

.legal-page h2 {
  font-size: 2rem;
  margin: 3.2rem 0 1.6rem;
}

.legal-page h3 {
  font-size: 1.6rem;
  margin: 2.4rem 0 1.2rem;
}

.legal-page p,
.legal-page li {
  font-size: 1.4rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.legal-page ul, .legal-page ol {
  padding-left: 2rem;
  margin-bottom: 1.6rem;
}

.legal-page ul { list-style: disc; }
.legal-page ol { list-style: decimal; }

/* --- SEO Text Block --- */
.seo-text {
  background: var(--bg-beige);
  padding: 5.6rem 0;
}

.seo-text-inner {
  max-width: 80rem;
  margin: 0 auto;
}

.seo-text h2 {
  margin-bottom: 2rem;
}

.seo-text p {
  font-size: 1.5rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* --- Breadcrumb --- */
.breadcrumb {
  padding: 2rem 0;
  font-size: 1.3rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--text-muted);
}

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

.breadcrumb span {
  margin: 0 0.8rem;
}

/* --- Flash Messages --- */
.flash-message {
  padding: 1.6rem 2.4rem;
  border-radius: var(--radius);
  margin-bottom: 2rem;
  font-size: 1.4rem;
  font-weight: 500;
}

.flash-success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}

.flash-error {
  background: #ffebee;
  color: #c62828;
  border: 1px solid #ffcdd2;
}

.flash-info {
  background: #e3f2fd;
  color: #1565c0;
  border: 1px solid #bbdefb;
}

/* --- Empty Cart --- */
.empty-state {
  text-align: center;
  padding: 6.4rem 0;
}

.empty-state svg,
.empty-state .empty-icon {
  font-size: 6rem;
  color: var(--border-light);
  margin-bottom: 2rem;
}

.empty-state h2 {
  margin-bottom: 1.2rem;
}

.empty-state p {
  color: var(--text-muted);
  margin-bottom: 2.4rem;
}

/* --- Page Header --- */
.page-header {
  background: var(--bg-beige);
  padding: 4.8rem 0;
  text-align: center;
}

.page-header h1 {
  margin-bottom: 1.2rem;
}

.page-header p {
  font-size: 1.6rem;
  color: var(--text-muted);
  max-width: 60rem;
  margin: 0 auto;
}

/* --- Checkout --- */
.checkout-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4.8rem;
  padding: 4rem 0;
}

.checkout-summary {
  background: var(--bg-cream);
  padding: 3.2rem;
  border-radius: var(--radius);
  position: sticky;
  top: 10rem;
}

@media (max-width: 768px) {
  .checkout-grid { grid-template-columns: 1fr; }
}

/* --- Utilities --- */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.mt-1 { margin-top: 0.8rem; }
.mt-2 { margin-top: 1.6rem; }
.mt-3 { margin-top: 2.4rem; }
.mt-4 { margin-top: 3.2rem; }
.mb-1 { margin-bottom: 0.8rem; }
.mb-2 { margin-bottom: 1.6rem; }
.mb-3 { margin-bottom: 2.4rem; }
.mb-4 { margin-bottom: 3.2rem; }
.py-section { padding: 5.6rem 0; }
.hidden { display: none !important; }

/* --- Sticky Mobile CTA --- */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--border-light);
  padding: 1.2rem 2.4rem;
  z-index: 900;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
}

.sticky-mobile-cta .btn { width: 100%; }

@media (max-width: 768px) {
  .sticky-mobile-cta { display: block; }
  body { padding-bottom: 7.2rem; }
}

/* --- Exit Intent Popup --- */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 3000;
  align-items: center;
  justify-content: center;
}

.popup-overlay.active {
  display: flex;
}

.popup-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 4.8rem;
  max-width: 48rem;
  width: 90%;
  text-align: center;
  position: relative;
  animation: popupIn 0.3s ease;
}

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

.popup-close {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  background: none;
  border: none;
  font-size: 2.4rem;
  cursor: pointer;
  color: var(--text-muted);
}

.popup-box h2 {
  margin-bottom: 1.2rem;
}

.popup-box p {
  font-size: 1.4rem;
  color: var(--text-muted);
  margin-bottom: 2.4rem;
}

.popup-discount {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: 3.2rem;
  font-weight: 700;
  padding: 1.2rem 3.2rem;
  border-radius: var(--radius);
  margin-bottom: 2.4rem;
}

/* --- Product Reviews Stars --- */
.product-reviews {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
  color: #f5a623;
}

.product-reviews span {
  font-size: 1.1rem;
}

/* --- PAngV Preishinweis --- */
.price-legal {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.price-legal a {
  text-decoration: underline;
  color: var(--text-muted);
}

.price-legal a:hover {
  color: var(--primary);
}

/* --- Probierpaket Grid --- */
.probierpaket-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.8rem;
  align-items: center;
}

@media (max-width: 768px) {
  .probierpaket-grid {
    grid-template-columns: 1fr;
    gap: 2.4rem;
    text-align: center;
  }
}

/* --- Testimonials Grid --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}

.testimonials-grid > div {
  background: var(--white);
  padding: 3.2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

@media (max-width: 960px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

/* --- Google Review Cards --- */
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.4rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.review-card .review-stars {
  margin-bottom: 1.2rem;
}

.review-card .review-text {
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 1.6rem;
}

.review-card .review-author {
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.review-card .review-time {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.review-card .google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* === Honey Gold Accents === */
.product-price {
  color: var(--accent-brown) !important;
}

.product-badge.badge-premium {
  background: var(--accent-brown) !important;
}

.review-stars {
  color: var(--accent-brown);
}

/* Trust bar golden accent */
.hero + section {
  border-bottom-color: var(--accent-brown) !important;
}

/* === Scroll Reveal Animations === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Smooth Mega Menu === */
.mega-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.nav-item:hover .mega-menu,
.mega-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: grid !important;
}

/* Mobile Hero: Glas sichtbar machen */
@media (max-width: 768px) {
  .hero-bg {
    background-position: 70% center;
  }
}

/* Fix: Horizontales Scrollen auf Mobile verhindern */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

/* Review-Grid responsive */
@media (max-width: 768px) {
  .review-card {
    min-width: 0;
  }
}

/* Reviews Grid responsive */
@media (max-width: 768px) {
  [style*="reviews-grid"],
  .review-card {
    width: 100%;
  }
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}
@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* Probierpaket responsive */
@media (max-width: 768px) {
  section[style*="min-height:70rem"] {
    min-height: auto !important;
    padding: 4rem 0 !important;
  }
}

/* Alle Sections dürfen nicht überlaufen */
section {
  max-width: 100vw;
  overflow-x: hidden;
}

/* Trust Bar */
.trust-bar {
  display: flex;
  justify-content: center;
  gap: 3rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
}
@media (max-width: 768px) {
  .trust-bar {
    gap: 0.4rem;
    font-size: 1.15rem;
    justify-content: space-between;
  }
  .trust-bar span {
    text-align: center;
    flex: 1;
    line-height: 1.3;
  }
}

/* Leaflet-Karte von Reveal-Animation ausschließen */
.section:has(#karte) {
  opacity: 1 !important;
  transform: none !important;
}

/* Karte IMMER sichtbar */
.karte-section,
.karte-section.reveal {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

/* Sale Badge */
.product-badge.badge-sale {
  background: var(--accent-red) !important;
  color: #fff;
  font-weight: 700;
}

.streichpreis {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 1.3rem;
  margin-right: 0.6rem;
}
