/* ======================
   FARBSYSTEM / VARIABLEN
====================== */
:root{
  --wein:#592A2A;
  --altrosa:#AA8080;
  --soft-rose:#D8B4B2;
  --smaragd:#4A7F68;
  --smaragd-deep:#144F39;
  --mint:#8CB8A5;
  --champagne:#dccdbe;
  --gold:#C19E74;

  --bg-page:#F9F4EE;
  --text:#3C2B2B;
  --text-soft:#6B5555;
  --white:#ffffff;

  --shadow-soft:0 10px 24px rgba(0,0,0,0.12);
  --shadow-card:0 18px 40px rgba(0,0,0,0.12);

  --radius-lg:20px;
  --radius-md:14px;
  --max-width:1120px;
}
/* lato-300 - latin */
@font-face {
  font-display: swap;
  font-family: 'Lato';
  font-style: normal;
  font-weight: 300;
  src: url('./fonts/lato-v25-latin-300.woff2') format('woff2');
}
/* lato-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: url('./fonts/lato-v25-latin-regular.woff2') format('woff2');
}
/* lato-700 - latin */
@font-face {
  font-display: swap;
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  src: url('./fonts/lato-v25-latin-700.woff2') format('woff2');
}
/* playfair-display-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  src: url('./fonts/playfair-display-v40-latin-regular.woff2') format('woff2');
}
/* playfair-display-500 - latin */
@font-face {
  font-display: swap;
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 500;
  src: url('./fonts/playfair-display-v40-latin-500.woff2') format('woff2');
}
/* playfair-display-600 - latin */
@font-face {
  font-display: swap;
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 600;
  src: url('./fonts/playfair-display-v40-latin-600.woff2') format('woff2');
}
/* playfair-display-700 - latin */
@font-face {
  font-display: swap;
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  src: url('./fonts/playfair-display-v40-latin-700.woff2') format('woff2');
}
/* ======================
   BASIS
====================== */
*,
*::before,
*::after{
  box-sizing:border-box;
}

html,body{
  margin:0;
  padding:0;
  overflow-x: hidden;
}
body {
  font-family: "Lato", system-ui, -apple-system, sans-serif;
  background-color: var(--bg-page);       /* keep your background color */
  color: var(--text);
  line-height: 1.6;

  background-image: url('./bilder/svg/stern.svg');
  background-repeat: repeat;              /* repeat pattern */
  background-size: auto 6em;            /* fixed height for the image */

}

img{
  max-width:100%;
  display:block;
}

a{
  color:inherit;
  text-decoration:none;
}
h1{
  font-size: 3.2rem;
  margin-bottom: 0.3rem;
}
h2, .h2-style{
  font-size: 2.2rem;
  line-height: 1.15;
}
h3, .h3-style{
  font-size:1.05rem;
}
address{
  font-style: normal;
}

h1,h2,h3{
  font-family:"Playfair Display",serif;
  margin:0 0 .5em;
  color:var(--wein);
}

p{
  margin:0 0 1em;
}

/* ======================
   INFO-BAR
====================== */
.info-bar{
  background:var(--wein);
  color:var(--champagne);
  font-size:.85rem;
  padding:.35rem 0;
}

.info-inner{
  max-width:var(--max-width);
  margin:0 auto;
  padding: 0.3rem 1rem;
  display:flex;
  gap:1.25rem;
  justify-content: center;
  flex-wrap:wrap;
  letter-spacing: 0.075rem;
}

.info-inner a{
  color:var(--champagne);
  text-decoration:underline;

}

/* ======================
   HEADER
====================== */
.main-header{
  background:var(--white);
  box-shadow:0 5px 18px rgba(0,0,0,0.06);
  position:sticky;
  top:0;
  z-index:10;
}

.header-inner{
  max-width:var(--max-width);
  margin:0 auto;
  padding:.75rem 1rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1.5rem;
}

/* Brand-Buttons links */
.brand-buttons{
  display:flex;
  gap:.75rem;
}

.brand-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding: .65rem 1.6rem;
  border-radius:var(--radius-lg);

  font-weight:600;
  font-size:.9rem;

  border:2px solid transparent;
  background:var(--champagne);
  color:var(--wein);

  box-shadow:var(--shadow-soft);
  transition:background .2s ease,color .2s ease,box-shadow .15s ease,transform .15s ease;
}
.brand-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 4px 4px rgba(0,0,0,0.08);
}


