/* ==============================================================
   Coach Music — Zentrale Styles (Redesign 2026)
   Modern, warm, mit Fokus auf Produktpräsentation
   Mobile-First, Breakpoint 768px
   ============================================================== */

/* ---- Google Fonts: Sora (Headlines) + Inter (Body) ---- */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap');

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

:root {
  /* Dark mode ist Standard — Light über [data-theme="light"] auf <html> */
  --color-bg: #16100C;
  --color-header-footer: #0D0907;
  --color-accent: #C2703D;
  --color-accent-hover: #E29A55;
  --color-text: #FAF6F0;
  --color-text-light: #FAF6F0;
  --color-card-bg: rgba(40, 30, 22, 0.55);
  --color-border: rgba(250, 246, 240, 0.1);
  --color-success: #5BAA78;
  --font-family: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Sora', 'Inter', system-ui, sans-serif;
  --header-height: 72px;
  --header-height-mobile: 60px;
  --max-width: 1200px;
  --border-radius: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --shadow-card: 0 1px 4px rgba(0,0,0,0.35), 0 8px 28px rgba(0,0,0,0.45);
  --shadow-card-hover: 0 2px 8px rgba(0,0,0,0.4), 0 20px 48px rgba(0,0,0,0.55);
  --gradient-accent: linear-gradient(120deg, #C2703D 0%, #E29A55 100%);
  --color-text-muted: rgba(250, 246, 240, 0.62);
}

[data-theme="light"] {
  --color-bg: #FAF6F0;
  --color-header-footer: #16100C;
  --color-text: #1B1511;
  --color-card-bg: rgba(255, 255, 255, 0.72);
  --color-border: #EAE2D8;
  --color-success: #3E7A55;
  --shadow-card: 0 1px 2px rgba(22,16,12,0.04), 0 8px 24px rgba(22,16,12,0.06);
  --shadow-card-hover: 0 2px 4px rgba(22,16,12,0.06), 0 18px 44px rgba(22,16,12,0.13);
  --color-text-muted: #6B6259;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scroll-padding-top: calc(var(--header-height-mobile) + 16px);
}

@media (min-width: 768px) {
  html {
    scroll-padding-top: calc(var(--header-height) + 16px);
  }
}

body {
  font-family: var(--font-family);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 50% at 15% 20%, rgba(194, 112, 61, 0.12), transparent 60%),
    radial-gradient(ellipse 60% 40% at 82% 68%, rgba(226, 154, 85, 0.08), transparent 60%);
  pointer-events: none;
  z-index: -1;
}

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

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

/* Kein graues Aufblitzen beim Tippen auf Touch-Geräten */
a, button {
  -webkit-tap-highlight-color: transparent;
}

h1, h2, h3, .hero__headline, .section__headline, .page-header__headline {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.hero__headline, .section__headline, .page-header__headline {
  text-wrap: balance;
}

::selection {
  background: var(--color-accent);
  color: #fff;
}

/* ---- Sanftes Einblenden der Hauptbereiche ---- */
@media (prefers-reduced-motion: no-preference) {
  .hero, .section, .page-header {
    animation: fade-up 0.7s ease both;
  }
  @keyframes fade-up {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}

/* ---- Skip-to-Content (Accessibility) ---- */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--color-accent);
  color: #fff;
  padding: 10px 18px;
  z-index: 10000;
  font-weight: 600;
  border-radius: 0 0 var(--radius-sm) 0;
  transition: top 0.2s ease;
}

.skip-to-content:focus {
  top: 0;
}

/* ---- Focus Styles ---- */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Header: dunkles Glas mit Blur ---- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(22, 16, 12, 0.88);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(250, 246, 240, 0.08);
  height: var(--header-height-mobile);
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .header {
    height: var(--header-height);
  }
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--color-text-light);
  text-decoration: none;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
}

.header__logo::after {
  content: '.';
  color: var(--color-accent-hover);
}

/* ---- Logo-Icon: animierter Schlägel ---- */
.logo-icon {
  display: inline-block;
  width: 26px;
  height: 26px;
  vertical-align: middle;
  margin-right: 8px;
  flex-shrink: 0;
}

.logo-icon__stick {
  transform-origin: 82% 10%;
  will-change: transform;
  animation: drum-hit 1.4s ease-in-out infinite;
}

@keyframes drum-hit {
  0%   { transform: rotate(0deg); }
  20%  { transform: rotate(28deg); }
  35%  { transform: rotate(0deg); }
  55%  { transform: rotate(22deg); }
  70%  { transform: rotate(0deg); }
  100% { transform: rotate(0deg); }
}

