:root {
  --linen: #faf6ee;
  --cream: #f3ecdf;
  --sand: #e8dcc6;
  --white: #fffdf8;
  --honey: #c9973f;
  --honey-deep: #a87b2c;
  --moss: #4e5d43;
  --moss-deep: #3b4732;
  --cocoa: #33261a;
  --cocoa-soft: #6f5c49;
  --line: #e2d5be;
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Montserrat', Arial, Helvetica, sans-serif;
  --radius: 4px;
  --transition: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-soft: 0 18px 45px rgba(51, 38, 26, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--cocoa);
  background: var(--linen);
  line-height: 1.7;
  font-weight: 400;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--honey); outline-offset: 2px; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--cocoa);
  letter-spacing: 0.01em;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: 880px; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--honey-deep);
  font-weight: 600;
}

.section-head { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.section-title { font-size: clamp(2rem, 4vw, 3rem); margin: 0.9rem 0 0.6rem; }
.section-sub { color: var(--cocoa-soft); font-weight: 300; font-size: 1.05rem; }

.divider { display: flex; align-items: center; justify-content: center; gap: 0.8rem; margin: 1.2rem 0; }
.divider::before, .divider::after { content: ""; height: 1px; width: 52px; background: var(--line); }
.divider .dot { width: 8px; height: 8px; background: var(--honey); transform: rotate(45deg); flex: none; }
.hero-home .divider { width: fit-content; margin: 1.2rem auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.05rem 2.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.35s var(--transition), background 0.35s, color 0.35s, box-shadow 0.35s, border-color 0.35s;
}
.btn-dark { background: var(--cocoa); color: var(--linen); }
.btn-dark:hover { background: var(--moss-deep); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(51, 38, 26, 0.2); }
.btn-light { background: var(--linen); color: var(--cocoa); }
.btn-light:hover { background: var(--white); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(51, 38, 26, 0.22); }
.btn-outline { background: transparent; border-color: var(--cocoa); color: var(--cocoa); }
.btn-outline:hover { background: var(--cocoa); color: var(--linen); }
.btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none; box-shadow: none; }
.btn:disabled:hover { background: var(--cocoa); transform: none; box-shadow: none; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 238, 0.88);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.05rem 2rem;
  position: relative;
}
.logo { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 58px; width: auto; flex-shrink: 0; border-radius: 50%; object-fit: cover; margin-right: 0.9rem; }
.logo-text { font-family: var(--font-serif); font-size: 2rem; font-weight: 700; color: var(--cocoa); line-height: 1.1; letter-spacing: 0.02em; }
.logo-text .accent { color: var(--honey-deep); }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  padding: 0;
  background: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, transform 0.3s;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--cocoa);
  border-radius: 2px;
  transition: transform 0.3s var(--transition), opacity 0.3s var(--transition);
}
.nav-toggle:hover { border-color: var(--honey); transform: translateY(-1px); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.nav-links { display: flex; gap: 2.4rem; }
.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cocoa-soft);
  text-decoration: none;
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--honey);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}
.nav-links a:hover, .nav-links a.active { color: var(--cocoa); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--cocoa);
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, transform 0.3s;
}
.cart-btn:hover { border-color: var(--honey); color: var(--honey-deep); transform: translateY(-1px); }
.cart-icon { width: 19px; height: 19px; }
.cart-count {
  position: absolute;
  top: -5px; right: -5px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--honey);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.64rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero */
.hero-home, .hero-sub {
  position: relative;
  height: 54vh;
  min-height: 54vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-sub {
  justify-content: center;
  text-align: center;
}
.hero-home .hero-content {
  margin: 0 auto;
  text-align: center;
}
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(59, 71, 50, 0.26), rgba(59, 71, 50, 0.45));
}
.hero-home .hero-overlay {
  background: linear-gradient(to bottom, rgba(59, 71, 50, 0.16), rgba(59, 71, 50, 0.29));
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
  padding: 4rem 2rem;
  text-align: center;
}
.hero-content .eyebrow { color: var(--sand); }
.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: #fff;
  margin: 1rem 0 1.2rem;
  letter-spacing: 0.01em;
}
.hero-lead {
  font-size: 1.12rem;
  font-weight: 300;
  color: var(--cream);
  max-width: 520px;
  margin: 1.2rem auto 2.4rem;
}