/* CUTSURA Button */
.brand-btn--cutsura{
  background:var(--champagne);
  
}

/* MYLEN Button */
.brand-btn--mylen{
  background:var(--champagne);

}

/* Hover-Farben */
.brand-btn--cutsura:hover{
  background:var(--mint);
  border-color:var(--mint);
  color:var(--white);
  box-shadow:0 18px 30px rgba(0,0,0,0.22);
  transform:translateY(-1px);
}

.brand-btn--mylen:hover{
  background:var(--altrosa);
  border-color:var(--altrosa);
  color:var(--white);
  box-shadow:0 6px 16px rgba(0,0,0,0.2);
  transform:translateY(-1px);
}

/* Navigation */
.nav-main{
  display:flex;
  align-items:center;
  gap:1.4rem;
  font-size:.95rem;
}

.nav-link{
  position:relative;
  padding:.25rem 0;
  color:var(--wein);
  cursor:pointer;
}

.nav-link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-4px;
  width:0;
  height:2px;
  background:var(--smaragd);
  transition:width .2s ease;
}

.nav-link:hover::after{
  width:100%;
}

/* Dropdown Kategorien */
.nav-item.nav-has-dropdown{
  position:relative;
}

.nav-dropdown{
  position:absolute;
  top:130%;
  left:0;
  min-width:230px;
  background:var(--white);
  border-radius:14px;
  box-shadow:0 14px 30px rgba(0,0,0,0.16);
  padding:.65rem 0;
  opacity:0;
  pointer-events:none;
  transform:translateY(-10px);
  transition:opacity .18s ease, transform .18s ease;
  z-index:20;
}

.nav-dropdown a{
  display:block;
  padding:.45rem 1rem;
  font-size:.9rem;
  color:var(--text);
  white-space:nowrap;
}

.nav-dropdown a:hover{
  background:rgba(212,191,183,0.24);
}

.nav-item.nav-has-dropdown:hover .nav-dropdown{
  opacity:1;
  pointer-events:auto;
  transform:translateY(0);
}

/* ======================
   HERO – Bild + Overlay
====================== */
.hero{
  position:relative;
  overflow:hidden;
  margin:0;
}

.hero-img{
  width:100%;
  height: 80vh;
  object-fit:cover;
  display:block;
  filter:brightness(0.75);
}

.hero-text{
  position:absolute;
  inset:auto 0 20%;
  text-align:center;
  color:var(--white);
  text-shadow:0 6px 18px rgba(0,0,0,0.65);
  padding:0 1rem;
}

.hero-text h1{
  color:var(--white);
  font-size:4rem;
  margin-bottom:.3rem;
}

.hero-text p{
  margin:0;
  font-size:1.15rem;
}

/* ======================
   CUTSURA-BESCHREIBUNG
====================== */
.about{
  padding:3rem 1rem 2.5rem;
}

.about-inner, .hero-inner, .product-detail{
  max-width:var(--max-width);
  margin:0 auto;
  text-align:center;
}
.about-inner p{
  max-width: 70%;
  margin:0.4rem auto;
}

.about-inner p{
  color:var(--text-soft);
}

/* ======================
   KATEGORIEN / CARDS
====================== */

/* ======================
   SECTION LABEL (z.B. „Kontakt“)
====================== */
.section-label-line{
  font-size: .85rem;                 /* etwas größer als contact-inline */
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;

  color: var(--wein);
  opacity: .75;

  margin-bottom: .6rem;
}


.categories{
  padding:2.5rem 1rem 3.5rem;
}

.section-header{
  text-align:center;
  max-width:640px;
  margin:0 auto 2.4rem;
}

.section-header p{
  color:var(--text-soft);
}

.cat-grid{
  max-width:var(--max-width);
  margin:0 auto;
  display: flex;
  flex-wrap:wrap;
  justify-content: center;
  gap:2.2rem;
}

/* Card mit Rahmen + Schatten */
.cat-card{
  width: 30%;
  background:var(--white);
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-card);
  display:flex;
  flex-direction:column;
  border:1px solid rgba(216,180,178,0.9); /* Soft-Rosé-Umrandung */
  transition:transform .18s ease, box-shadow .18s ease;
}