@media (prefers-reduced-motion: reduce) {
  .logo-icon__stick {
    animation: none;
  }
  .nav,
  .menu-toggle__bar {
    transition: none;
  }
}

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

.header__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ---- Navigation ---- */
.nav__list {
  list-style: none;
  display: flex;
  gap: 4px;
}

.nav__link {
  color: rgba(250, 246, 240, 0.78);
  font-weight: 500;
  font-size: 0.9375rem;
  text-decoration: none;
  padding: 8px 13px;
  border-radius: var(--radius-pill);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav__link:hover {
  color: #fff;
  background: rgba(250, 246, 240, 0.1);
}

.nav__link[aria-current="page"] {
  color: #fff;
  background: rgba(226, 154, 85, 0.18);
}

/* Desktop: Inline-Navigation */
@media (min-width: 768px) {
  .nav {
    display: flex;
  }
}

/* Mobile: vollflächiges Slide-Down-Panel unter dem Header */
@media (max-width: 767px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: calc(100vh - var(--header-height-mobile));
    height: calc(100dvh - var(--header-height-mobile));
    background: var(--color-header-footer);
    padding: 20px 24px calc(32px + env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0s linear 0.28s;
  }

  .nav.nav--open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0s;
  }

  .nav__list {
    flex-direction: column;
    gap: 6px;
  }

  .nav__link {
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    color: rgba(250, 246, 240, 0.85);
  }

  .nav__link:active {
    background: rgba(250, 246, 240, 0.14);
  }

  .nav__link[aria-current="page"] {
    color: #fff;
    background: rgba(226, 154, 85, 0.18);
    box-shadow: inset 3px 0 0 var(--color-accent-hover);
  }

  /* Amazon-CTA im mobilen Menü */
  .nav__amazon {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(250, 246, 240, 0.12);
  }

  .nav__amazon .amazon-shop-link {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 14px 20px;
    font-size: 1rem;
  }

  /* Menüpunkte sanft gestaffelt einblenden */
  @media (prefers-reduced-motion: no-preference) {
    .nav.nav--open .nav__list > li {
      animation: nav-item-in 0.4s ease both;
    }
    .nav.nav--open .nav__list > li:nth-child(1) { animation-delay: 0.03s; }
    .nav.nav--open .nav__list > li:nth-child(2) { animation-delay: 0.06s; }
    .nav.nav--open .nav__list > li:nth-child(3) { animation-delay: 0.09s; }
    .nav.nav--open .nav__list > li:nth-child(4) { animation-delay: 0.12s; }
    .nav.nav--open .nav__list > li:nth-child(5) { animation-delay: 0.15s; }
    .nav.nav--open .nav__list > li:nth-child(6) { animation-delay: 0.18s; }
    .nav.nav--open .nav__list > li:nth-child(7) { animation-delay: 0.21s; }
  }
}

@keyframes nav-item-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll-Lock, solange das mobile Menü offen ist */
body.nav-open {
  overflow: hidden;
}

/* ---- Mobile Menu Toggle ---- */
.menu-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 44px;
  min-height: 44px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.menu-toggle__bar {
  width: 24px;
  height: 2px;
  background: var(--color-text-light);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

/* Hamburger → X, sobald das Menü offen ist */
.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.4);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}

/* ---- Amazon Shop Link ---- */
.amazon-shop-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-accent);
  border: none;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.875rem;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(194, 112, 61, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.amazon-shop-link:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(194, 112, 61, 0.45);
}

.amazon-shop-link--header {
  display: none;
}

@media (min-width: 768px) {
  .amazon-shop-link--header {
    display: inline-flex;
  }
}

.amazon-shop-link__icon {
  width: 16px;
  height: 16px;
}

.disclosure {
  font-size: 0.7rem;
  opacity: 0.75;
  margin-left: 4px;
}

/* ---- Main Content ---- */
.main {
  flex: 1;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 56px 24px 64px;
  max-width: var(--max-width);
  margin: 0 auto;
  overflow: visible;
}

/* warmer Lichtkegel hinter dem Hero */
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(226, 154, 85, 0.18) 0%, rgba(226, 154, 85, 0) 65%);
  pointer-events: none;
  z-index: -1;
}

@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    align-items: center;
    padding: 96px 24px 104px;
  }

  .hero__content {
    flex: 0 0 55%;
    padding-right: 48px;
  }

  .hero__image {
    flex: 0 0 45%;
  }
}

