:root{
  /* Base (Light / Boutique) */
  --bg: #ffffff;
  --surface: #fafafa;
  --card: #ffffff;
  --text: #222222;
  --muted: #6f6f6f;

  /* Gold palette */
  --gold: #d4af37;
  --gold2: #b8962e;
  --gold-soft: rgba(212,175,55,.16);

  /* Borders & shadows */
  --border: rgba(0,0,0,.08);
  --shadow: 0 12px 30px rgba(0,0,0,.08);

  /* Radius */
  --radius: 18px;
  --radiusSm: 12px;

  --container: 1120px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", sans-serif;
  background:
    radial-gradient(800px 420px at 10% -10%, rgba(212,175,55,.18), transparent 60%),
    radial-gradient(600px 320px at 90% 0%, rgba(212,175,55,.12), transparent 55%),
    var(--bg);
  color: var(--text);
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
.container{
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

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

/* Topbar */
.topbar{
  background: #ffffff;
  border-bottom: 1px solid var(--gold-soft);
  font-size: 14px;
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  padding: 10px 0;
}
.topbar__link{
  color: var(--gold2);
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  background: var(--gold-soft);
  font-weight: 800;
}
.topbar__link:hover{ background: rgba(212,175,55,.22); }

/* Header */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gold-soft);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
  padding: 14px 0;
}
.brand__logo{
  height: 44px;
  width: auto;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,.10));
}

.nav{ position:relative; }
.nav__toggle{
  display:none;
  background: #ffffff;
  border: 1px solid var(--gold-soft);
  border-radius: 12px;
  padding: 10px 12px;
  color: var(--text);
}
.nav__toggleBars{
  display:block;
  width:18px;
  height:2px;
  background: var(--text);
  position:relative;
}
.nav__toggleBars::before,
.nav__toggleBars::after{
  content:"";
  position:absolute; left:0;
  width:18px; height:2px;
  background: var(--text);
}
.nav__toggleBars::before{ top:-6px; }
.nav__toggleBars::after{ top:6px; }

.nav__menu{
  list-style:none;
  display:flex;
  gap: 18px;
  margin:0; padding:0;
}
.nav__menu a{
  font-size: 14px;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 12px;
  transition: 120ms ease;
}
.nav__menu a:hover{
  color: var(--gold2);
  background: var(--gold-soft);
}

.header__actions{
  display:flex;
  align-items:center;
  gap: 10px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 14px;
  padding: 12px 16px;
  border: 1px solid transparent;
  cursor:pointer;
  font-weight: 900;
  font-size: 14px;
  transition: 140ms ease;
  white-space: nowrap;
}
.btn--primary{
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #ffffff;
  border: none;
  box-shadow: 0 10px 24px rgba(212,175,55,.35);
}
.btn--primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(212,175,55,.45);
}
.btn--ghost{
  background: #ffffff;
  border: 1px solid var(--gold);
  color: var(--gold2);
}
.btn--ghost:hover{
  background: var(--gold-soft);
}
.btn--small{ padding: 10px 12px; border-radius: 12px; }

/* Typography / sections */
.section{ padding: 64px 0; }
.section--alt{
  background: #fcfcfc;
  border-top: 1px solid var(--gold-soft);
  border-bottom: 1px solid var(--gold-soft);
}
.section__head{ margin-bottom: 20px; }
h1,h2,h3{ margin:0 0 10px 0; letter-spacing: -0.02em; }
h1{ font-size: clamp(34px, 4.2vw, 52px); line-height: 1.05; }
h2{ font-size: clamp(24px, 2.6vw, 34px); }
h3{ font-size: 18px; }
.lead{ color: var(--muted); font-size: 16px; line-height: 1.6; max-width: 62ch; }
.muted{ color: var(--muted); }
.small{ font-size: 13px; }

.badge{
  display:inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  background: var(--gold-soft);
  color: var(--gold2);
  font-size: 13px;
  margin-bottom: 10px;
  font-weight: 900;
}

/* Hero */
.hero{ padding: 46px 0 28px; }
.hero__grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items:center;
}
.hero__cta{ display:flex; gap: 12px; flex-wrap:wrap; margin: 18px 0 14px; }

