:root {
  --primary: #b30000; /* Weihnachtsrot */
  --secondary: #d4a017; /* Gold */
  --dark-text: #5A3E36;
  --light-text: #8A7A72;
  --card-bg: rgba(255, 255, 255, 0.98);
  --section-bg: rgba(255, 248, 240, 0.9);
  --border-color: rgba(212, 160, 23, 0.35); /* goldener Ton */
}

body {
  font-family: 'Montserrat', sans-serif;
  background: url("neu2.svg.svg") no-repeat center center fixed;
  background-size: cover;
  color: var(--dark-text);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* ===== HEADER ===== */

.header-icon {
  display: flex;
  justify-content: center;
  margin-top: 0.2rem;
  margin-bottom: -3.5rem;
}

.header-icon img {
  width: 170px;
  height: auto;
  display: block;
  opacity: 0.95;
}

/* H1 */
.neue-ueberschrift {
  font-family: 'Playfair Display', serif;
  font-size: 2.3rem;
  font-weight: 500;
  color: var(--dark-text);
  margin: 0.6rem auto 1.2rem;
  line-height: 1.3;
  text-align: center;
}

/* Subtitle */
.subtitle {
  font-size: 1.05rem;
  color: var(--light-text);
  max-width: 600px;
  margin: 0 auto 1.5rem;
  text-align: center;
}

/* ===== BEREICHS-TITEL & BESCHREIBUNG ===== */

.bereichs-titel {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--dark-text);
  text-align: center;
  margin: 3rem 0 1.2rem;
  font-weight: 500;
}

.bereichs-beschreibung {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--light-text);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  background: rgba(255, 255, 255, 0.7);
  padding: 0.6rem 1rem;
  border-radius: 16px;
}

/* ===== KARUSSELL (aktuell nicht genutzt, kann bleiben) ===== */

.carousel-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 4rem;
  padding: 0 3rem;
}

.carousel {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 0;
  scroll-behavior: smooth;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.carousel::-webkit-scrollbar {
  display: none;
}

/* ===== LISTE MIT PRODUKTEN (NEU FÜR UNTEREINANDER-ANSICHT) ===== */

.produkt-liste {
  max-width: 900px;   /* gesamte Liste schmaler */
  margin: 0 auto;     /* zentriert */
}

/* ===== PRODUKTE ===== */

.produkt {
  /* frühere Carousel-Eigenschaften entfernt */
  background: var(--card-bg);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow:
    0 5px 15px rgba(0, 0, 0, 0.08),
    0 0 10px rgba(212, 160, 23, 0.18); /* leichter goldener Glow */
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;

  border: none;             /* rosa Rand entfernt */
  max-width: 500px;         /* Box schmaler */
  margin: 1.5rem auto;      /* Abstand + zentriert */
}

.produkt:hover {
  transform: translateY(-5px);
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.12),
    0 0 16px rgba(212, 160, 23, 0.35); /* stärkerer Weihnachts-Glow */
}

.produkt-label {
  background: #b30000; /* Weihnachtsrot */
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

.produkt img {
  height: 180px;
  max-width: 100%;
  object-fit: contain;
  margin: 0 auto;
  display: block;
  border-radius: 8px;
  background: white;
  padding: 0.5rem;
}

.produkt h3 {
  font-size: 1.15rem;
  margin: 1rem 0;
  font-weight: 500;
  color: var(--dark-text);
}

.produkt-link {
  display: inline-block;
  background: linear-gradient(135deg, #b30000, #d4a017); /* Rot → Gold */
  color: white !important;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.produkt-link:hover {
  transform: scale(1.05);
  opacity: 0.95;
  box-shadow: 0 0 12px rgba(212, 160, 23, 0.4);
}

/* ===== SPRUNG-LINK ZU JUNGEN-GESCHENKEN (NEU) ===== */

.jump-links {
  text-align: center;
  margin: 2rem 0;
}

.jump-button {
  display: inline-block;
  font-size: 0.9rem;               /* kleiner */
  padding: 0.6rem 1.2rem;          /* kompakter */
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  background: linear-gradient(135deg, #b30000, #d4a017);
  color: white;
}

/* ===== SCROLL-BUTTONS (nur relevant, falls Carousel wieder genutzt wird) ===== */

.scroll-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.7);
  color: var(--primary); /* jetzt Weihnachtsrot */
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.scroll-button:hover {
  background: var(--primary);
  color: white;
}

.scroll-left { left: 1rem; }
.scroll-right { right: 1rem; }

/* ===== ABSCHLUSSTEXT ===== */

.abschluss-text {
  text-align: center;
  font-size: 0.95rem;
  color: var(--dark-text);
  margin: 2rem auto 1rem;
  max-width: 600px;
  padding: 0 1rem;
  font-style: italic;
}

/* ===== HINWEIS ===== */

.hinweis {
  font-size: 0.8rem;
  text-align: center;
  color: var(--light-text);
  font-style: italic;
  margin-top: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== FOOTER ===== */

footer {
  text-align: center;
  padding: 2.5rem;
  margin-top: 4rem;
  font-size: 0.9rem;
  color: var(--light-text);
  border-top: 1px solid var(--border-color); /* jetzt leicht golden */
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
  .neue-ueberschrift { font-size: 1.8rem; }
  .subtitle { font-size: 1rem; }
  .bereichs-titel { font-size: 1.4rem; }
  .carousel-wrapper { padding: 0 1.5rem; }
  .scroll-button { width: 30px; height: 30px; }

  .produkt {
    max-width: 100%;
    margin: 1rem auto;
  }

  .produkt-liste {
    padding: 0 1rem;
  }
}