.cat-card:hover{
  transform:translateY(-4px);
  box-shadow:0 24px 48px rgba(0,0,0,0.18);
}

/* ============================
   Kategorie-Bilder in Cards
   ============================ */

.cat-card figure {
  margin: 0 0 1.5rem;
}

/* Rahmen für das Bild – gleiche Höhe durch Aspect-Ratio-Trick */
.cat-image {
  position: relative;
  width: 100%;
  padding-top: 65%;          /* ~Bildhöhe, kannst du anpassen (z.B. 60–70%) */
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* Bild füllt den Rahmen, Motiv schön mittig */
.cat-image img {
  position: absolute;
  inset: 0;                  /* top:0; right:0; bottom:0; left:0; */
  width: 100%;
  height: 100%;
  object-fit: cover;         /* füllt die Fläche, kein Verziehen */
  object-position: center;   /* Motiv in der Mitte halten */
  display: block;
}

/* Textbereich */
.cat-body{
  padding:1.3rem 1.4rem 1.5rem;

}
.cat-body   .btn-primary:hover, .cat-body .btn-primary {
  box-shadow: none;
}

.cat-body h3{
  font-size:1.15rem;
  margin-bottom:.4rem;
  color:var(--wein);
}

.cat-body p{
  font-size:.96rem;
  color:var(--text-soft);
}

.cat-link{
  display:inline-block;
  margin-top:.4rem;
  font-size:.9rem;
  font-weight:600;
  color:var(--smaragd);
}

/* ======================
   PRODUKT-ÜBERSICHTEN (Overview / Cards)
====================== */

.overview{
  padding:2.5rem 1rem 3.5rem;
}

.overview h2{
  max-width:var(--max-width);
  margin:0 auto 2rem;
}

.overview .grid{
  max-width:var(--max-width);
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:2.2rem;
}

/* generische Cards für Produktübersichten */
.card{
  background:var(--white);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-card);
  display:flex;
  flex-direction:column;
  border:1px solid rgba(216,180,178,0.9);
  overflow:hidden;
  transition:transform .18s ease, box-shadow .18s ease;
}

.card:hover{
  transform:translateY(-4px);
  box-shadow:0 24px 48px rgba(0,0,0,0.18);
}

/* Galerie oben in der Card */
.unikat-card .product-gallery{
  padding:1rem 1rem 0;
}

/* Bilder in Cards (Standard für Slider – wird unten für Cards überschrieben) */
.product-main{
  position:relative;
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:none;
}

.product-main img{
  width:100%;
  height:260px;
  object-fit:cover;
  display:none;
}

.product-main img.active{
  display:block;
}

/* Textbereich in Cards */
.card-body{
  padding:1.1rem 1.3rem 1.4rem;
}

.card-body h3{
  font-size:1.05rem;
  margin-bottom:.4rem;
  color:var(--wein);
}

.card-body p{
  font-size:.94rem;
  color:var(--text-soft);
}

/* Links in den Produkt-Cards */
.card-body h3 a{
  text-decoration:none;
}

.card-body h3 a:hover{
  text-decoration:underline;
}



/* ======================
   HIGHLIGHT-BANNER
====================== */
.seasonal-highlight{
  padding:2.8rem 1rem 3.5rem;
  background: var(--gold);
  color:white;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.seasonal-highlight-inner{
  max-width:var(--max-width);
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(0,1.1fr);
  gap:2.4rem;
  align-items:center;
}
.seasonal-highlight .highlight-badge {
  color: var(--white);
}
.section-hole{
  display: block;
}

/* ======================
   KONTAKT-BANNER (global)
====================== */
.contact-highlight{
  background: var(--gold);
}

.contact-layout{
  display:grid;
  grid-template-columns: 1fr auto;
  align-items:end;     /* Logo-Unterkante = Button-Unterkante */
  gap:3rem;
}

.contact-text{
  max-width:720px;
}

.contact-highlight h2{
 color: white;
  white-space: nowrap;
}

.contact-highlight p{
  color: white;
}
.contact-highlight .contact-inline a{
  color: var(--wein);
}

.contact-highlight .btn-contact{
  margin-top: 1.1rem;
}

.contact-inline{
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .20em;
  text-transform: uppercase;
  opacity: 1;
  white-space: nowrap;
  margin: 0 0 8px;
}

.contact-inline a{
  text-decoration:none;
}

.btn-contact{
  border-radius:var(--radius-lg);
  box-shadow:none;
}

.contact-logo-wrap{
  padding-right: 2.5rem;
}

.contact-logo{
  width: min(320px, 40vw);
  opacity: 0.22;
  filter: saturate(0) brightness(0.95);
  pointer-events:none;
}

@media (max-width:960px){
  .contact-layout{ grid-template-columns: 1fr; gap: 1.4rem; }
  .contact-logo-wrap{ display:none; }
  .contact-highlight h2{ white-space: normal; }
  .contact-inline{ white-space: normal; }
}

.highlight-badge{
  display: inline-block;
  padding: .65rem .9rem;
  border-radius: 999px;
  background: var(--wein);
  color: var(--champagne);
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: .6rem;
}


.btn-highlight{
  margin-top:.9rem;
}

/* Produkt-Galerie (nutzt deine vorhandene JS-Logik) */
.seasonal-highlight-image{
  display:flex;
  justify-content:flex-end;
}

.product-gallery{
  width:100%;
  max-width:420px;
}

.product-main-slider{
  position:relative;
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-card);
}