.hero-sub .hero-overlay {
  background: linear-gradient(to bottom, rgba(59, 71, 50, 0.26), rgba(59, 71, 50, 0.45));
}
.hero-sub .hero-content {
  max-width: 780px;
  padding: 4rem 2rem;
  margin: 0 auto;
}
.hero-sub .hero-title { color: #fff; }
.hero-sub .hero-lead { color: var(--cream); margin: 1.4rem auto 0; }

/* Kurze Bildschirmhöhen (z.B. Querformat 16:9) */
@media (max-height: 760px) {
  .hero-home, .hero-sub { height: auto; min-height: 480px; padding: 3rem 2rem; }
  .hero-content, .hero-sub .hero-content { padding: 2rem 1.5rem; }
  .hero-title { margin: 0.7rem 0 0.8rem; }
  .hero-lead { margin: 0.9rem auto 1.4rem; }
}
@media (max-height: 600px) {
  .hero-home, .hero-sub { min-height: 420px; padding: 2.2rem 1.5rem; }
  .hero-title { font-size: clamp(2.2rem, 5vw, 3.4rem); }
  .hero-lead { font-size: 1rem; }
}

/* Sections */
.section { padding: 7rem 2rem; }
.section-alt { background: var(--cream); }
.section-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 3rem;
  box-shadow: var(--shadow-soft);
}

/* Ritual / lifestyle */
.ritual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.ritual-grid.reversed .ritual-media { order: 2; }
.ritual-grid.reversed .ritual-text { order: 1; }
.ritual-media { position: relative; }
.ritual-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 8px solid var(--white);
  box-shadow: var(--shadow-soft);
}
.ritual-ring {
  position: absolute;
  inset: -22px;
  border: 1px solid var(--sand);
  border-radius: 50%;
  pointer-events: none;
}
.ritual-text .section-title, .ritual-text .section-sub { text-align: left; }
.ritual-steps { display: grid; gap: 1.7rem; margin: 2.4rem 0; }
.step { display: flex; gap: 1.2rem; align-items: flex-start; }
.step-num {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  color: var(--honey-deep);
  line-height: 1;
  min-width: 34px;
}
.step h3 { font-size: 1.18rem; margin-bottom: 0.25rem; }
.step p { color: var(--cocoa-soft); font-weight: 300; font-size: 0.95rem; }

.facts { list-style: none; margin: 1.6rem 0; }
.facts li {
  padding: 0.7rem 0 0.7rem 1.9rem;
  position: relative;
  color: var(--cocoa-soft);
  font-weight: 300;
  border-bottom: 1px solid var(--line);
}
.facts li:last-child { border-bottom: none; }
.facts li::before {
  content: "";
  position: absolute;
  left: 0; top: 1.05rem;
  width: 9px; height: 9px;
  background: var(--honey);
  transform: rotate(45deg);
}

