:root{
  --green: #0f3d3a;
  --gold: #c8942d;
  --text: #1f2b2a;
  --muted: #6b7b7a;
  --container: 1180px;
}

/* =========================
   TYPO-SKALA (global)
   ========================= */
:root{
  --fs-h1: clamp(32px, 3vw, 44px);
  --fs-h2: clamp(20px, 2vw, 28px);
  --fs-h3: clamp(18px, 1.6vw, 22px);

  --fs-lead: clamp(16px, 1.25vw, 18px);  /* Untertitel/Intro */
  --fs-body: 18px;                        /* Fließtext */
  --fs-small: 15px;                       /* kleine Labels/Meta */

  --lh-body: 1.75;
}

/* Globaler Standard */
body{
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

*{ box-sizing: border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:#FCFCFC;
}

.container{
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

a{ color: inherit; text-decoration: none; }

/* NAVBAR */
.navbar{
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.navbar-inner{
  display:flex;
  align-items:center;
  gap: 40px; /* Abstand zwischen Logo und Menü */
  padding: 8px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  white-space: nowrap;
}

.brand-logo{
  width: 96px;
  height: 96px;
  border-radius: 999px;
  object-fit: cover;
}

.brand-text{
  font-size: 15px;
  letter-spacing: .18em;
  color: var(--gold);
  font-weight: 700;
}

/* Desktop links */
.nav-links{
  list-style:none;
  display:flex;
  gap: 24px;
  margin:0;
  padding:0;
  align-items:center;
}

.nav-links a{
  font-size: 16px;
  padding: 8px 2px;
  letter-spacing: 0.03em;
  font-weight: 500;
}

/*ohne Unterstrich Nur Farbe
.nav-links a.active{
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}
*/

/*mit Unterstrich dünnere Linie
.nav-links a.active{
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}
*/

/*Premium-Look mit Gold-Linie unten*/
.nav-links a.active{
  color: var(--gold);
  position: relative;
}

.nav-links a.active::after{
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  bottom: -4px;
}

/* Burger button */
.nav-toggle{
  display:none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  background: #fff;
  cursor:pointer;
}

.nav-toggle span{
  display:block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  border-radius: 2px;
}

/* Mobile menu */
.nav-mobile{
  border-top: 1px solid rgba(0,0,0,.06);
  background:#fff;
}

.nav-mobile ul{
  list-style:none;
  margin:0;
  padding: 10px 0 16px;
  display:flex;
  flex-direction:column;
  gap: 6px;
}

.nav-mobile a{
  display:block;
  padding: 10px 12px;
  border-radius: 12px;
}

.nav-mobile a.active{
  background: rgba(200,148,45,.14);
  color: var(--gold);
  font-weight: 700;
}

/* Buttons (falls noch nicht vorhanden) */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 18px;
  border: 0;
}
.btn-gold{
  background: var(--gold);
  color: #fff;
}

/* HERO */
.hero{
  position: relative;
  min-height: 360px;
  overflow: hidden;
}

.hero-bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,
      rgba(0,0,0,.55) 0%,
      rgba(0,0,0,.35) 40%,
      rgba(0,0,0,.12) 100%
    ),
    url("../img/about.jpg") center/cover no-repeat;
  transform: scale(1.02);
}

.hero-inner{
  position: relative;
  padding: 64px 0 72px;
}

.hero h1{
  margin: 0 0 28px;
  color: rgba(255, 250, 242, 0.92);  /* warmes Off-White */
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;                   /* kleiner = edler */
  line-height: 1.18;
  font-weight: 400;                  /* ganz bewusst leicht */
  letter-spacing: 0.015em;
  text-shadow: 0 4px 14px rgba(0,0,0,.22);
}


.hero-light{
  font-weight: 400;
  opacity: .9;
}

/* ===== FOOTER im Stil des Beispiel-Fotos ===== */
.footer-photo{
  margin-top: 50px;
  background: var(--green);
  color: rgba(255,255,255,.90);
  padding: 48px 0 32px;   /* mehr Luft oben + unten */
}

.footer-photo::before{
  content:"";
  display:block;
  height:1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold),
    transparent
  );
  margin-bottom: 32px;
}

.footer-photo-grid{
  display:grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 26px;
  align-items: center;
  padding-bottom: 30px;
}

.fp-col{ min-width: 0; }

.fp-head{
  font-size: 12px;                 /* minimal kleiner */
  font-weight: 600;
  letter-spacing: 0.14em;          /* mehr Luft = edler */
  text-transform: uppercase;
  color: rgba(255,255,255,.70);    /* etwas softer */
  margin-bottom: 14px;
}

.fp-text{
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,.85);
  margin: 6px 0;
}

.footer-photo a{
  color: var(--gold);
  text-decoration: none;
  text-underline-offset: 4px;
}
.footer-photo a:hover{
  text-decoration: underline;
}

/* Center brand */
.fp-center{
  text-align: center;
}

.fp-logo{
  width: 120px;
  height: 120px;
  object-fit: contain;
  display:block;
  margin: 0 auto 10px;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.18));
}

.fp-brand{
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;   /* etwas eleganter */
  line-height: 1.1;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin: 6px 0 8px;
}

.fp-sub{
  font-size: 11px;
  letter-spacing: .18em;
  color: rgba(255,255,255,.70);
  margin-bottom: 14px;
}

.fp-left, .fp-right{
  align-self: center;
}

.fp-right{
  text-align: right;
  justify-self: end;
  padding-top: 12px;   /* <- das ist der entscheidende Punkt */
 }


/* Social icons */
.fp-social{
  display:flex;
  justify-content:center;
  gap: 10px;
  margin-top: 6px;
}

.fp-social-icon{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.92);
  transition: transform .15s ease, background .15s ease;
}

.fp-social-icon svg{
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.fp-social-icon:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.14);
}

/* Bottom bar like in photo (lighter strip) */
.footer-photo-bottom{
  display: block;
  width: 100%;
  position: relative;
  z-index: 1;
  background: #f8f5ef;
  color: #2b2b2b;
  padding: 14px 0;
  border-top: 1px solid rgba(0,0,0,.05);
}

.fp-bottom-inner{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 14px;
  font-size: 15px;
}

.fp-bottom-links{
  display:flex;
  gap: 22px;
}

.footer-photo-bottom a{
  color: rgba(0,0,0,.75);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page{
  padding: 28px 0 42px;
}

/* Headline + Link rechts */
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 12px;
  margin: 18px 0 14px;
}

