/* Gemeinsames Layout; Akzentfarben: theme-schlabberlatz.css nach dieser Datei einbinden */
:root {
  --bg: #ffffff;
  --bg-muted: #f4f5f7;
  --text: #1a1a1a;
  --text-muted: #5c5c5c;
  --border: #e5e7eb;
  --footer: #111111;
  --radius: 8px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --max: 1100px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

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

a:hover {
  text-decoration: underline;
}

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  flex-wrap: wrap;
}

.logo {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: var(--text);
  text-decoration: none;
}

.logo:hover {
  text-decoration: none;
  color: var(--accent);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.nav a:not(.btn) {
  color: var(--text);
  font-size: 0.95rem;
}

.nav a:not(.btn):hover {
  color: var(--accent);
}

.nav__buy {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
}

.buy-hint {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.2;
}

.site-footer__links .nav__buy {
  align-items: flex-start;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.btn:hover {
  text-decoration: none;
}

.btn--primary {
  background: var(--btn-primary, var(--accent));
  color: #fff;
}

.btn--primary:hover {
  background: var(--btn-primary-hover, var(--accent-hover));
  color: #fff;
}

.btn--secondary {
  background: var(--teal);
  color: #fff;
}

.btn--secondary:hover {
  background: var(--teal-hover);
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--outline:hover {
  border-color: var(--text);
}

.btn--block {
  width: 100%;
}

/* Hero */
.hero {
  padding: 2.5rem 0 3rem;
}

.hero__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.hero__image {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-muted);
  border: 1px solid var(--border);
}

.hero__image img {
  width: 100%;
  display: block;
}

.hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  line-height: 1.2;
  font-weight: 800;
}

.hero__lead {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  color: var(--text-muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Band */
.band {
  background: var(--bg-muted);
  padding: 1.25rem 0;
  text-align: center;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* Sections */
.section {
  padding: 3rem 0;
}

.section--muted {
  background: var(--bg-muted);
}

.section h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  text-align: center;
}

.section__intro {
  margin: 0 auto 2rem;
  max-width: 52ch;
  text-align: center;
  color: var(--text-muted);
}

/* Feature grid */
.features {
  display: grid;
  gap: 1.5rem;
}

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

@media (min-width: 900px) {
  .features {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature {
  background: var(--bg);
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.feature__icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.feature h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.feature p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* CTA block */
.cta-block {
  text-align: center;
  padding: 2.5rem 0;
}

.cta-block p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

/* FAQ */
.faq {
  max-width: 640px;
  margin: 0 auto;
}

.faq details {
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--accent);
  list-style: none;
}

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

.faq details[open] summary {
  margin-bottom: 0.5rem;
}

.faq p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq p + p {
  margin-top: 0.75rem;
}

.faq p + ul {
  margin-top: 0.35rem;
}

.faq ul {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq li + li {
  margin-top: 0.25rem;
}

.faq ul + p {
  margin-top: 0.75rem;
}

/* Footer */
.site-footer {
  background: var(--footer);
  color: #e5e5e5;
  padding: 2.5rem 0 1.5rem;
  margin-top: 2rem;
}

.site-footer a {
  color: #fff;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer__grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .site-footer__grid {
    grid-template-columns: minmax(0, 1.15fr) repeat(3, minmax(0, 1fr));
  }
}

.site-footer .logo {
  color: #fff;
}

.site-footer p {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  color: #9ca3af;
}

.site-footer__bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #333;
  font-size: 0.8rem;
  color: #6b7280;
}

/* Product page */
.breadcrumb {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 1rem 0 0;
}

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

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

.product {
  padding: 1.5rem 0 3rem;
}

.product__grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .product__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }
}

/* Festes 3:2-Format (~560×373), wie flache Produktansicht; alle Motive proportional darin */
.product__gallery {
  overflow: visible;
  border: none;
  background: transparent;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  box-sizing: border-box;
}

.product__gallery img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  margin: 0;
  display: block;
  object-fit: contain;
}

.product__buy h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.4rem, 3vw, 1.75rem);
  line-height: 1.25;
}

.product__price {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
  margin: 0 0 1rem;
}

.product__buy p {
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.product__list {
  margin: 0 0 1.5rem;
  padding-left: 1.25rem;
  color: var(--text);
}

.product__list li {
  margin-bottom: 0.35rem;
}

.product__variant {
  margin: 0 0 1rem;
  padding: 0;
  border: none;
}

.product__variant-legend {
  padding: 0;
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.product__variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  align-items: center;
}

.product__variant-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.95rem;
  cursor: pointer;
  color: var(--text);
}

.product__variant-label input {
  margin: 0;
  accent-color: var(--accent);
}

.product__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1rem;
}

.order-form {
  margin: 0 0 1rem;
  padding: 1rem 0 0;
  border-top: 1px solid var(--border);
}

.order-form__intro {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
  line-height: 1.45;
}

.order-form__field {
  margin-bottom: 0.85rem;
}