/* Values */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  text-align: center;
}
.value .v-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--honey-deep);
}
.value h3 { font-size: 1.22rem; margin-bottom: 0.4rem; }
.value p { font-size: 0.9rem; color: var(--cocoa-soft); font-weight: 300; }

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 2rem;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--transition), box-shadow 0.4s var(--transition);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.product-media {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  overflow: hidden;
  font-size: 4.5rem;
}
.product-media img { width: 100%; height: 100%; object-fit: cover; }
.product-body {
  padding: 1.6rem 1.6rem 1.8rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-tag {
  font-family: var(--font-sans);
  font-size: 0.64rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--honey-deep);
  margin-bottom: 0.5rem;
}
.product-body h3 { font-size: 1.42rem; margin-bottom: 0.3rem; }
.product-desc { font-size: 0.88rem; color: var(--cocoa-soft); font-weight: 300; flex: 1; margin-bottom: 1.3rem; }
.product-stock {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--moss);
  margin-bottom: 1.1rem;
}
.product-stock.low { color: #b4731a; font-weight: 600; }
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
}
.product-price { font-family: var(--font-serif); font-size: 1.5rem; color: var(--cocoa); white-space: nowrap; }
.product-price small { font-family: var(--font-sans); font-size: 0.7rem; color: var(--cocoa-soft); letter-spacing: 0.02em; }
.add-btn {
  background: var(--moss);
  color: var(--linen);
  border: none;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.72rem 1.35rem;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s;
}
.add-btn:hover { background: var(--cocoa); }

/* Product detail */
.detail {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.detail-img {
  background: linear-gradient(160deg, #fbf6ec, #f0e5d0);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  overflow: hidden;
  font-size: 8rem;
}
.detail-img img { width: 100%; height: 100%; object-fit: cover; }
.detail-info h1 { font-size: 2.6rem; margin-bottom: 0.6rem; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid var(--line);
  color: var(--moss);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.42rem 0.95rem;
  border-radius: 999px;
  margin-bottom: 1.4rem;
}
.detail-price { font-family: var(--font-serif); font-size: 2.1rem; color: var(--honey-deep); }
.unit-price { font-size: 0.85rem; color: var(--cocoa-soft); margin-top: 0.2rem; }
.detail-desc { color: var(--cocoa-soft); font-weight: 300; margin: 1.5rem 0; }
.buy-row { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; margin-top: 1.6rem; }
.qty-controls { display: flex; align-items: center; gap: 0.9rem; border: 1px solid var(--line); border-radius: 999px; padding: 0.28rem 0.4rem; }
.qty-controls button {
  width: 34px; height: 34px;
  border: none;
  background: var(--cream);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--cocoa);
  transition: background 0.3s;
}
.qty-controls button:hover { background: var(--sand); }
.qty-controls button:disabled { opacity: 0.35; cursor: not-allowed; }
.qty-controls button:disabled:hover { background: var(--cream); }
.qty-controls span { min-width: 28px; text-align: center; font-weight: 600; font-size: 0.9rem; }
.tax-note { font-size: 0.78rem; color: var(--cocoa-soft); margin-top: 1.1rem; }
.back-link {
  display: inline-block;
  margin-bottom: 2rem;
  color: var(--cocoa-soft);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.back-link:hover { color: var(--honey-deep); }
.section-card h2 { font-size: 1.7rem; margin-bottom: 0.9rem; }
.section-card h3 { font-size: 1.15rem; margin: 1.4rem 0 0.4rem; }
.section-card p { color: var(--cocoa-soft); font-weight: 300; }
.section-card table { width: 100%; border-collapse: collapse; margin-top: 0.5rem; }
.section-card td { padding: 0.72rem 0; border-bottom: 1px solid var(--line); font-size: 0.9rem; }
.section-card td:first-child { width: 40%; font-weight: 600; color: var(--cocoa); }
.section-card td:last-child { color: var(--cocoa-soft); font-weight: 300; }

/* Info cards (ueber / bienen) */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 2rem; }
.card-grid-bienenstaat .info-card img {
  display: block;
  width: 200px;
  max-width: 100%;
  margin: 0 auto 1rem;
}
@media (orientation: landscape) {
  .card-grid-bienenstaat .info-card:first-child { grid-column: 1 / -1; }
}
.info-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: transform 0.35s var(--transition), box-shadow 0.35s var(--transition);
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.info-card .icon { font-size: 2.5rem; margin-bottom: 0.8rem; }
.info-card h3 { font-size: 1.22rem; margin-bottom: 0.4rem; }
.info-card p { font-size: 0.88rem; color: var(--cocoa-soft); font-weight: 300; }
.info-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 6px solid var(--linen);
}
.info-card .more-link { margin-top: 1.2rem; }