.section-head h2{
  margin:0;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.link-more{
  font-size: 12px;
  color: var(--muted);
}

/* Cards */
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* =========================================================
   CARD SYSTEM (Basis + Varianten)
   ========================================================= */

/* Basis: gilt für alle Cards */
.card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.04);
  background: #fff;
}

/* ---------- Variante: Leistungen (Bild 1) ---------- */
.card--service{
  padding: 0; /* wichtig: Bild oben bündig */
  box-shadow: 0 18px 40px rgba(0,0,0,.06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.card--service:hover{
  transform: translateY(-4px);
  box-shadow:
    0 10px 24px rgba(0,0,0,.08),
    0 26px 60px rgba(0,0,0,.08);
}

/* Bildbereich oben */
.card--service .card-img{
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
  background: #ddd center/cover no-repeat;
}

/* Falls du <img> nutzt */
.card--service .card-img img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Textbereich */
.card--service .card-body{
  padding: 18px 18px 20px;
}

.card--service h3{
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 600;
}

.card--service p{
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.75;
  color: rgba(0,0,0,.70);
}

.card--service .card-link{
  font-size: 16px;
  font-weight: 700;
}

/* ---------- Variante: Bewertungen ---------- */
.card--review{
  padding: 20px;
  background: rgba(255,255,255,.68);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 28px rgba(0,0,0,.10);
}

.card:hover{
  transform: translateY(-4px);
  box-shadow:
    0 10px 24px rgba(0,0,0,.08),
    0 26px 60px rgba(0,0,0,.08);
}

.card-img{
  width: 100%;
  aspect-ratio: 16 / 9;     /* Das ist der Gamechanger */
  background: #ddd center/cover no-repeat;
}

.card-body{
  padding: 12px 14px 14px;
}

.card h3{
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 600;
}

.card p{
  margin: 0 0 12px;
  font-size: 16.5px;
  color: rgba(0,0,0,.72);
  line-height: 1.8;
}

.card-link{
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* Gutschein */
.voucher{
  margin-top: 30px;
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.04);
  box-shadow: 0 18px 40px rgba(0,0,0,.06);
  overflow: hidden;
  background: #fff;
  }

.voucher:hover{
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(0,0,0,.08);
}

.voucher-img{
  background: url("../img/wellness5.jpg") center/cover no-repeat;
  aspect-ratio: 16 / 9;
  border-radius: 18px 0 0 18px;
}

.voucher-content{
  padding: 18px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap: 8px;
}

.voucher-content h3{
  margin:0;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.voucher-content p{
  margin:0 0 8px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(0,0,0,.72);
}

/* ===== LEISTUNGEN (Tabs + Card wie Foto 1) ===== */
.tabs{
  display:flex;
  gap: 14px;
  padding: 16px 0 18px;
}

.tab{
  display:inline-flex;
  align-items:center;
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  box-shadow: 0 8px 18px rgba(0,0,0,.06);
}

.tab.active{
  border-color: rgba(200,148,45,.55);
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
}

.service-card{
  background:#fff;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
  padding: 26px 26px 18px;
  margin: 14px 0 26px;
}

.service-top{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.service-title{
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  line-height: 1.08;
  font-weight: 700;
  color: #111;
}

.service-cta{
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 16px;
  box-shadow: 0 14px 26px rgba(0,0,0,.16);
}

.service-text{
  margin: 0 0 18px;
  max-width: 95ch;
  font-size: 16px;
  line-height: 1.9;
  color: rgba(0,0,0,.70);
}

/* Preise wie im Screenshot */
.price-list{
  margin-top: 22px;
  border-top: 1px solid rgba(0,0,0,.10);
}

.price-row{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 22px 0;
  border-bottom: 1px solid rgba(0,0,0,.10);
  font-size: 18px;
}

.price-left{
  color: rgba(0,0,0,.85);
}

.price-right{
  font-weight: 800;
  color: #111;
}

/* ===== Leistungen & Preise (mit Bild + Icon je Massageart) ===== */
.page-head{
  padding: 22px 0 10px;
}
.page-head h1{
  margin:0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 2.4vw + 18px, 52px);
  font-weight: 500;
  letter-spacing: .01em;
  line-height: 1.1;
}
.page-head p{
  margin: 0;
  font-size: clamp(15px, 0.6vw + 12px, 18px);
  color: rgba(0,0,0,.55);
  line-height: 1.6;
  max-width: 80ch;
}

.service-block{
  margin: 18px 0 22px;
  display:grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 18px;
  background:#fff;
  border-radius: 18px;
  overflow:hidden;
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
}

.service-media{
  position: relative;
  background: center/cover no-repeat;
  min-height: 260px;
}

.service-content{
  padding: 18px 18px 14px;
}

.service-topline{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 14px;
}

.service-topline h2{
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.1;
}

.service-desc{
  margin: 10px 0 14px;
  color: rgba(0,0,0,.70);
  font-size: 16px;
  line-height: 1.85;
}

.price-list.compact{
  margin-top: 10px;
  border-top: 1px solid rgba(0,0,0,.10);
}

.price-list.compact .price-row{
  padding: 14px 0;
  font-size: 16px;
}

.price-list.compact .price-right{
  font-weight: 800;
}

/* ===== Über uns ===== */
.about{
  display:grid;
  grid-template-columns: 1.4fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.about-media{
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.04);
  box-shadow: 0 18px 40px rgba(0,0,0,.05);
  overflow: hidden;
  max-height: 420px;      /* <-- kontrolliert die Bildgröße */
  align-self: center;     /* mittig zur Textspalte */
}

.about-text{
  max-width: 72ch;               /* macht den Text leichter */
}

.about-text p{
  margin: 0 0 18px;
  color: rgba(0,0,0,.66);
  line-height: 1.8;
  font-size: clamp(16px, 1.05vw + 12px, 19px);
  max-width: 90ch;
  margin: 0 0 14px;
}

.about-italic{
  margin-top: 22px;
  font-style: italic;
  font-size: clamp(16px, 1.05vw + 12px, 19px);
  line-height: 1.85;
  color: #0f3d3a;
}

.about-link{
  display: inline-block;
  margin-top: 10px;
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
}
.about-link:hover{
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Bildblock begrenzen (damit es NICHT riesig wird) */
.about-media{
  justify-self: end;
  width: 100%;
 }

.about-media img{
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* ===== Rechtliches (Impressum / Datenschutz) ===== */

.legal{
  padding-top: 10px;
}

.legal-content{
  max-width: 75ch;
  padding: 18px 0 40px;
}

.legal-content h2{
  font-size: 18px;
  margin: 28px 0 8px;
  font-weight: 600;
}

.legal-content p{
  font-size: 14.5px;
  line-height: 1.9;
  color: rgba(0,0,0,.70);
  margin: 0 0 12px;
}

/* ===== Termin buchen ===== */
.appt-card{
  max-width: 720px;
  margin: 4px auto 50px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.04);
  box-shadow: 0 18px 40px rgba(0,0,0,.06);
  padding: 28px 28px 26px;
}

.appt-card h2{
  margin: 0 0 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.15;
}

.appt-lead{
  margin: 0 0 18px;
  color: rgba(0,0,0,.65);
  line-height: 1.8;
  font-size: 15px;
}

.appt-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 10px 0 18px;
}

.btn-outline{
  background: #fff;
  border: 1px solid rgba(0,0,0,.12);
  color: var(--text);
}

.btn-outline:hover{
  border-color: rgba(0,0,0,.18);
}

.appt-block{
  margin-top: 18px;
}

.appt-block h3{
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
}

.appt-lines{
  line-height: 1.8;
  color: rgba(0,0,0,.70);
  font-size: 14.5px;
}

.appt-phone{
  margin-top: 6px;
  font-weight: 800;
  color: #111;
}

.appt-note{
  margin: 10px 0 0;
  font-size: 12.5px;
  color: rgba(0,0,0,.55);
}

.appt-muted{
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(0,0,0,.65);
}

.appt-disabled{
  opacity: .7;
  cursor: not-allowed;
  box-shadow: none;
}

.appt-link{
  display: inline-block;
  margin-top: 4px;
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
}
.appt-link:hover{
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Termin Seitenkopf innerhalb Card */
.appt-head{
  margin: 10px 0 18px;
  margin-bottom: 22px;
}

.appt-head h1{
  margin: 0 0 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  font-weight: 500;
  line-height: 1.05;
}

.appt-head p{
  margin: 0;
  font-size: 14px;
  color: rgba(0,0,0,.55);
  letter-spacing: .02em;
}

/* ===== Gutscheine Seite ===== */
.voucher-page{
  margin-top: 14px;
}

.voucher-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.voucher-small{
  margin-top: 12px;
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(0,0,0,.55);
}

/* Steps */
.voucher-steps{
  margin: 34px 0 12px;
}

.voucher-steps h2,
.voucher-faq h2{
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 14px;
}

.steps-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.step-card{
  background:#fff;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.04);
  box-shadow: 0 18px 40px rgba(0,0,0,.06);
  padding: 18px 16px 16px;
}

/* Gutscheine – Steps Überschriften leichter */
.step-card h3 {
  font-weight: 600;   /* normal */
}

.step-num{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  background: rgba(200,148,45,.16);
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 10px;
}

.card h3{
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.step-card p{
  margin: 0;
  font-size: 16.5px;
  line-height: 1.7;
  color: rgba(0,0,0,.65);
}

/* FAQ */
.voucher-faq{
  margin: 28px 0 40px;
  max-width: 900px;
}

.faq-item{
  background:#fff;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.04);
  box-shadow: 0 12px 28px rgba(0,0,0,.05);
  padding: 12px 14px;
  margin-bottom: 12px;
}

.faq-item summary{
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-item summary::-webkit-details-marker{ display:none; }

.faq-body{
  margin-top: 10px;
  color: rgba(0,0,0,.66);
  line-height: 1.8;
  font-size: 14px;
}

/* ===== Shop Preview (für spätere Shop-Anbindung) ===== */
.shop-preview{
  margin: 34px 0 40px;
}

.shop-head h2{
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 6px;
}

.shop-head p{
  margin: 0 0 14px;
  color: rgba(0,0,0,.60);
  line-height: 1.8;
  font-size: 18.5px;
}

.shop-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.shop-card{
  position: relative;
  background:#fff;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.04);
  box-shadow: 0 18px 40px rgba(0,0,0,.06);
  overflow: hidden;
}

.shop-card-body{
  padding: 18px 16px 16px;
}

.shop-card h3{
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 600;
}

.shop-card p{
  margin: 0 0 12px;
  font-size: 16.5px;
  line-height: 1.7;
  color: rgba(0,0,0,.65);
}

.shop-price{
  font-weight: 800;
  color: rgba(0,0,0,.78);
  margin-bottom: 12px;
}

.shop-badge{
  position:absolute;
  top: 12px;
  left: 12px;
  background: rgba(200,148,45,.18);
  color: var(--gold);
  font-weight: 800;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
}

.shop-note{
  margin-top: 14px;
  font-size: 12.5px;
  color: rgba(0,0,0,.55);
}

/* ===== Kontakt (vereinfachte Version) ===== */

/* Kontakt – Layout + Typografie (Desktop) */
.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: center; /* rechte Karte mittig zur linken Spalte */
}

.contact-simple h1{
  font-size: clamp(34px, 2.2vw + 18px, 46px);
  line-height: 1.15;
  margin: 0 0 10px;
}

.contact-intro{
  font-size: clamp(16px, 0.7vw + 12px, 18px);
  line-height: 1.55;
  margin-bottom: 36px;
}

.contact-left h2,
.contact-card h2{
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 18px;
}

.contact-left p,
.contact-note,
.contact-muted{
  font-size: 18px;
  line-height: 1.75;
}

.contact-simple{
  padding: 40px 0 60px;
}

.contact-simple h1{
  font-size: var(--fs-h1);
  font-weight: 600;
  margin-bottom: 12px;
}

.contact-intro{
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 36px;
  color: #6b7c7c;
}

/* 2-Spalten Layout */
.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: center;   /* Vertikal zentriert */
  align-self: center;
}

/* Karte im Grid nicht zentrieren und nicht begrenzen */
.contact-grid .contact-card{
  margin: 0;
}

.contact-left h2{
  font-size: var(--fs-h2);
  margin-bottom: 20px;
}

.contact-left p{
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.contact-block{
  margin-bottom: 18px;
}

.contact-label{
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-link{
  color: var(--gold);
  text-decoration: none;
}

.contact-link:hover{
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-note{
  font-style: italic;
  color: rgba(0,0,0,.65);
}

.contact-muted{
  margin-top: 18px;
  color: rgba(0,0,0,.65);
}

.contact-cta{
  display: inline-block;
  margin-top: 8px;
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
}

.contact-cta:hover{
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Formular-Karte */

.contact-card{
  position: relative;
  margin: 0;
  background: linear-gradient(to bottom, #ffffff, #fcfcfc);
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.04);
  box-shadow: 0 18px 40px rgba(0,0,0,.05);
  padding: 24px;
  max-width: none;
  align-self: center;
}

/* Goldlinie oben */
.contact-card::before{
  content: "";
  position: absolute;
  top: 0;
  left: 32px;
  right: 32px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold),
    transparent
  );
  border-radius: 2px;
}


.contact-card h2{
  font-size: var(--fs-h2);
  margin-bottom: 24px;
}

.contact-form{
  display: grid;
  gap: 14px;
}

.contact-form label span{
  font-size: 16px;
  font-weight: 500;
  color: rgba(0,0,0,.6);
  margin-bottom: 6px;
  display:block;
}

.contact-form input,
.contact-form textarea{
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.15);
  font: inherit;
  font-size: 16px;
}

.contact-form textarea{
  min-height: 110px;
  resize: vertical;
}

.contact-form .btn{
  width: fit-content;
  padding: 10px 18px;
  font-size: 15px;
}

/* =========================
   Bewertungen Seite
   ========================= */
.reviews-grid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items: start;
}

.reviews-list{
  display: grid;
  gap: 12px;
}

.review-card{
  border-radius: 20px;
  padding: 18px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.05);
  transition: all .25s ease;
}

.review-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,.10);
}

.review-top{
  display:flex;
  justify-content:space-between;
  gap: 10px;
  align-items: baseline;
  margin-bottom: 6px;
}

.stars{ letter-spacing: 2px; }

.review-meta{
  margin-top: 8px;
  font-size: 13px;
  opacity: .75;
}

.review-form.card{
  padding: 16px;
}

.review-form .form-label{
  display:block;
  margin: 12px 0 6px;
  font-size: 14px;
  opacity: .9;
}

.review-form input,
.review-form select,
.review-form textarea{
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.9);
  font: inherit;
}