.order-form__field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.order-form__optional {
  font-weight: 400;
  color: var(--text-muted);
}

.order-form__field input,
.order-form__field textarea {
  width: 100%;
  max-width: 22rem;
  box-sizing: border-box;
  padding: 0.5rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--surface, #fff);
  color: var(--text);
}

.order-form__field textarea {
  resize: vertical;
  min-height: 4.5rem;
}

.order-form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.order-form .btn {
  margin-top: 0.25rem;
}

.product__order-fallback {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.product__order-fallback a {
  color: var(--accent);
  font-weight: 600;
}

.product__order-note {
  font-size: 0.95rem;
  margin: 0;
}

.product__qty {
  width: 4rem;
  padding: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 1rem;
}

.specs {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  margin-top: 1rem;
}

.specs th,
.specs td {
  padding: 0.65rem 0.75rem;
  text-align: left;
  border: 1px solid var(--border);
}

.specs th {
  background: var(--bg-muted);
  width: 38%;
}

.tabs {
  margin-top: 2rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.tabs h2 {
  text-align: left;
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.prose {
  max-width: 65ch;
}

.prose p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.prose strong {
  color: var(--text);
}

.prose h2 {
  font-size: 1.15rem;
  margin: 2rem 0 0.75rem;
  color: var(--text);
}

.prose h2:first-of-type {
  margin-top: 1.25rem;
}

.prose ol {
  margin: 0 0 1rem;
  padding-left: 1.35rem;
  color: var(--text-muted);
}

.prose ol li {
  margin-bottom: 0.5rem;
}

.prose ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: var(--text-muted);
}

.legal-notice {
  background: #fffbeb;
  border: 1px solid #fcd34d;
  color: var(--text-muted);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.legal-notice strong {
  color: var(--text);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border-radius: var(--radius);
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Landing: lifestyle grid */
.lifestyle-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .lifestyle-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .lifestyle-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.lifestyle-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-muted);
}

.lifestyle-card img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.lifestyle-card figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* Feature infographic: framed image + readable highlights */
.feature-showcase {
  max-width: 56rem;
  margin: 2rem auto 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.feature-showcase picture {
  display: block;
  line-height: 0;
  background: var(--bg-muted);
}

.feature-showcase img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-showcase__highlights {
  list-style: none;
  margin: 0;
  padding: 1rem 1.25rem;
  display: grid;
  gap: 0.75rem;
  border-top: 1px solid var(--border);
  background: var(--bg-muted);
}

@media (min-width: 640px) {
  .feature-showcase__highlights {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1.25rem 1.5rem;
  }
}

.feature-showcase__highlights li {
  margin: 0;
  padding: 0.65rem 0.75rem;
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  line-height: 1.35;
}

.feature-showcase__caption {
  margin: 0;
  padding: 0.75rem 1.25rem 1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  text-align: center;
}

/* Trust strip */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-top: 2rem;
}

.trust-strip img {
  width: 100%;
  max-width: 36rem;
  height: auto;
  display: block;
  margin-inline: auto;
}

/* Testimonials / community photos */
.testimonial-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg);
}

.testimonial-card img {
  width: 100%;
  display: block;
  aspect-ratio: 1;
  object-fit: cover;
}

.testimonial-card__body {
  padding: 0.85rem 1rem 1rem;
}

.testimonial-card__label {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--teal);
}

.testimonial-card p {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Video embed */
.video-wrap {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
}

.video-wrap video {
  width: 100%;
  display: block;
}

/* Product gallery */
.product__gallery-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.product__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: flex-start;
}

@media (max-width: 799px) {
  .product__thumbs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.35rem;
    -webkit-overflow-scrolling: touch;
  }
}

.product__thumb {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-muted);
  line-height: 0;
  flex: 0 0 auto;
  width: 80px;
  height: 80px;
}

.product__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
  display: block;
}

.product__thumb.is-active,
.product__thumb:focus-visible {
  border-color: var(--accent);
  outline: none;
}

.product__thumb:focus:not(:focus-visible) {
  outline: none;
}

/* Footer link columns */
.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.9rem;
}

.site-footer__links strong {
  color: #e5e5e5;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.site-footer__hint {
  color: #6b7280;
  font-size: 0.85rem;
}

/* Cookie banner (TTDSG / DSGVO) */
body.has-cookie-banner {
  padding-bottom: max(6rem, env(safe-area-inset-bottom));
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  padding: 1rem 0 calc(1rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid var(--border);
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(8px);
}

.cookie-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}

.cookie-banner__copy {
  flex: 1 1 16rem;
  min-width: 0;
}

.cookie-banner__title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.cookie-banner__desc {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.cookie-banner__desc a {
  font-weight: 600;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  flex-shrink: 0;
}

@media (max-width: 520px) {
  .cookie-banner__actions {
    width: 100%;
    flex-direction: column;
  }

  .cookie-banner__actions .btn {
    width: 100%;
  }
}