/* Klickbare Wissens-Karten */
.more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--honey-deep);
  border-bottom: 1px solid var(--honey);
  padding-bottom: 0.1rem;
  transition: color 0.3s, border-color 0.3s;
}
.more-link .arrow { transition: transform 0.3s ease; }
.info-card:hover .more-link { color: var(--cocoa); border-color: var(--cocoa); }
.info-card:hover .more-link .arrow { transform: translateX(4px); }

/* Steps / timeline */
.step-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1.4rem; }
.step-tile { text-align: center; padding: 1.7rem 1rem; border: 1px solid var(--line); border-radius: 12px; background: var(--white); }
.step-tile .num { font-family: var(--font-serif); font-size: 1.5rem; color: var(--honey-deep); display: block; margin-bottom: 0.35rem; }
.step-tile h3 { font-size: 1.05rem; margin-bottom: 0.3rem; }
.step-tile p { font-size: 0.82rem; color: var(--cocoa-soft); font-weight: 300; }

.placeholder {
  background: var(--cream);
  border-left: 3px solid var(--honey);
  padding: 1rem 1.2rem;
  color: var(--cocoa-soft);
  font-size: 0.88rem;
  margin: 1.2rem 0;
}

/* Contact */
.contact-list { list-style: none; max-width: 480px; margin: 0 auto; text-align: left; }
.contact-list li { display: flex; gap: 1rem; align-items: center; padding: 1.05rem 0; border-bottom: 1px solid var(--line); color: var(--cocoa-soft); font-weight: 300; }
.contact-list li:last-child { border-bottom: none; }
.contact-list .c-icon { color: var(--honey-deep); width: 26px; text-align: center; flex: none; font-size: 1.05rem; }
.contact-list a { color: var(--moss); text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }

/* Cart modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(51, 38, 26, 0.45);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 1.5rem;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white);
  border-radius: 14px;
  width: 100%;
  max-width: 520px;
  max-height: 82vh;
  overflow-y: auto;
  padding: 2.4rem;
  position: relative;
  animation: fadeUp 0.35s ease;
}
.modal h2 { font-size: 1.7rem; margin-bottom: 1.4rem; }
.close-btn {
  position: absolute;
  top: 1.2rem; right: 1.4rem;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--cocoa-soft);
  transition: color 0.3s, transform 0.3s;
}
.close-btn:hover { color: var(--cocoa); transform: rotate(90deg); }
.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}
.cart-item .name { font-weight: 600; color: var(--cocoa); }
.cart-item .sub { color: var(--cocoa-soft); font-weight: 300; font-size: 0.82rem; }
.qty-controls { margin: 0; }
.cart-item .qty-controls button { width: 28px; height: 28px; font-size: 1rem; }
.cart-item .line-total { min-width: 58px; text-align: right; font-weight: 600; }
.cart-total { text-align: right; font-family: var(--font-serif); font-size: 1.5rem; color: var(--cocoa); margin: 1.4rem 0; }
.checkout-btn { width: 100%; }
.empty-cart { text-align: center; color: var(--cocoa-soft); font-weight: 300; padding: 2rem 0; }

/* Checkout form */
.checkout-error {
  display: none;
  background: #fbeae7;
  border-left: 3px solid #b03a2e;
  color: #8c2f25;
  border-radius: 6px;
  padding: 0.9rem 1.2rem;
  margin-bottom: 1.2rem;
}
.checkout-error p { margin: 0.2rem 0; font-size: 0.88rem; font-weight: 400; }
.checkout-actions { display: flex; gap: 1rem; margin-top: 1.8rem; flex-wrap: wrap; }
.checkout-actions .btn { flex: 1; min-width: 160px; }
.form-field { margin-bottom: 1.1rem; }
.form-field label { display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; color: var(--cocoa-soft); margin-bottom: 0.35rem; }
.form-field input {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--linen);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--cocoa);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-field input:focus {
  outline: none;
  border-color: var(--honey);
  box-shadow: 0 0 0 3px rgba(201, 151, 63, 0.15);
}
.form-row { display: grid; grid-template-columns: 1fr 2fr; gap: 1rem; }
.form-check { display: flex; align-items: flex-start; margin-top: 0.4rem; }
.check-label {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--cocoa-soft);
}
.check-label input { width: auto; margin-top: 0.3rem; accent-color: var(--honey); flex: none; }
.check-label a { color: var(--moss); }
#checkout-view h2 { margin-bottom: 0.6rem; }
#checkout-summary { margin: 1rem 0 1.4rem; }
.checkout-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--cocoa-soft);
}
.checkout-line span:last-child { font-weight: 600; color: var(--cocoa); white-space: nowrap; }
.checkout-total {
  border-bottom: none;
  border-top: 1px solid var(--line);
  margin-top: 0.5rem;
  padding-top: 0.9rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--cocoa);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cocoa);
  color: var(--linen);
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
  z-index: 300;
  box-shadow: var(--shadow-soft);
}
.toast.show { opacity: 1; }