/* Thumbnail-Leiste */
.product-thumbs{
  display:flex;
  gap:.6rem;
  margin-top:.7rem;
  justify-content:center;
}

.product-thumbs img{
  width:80px;
  height:60px;
  object-fit:cover;
  border-radius:10px;
  cursor:pointer;
  opacity:.7;
  border:2px solid var(--wein);
}

.product-thumbs img.active{
  opacity:1;
  border-color:var(--smaragd);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* Buttons (auch für Highlight) */
.btn-primary,
.btn-ghost{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:.65rem 1.6rem;
  border-radius:var(--radius-lg);
  font-weight:600;
  font-size:.95rem;
  border:2px solid transparent;
  cursor:pointer;
  text-decoration:none;
  transition:background .2s ease,color .2s ease,box-shadow .15s ease,transform .15s ease;
}

.btn-primary{
  background:var(--champagne);
  color:var(--wein);
  box-shadow:var(--shadow-soft);
}

.btn-primary:hover{
  transform:translateY(-1px);
  box-shadow:0 18px 30px rgba(0,0,0,0.22);
}

.btn-ghost{
  background:transparent;
  color:var(--wein);
  border-color:var(--wein);
}

.btn-ghost:hover{
  background:rgba(89,42,42,0.08);
}

/* Mint-Variante für Banner im Kontakt-Stil */
.banner-mint{
  background: var(--mint);
}

/* ======================
   HOW IT WORKS
====================== */
.how-it-works{
  padding:2.5rem 1rem 3.5rem;
}

.how-grid{
  max-width:var(--max-width);
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:1.8rem;
}

.how-step{
  background:var(--white);
  border-radius:var(--radius-md);
  padding:1.2rem 1.3rem;
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.how-step h3{
  font-size:1rem;
}

.how-step p{
  font-size:.9rem;
  color:var(--text-soft);
}

/* ======================
   CTA
====================== */
.cta{
  padding:3rem 1rem 3.5rem;
  background:#ffffff;
}

.cta-inner{
  max-width:var(--max-width);
  margin:0 auto;
  text-align:center;
}

.cta-inner h2{
  font-size:1.8rem;
}

.cta-inner p{
  max-width:640px;
  margin:.75rem auto 1.8rem;
  color:var(--text-soft);
}

.cta-actions{
  display:flex;
  justify-content:center;
  gap:1rem;
  flex-wrap:wrap;
}

/* ======================
   KONTAKT-LISTEN
====================== */
.contact-list{
  list-style:none;
  padding:0;
  margin:0;
}

.contact-list li{
  display:flex;
  align-items:center;
  gap:.5rem;
  font-size:.95rem;
  margin-bottom:.4rem;
}

.contact-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:24px;
  height:24px;
}

/* Variante: Kontaktbereich im Highlight-Stil */
.contact-highlight{
  margin-top:0;
}

/* Product page */
.product-detail-inner {
  display:flex;
  gap:2rem;
}

.product-image, .product-info{
  flex:1;
}
.product-info h1{
  margin-bottom: 0.4rem;
}
.product-titel{
  font-weight: bold;
  letter-spacing: 0.1rem;
  color: white;
  opacity: 1;   /* <- das ist der wichtigste Punkt */
}

.product-image img{
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-radius:var(--radius-lg);
}
.product-info{
  text-align:left;
}
.product-info h2{
  line-height: 1;
}
.detail-row{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:2rem;
}
.detail-box{
  text-align: left;

}
.detail-section{
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 0.5rem 2rem 1rem;
  margin: 4rem 0;
}
.detail-box ul {
  margin-block-start: 0;
  margin-block-end: 0;
  padding-inline-start: 16px;
}

/* Hinweis-Block (z.B. Markenrecht / rechtliches) */
.legal-note{
  max-width:var(--max-width);
  margin:0 auto 2.5rem;
  padding:1.2rem 1.4rem;
  font-size:.9rem;
  color:var(--text-soft);
}

/* ======================
   FOOTER
====================== */
.main-footer{
  background:var(--wein);
  color:var(--champagne);
  padding:1.8rem 1rem 2.4rem;
}

.footer-inner{
  max-width:var(--max-width);
  margin:0 auto;
  display:flex;
  flex-wrap:wrap;
  gap:1.5rem;
  justify-content:space-between;
  align-items:flex-start;
  font-size:.9rem;
}

.footer-logo{
  font-family:"Playfair Display",serif;
  font-size:1.2rem;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.footer-subline{
  display:block;
  margin-top:.25rem;
  color:rgba(255,255,255,0.78);
}

.footer-contact p{
  margin:0 0 .25rem;
}

.footer-links{
  display:flex;
  flex-direction:column;
  gap:.25rem;
}

.footer-links a{
  color:rgba(255,255,255,0.82);
  text-decoration:underline;
}

/* ======================
   RESPONSIVE
====================== */
@media (max-width:960px){
  .about-inner{
    text-align:left;
  }

  .cat-card{
    width: 45%;
  }

  .overview .grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .how-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .seasonal-highlight-inner{
    grid-template-columns:1fr;
  }
  .product-gallery{
    max-width: 100%;
    min-height: 30vh;
  }
  .product-main img{
    height:30vh;
  }

  .seasonal-highlight-image{
    flex-direction: column;
    align-items: center;

  }
}

@media (max-width:768px){
  .info-inner{
    justify-content:center;
    letter-spacing: 0;
  }

  .header-inner{
    flex-direction:column;
    align-items:flex-start;
  }

  .nav-main{
    flex-wrap:wrap;
    justify-content:flex-start;
  }
  .header-inner{
    align-items: center;
  }
  .cat-card{
    width:100%;
  }

  .overview .grid{
    grid-template-columns:1fr;
  }

  .hero-text h1{
    font-size:2.2rem;
  }
  .product-detail-inner{
    flex-direction:column;
  }
}

@media (max-width:480px){
  .hero-text{
    bottom:15%;
  }
  h2{
    text-align:center;
  }
  .cutsura-span{
    display: block;
  }
.header-inner{
  align-items: center;
}
  .hero-text h1{
    font-size:1.9rem;
  }
  .cat-card{
    width:100%;
  }

  .how-grid{
    grid-template-columns:1fr;
  }
  .product-main img{
    aspect-ratio: 1/1;
  }
}

/* Wedding-Banner zentrieren */
.wedding-banner{
  padding:2.8rem 1rem 3.5rem;
}

.wedding-banner-inner{
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* Highlight-Box für Einrichtungen (Setpreise & Vor-Ort-Besuche) */
.sensomotorik-highlight{
  margin-bottom: 3rem;
  padding: 1.8rem 1.9rem;
  background: #ffffff;
}

.sensomotorik-highlight h2{
  margin-top: 0;
  margin-bottom: 0.6rem;
}

.sensomotorik-highlight p{
  margin-bottom: 0.4rem;
}

.sensomotorik-highlight ul{
  margin: 0.4rem 0 0;
  padding-left: 1.2rem;
}

/* ======================
   FIX: Bilder in Energetik-Cards anzeigen
====================== */
/* In Produkt-Übersichten (overview) sollen Card-Bilder immer sichtbar sein,
   unabhängig von der Slider-Logik (.active) */
.overview .card .product-main img{
  display:block !important;
}

/* ======================
   MYLEN – THEME
====================== */

.mylen-theme{
  --mylen-dark:#592A2A;      /* Wein */
  --mylen-accent:#AA8080;    /* Altrosa */
  --mylen-light:#DCCDBE;     /* Champagne */
  --mylen-pure:#ffffff;
  --mylen-bg:#F9F4EE;
  background:var(--mylen-bg);
}

/* Kopfbereich – Buttons wie CUTSURA */
.topbar{
  background:var(--mylen-pure);
  padding:1rem 1.4rem;
  display:flex;
  justify-content:space-between;
  align-items:center;
  box-shadow:0 5px 18px rgba(0,0,0,0.05);
}

.btn{
  padding:.55rem 1.4rem;
  font-family:"Playfair Display",serif;
  border-radius:999px;
  border:2px solid transparent;
  font-size:.9rem;
  cursor:pointer;
  transition:.2s ease;
}

.btn-black{
  background:var(--smaragd-deep);
  color:var(--white);
}

.btn-red{
  background:var(--wein);
  color:var(--champagne);
}

.btn-red:hover{
  background:var(--altrosa);
}

/* MYLEN – Intro Cards */
.about-cards{
  padding:3rem 1rem 2rem;
  text-align:center;
}

.about-cards h2{
  color:var(--wein);
}

.about-grid{
  max-width:1100px;
  margin:2rem auto 0;
  display:grid;
  gap:1.8rem;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
}

.about-card{
  background:var(--white);
  padding:1.6rem 1.8rem;
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-card);
  border:1px solid rgba(216,180,178,0.7);
}

.about-card h3{
  margin-top:0;
  color:var(--wein);
}

.about-card p{
  color:var(--text-soft);
}

/* Preis-Tabelle – Akkordeon */
.price-table{
  max-width:900px;
  margin:0 auto 3rem;
  padding:0 1rem;
}

.accordion{
  background:var(--white);
  border-radius:var(--radius-md);
  margin-bottom:1rem;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  border:1px solid rgba(216,180,178,0.6);
}

.accordion-header{
  padding:1rem 1.4rem;
  font-weight:600;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
  color:var(--wein);
}

.accordion-content{
  padding:1rem 1.4rem 1.4rem;
  display:none;
  border-top:1px solid rgba(216,180,178,0.3);
}

.accordion.open .accordion-content{
  display:block;
}

/* Kontaktbereich */
.contact-panel{
  background:linear-gradient(135deg,rgba(170,128,128,0.15),rgba(74,127,104,0.1));
  padding:3rem 1rem 4rem;
}

.contact-inner{
  max-width:900px;
  margin:0 auto;
  background:var(--white);
  padding:2rem;
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-card);
  border:1px solid rgba(216,180,178,0.7);
}

.contact-list li{
  margin-bottom:.6rem;
}

/* ======================
   SCHUTZKREIS – Banner Fix
====================== */

.schutzkreis-banner {
  padding: 3rem 1rem 3.5rem;
}

.schutzkreis-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr; /* Bild links etwas größer */
  gap: 2.4rem;
  align-items: center;
}