.hero__trust{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  margin-top: 18px;
}
.trustItem{
  display:flex;
  gap: 10px;
  padding: 14px;
  border-radius: var(--radiusSm);
  background: #ffffff;
  border: 1px solid var(--gold-soft);
  box-shadow: var(--shadow);
}
.trustIcon{
  width: 34px; height: 34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 12px;
  background: var(--gold-soft);
  border: 1px solid var(--gold);
  color: var(--gold2);
}

.heroCard{
  position:relative;
  overflow:hidden;
  border-radius: var(--radius);
  border: 1px solid var(--gold-soft);
  box-shadow: 0 16px 40px rgba(0,0,0,.10);
}
.heroCard img{
  width:100%;
  height: 520px;            /* Mehr Höhe → mehr vom Bild sichtbar */
  object-fit: cover;
  object-position: center 10%; /* Bild etwas nach oben verschieben */
}
.heroCard__overlay{
  position:absolute;
  left: 14px; right: 14px; bottom: 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.80);
  border: 1px solid var(--gold-soft);
  backdrop-filter: blur(10px);
}
.heroCard__title{ font-weight: 900; }

/* Strip */
.strip{
  padding: 22px 0;
  border-top: 1px solid var(--gold-soft);
  border-bottom: 1px solid var(--gold-soft);
  background: #ffffff;
}
.strip__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}

/* Grids / Cards */
.grid{ display:grid; gap: 14px; }

.grid--info{ grid-template-columns: repeat(3, minmax(0,1fr)); }
.infoCard{
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--gold-soft);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.grid--steps{ grid-template-columns: repeat(3, minmax(0,1fr)); }
.step{
  display:flex;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--gold-soft);
  background: #ffffff;
  box-shadow: var(--shadow);
}
.step__num{
  width: 34px; height: 34px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  background: var(--gold-soft);
  border: 1px solid var(--gold);
  color: var(--gold2);
  flex: 0 0 auto;
}

/* Galerie – größere, edlere Darstellung */
.grid--gallery{
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px;
}

.gItem{
  height: 300px;                 /* <<< deutlich höher */
  border-radius: var(--radius);
  border: 1px solid var(--gold-soft);
  background-size: cover;
  background-position: center top; /* Fokus auf Kleid, nicht Boden */
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
  transition: transform .25s ease, box-shadow .25s ease;
}

.gItem:hover{
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(0,0,0,.18);
}

.faq{ display:flex; flex-direction:column; gap: 10px; }
.faq__item{
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--gold-soft);
  background: #ffffff;
  box-shadow: var(--shadow);
}
.faq__item summary{
  cursor:pointer;
  font-weight: 900;
}
.faq__item p{ margin: 10px 0 0 0; }

.grid--contact{ grid-template-columns: repeat(3, minmax(0,1fr)); }
.contactCard{
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--gold-soft);
  background: #ffffff;
  box-shadow: var(--shadow);
}

/* Footer */
.footer{
  padding: 44px 0 22px;
  border-top: 1px solid var(--gold-soft);
  background: #fafafa;
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 18px;
}
.footer__logo{ height: 40px; width:auto; margin-bottom: 10px; }
.footer__links{
  list-style:none;
  margin: 10px 0 0 0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.footer__links a{ color: var(--muted); font-size: 14px; }
.footer__links a:hover{ color: var(--gold2); }

.footer__bottom{
  display:flex;
  justify-content:space-between;
  gap: 14px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--gold-soft);
}

/* Helpers */
.center{ display:flex; gap: 12px; justify-content:center; flex-wrap:wrap; }
.mt24{ margin-top: 24px; }