/* Footer */
.site-footer {
  background: var(--moss-deep);
  color: var(--sand);
  text-align: center;
  padding: 4.5rem 2rem;
}
.footer-brand { font-family: var(--font-serif); font-size: 1.7rem; color: var(--linen); margin-bottom: 0.4rem; }
.site-footer p { font-size: 0.85rem; font-weight: 300; opacity: 0.85; margin: 0.15rem 0; }
.site-footer a { color: var(--sand); text-decoration: none; transition: color 0.3s; }
.site-footer a:hover { color: var(--white); }
.footer-line { width: 40px; height: 1px; background: rgba(232, 220, 198, 0.4); margin: 1.4rem auto; }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.4rem;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.8;
}
.footer-links a:hover { opacity: 1; }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }


/* Not found */
.not-found { text-align: center; padding: 5rem 2rem; }
.not-found h1 { font-size: 2.4rem; margin-bottom: 1rem; }
.not-found a { color: var(--honey-deep); }

/* Legal pages (AGB / Impressum) */
.legal h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin: 0.6rem 0; }
.legal h2 { font-size: 1.35rem; margin: 2.4rem 0 0.9rem; }
.legal h3 { font-size: 1.05rem; margin: 1.4rem 0 0.4rem; }
.legal p, .legal li { color: var(--cocoa-soft); font-weight: 300; font-size: 0.95rem; }
.legal p { margin-bottom: 0.8rem; }
.legal ul { padding-left: 1.4rem; margin-bottom: 0.8rem; }
.legal li { margin-bottom: 0.35rem; }

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; order: -1; }
  .logo { order: 1; }
  .cart-btn { order: 2; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--linen);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 2rem 0.9rem;
    box-shadow: var(--shadow-soft);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.9rem 0; border-bottom: 1px solid var(--line); }
  .nav-links a:last-child { border-bottom: none; }
  .nav { padding: 0.9rem 1.2rem; }
  .ritual-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .ritual-grid.reversed .ritual-media, .ritual-grid.reversed .ritual-text { order: 0; }
  .values { grid-template-columns: 1fr; gap: 2.2rem; }
  .detail { grid-template-columns: 1fr; gap: 2.5rem; }
  .detail-img { min-height: 260px; font-size: 5rem; }
  .section { padding: 4.5rem 1.5rem; }
  .hero-content, .hero-sub .hero-content { padding: 3rem 1.5rem; }
  .btn { padding: 0.85rem 1.9rem; font-size: 0.72rem; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(min(100%, 230px), 1fr)); gap: 1.4rem; }
  .add-btn { padding: 0.66rem 1.05rem; font-size: 0.66rem; }
  .product-price { font-size: 1.35rem; }
}