.schutzkreis-banner-image img {
  width: 100%;
  height: auto;
  border-radius:var(--radius-lg);
  box-shadow: var(--shadow-card);
  object-fit: cover;
}

/* Textblock */
.schutzkreis-banner-text {
  color: var(--text);
}

.schutzkreis-banner-text h2 {
  margin-top: 0.5rem;
  margin-bottom: 0.8rem;
}

.schutzkreis-banner-text p {
  margin-bottom: 1rem;
  color: var(--text-soft);
}

/* Badge */
.schutzkreis-banner-text .highlight-badge {
  background: var(--wein);
  color: var(--champagne);
  display: inline-block;
  padding: .25rem .7rem;
  border-radius: 999px;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* Preis */
.preis-hervorheben {
  font-size: 1.15rem;
  color: var(--wein);
  margin: .6rem 0 1rem;
}

/* Responsive */
@media (max-width: 860px) {
  .schutzkreis-banner-inner {
    grid-template-columns: 1fr;
  }
}

/* ======================
   SCHUTZKREIS – SLIDER FIX
====================== */

.breadcrumb {
  max-width: var(--max-width);
  margin: 1.5rem auto 2rem;
  padding: 0 1rem;
  font-size: .9rem;
  color: var(--text-soft);
}

.breadcrumb a {
  color: var(--smaragd);
  text-decoration: underline;
}

/* Slider Wrapper */
.schutzkreis-gallery {
  padding: 2rem 1rem 3rem;
}

.schutzkreis-slider {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.schutzkreis-slides {
  position: relative;
}

.schutzkreis-slide {
  display: none;
  text-align: center;
}

.schutzkreis-slide.active {
  display: block;
}

.schutzkreis-slide-images img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius:var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.schutzkreis-slide-caption {
  margin-top: 1rem;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}

.schutzkreis-slide-caption h3 {
  margin-bottom: .4rem;
}

/* Punkte-Navigation */
.schutzkreis-dots {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: .5rem;
}

.schutzkreis-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d2c1c1;
  border: none;
  cursor: pointer;
}

.schutzkreis-dot.active {
  background: var(--wein);
}

/* Abstand über dem ersten Overview Block */
.schutzkreis-overview {
  margin-top: 3rem;
}

/* ======================
   STERNENKIND – ERINNERUNGS-SUNCATCHER
====================== */

.sternenkind-banner {
  padding: 3rem 1rem 3.5rem;
  background: linear-gradient(
          135deg,
          rgba(170,128,128,0.10),
          rgba(74,127,104,0.06)
  );
}

.sternenkind-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
  gap: 2.4rem;
  align-items: center;
}