.review-form textarea{
  resize: vertical;
}

.review-form .tiny{
  margin-top: 10px;
  font-size: 12px;
  opacity: .7;
}

/* =========================
   Bewertungen – Styling
   ========================= */

.section-head--reviews{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.card--hover{
  transition: transform .18s ease, box-shadow .18s ease;
}
.card--hover:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0,0,0,.12);
}

.reviews-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items:start;
  margin-top: 18px;
}

.reviews-list{
  display:grid;
  gap: 12px;
}

.review-card .review-top{
  display:flex;
  justify-content:space-between;
  gap: 10px;
  align-items: baseline;
  margin-bottom: 6px;
}

.review-name{ font-weight: 650; }

.review-text{
  margin: 10px 0 0;
  opacity: .92;
  line-height: 1.5;
}

.review-meta{
  margin-top: 10px;
  font-size: 13px;
  opacity: .75;
}

.stars{
  letter-spacing: 2px;
  font-size: 14px;
  white-space: nowrap;
}
.stars--gold{
  color: #C9A227; /* warmes Gold */
  text-shadow: 0 1px 0 rgba(0,0,0,.10);
}

/* Durchschnittsbox */
.rating-summary{
  min-width: 240px;
}
.rating-summary__top{
  display:flex;
  gap: 12px;
  align-items:center;
  margin-bottom: 10px;
}
.rating-summary__value{
  font-size: 34px;
  font-weight: 750;
  line-height: 1;
}
.rating-summary__meta{
  display:flex;
  flex-direction:column;
  gap: 4px;
}