.hero__headline {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 20px;
  color: var(--color-text);
}

.hero__headline em,
.hero__headline strong {
  font-style: normal;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__subline {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--color-text-muted);
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 34em;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Auf schmalen Displays: Buttons untereinander in voller Breite */
@media (max-width: 480px) {
  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__ctas .btn {
    justify-content: center;
  }
}

.hero__image img {
  width: 100%;
  border-radius: 24px;
  object-fit: contain;
  background: #fff;
  padding: 28px;
  max-height: 460px;
  box-shadow: var(--shadow-card-hover);
  border: 1px solid var(--color-border);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn:active {
  transform: scale(0.97);
}

.btn--primary {
  background: var(--gradient-accent);
  color: #fff;
  box-shadow: 0 6px 18px rgba(194, 112, 61, 0.35);
}

.btn--primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(194, 112, 61, 0.45);
}

.btn--secondary {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid rgba(250, 246, 240, 0.25);
}

[data-theme="light"] .btn--secondary {
  border: 1.5px solid #D8CEC2;
}

.btn--secondary:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
}

/* ---- Section ---- */
.section {
  padding: 64px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section__headline {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--color-text);
}

.section--dark {
  position: relative;
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(226, 154, 85, 0.14), transparent 60%),
    var(--color-header-footer);
  color: var(--color-text-light);
  max-width: 100%;
  padding: 72px 24px;
  border-top: 1px solid rgba(250, 246, 240, 0.07);
  border-bottom: 1px solid rgba(250, 246, 240, 0.07);
}

.section--dark .section__headline {
  color: var(--color-text-light);
}

.section--dark > * {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

/* ---- Category Grid ---- */
.category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

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

.category-card {
  background: var(--color-card-bg);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  backdrop-filter: blur(14px) saturate(120%);
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: #E0CDB8;
}

.category-card__image {
  height: 220px;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-bottom: 1px solid var(--color-border);
}

.category-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.category-card:hover .category-card__image img {
  transform: scale(1.06);
}

.category-card__body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.category-card__title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.category-card__desc {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-bottom: 18px;
  line-height: 1.6;
  flex: 1;
}

.category-card__link {
  font-weight: 600;
  color: var(--color-accent);
  text-decoration: none;
}

.category-card__link:hover {
  color: var(--color-accent-hover);
}

/* ---- Product Card ---- */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
}

.product-card {
  background: var(--color-card-bg);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  backdrop-filter: blur(14px) saturate(120%);
  border-radius: var(--border-radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: #E0CDB8;
}

/* Amazon-Produktfotos haben weißen Hintergrund → contain statt cover */
.product-card__image {
  height: 260px;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-bottom: 1px solid var(--color-border);
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

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

.product-card__body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.product-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

.product-card__desc {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.product-card__bullets {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.product-card__bullets li {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}

.product-card__bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: 700;
  font-size: 0.8rem;
}

.product-card__bullets li strong {
  color: var(--color-text);
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

.product-card__price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text);
}

.product-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gradient-accent);
  color: #fff;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(194, 112, 61, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card__cta:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(194, 112, 61, 0.42);
}

.product-card__disclosure {
  font-size: 0.75rem;
  opacity: 0.65;
}

/* ---- Trust Signals ---- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

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

.trust-item {
  text-align: center;
  padding: 28px 18px;
  background: rgba(250, 246, 240, 0.05);
  border: 1px solid rgba(250, 246, 240, 0.1);
  border-radius: var(--border-radius);
  transition: background 0.25s ease, transform 0.25s ease;
}

.trust-item:hover {
  background: rgba(250, 246, 240, 0.09);
  transform: translateY(-3px);
}

.trust-item__icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.trust-item__text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}

.trust-item__sub {
  font-size: 0.8125rem;
  color: rgba(250, 246, 240, 0.65);
  margin-top: 6px;
}

/* ---- About / Content Sections ---- */
.content-split {
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: center;
}

@media (min-width: 768px) {
  .content-split {
    flex-direction: row;
    align-items: center;
  }

  .content-split__text {
    flex: 1;
  }

  .content-split__image {
    flex: 0 0 42%;
  }
}

.content-split__image img {
  width: 100%;
  border-radius: var(--border-radius);
  object-fit: cover;
  max-height: 420px;
  box-shadow: var(--shadow-card-hover);
}

.content-split p {
  margin-bottom: 18px;
  line-height: 1.75;
}