/* Responsive */
@media (max-width: 980px){
  .hero__grid{ grid-template-columns: 1fr; }
  .heroCard img{ height: 360px; }
  .hero__trust{ grid-template-columns: 1fr; }
  .grid--info, .grid--steps, .grid--contact{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .grid--gallery{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer__grid{ grid-template-columns: 1fr 1fr; }
  .strip__inner{ flex-direction:column; align-items:flex-start; }
}

@media (max-width: 720px){
  .nav__toggle{ display:inline-flex; }
  .nav__menu{
    position:absolute;
    right: 0;
    top: 54px;
    flex-direction:column;
    gap: 8px;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid var(--gold-soft);
    background: rgba(255,255,255,.95);
    width: min(260px, calc(100vw - 40px));
    display:none;
    box-shadow: var(--shadow);
  }
  .nav__menu.is-open{ display:flex; }
  .header__actions{ display:none; }

  .grid--info, .grid--steps, .grid--contact{ grid-template-columns: 1fr; }
  .grid--gallery{ grid-template-columns: 1fr; }
}

/* Google Maps */
.mapWrapper{
  margin-top: 32px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gold-soft);
  box-shadow: var(--shadow);
}

.mapWrapper iframe{
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

/* ============================= */
/* TERMIN GRID - CLEAN & CENTER  */
/* ============================= */

.bookingGrid{
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 42px;
  margin-top: 56px;

  /* damit der ganze Block wirklich mittig im Container sitzt */
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;

  /* sorgt dafür, dass die Items in jeder Zelle sauber mittig sitzen */
  justify-items: center;
}

.bookingItem{
  width: 100%;
  max-width: 320px;
  text-align: center;
}

/* Überschrift: gleichmäßiger, nicht so “wild” */
.bookingItem h3{
  margin: 0 0 18px 0;
  font-size: 18px;
  line-height: 1.35;
  color: var(--gold2);
  font-weight: 800;
  min-height: 52px; /* sorgt dafür, dass alle Cards oben gleich hoch starten */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Bild-Link */
.bookingItem a{
  width: 100%;
  aspect-ratio: 1 / 1;     /* wieder quadratisch */
  display: block;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--gold-soft);
  box-shadow: 0 18px 42px rgba(0,0,0,.12);
  transition: transform .25s ease, box-shadow .25s ease;
}

/* Bild */
.bookingItem img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform .35s ease;
}

/* Hover */
.bookingItem a:hover{
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(0,0,0,.16);
}

.bookingItem a:hover img{
  transform: scale(1.06);
}

/* Responsive */
@media (max-width: 1100px){
  .bookingGrid{
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    max-width: 760px;
  }
}

@media (max-width: 700px){
  .bookingGrid{
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}

/* ===== Termin Hinweis (dauerhaft auf der Seite) ===== */
.noticeSection{
  padding: 54px 0;
  text-align: center;
}

.noticeTitle{
  margin-bottom: 18px;
}

.noticeCard{
  max-width: 560px;
  margin: 0 auto;                 /* <<< Zentrierung */
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gold-soft);
  box-shadow: var(--shadow);
  background: #fff;
}

.noticeCard img{
  width: 100%;
  height: auto;
  display: block;                 /* <<< verhindert “inline image gaps” */
}

.noticeActions{
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 16px;
  background: rgba(255,255,255,.92);
  border-top: 1px solid var(--gold-soft);
}

@media (max-width: 600px){
  .noticeActions{
    flex-direction: column;
    align-items: stretch;
  }
}

.bookingCard{
  position: relative;
  display: block;
  cursor: pointer;
  overflow: hidden;
  border-radius: 24px;
}

.bookingCard img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

/* Overlay */
.bookingOverlay{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  background: linear-gradient(to top, rgba(0,0,0,.45), transparent 60%);
}

/* Button */
.bookingButton{
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: white;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
}

/* Desktop Hover (optional extra Effekt) */
.bookingCard:hover img{
  transform: scale(1.05);
}

/* Subtile Pulse Animation */
@keyframes luxuryPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 10px 25px rgba(0,0,0,.25);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 14px 30px rgba(212,175,55,.35);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 10px 25px rgba(0,0,0,.25);
  }
}

/* Animation nur für Termin-Button */
.bookingButton{
  animation: luxuryPulse 2.8s ease-in-out infinite;
}

/* ===== OUTLET MODAL (PREMIUM+) ===== */
.outletModal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.outletModal.is-open{
  display: block;
}

/* Hintergrund: Blur + Fade */
.outletModal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(7px);      /* <<< Unschärfe */
  -webkit-backdrop-filter: blur(7px);
  opacity: 0;
  transition: opacity .28s ease;
}