/* Formular embed */
.review-form .btn-full{ width:100%; margin-top: 12px; }

.form-embed{
  width:100%;
  border-radius: 14px;
  overflow:hidden;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.72);
}

/* iframe Höhe: ggf. anpassen */
.form-embed iframe{
  width:100%;
  height: 720px;
  border: 0;
  display:block;
}

.rating-summary__value{
  font-size: 42px;
  font-weight: 700;
  color: #C9A227;
}

.rating-summary{
  border: 2px solid rgba(201,162,39,.25);
  background: linear-gradient(145deg, #fffdf6, #ffffff);
}

/* Mobile */
@media (max-width: 900px){
  .reviews-grid{ grid-template-columns: 1fr; }
  .rating-summary{ width:100%; }
}

/* =========================
   Luxus Bewertungs-Button
   ========================= */

.luxury-btn{
  display:block;
  text-align:center;
  margin-top:20px;
  padding:14px 22px;
  font-size:15px;
  font-weight:600;
  border-radius:40px;
  background: linear-gradient(135deg, #C9A227, #E6C65C);
  color:#ffffff;
  border:none;
  box-shadow: 0 8px 24px rgba(201,162,39,.35);
  transition: all .25s ease;
}

.luxury-btn:hover{
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(201,162,39,.45);
}

/* Durchschnitt goldener & edler */

.rating-summary{
  background: linear-gradient(145deg, #fffdf6, #ffffff);
  border: 2px solid rgba(201,162,39,.25);
}

.rating-summary__value{
  font-size:42px;
  font-weight:700;
  color:#C9A227;
}

.stars--gold{
  font-size:16px;
  letter-spacing:3px;
  color:#C9A227;
}

/* =========================
   MOBILE (FINAL) <= 900px
   -> diesen Block ans ENDE der style.css setzen
   -> danach alle anderen @media (max-width: 900px) Blöcke löschen
   ========================= */
@media (max-width: 900px){

  /* Layout */
  .container{
    width: min(var(--container), calc(100% - 24px));
  }
  .page{
    padding: 18px 0 28px;
  }

  /* Navbar */
  .nav-links{ display:none; }
  .nav-toggle{ display:block; }

  .navbar-inner{
    gap: 18px;
    padding: 10px 0;
  }

  .brand-logo{
    width: 64px;
    height: 64px;
  }
  .brand-text{
    font-size: 12px;
    letter-spacing: .14em;
  }

  /* Hero */
  .hero{ min-height: 300px; }
  .hero-inner{ padding: 48px 0 54px; }
  .hero h1{
    font-size: 32px;
    line-height: 1.14;
    margin: 0 0 18px;
  }

  /* Buttons */
  .btn{
    font-size: 15px;
    padding: 10px 14px;
  }

  /* Startseite: Section Head */
  .section-head{
    align-items: center;
    margin: 20px 0 12px;
  }
  .section-head h2{
    font-size: 16px;
  }
  .link-more{
    font-size: 12px;
  }

  /* Startseite: Cards */
  .cards{
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .card-body{
    padding: 14px 14px 16px;
  }
  .card h3{
    font-size: 15px;
    margin: 0 0 6px;
  }
  .card p{
    font-size: 13px;
    line-height: 1.55;
    margin: 0 0 10px;
  }
  .card-link{
    font-size: 13px;
  }

  /* Gutschein */
  .voucher{
    grid-template-columns: 1fr;
    max-height: none;
  }
  .voucher-img{
  aspect-ratio: 16 / 9;
  border-radius: 18px 18px 0 0; /* oben abgerundet */
}
  .voucher-content{
    padding: 16px;
  }
  .voucher-content h3{
    font-size: 15px;
  }
  .voucher-content p{
    font-size: 16.5px;
    line-height: 1.6;
  }
  .voucher-content .btn{
    width: 100%;
    justify-content: center;
    font-size: 16px;
    padding: 14px 18px;
  }

  /* Leistungsseite (Tabs + große Card) */
  .tabs{
    overflow:auto;
    -webkit-overflow-scrolling: touch;
    gap: 10px;
    padding: 12px 0 10px;
  }
  .tab{
    font-size: 13px;
    padding: 9px 14px;
    white-space: nowrap;
  }

  .service-card{
    padding: 18px 16px;
    border-radius: 16px;
  }
  .service-top{
    flex-direction: column;
    align-items:flex-start;
  }
  .service-title{
    font-size: 30px;
  }
  .service-text{
    font-size: 14px;
    line-height: 1.85;
  }
  .service-cta{
    width: 100%;
    justify-content:center;
    font-size: 15px;
    padding: 11px 16px;
  }
  .price-row{
    font-size: 15px;
    padding: 14px 0;
  }

  /* Leistungen & Preise (Bildblöcke) */
  .page-head h1{
    font-size: 34px;
  }
  .page-head p{
    font-size: 13px;
  }
  .service-block{
    grid-template-columns: 1fr;
  }
  .service-media{
    min-height: 190px;
  }
  .service-topline{
    flex-direction: column;
    align-items:flex-start;
  }
  .service-topline h2{
    font-size: 28px;
  }
  .service-desc{
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 18px;
  }
  .service-topline .btn{
    width: 100%;
    justify-content:center;
  }

  /* Footer (Foto-Footer) */
  .footer-photo{
    padding-top: 26px;
    margin-top: 40px;
  }
  .footer-photo-grid{
    grid-template-columns: 1fr;
    text-align: left;
    align-items: start;
    gap: 18px;
  }
  .fp-center{
    text-align: left;
  }
  .fp-social{
    justify-content:flex-start;
  }
  .fp-brand{
    font-size: 32px;
  }
  .fp-head{
    font-size: 13px;
  }
  .fp-text{
    font-size: 13px;
  }
  .fp-bottom-inner{
    flex-direction: column;
    align-items:flex-start;
    gap: 8px;
    font-size: 12px;
  }

  /* Über uns */
  .about{
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }

  .about-text p{
    font-size: 14px;
    line-height: 1.85;
  }

  .about-media{
    max-height: 320px; /* optional, damit das Bild nicht zu hoch wird */
    justify-self: start;
    max-width: 100%;
  }

  .about-media img{
    height: 240px;
  }

  .legal-content{
    max-width: 100%;
  }

  .legal-content h2{
    font-size: 16px;
  }

  .legal-content p{
    font-size: 14px;
    line-height: 1.8;
  }
    /* Termin buchen */
  .appt-embed{
  margin-top: 12px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 18px 40px rgba(0,0,0,.06);
  background: #fff;
}

.appt-embed iframe{
  display:block;
  width:100%;
  height: 1000px;
}

  .appt-card{
    padding: 18px 16px;
    margin: 14px auto 30px;
  }
  .appt-card h2{
    font-size: 24px;
  }
  .appt-actions .btn{
    width: 100%;
    justify-content: center;
  }

    .appt-head h1{
    font-size: 34px;
  }
  .appt-head p{
    font-size: 13px;
  }

   /* Gutscheine */
  .voucher-actions .btn{
    width: 100%;
    justify-content:center;
  }

  .steps-grid{
    grid-template-columns: 1fr;
  }

  .voucher-steps h2,
  .voucher-faq h2{
    font-size: 24px;
  }
    /* Shop Preview */
  .shop-grid{
    grid-template-columns: 1fr;
  }
  .shop-head h2{
    font-size: 24px;
  }
  .shop-card .btn{
    width: 100%;
    justify-content:center;
  }
      /* Kontakt */
  .contact-grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-card{
    padding: 16px;
  }

  .contact-form .btn{
    width: 100%;
    justify-content: center;
  }
    .contact-simple h1{
    font-size: 34px;
    line-height: 1.15;
    margin-bottom: 10px;
  }

  .contact-intro{
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 22px;
  }

  .contact-left h2,
  .contact-card h2{
    font-size: 20px;
    margin-bottom: 16px;
  }

  .contact-left p,
  .contact-note,
  .contact-muted{
    font-size: 14px;
    line-height: 1.85;
  }

  .contact-form label span{
    font-size: 13px;
  }
  
  .appt-embed iframe{ height: 1100px; } 

  .reviews-grid{ grid-template-columns: 1fr; }
}

/* =========================
   WooCommerce im Massage-Therapy-Design
   ========================= */

.woocommerce,
.woocommerce-page{
  font-family: inherit;
  color: var(--text);
}

/* Seitenbreite / Luft */
.woocommerce .woocommerce-notices-wrapper,
.woocommerce .woocommerce-breadcrumb,
.woocommerce .products,
.woocommerce div.product{
  max-width: min(var(--container), calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

/* Buttons im Stil deiner .btn */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 0;
  font-weight: 700;
  font-size: 18px;
  background: var(--gold);
  color: #fff;
  box-shadow: 0 14px 26px rgba(0,0,0,0.12);
  transition: transform .15s ease, filter .15s ease;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover{
  transform: translateY(-1px);
  filter: brightness(0.98);
}

/* Sekundär-Buttons (z.B. "Ausführung wählen") */
.woocommerce a.button.product_type_variable,
.woocommerce a.button.product_type_simple{
  background: #fff;
  color: var(--text);
  border: 1px solid rgba(0,0,0,0.12);
  box-shadow: 0 10px 22px rgba(0,0,0,0.06);
}
.woocommerce a.button.product_type_variable:hover,
.woocommerce a.button.product_type_simple:hover{
  border-color: rgba(0,0,0,0.18);
}

/* Produktkarten im Grid wie deine Cards */
.woocommerce ul.products{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}
.woocommerce ul.products li.product{
  width: auto !important;
  margin: 0 !important;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 18px 40px rgba(0,0,0,0.06);
  overflow: hidden;
  padding: 12px;
}
.woocommerce ul.products li.product a img{
  border-radius: 14px;
  margin: 0 0 10px;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title{
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 600;
  margin: 6px 0 4px;
}
.woocommerce ul.products li.product .price{
  color: rgba(0,0,0,0.70);
  font-weight: 700;
  margin-bottom: 10px;
}

/* Produktdetail: Titel/Preis edel */
.woocommerce div.product .product_title{
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: .01em;
}
.woocommerce div.product p.price,
.woocommerce div.product span.price{
  color: rgba(0,0,0,0.75);
  font-weight: 800;
}

/* Variation-Dropdowns (Massageart/Dauer) */
.woocommerce form.variations_form table.variations{
  margin: 14px 0 10px;
}
.woocommerce table.variations td,
.woocommerce table.variations th{
  padding: 8px 8px 8px 0;
  vertical-align: middle;
}
.woocommerce table.variations label{
  font-weight: 700;
  color: rgba(0,0,0,0.75);
}
.woocommerce table.variations select{
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.15);
  background: #fff;
  font: inherit;
}

/* "Zurücksetzen" Link */
.woocommerce .reset_variations{
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
}
.woocommerce .reset_variations:hover{
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Mengenfeld */
.woocommerce .quantity .qty{
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.15);
}

/* Hinweise/Notices (oben) */
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-error{
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 12px 28px rgba(0,0,0,0.06);
}

/* Mobile */
@media (max-width: 900px){
  .woocommerce ul.products{
    grid-template-columns: 1fr;
  }
}

/* WooCommerce – Produktdetail: Bild abrunden wie Karten */
.woocommerce div.product div.images,
.woocommerce div.product div.images .woocommerce-product-gallery__wrapper{
  border-radius: 18px;
  overflow: hidden;
}

.woocommerce div.product div.images img,
.woocommerce div.product div.images .woocommerce-product-gallery__image img{
  border-radius: 18px;
  display: block;
}

.woocommerce div.product div.images{
  background: #fff;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 18px 40px rgba(0,0,0,0.06);
  padding: 12px;
}

/* =========================
   WooCommerce Button Premium Style
   ========================= */

/* Hauptbutton (Produktseite) */
.woocommerce div.product form.cart .single_add_to_cart_button{
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 12px 26px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
  transition: all 0.25s ease;
}

/* Hover Effekt */
.woocommerce div.product form.cart .single_add_to_cart_button:hover{
  background: #c89a3a; /* etwas dunkleres Gold */
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.16);
}

/* Disabled Zustand */
.woocommerce div.product form.cart .single_add_to_cart_button.disabled,
.woocommerce div.product form.cart .single_add_to_cart_button:disabled{
  background: #e5d7b5;
  cursor: not-allowed;
  box-shadow: none;
}

/* WooCommerce – Add to cart Button: immer Gold (auch gegen Theme/Woo-Styles) */
.woocommerce div.product form.cart button.single_add_to_cart_button,
.woocommerce div.product form.cart .single_add_to_cart_button.button{
  background: var(--gold) !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: 999px !important;
  padding: 12px 26px !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  letter-spacing: 0.02em;
  box-shadow: 0 14px 30px rgba(0,0,0,0.12) !important;
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}

.woocommerce div.product form.cart button.single_add_to_cart_button:hover{
  transform: translateY(-2px);
  filter: brightness(0.95);
  box-shadow: 0 18px 36px rgba(0,0,0,0.16) !important;
}

/* Disabled: nicht grau, sondern soft-gold */
.woocommerce div.product form.cart button.single_add_to_cart_button:disabled,
.woocommerce div.product form.cart button.single_add_to_cart_button.disabled{
  background: rgba(201, 160, 60, 0.35) !important; /* soft gold */
  color: rgba(255,255,255,0.85) !important;
  box-shadow: none !important;
  transform: none !important;
  cursor: not-allowed !important;
  filter: none !important;
}

/* =========================
   WooCommerce Preis Styling Premium
   ========================= */

/* Preisbereich oben */
.woocommerce div.product p.price,
.woocommerce div.product span.price{
  font-size: 24px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}

/* Wenn variable Preisrange angezeigt wird */
.woocommerce div.product p.price .woocommerce-Price-amount{
  font-size: 24px;
  font-weight: 700;
}

/* Einzelpreis nach Variantenauswahl */
.woocommerce div.product .woocommerce-variation-price{
  margin-bottom: 16px;
}

.woocommerce div.product .woocommerce-variation-price .price{
  font-size: 26px;
  font-weight: 800;
  color: var(--green);
}

/* Währung leicht dezenter */
.woocommerce div.product .woocommerce-Price-currencySymbol{
  font-size: 18px;
  opacity: 0.8;
  margin-left: 2px;
}

/* =========================
   WooCommerce Preis – Premium (Variable Product)
   ========================= */

/* 1) Preisrange oben (30–90 €) dezenter machen */
.woocommerce div.product p.price{
  font-size: 18px !important;
  font-weight: 600 !important;
  color: rgba(0,0,0,0.55) !important;
  margin-bottom: 14px !important;
}

/* 2) Gewählten Varianten-Preis groß & petrol */
.woocommerce div.product .woocommerce-variation-price .price{
  font-size: 30px !important;
  font-weight: 800 !important;
  color: var(--green) !important;
  letter-spacing: .01em;
  margin: 10px 0 14px !important;
}

/* 3) Währung etwas kleiner */
.woocommerce div.product .woocommerce-Price-currencySymbol{
  font-size: 18px !important;
  opacity: .85;
  margin-left: 2px;
}

/* 4) Abstand zwischen Preis und Button sauber */
.woocommerce div.product form.cart{
  margin-top: 6px;
}

.woocommerce div.product p.price{ display:none !important; }

/* =========================
   WooCommerce – Premium Feinschliff
   1) Preis "schweben"
   2) Luftiger Bereich unter Dropdowns
   3) Zurücksetzen-Link stylen
   4) Zusätzliche Informationen entfernen
   ========================= */

/* 1) Gewählten Varianten-Preis "schweben" lassen */
.woocommerce div.product .woocommerce-variation-price{
  display: inline-block;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.08);
  margin: 10px 0 18px;
}

.woocommerce div.product .woocommerce-variation-price .price{
  margin: 0 !important;
  font-size: 30px !important;
  font-weight: 800 !important;
  color: var(--green) !important;
}

/* 2) Luftiger unter den Dropdowns + Form-Bereich */
.woocommerce div.product form.variations_form{
  margin-top: 8px;
}

.woocommerce div.product form.cart{
  margin-top: 18px !important;
  padding-top: 8px;
}

.woocommerce table.variations{
  margin-bottom: 14px !important;
}

.woocommerce table.variations td{
  padding-bottom: 14px !important;
}

/* 3) "Zurücksetzen" Link stilistisch anpassen */
.woocommerce .reset_variations{
  display: inline-block;
  margin-top: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(201,160,60,0.12); /* soft gold */
  color: var(--gold);
  font-weight: 700;
  text-decoration: none !important;
  border: 1px solid rgba(201,160,60,0.25);
}

.woocommerce .reset_variations:hover{
  background: rgba(201,160,60,0.18);
  filter: brightness(0.98);
}

/* 4) "Zusätzliche Informationen" komplett entfernen */
.woocommerce .woocommerce-tabs{
  display: none !important;
}

/* WooCommerce: Nach dem Produktlayout sauber "clearen" (ersetzt Tabs-Clearfix) */
.woocommerce div.product::after{
  content: "";
  display: block;
  clear: both;
}

/* Produkt-Meta (Artikelnummer/Kategorie) ausblenden */
.woocommerce div.product .product_meta{
  display: none !important;
}

/* WooCommerce Lupe/Zoom-Trigger ausblenden */
.woocommerce div.product .woocommerce-product-gallery__trigger{
  display: none !important;
}

/* WooCommerce: Hover-Zoom auf Produktbild komplett deaktivieren */
.woocommerce div.product div.images a,
.woocommerce div.product div.images img,
.woocommerce div.product div.images .woocommerce-product-gallery__image,
.woocommerce div.product div.images .woocommerce-product-gallery__image img{
  transform: none !important;
  transition: none !important;
}

.woocommerce div.product div.images a:hover img,
.woocommerce div.product div.images .woocommerce-product-gallery__image:hover img{
  transform: none !important;
}

/* Optional: Cursor nicht "zoomig" */
.woocommerce div.product div.images a{
  cursor: default !important;
}

/* =========================
   WooCommerce Hover-Zoom komplett deaktivieren
   ========================= */

/* Jegliche Transformation im Produktbild entfernen */
.woocommerce div.product .woocommerce-product-gallery,
.woocommerce div.product .woocommerce-product-gallery * {
  transform: none !important;
  transition: none !important;
}

/* Hover explizit neutralisieren */
.woocommerce div.product .woocommerce-product-gallery img:hover,
.woocommerce div.product .woocommerce-product-gallery a:hover img {
  transform: none !important;
}

/* Falls ein Scale-Effekt auf Bildern liegt */
.woocommerce div.product .woocommerce-product-gallery__image img {
  transform: none !important;
}

/* Cursor normalisieren */
.woocommerce div.product .woocommerce-product-gallery a {
  cursor: default !important;
}

/* =========================
   WARENKORB DESIGN
========================= */

/* Tabelle moderner */
.woocommerce-cart table.shop_table {
  border-radius: 18px;
  overflow: hidden;
  border: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Tabellenkopf */
.woocommerce-cart table.shop_table th {
  background: #f8f6f2;
  font-weight: 600;
}

/* Produktbild abrunden */
.woocommerce-cart table.shop_table img {
  border-radius: 12px;
}

/* Warenkorb-Summe Box */
.cart_totals {
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

/* Überschrift */
.cart_totals h2 {
  font-size: 28px;
  margin-bottom: 20px;
}


/* Gutschein Button */
.woocommerce-cart button[name="apply_coupon"] {
  background: #c79a2b;
  color: #fff;
  border-radius: 30px;
  padding: 10px 20px;
}

/* Menge Input runder */
.woocommerce-cart input.qty {
  border-radius: 10px;
  padding: 6px;
}

/* =========================
   CART: Premium Cards + Coupon weg + Checkout Button Gold
   ========================= */

/* 1) Coupon-Zeile ausblenden */
.woocommerce-cart .coupon{
  display:none !important;
}

/* 3) Warenkorb-Tabelle als "Card" */
.woocommerce-cart .woocommerce-cart-form{
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 18px 40px rgba(0,0,0,0.06);
  padding: 16px;
  overflow: hidden;
}

.woocommerce-cart table.shop_table{
  border: 0 !important;
  margin: 0 !important;
}

/* Kopfzeile soft */
.woocommerce-cart table.shop_table thead th{
  background: rgba(0,0,0,0.03);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-weight: 700;
  color: rgba(0,0,0,0.65);
}

/* Zeilen mehr "card-like" */
.woocommerce-cart table.shop_table tbody tr{
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.woocommerce-cart table.shop_table td{
  border: 0 !important;
  padding: 14px 10px !important;
}

/* Produktbild runder */
.woocommerce-cart .product-thumbnail img{
  border-radius: 14px;
}

/* Entfernen-Icon dezenter */
.woocommerce-cart a.remove{
  color: rgba(0,0,0,0.45) !important;
}
.woocommerce-cart a.remove:hover{
  color: rgba(0,0,0,0.75) !important;
  background: transparent !important;
}

/* Menge Input */
.woocommerce-cart .quantity .qty{
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.15);
  padding: 10px 12px;
}

/* 4) Warenkorb-Summe Box: Premium Card */
.woocommerce-cart .cart-collaterals .cart_totals{
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 18px 40px rgba(0,0,0,0.06);
  padding: 20px;
}

/* 5) "Warenkorb aktualisieren" auch gold/neutral */
.woocommerce-cart button[name="update_cart"]{
  background: rgba(201,160,60,0.15) !important;
  color: rgba(0,0,0,0.65) !important;
  border: 1px solid rgba(201,160,60,0.25) !important;
  border-radius: 999px !important;
  padding: 10px 16px !important;
  font-weight: 700 !important;
}

/* =========================================
   Checkout Design im Stil deiner Webseite
   ========================================= */

/* Layout: mehr Luft */
.woocommerce-checkout .woocommerce,
.wp-block-woocommerce-checkout{
  max-width: 1100px;
  margin: 0 auto;
}

/* Karten-Optik für Bereiche */
.woocommerce-checkout #customer_details > .col-1,
.woocommerce-checkout #customer_details > .col-2,
.woocommerce-checkout #order_review,
.wp-block-woocommerce-checkout .wc-block-components-checkout-step,
.wp-block-woocommerce-checkout .wc-block-components-totals-wrapper,
.wp-block-woocommerce-checkout .wc-block-components-order-summary{
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 8px 22px rgba(0,0,0,.06);
}

/* Überschriften */
.woocommerce-checkout h3,
.wp-block-woocommerce-checkout h2,
.wp-block-woocommerce-checkout h3{
  margin: 0 0 12px 0;
  font-weight: 700;
}

/* Inputs: weich, modern */
.woocommerce-checkout input.input-text,
.woocommerce-checkout textarea,
.woocommerce-checkout select,
.wp-block-woocommerce-checkout input,
.wp-block-woocommerce-checkout textarea,
.wp-block-woocommerce-checkout select{
  border: 1px solid rgba(0,0,0,.18);
  border-radius: 12px;
  padding: 12px 12px;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}

/* Fokus gold */
.woocommerce-checkout input:focus,
.woocommerce-checkout textarea:focus,
.woocommerce-checkout select:focus,
.wp-block-woocommerce-checkout input:focus,
.wp-block-woocommerce-checkout textarea:focus,
.wp-block-woocommerce-checkout select:focus{
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(206,161,41,.25) !important;
  outline: none !important;
}

/* Checkbox/Radio Akzent (wo möglich) */
.woocommerce-checkout input[type="checkbox"],
.woocommerce-checkout input[type="radio"]{
  accent-color: var(--gold);
}

/* Zahlungspflichtig bestellen Button: immer gold */
.woocommerce #place_order,
.woocommerce-page #place_order,
.woocommerce button#place_order,
.woocommerce input#place_order,
.wc-block-components-checkout-place-order-button,
.wp-block-woocommerce-checkout .wc-block-components-button,
.wp-block-woocommerce-checkout .wp-element-button,
.wp-block-woocommerce-checkout button[type="submit"],
.wp-block-woocommerce-checkout input[type="submit"]{
  background-color: var(--gold) !important;
  border-color: var(--gold) !important;
  color: #fff !important;
  border-radius: 999px !important;
  padding: 14px 18px !important;
  font-weight: 700 !important;
  letter-spacing: .2px;
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
}

.woocommerce #place_order:hover,
.wc-block-components-checkout-place-order-button:hover,
.wp-block-woocommerce-checkout .wc-block-components-button:hover,
.wp-block-woocommerce-checkout .wp-element-button:hover{
  background-color: var(--gold-dark, #b68b18) !important;
  border-color: var(--gold-dark, #b68b18) !important;
}

/* “Zur Kasse” / Secondary Buttons auch gold/clean */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button{
  border-radius: 999px;
}

/* Mobile: Karten etwas kompakter */
@media (max-width: 768px){
  .woocommerce-checkout #customer_details > .col-1,
  .woocommerce-checkout #customer_details > .col-2,
  .woocommerce-checkout #order_review,
  .wp-block-woocommerce-checkout .wc-block-components-checkout-step,
  .wp-block-woocommerce-checkout .wc-block-components-totals-wrapper,
  .wp-block-woocommerce-checkout .wc-block-components-order-summary{
    padding: 14px;
    border-radius: 14px;
  }
}

/* =========================================================
   FINAL CHECKOUT (Classic): rechts oben fixieren (Grid-Rows)
   - Links: Rechnungsdetails + Zusatzinfos
   - Rechts: Bestellung + Zahlung + Button
   ========================================================= */

.woocommerce-checkout form.checkout{
  display: grid !important;
  grid-template-columns: 1.15fr 0.85fr !important;
  grid-template-rows: auto auto !important;
  gap: 28px !important;
  align-items: start !important;
}

/* Floats/Widths neutralisieren */
.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review,
.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout #customer_details .col-2{
  float: none !important;
  width: auto !important;
}

/* Links oben: Kundendetails */
.woocommerce-checkout #customer_details{
  grid-column: 1 !important;
  grid-row: 1 !important;
}

/* Theme-Spalten innerhalb Kundendetails zu 100% Breite */
.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout #customer_details .col-2{
  width: 100% !important;
}

/* Links unten: Zusatzinfos */
.woocommerce-checkout .woocommerce-additional-fields{
  grid-column: 1 !important;
  grid-row: 2 !important;
  margin-top: 0 !important;
}

/* Rechts oben: Order Review (Bestellung + Zahlung) */
.woocommerce-checkout #order_review{
  grid-column: 2 !important;
  grid-row: 1 !important;
  align-self: start !important;
}

/* Überschrift sauber IN die Card (statt extra oben) */
.woocommerce-checkout #order_review_heading{
  display: none !important;
}
.woocommerce-checkout #order_review::before{
  content: "Deine Bestellung";
  display: block;
  font-weight: 700;
  margin: 0 0 12px 0;
}

/* Cards (passt zu deinem Stil) */
.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout .woocommerce-additional-fields,
.woocommerce-checkout #order_review{
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 8px 22px rgba(0,0,0,.06);
}

/* Coupon-Frage komplett weg ("Hast du einen Gutschein?") */
.woocommerce-form-coupon-toggle,
.woocommerce-form-coupon,
.checkout_coupon,
form.checkout_coupon{
  display: none !important;
}

/* Button "Zahlungspflichtig bestellen" Gold */
.woocommerce #place_order,
.woocommerce-page #place_order,
.woocommerce button#place_order,
.woocommerce input#place_order{
  background-color: var(--gold) !important;
  border-color: var(--gold) !important;
  color: #fff !important;
  border-radius: 999px !important;
  padding: 14px 18px !important;
  font-weight: 700 !important;
  width: 100% !important;
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
}

.woocommerce #place_order:hover{
  background-color: var(--gold-dark, #b68b18) !important;
  border-color: var(--gold-dark, #b68b18) !important;
}

/* Mobile: untereinander */
@media (max-width: 900px){
  .woocommerce-checkout form.checkout{
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
    gap: 18px !important;
  }
  .woocommerce-checkout #customer_details,
  .woocommerce-checkout .woocommerce-additional-fields,
  .woocommerce-checkout #order_review{
    grid-column: 1 !important;
    grid-row: auto !important;
  }
}

/* =========================================
   Warenkorb: "Weiter zur Kasse" Button Gold
   ========================================= */

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-cart .wc-proceed-to-checkout a.button,
.woocommerce a.checkout-button,
.woocommerce .wc-proceed-to-checkout a{
  background-color: var(--gold, #cea129) !important;
  border-color: var(--gold, #cea129) !important;
  color: #fff !important;
  border-radius: 999px !important;
  padding: 14px 18px !important;
  font-weight: 700 !important;
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
}

/* Hover */
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce a.checkout-button:hover{
  background-color: var(--gold-dark, #b68b18) !important;
  border-color: var(--gold-dark, #b68b18) !important;
  color: #fff !important;
}