.section--dark .content-split p {
  color: rgba(250, 246, 240, 0.82);
}

/* ---- FAQ (Accordion via <details>) ---- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--color-card-bg);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  backdrop-filter: blur(14px) saturate(120%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item[open] {
  border-color: #E0CDB8;
}

.faq-item summary {
  padding: 18px 22px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item summary:hover {
  color: var(--color-accent);
}

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

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-accent);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item__content {
  padding: 0 22px 18px;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.faq-item__content p {
  margin-bottom: 8px;
}

/* ---- Contact ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

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

.contact-card {
  background: var(--color-card-bg);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  backdrop-filter: blur(14px) saturate(120%);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow-card);
}

.contact-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-card p {
  margin-bottom: 12px;
  line-height: 1.6;
}

.contact-form label {
  display: block;
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-family);
  font-size: 1rem;
  margin-bottom: 18px;
  background: rgba(250, 246, 240, 0.07);
  color: var(--color-text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

[data-theme="light"] .contact-form input,
[data-theme="light"] .contact-form textarea,
[data-theme="light"] .contact-form select {
  background: #FDFBF8;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--color-text-muted);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--color-accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(194, 112, 61, 0.15);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.875rem;
  margin-bottom: 16px;
  cursor: pointer;
}

.checkbox-label input {
  width: auto;
  margin-top: 3px;
}

/* ---- Table ---- */
.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  background: var(--color-card-bg);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

thead th {
  background: var(--color-header-footer);
  color: var(--color-text-light);
  padding: 14px 18px;
  text-align: left;
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

tbody td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
  background: var(--color-card-bg);
}

tbody tr:last-child td {
  border-bottom: none;
}

tbody tr:hover td {
  background: rgba(250, 246, 240, 0.06);
}

[data-theme="light"] tbody tr:hover td {
  background: #FBF7F1;
}

.section--dark .table-wrapper {
  border-color: rgba(250, 246, 240, 0.12);
}

/* ---- Legal Pages (Impressum, Datenschutz) ---- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.legal-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 36px;
  margin-bottom: 12px;
}

.legal-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 8px;
}

.legal-content p {
  margin-bottom: 12px;
}

.legal-content address {
  font-style: normal;
  margin-bottom: 16px;
  line-height: 1.6;
}

/* ---- Page Header ---- */
.page-header {
  position: relative;
  padding: 56px 24px 40px;
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 640px;
  height: 380px;
  background: radial-gradient(closest-side, rgba(226, 154, 85, 0.14), transparent);
  pointer-events: none;
  z-index: -1;
}

.page-header__headline {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.12;
}

.page-header__subline {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 40em;
  margin: 0 auto;
}

.page-header__image {
  margin-top: 36px;
  border-radius: var(--border-radius);
  overflow: hidden;
  height: clamp(220px, 35vw, 420px);
  box-shadow: var(--shadow-card-hover);
}

.page-header__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Variante für Amazon-Produktfotos (weißer Hintergrund) */
.page-header__image--product {
  background: #fff;
  height: 340px;
}

.page-header__image--product img {
  object-fit: contain;
  padding: 24px;
}