/* Bildbereich */
.sternenkind-image img {
  width: 100%;
  height: auto;
  border-radius:var(--radius-lg);
  box-shadow: var(--shadow-card);
  object-fit: cover;
}

/* Textbereich */
.sternenkind-text {
  color: var(--text);
}

.sternenkind-text h2 {
  margin-top: 0.5rem;
  margin-bottom: 0.8rem;
}

.sternenkind-text p {
  margin-bottom: 0.8rem;
  color: var(--text-soft);
}

.sternenkind-text ul {
  margin: 0.4rem 0 1rem;
  padding-left: 1.2rem;
  color: var(--text-soft);
}

/* Badge oben */
.sternenkind-badge {
  display: inline-block;
  padding: .25rem .7rem;
  border-radius: 999px;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  background: var(--altrosa);
  color: var(--white);
}

/* Button im Sternenkind-Block – nutzt die bestehende .btn-primary Optik */
.sternenkind-text .btn-primary {
  margin-top: 0.4rem;
}

/* Responsive Anpassungen */
@media (max-width: 860px) {
  .sternenkind-inner {
    grid-template-columns: 1fr;
  }

  .sternenkind-image {
    order: -1; /* Bild über dem Text auf kleinen Screens */
  }
}

/* ======================
   ENERGETIK – SYMBOL INTRO (Slider + Text links/rechts)
====================== */