@media (max-width: 520px) {
  .nav { gap: 0.9rem; }
  .logo-img { height: 44px; margin-right: 0.5rem; }
  .logo-text { font-size: 1.35rem; }
}

@media (max-width: 400px) {
  .logo-text { display: none; }
  .logo-img { margin-right: 0; }
}

@media (max-width: 560px) {
  .nav { gap: 0.8rem; padding: 0.8rem 1rem; }
  .logo-text { font-size: 1.3rem; }
  .logo-img { height: 44px; margin-right: 0.6rem; }
}

@media (max-width: 420px) {
  .logo-text { display: none; }
}

/* ===== Bienenwissen ===== */
.section-card { margin-bottom: 2.2rem; }
.section-card .card-head { text-align: center; max-width: 640px; margin: 0 auto 2.4rem; }
.section-card .card-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.4rem); margin-bottom: 0.6rem; }
.section-card .card-head .divider { width: fit-content; margin: 0.9rem auto 1rem; }
.section-card .card-head p { color: var(--cocoa-soft); font-weight: 300; }

/* "Weiterlesen" expandable blocks */
.expander { position: relative; }
.clamp-wrap { position: relative; text-align: left; }
.clamp-wrap .clamp {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}
.clamp-wrap .fade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2.4em;
  background: linear-gradient(to bottom, rgba(255, 253, 248, 0), var(--white));
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.expander.open .clamp-wrap .clamp { -webkit-line-clamp: unset; overflow: visible; }
.expander.open .clamp-wrap .fade { opacity: 0; }
.expander-more { display: none; }
.expander.open .expander-more { display: block; }

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.9rem;
  background: none;
  border: none;
  border-bottom: 1px solid var(--honey);
  padding: 0.15rem 0 0.1rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--honey-deep);
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
}
.read-more:hover { color: var(--cocoa); border-color: var(--cocoa); }
.read-more .arrow { transition: transform 0.3s ease; }
.expander.open .read-more .arrow { transform: rotate(180deg); }
.info-card .expander { text-align: left; }

/* ===== Zugangscode-Verifizierung ===== */
.verify-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--linen);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  overflow-y: auto;
  opacity: 1;
  transition: opacity 0.4s ease;
}
.verify-modal {
  width: 100%;
  max-width: 600px;
  margin: auto;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-soft);
}
.verify-logo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.4rem;
  border: 6px solid var(--linen);
}
.verify-title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  line-height: 1.15;
  margin-bottom: 0.4rem;
}
.verify-modal .divider { width: fit-content; margin: 1rem auto 1.4rem; }
.verify-text {
  color: var(--cocoa-soft);
  font-weight: 300;
  font-size: 0.98rem;
  margin: 0.6rem 0;
}
.verify-text strong { color: var(--cocoa); font-weight: 600; }
.verify-form {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}
.verify-input {
  flex: 1;
  min-width: 220px;
  padding: 0.95rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--linen);
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--cocoa);
  text-align: center;
  letter-spacing: 0.18em;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.verify-input:focus {
  outline: none;
  border-color: var(--honey);
  box-shadow: 0 0 0 3px rgba(201, 151, 63, 0.18);
}
.verify-input-error { border-color: #b03a2e; }
.verify-btn {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.95rem 2rem;
  border: 1px solid var(--cocoa);
  border-radius: 999px;
  background: var(--cocoa);
  color: var(--linen);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.verify-btn:hover { background: var(--moss-deep); transform: translateY(-2px); }
.verify-error {
  display: none;
  color: #b03a2e;
  font-weight: 400;
  font-size: 0.85rem;
  margin-top: 1.2rem;
}
.verify-leave { opacity: 0; pointer-events: none; }