/* ---- Breadcrumbs ---- */
.breadcrumbs {
  padding: 16px 24px 0;
  max-width: var(--max-width);
  margin: 0 auto;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

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

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

.breadcrumbs__separator {
  margin: 0 8px;
  opacity: 0.5;
}

/* ---- Footer ---- */
.footer {
  background: var(--color-header-footer);
  color: var(--color-text-light);
  padding: 56px 24px 28px;
  margin-top: auto;
  border-top: 3px solid transparent;
  border-image: var(--gradient-accent) 1;
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

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

.footer__col-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  margin-bottom: 16px;
  color: var(--color-accent-hover);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.footer__list {
  list-style: none;
}

.footer__list li {
  margin-bottom: 10px;
}

.footer__list a {
  color: rgba(250, 246, 240, 0.72);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.footer__bottom {
  max-width: var(--max-width);
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(250, 246, 240, 0.12);
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(250, 246, 240, 0.55);
}

.footer__bottom a {
  color: rgba(250, 246, 240, 0.75);
}

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

.footer__disclaimer {
  margin-top: 8px;
  font-size: 0.75rem;
  opacity: 0.6;
}

.footer .amazon-shop-link {
  margin-top: 10px;
}

/* ---- Responsive helpers ---- */
@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .hide-desktop {
    display: none !important;
  }
}

/* ---- Utility ---- */
.text-center {
  text-align: center;
}

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

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

/* ---- Product Features List ---- */
.product-card__features {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.product-card__features li {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}

.product-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: 700;
  font-size: 0.8rem;
}

/* ---- Single product page (Trommelschlägel) centered layout ---- */
.product-single {
  max-width: 680px;
  margin: 0 auto;
}

.product-single .product-card__image {
  height: 340px;
}

/* ---- Theme Toggle ---- */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(250, 246, 240, 0.08);
  border: 1px solid rgba(250, 246, 240, 0.14);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  flex-shrink: 0;
}

.theme-toggle:hover {
  background: rgba(250, 246, 240, 0.16);
  border-color: rgba(250, 246, 240, 0.22);
}

.theme-toggle__icon {
  width: 17px;
  height: 17px;
  color: var(--color-text-light);
  display: none;
  pointer-events: none;
}

.theme-toggle__icon--moon { display: block; }

[data-theme="light"] .theme-toggle__icon--moon { display: none; }
[data-theme="light"] .theme-toggle__icon--sun  { display: block; }

[data-theme="light"] .theme-toggle {
  background: rgba(22, 16, 12, 0.07);
  border-color: rgba(22, 16, 12, 0.13);
}

[data-theme="light"] .theme-toggle:hover {
  background: rgba(22, 16, 12, 0.13);
}

[data-theme="light"] .theme-toggle__icon {
  color: var(--color-text);
}

/* ---- Language Picker ---- */
.lang-picker {
  position: relative;
  flex-shrink: 0;
}

.lang-picker__btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 11px;
  background: rgba(250, 246, 240, 0.08);
  border: 1px solid rgba(250, 246, 240, 0.14);
  border-radius: var(--radius-pill);
  color: var(--color-text-light);
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: var(--font-family);
  cursor: pointer;
  transition: background 0.2s ease;
  min-height: 38px;
  letter-spacing: 0.03em;
}

.lang-picker__btn:hover {
  background: rgba(250, 246, 240, 0.16);
}

.lang-picker__chevron {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.lang-picker__btn[aria-expanded="true"] .lang-picker__chevron {
  transform: rotate(180deg);
}

.lang-picker__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #1A1410;
  border: 1px solid rgba(250, 246, 240, 0.13);
  border-radius: var(--radius-sm);
  padding: 5px;
  list-style: none;
  min-width: 130px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.55);
  z-index: 500;
}

.lang-picker__dropdown--open {
  display: block;
}

.lang-picker__dropdown li button {
  display: block;
  width: 100%;
  padding: 8px 11px;
  background: none;
  border: none;
  border-radius: 7px;
  color: rgba(250, 246, 240, 0.78);
  font-size: 0.875rem;
  font-family: var(--font-family);
  cursor: pointer;
  text-align: left;
  transition: background 0.15s ease, color 0.15s ease;
}

.lang-picker__dropdown li button:hover,
.lang-picker__dropdown li button[aria-selected="true"] {
  background: rgba(250, 246, 240, 0.1);
  color: #fff;
}

[data-theme="light"] .lang-picker__btn {
  background: rgba(22, 16, 12, 0.07);
  border-color: rgba(22, 16, 12, 0.13);
  color: var(--color-text);
}

[data-theme="light"] .lang-picker__btn:hover {
  background: rgba(22, 16, 12, 0.13);
}

[data-theme="light"] .lang-picker__dropdown {
  background: #fff;
  border-color: #EAE2D8;
  box-shadow: 0 8px 28px rgba(22,16,12,0.15);
}

[data-theme="light"] .lang-picker__dropdown li button {
  color: #1B1511;
}

[data-theme="light"] .lang-picker__dropdown li button:hover {
  background: rgba(22, 16, 12, 0.06);
  color: #1B1511;
}

/* ---- select option color fix (dark mode) ---- */
.contact-form select option {
  background: #1A1410;
  color: #FAF6F0;
}

[data-theme="light"] .contact-form select option {
  background: #fff;
  color: #1B1511;
}

/* ---- hero image border in dark mode ---- */
.hero__image img {
  border-color: rgba(250, 246, 240, 0.1);
}

[data-theme="light"] .hero__image img {
  border-color: var(--color-border);
}

/* ---- product card image area in dark mode ---- */
.category-card__image,
.product-card__image {
  background: #fff;
}

/* ---- page header background stays subtle ---- */
.page-header {
  background: transparent;
}