.unikat-intro {
  padding: 3rem 1rem 3.5rem;
}

.unikat-intro-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.4rem;
  align-items: center;
}

/* SLIDER-Bereich */
.unikat-slider {
  position: relative;
}

.unikat-slides img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius:var(--radius-lg);
  box-shadow: var(--shadow-card);
  display: none;
}

.unikat-slides img.active {
  display: block;
}

/* Slider Punkte */
.unikat-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: .9rem;
}

.unikat-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(170,128,128,0.45);
  border: none;
  cursor: pointer;
}

.unikat-dots .dot.active {
  background: var(--wein);
}

/* TEXT-Bereich */
.unikat-text h2 {
  margin-top: 0;
  margin-bottom: .8rem;
  color: var(--wein);
}

.unikat-text p {
  color: var(--text-soft);
  margin-bottom: .8rem;
}

/* RESPONSIVE */
@media (max-width: 860px) {
  .unikat-intro-inner {
    grid-template-columns: 1fr;
  }

  .unikat-text {
    margin-top: 1rem;
  }
}

/* ======================
   HOCHZEITSBANNER – FIX: Headline + Bildrahmen
   (nur wenn <section class="... banner-portrait">)
====================== */
.banner-portrait.contact-highlight h2{
  white-space: normal;
}


/* Bild-Wrapper auf "Foto-Größe" begrenzen */
.banner-portrait .product-gallery{
  max-width: 320px;         /* ✅ Foto kleiner */
}

/* Rahmen = gleiche Rundung wie Cards */
.banner-portrait .product-main{
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;         /* ✅ alle Ecken sauber rund */
}