.outletModal.is-open .outletModal__backdrop{
  opacity: 1;
}

/* Panel: kleiner + Goldrahmen Animation */
.outletModal__panel{
  position: relative;
  width: min(480px, calc(100% - 30px));
  margin: 10vh auto 0;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;

  /* animierter Goldrahmen */
  border: 2px solid transparent;
  background:
          linear-gradient(#fff, #fff) padding-box,
          linear-gradient(120deg, rgba(212,175,55,.35), rgba(212,175,55,.95), rgba(212,175,55,.35)) border-box;

  box-shadow:
          0 30px 70px rgba(0,0,0,.40),
          0 0 40px rgba(212,175,55,.14);

  transform: translateY(10px) scale(.96);
  opacity: 0;
  transition: transform .28s ease, opacity .28s ease;

  /* Rahmen-Glanz Bewegung */
  animation: goldFrame 2.6s linear infinite;
}

.outletModal.is-open .outletModal__panel{
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Damit die Animation nur sichtbar ist, wenn offen */
.outletModal:not(.is-open) .outletModal__panel{
  animation: none;
}

/* Goldrahmen-Animation */
@keyframes goldFrame{
  0%   { filter: drop-shadow(0 0 0 rgba(212,175,55,.0)); }
  50%  { filter: drop-shadow(0 0 18px rgba(212,175,55,.18)); }
  100% { filter: drop-shadow(0 0 0 rgba(212,175,55,.0)); }
}

/* Bild: kompakter */
.outletModal__img{
  width: 100%;
  display: block;
  height: auto;
}


/* Close Button */
.outletModal__close{
  position: absolute;
  top: 8px;
  right: 8px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,.30);
  background: rgba(255,255,255,.95);
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
  transition: transform .18s ease, box-shadow .18s ease;
}

.outletModal__close:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0,0,0,.26);
}

/* Countdown Bereich */
.outletModal__meta{
  padding: 14px 16px 6px;
  background: rgba(255,255,255,.96);
}

.outletCountdown{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--gold-soft);
  background: var(--gold-soft);
}

.outletCountdown__label{
  font-weight: 900;
  color: var(--gold2);
  font-size: 13px;
}

.outletCountdown__time{
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  letter-spacing: .02em;
}

/* Actions */
.outletModal__actions{
  padding: 14px 16px 18px;
  display: flex;
  justify-content: center;
  gap: 10px;
  background: rgba(255,255,255,.96);
  border-top: 1px solid var(--gold-soft);
}

@media (max-width: 520px){
  .outletModal__panel{ margin-top: 12vh; }
  .outletModal__actions{
    flex-direction: column;
    align-items: stretch;
  }
  .outletCountdown{
    width: 100%;
    justify-content: center;
  }
}

/* ============================= */
/* Großhandel Sektion            */
/* ============================= */

.wholesaleSection{
  padding: 90px 0;
  background: linear-gradient(
          180deg,
          rgba(212,175,55,.08),
          rgba(212,175,55,.02)
  );
}

.wholesaleCard{
  max-width: 900px;
  margin: 0 auto;
  padding: 60px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--gold-soft);
  box-shadow: var(--shadow);
  text-align: center;
}

.wholesaleCard h2{
  margin-top: 10px;
  margin-bottom: 20px;
}

.wholesaleCard .lead{
  margin: 0 auto 28px auto;
  max-width: 600px;
}

:root[data-theme="dark"] .wholesaleCard{
  background: rgba(255,255,255,.04);
  border-color: var(--border);
}

/* ============================= */
/* Social Media Icons            */
/* ============================= */

.socialLinks{
  display: flex;
  align-items: center;
  gap: 14px;
}

.socialLinks a{
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(212,175,55,.08);
  border: 1px solid var(--gold-soft);
  transition: all .25s ease;
}

.socialLinks a:hover{
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(212,175,55,.35);
}

.socialLinks img{
  width: 18px;
  height: 18px;
  filter: grayscale(100%) brightness(0);
  transition: filter .25s ease;
}

.socialLinks a:hover img{
  filter: brightness(0) invert(1);
}