/* Bild füllt den Rahmen (statt max-width am Bild) */
.banner-portrait .product-main img.banner-img-portrait{
  width: 100%;
  max-width: none;          /* ✅ nimmt nicht mehr nur "320px im Container" */
  height: auto;
  display: block;

  object-fit: contain;        /* ✅ keine “halben” Ecken mehr */
}

/* ======================
   FOTObox-Zubehör – Banner mit Hintergrundbild (statt Hero)
====================== */
.fotobox-hero{
  position: relative;
  background:
    linear-gradient(90deg, rgba(193,158,116,0.92), rgba(193,158,116,0.70)),
    url("bilder/hochzeit/Lebkuchenherzen_fotobox.JPEG");
  background-size: cover;
  background-position: center;
}

/* rechts im Grid bleibt leer -> wirkt wie “Bildfläche” */
.fotobox-hero .seasonal-highlight-image{
  min-height: 220px;
}

@media (max-width:960px){
  .fotobox-hero .seasonal-highlight-image{
    min-height: 160px;
  }
}

/* ======================
   Banner in WEIN (nur dort wo .banner-wein gesetzt ist)
====================== */
.banner-wein{
  background: var(--wein);
  color: var(--white);
}

/* Text im Wein-Banner */
.banner-wein h2{
  color: var(--white);
}

/* Badge oben im Wein-Banner (bleibt “wie vorher”, aber passend) */
.banner-wein .highlight-badge{
  background: rgba(255,255,255,0.14);
  color: var(--white);
}

/* Fotobox-Hintergrundbild nur im Banner (ohne eigenes Titelbild/Hero) */
.fotobox-hero{
  background:
    linear-gradient(90deg, rgba(89,42,42,0.92), rgba(89,42,42,0.68)),
    url("bilder/hochzeit/Lebkuchenherzen_fotobox.JPEG");
  background-size: cover;
  background-position: center;
}
.fotobox-hero .seasonal-highlight-image{
  min-height: 220px;
}
@media (max-width:960px){
  .fotobox-hero .seasonal-highlight-image{ min-height: 160px; }
}

/* ======================
   NUR AUF AUSGEWÄHLTEN UNTERSEITEN: 2 CARDS NEBENEINANDER
====================== */

.two-cards-layout .overview .grid{
  grid-template-columns: repeat(2, minmax(0,1fr));
}

/* Mobile bleibt wie bisher */
@media (max-width:768px){
  .two-cards-layout .overview .grid{
    grid-template-columns: 1fr;
  }
}

/* =========================================
   GLOBAL: Mint-Variante für Kontakt/Highlight Banner
========================================= */
.banner-mint{
  background: var(--mint);
}

/* =========================================
   GLOBAL: Produkt-Anfrageformular (Index-kompatibel)
========================================= */
.product-order-form .form-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:12px;
}

.product-order-form .form-col{
  flex:1 1 180px;
}

.product-order-form .form-col--single{
  margin-bottom:12px;
}

.product-order-form .form-col--qty{
  flex:0 0 110px;
}

.product-order-form label{
  display:block;
  font-size:0.95rem;
  margin-bottom:4px;
  color:var(--text);
}

.product-order-form input,
.product-order-form textarea{
  width:100%;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,0.12);
  font:inherit;
  background:#fff;
}

.product-order-form textarea{
  resize:vertical;
}

.product-order-form .form-static{
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,0.12);
  background:#fff;
}

.product-order-form .form-help{
  display:block;
  font-size:0.85rem;
  margin-top:6px;
  color:var(--text-soft);
}

/* Button im Formular: wie Index, aber ohne Schatten */
.btn-flat{
  box-shadow:none !important;
  border-radius:12px;
}

/* Preis-Subline sauber ohne inline style */
.price-subline{
  font-size:0.9rem;
}

/* =========================================
   GLOBAL: Contact-List als Bullet-Liste im Banner
========================================= */
.contact-list--bullets{
  margin-top:14px;
}
/* Select im Produktformular wie Input/Textarea */
.product-order-form select{
  width:100%;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,0.12);
  font:inherit;
  background:#fff;
}

/* Kleiner Hinweis im Label (z.B. +3,00€) */
.label-note{
  font-weight:400;
  color:var(--text-soft);
}




