/** Shopify CDN: Minification failed

Line 440:13 Unexpected "{"
Line 440:22 Expected ":"
Line 447:13 Unexpected "{"
Line 447:22 Expected ":"
Line 453:13 Unexpected "{"
Line 453:22 Expected ":"
Line 458:13 Unexpected "{"
Line 458:22 Expected ":"
Line 468:13 Unexpected "{"
Line 468:22 Expected ":"
... and 2 more hidden warnings

**/
/* 3dm – Hero (safe, scoped) */

/* Wrapper erzeugt eigenen BFC -> kein Margin-Collapsing */
.hero-3dm-wrapper {
  display: flow-root;
  isolation: isolate;
  background: #fff; /* oder transparent, je nach Design */
  /* Kein margin-bottom! Abstände kommen aus Folgesektionen (Padding) */
}

/* Section-Box */
.hero-3dm {
  position: relative;
  min-height: var(--hero-vh, 80vh);
  padding-top: var(--hero-pad-y, 16px);
  padding-bottom: var(--hero-pad-y, 16px);
  color: var(--hero-text, #111);
  overflow: clip; /* verhindert Überschneidungen, ohne Scrollbars */
}

/* Media-Layer */
.hero-3dm__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-3dm__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Soft Champagne Overlay */
.hero-3dm__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.06), rgba(0,0,0,0)) /* dezente Tiefe oben */
    ,
    color-mix(in srgb, var(--hero-champ, #D9C08F) 30%, transparent 70%);
  opacity: var(--hero-overlay, .08);
}

/* Content */
.hero-3dm__inner {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: var(--hero-vh, 80vh);
}

.hero-3dm__content {
  max-width: var(--hero-maxw, 880px);
  text-align: center;
}

.hero-3dm--left .hero-3dm__inner { place-items: center start; }
.hero-3dm--left .hero-3dm__content { text-align: left; }

.hero-3dm__kicker {
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: clamp(12px, 1.2vw, 14px);
  color: var(--hero-champ, #D9C08F);
  margin: 0 0 10px 0;
  opacity: .95;
}

.hero-3dm__heading {
  font-family: "Cormorant Garamond", ui-serif, Georgia, "Times New Roman", Times, serif;
  font-weight: 600;
  line-height: 1.1;
  font-size: clamp(32px, 6vw, 56px);
  margin: 0 0 14px 0;
  color: var(--hero-text, #111);
}

.hero-3dm__subheading {
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.7;
  margin: 0 0 20px 0;
  opacity: .9;
}

/* CTA-Gruppe */
.hero-3dm__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---------------- Buttons (2 Effekte) ---------------- */

/* Basis */
.btn-3dm {
  --btn-radius: 999px;
  position: relative;
  overflow: hidden; /* <– verhindert, dass der Glanzeffekt außerhalb sichtbar wird */
  z-index: 0;       /* <– sorgt dafür, dass der Effekt sauber unter dem Text bleibt */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--btn-radius);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  font-weight: 800;            /* dickere Schrift */
  letter-spacing: .02em;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
  will-change: transform;
  isolation: isolate;          /* für Pseudo-Elemente */
}

/* Effekt 1: Lift + Shadow */
.btn-3dm:hover { transform: translateY(-1px); }
.btn-3dm:active { transform: translateY(0); }

/* Effekt 2: Sheen-Sweep (glänzender Wisch) */
.btn-3dm::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,.65) 50%, transparent 100%);
  transform: translateX(-120%) skewX(-10deg);
  transition: transform .65s ease;
  mix-blend-mode: overlay;
  border-radius: var(--btn-radius);
}
.btn-3dm:hover::before { transform: translateX(120%) skewX(-10deg); }

/* Primary (Solid Gold) */
.btn-3dm--primary {
  color: #111;
  background: linear-gradient(180deg, var(--hero-champ, #D9C08F), color-mix(in srgb, var(--hero-champ, #D9C08F) 85%, #000 15%));
  box-shadow:
    0 1px 0 color-mix(in srgb, var(--hero-antique, #8C6B2F) 40%, transparent 60%),
    0 8px 26px rgba(0,0,0,.10);
  border: 1px solid color-mix(in srgb, var(--hero-antique, #8C6B2F) 25%, var(--hero-champ, #D9C08F) 75%);
}

.btn-3dm--primary:hover {
  background: linear-gradient(180deg, color-mix(in srgb, var(--hero-champ, #D9C08F) 85%, var(--hero-antique, #8C6B2F) 15%), color-mix(in srgb, var(--hero-champ, #D9C08F) 78%, #000 22%));
  box-shadow:
    0 2px 0 color-mix(in srgb, var(--hero-antique, #8C6B2F) 55%, transparent 45%),
    0 12px 36px rgba(0,0,0,.14);
}

/* Secondary (Outline Gold) */
.btn-3dm--secondary {
  color: var(--hero-text, #111);
  background: transparent;
  border: 2px solid var(--hero-champ, #D9C08F);
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
}
.btn-3dm--secondary:hover {
  background: color-mix(in srgb, var(--hero-champ, #D9C08F) 18%, transparent 82%);
  border-color: color-mix(in srgb, var(--hero-champ, #D9C08F) 85%, var(--hero-antique, #8C6B2F) 15%);
}

/* Small screens */
@media (max-width: 640px) {
  .hero-3dm__inner { min-height: calc(var(--hero-vh, 80vh) - 40px); }
}
/* ============= Buttons – Old 3dm Style ============= */

/* Basis & Size */
.btn-3dm {
  --btn-radius: 999px;
  --btn-pad-y: 14px;         /* höher */
  --btn-pad-x: 28px;         /* breiter */
  --btn-font: clamp(14px, 1.4vw, 17px); /* größer */
  --btn-track: .04em;        /* etwas mehr Tracking */
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  border-radius: var(--btn-radius);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  font-weight: 850;
  font-size: var(--btn-font);
  letter-spacing: var(--btn-track);
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease, opacity .25s ease;
  will-change: transform;
  isolation: isolate;
  line-height: 1; /* kompakt wie früher */
}

/* Effekt #1: Lift + Shadow */
.btn-3dm:hover { transform: translateY(-1.5px); }
.btn-3dm:active { transform: translateY(0); }

/* Effekt #2: Sheen-Sweep (Glanzwisch) */
.btn-3dm::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,.65) 50%, transparent 100%);
  transform: translateX(-120%) skewX(-10deg);
  transition: transform .65s ease;
  mix-blend-mode: overlay;
  border-radius: var(--btn-radius);
}
.btn-3dm:hover::before { transform: translateX(120%) skewX(-10deg); }

/* Fokus-Ring (unaufdringlich, golden) */
.btn-3dm:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--hero-champ, #D9C08F) 35%, transparent 65%),
              0 1px 0 rgba(0,0,0,.04);
}

/* Primary – „Gold Pill“ mit Bevel-Rim */
/* Primary – Warm Rich Gold */
.btn-3dm--primary {
  color: #111;
  background:
    linear-gradient(180deg,
      #E3B44A 0%,
      color-mix(in srgb, #E3B44A 80%, #8C6B2F 20%) 100%
    );
  border: 1px solid color-mix(in srgb, #8C6B2F 35%, #E3B44A 65%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.3),
    inset 0 -1px 0 color-mix(in srgb, #000 12%, transparent 88%),
    0 1px 0 color-mix(in srgb, #8C6B2F 40%, transparent 60%),
    0 10px 28px rgba(0,0,0,.12);
}

.btn-3dm--primary:hover {
  background:
    linear-gradient(180deg,
      color-mix(in srgb, #E3B44A 90%, #8C6B2F 10%) 0%,
      color-mix(in srgb, #E3B44A 70%, #5C461F 30%) 100%
    );
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.4),
    inset 0 -1px 0 color-mix(in srgb, #000 14%, transparent 86%),
    0 2px 0 color-mix(in srgb, #8C6B2F 55%, transparent 45%),
    0 14px 36px rgba(0,0,0,.16);
}


/* Secondary – Gold Outline (etwas kräftiger) */
.btn-3dm--secondary {
  color: var(--hero-text, #111);
  background: transparent;
  border: 2px solid var(--hero-champ, #D9C08F);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.18),
    0 1px 0 rgba(0,0,0,.05);
}
.btn-3dm--secondary:hover {
  background: color-mix(in srgb, var(--hero-champ, #D9C08F) 20%, transparent 80%);
  border-color: color-mix(in srgb, var(--hero-champ, #D9C08F) 85%, var(--hero-antique, #8C6B2F) 15%);
}

/* Optional: größere Variante, falls du später brauchst */
.btn-3dm--lg {
  --btn-pad-y: 16px;
  --btn-pad-x: 32px;
  --btn-font: clamp(15px, 1.6vw, 18px);
}
/* Primary – Champagne Light Gold (edler, heller, mit Reflex) */
.btn-3dm--primary {
  color: #111;
  background:
    linear-gradient(
      180deg,
      #F3DFA3 0%,                           /* sehr helles Gold oben */
      color-mix(in srgb, #E8C36E 80%, #B48E32 20%) 55%, /* Mittelton */
      color-mix(in srgb, #D6AD54 70%, #8C6B2F 30%) 100%  /* tiefer warmer Ton unten */
    );
  border: 1px solid color-mix(in srgb, #B48E32 40%, #E8C36E 60%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.55),   /* feiner Lichtreflex oben */
    inset 0 -1px 0 rgba(0,0,0,.08),
    0 1px 0 rgba(255,255,255,.2),
    0 10px 28px rgba(0,0,0,.10);
  position: relative;
  overflow: hidden;
   transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}

/* sanfter Lichtreflex über der Oberfläche */
.btn-3dm--primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -20%;
  width: 140%;
  height: 55%;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.45) 0%,
    rgba(255,255,255,0) 100%
  );
  opacity: 0.25;
  border-radius: inherit;
  pointer-events: none;
  transition: opacity .3s ease;
}

/* Hover: etwas satteres Gold und stärkerer Reflex */
.btn-3dm--primary:hover {
  background:
    linear-gradient(
      180deg,
      #F0D181 0%,
      color-mix(in srgb, #E3B44A 80%, #8C6B2F 20%) 50%,
      color-mix(in srgb, #D1A83A 60%, #8C6B2F 40%) 100%
    );
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.65),
    inset 0 -1px 0 rgba(0,0,0,.1),
    0 2px 0 rgba(255,255,255,.3),
    0 14px 36px rgba(0,0,0,.14);
      transform: none; /* kein Translate, kein Layer-Shift */
  filter: drop-shadow(0 2px 3px rgba(0,0,0,.15)); /* visueller Ersatz für Lift */
}

.btn-3dm--primary:hover::after {
  opacity: 0.45;
}
.hero-3dm__kicker {
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: clamp(13px, 1.6vw, 17px);
  color: #E8C36E; /* wärmeres Gold */
  margin: 0 0 14px 0;
  opacity: 1;
}
.hero-3dm__kicker {
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.18em;
  font-size: clamp(14px, 1.7vw, 18px);
  margin: 0 0 14px 0;
  line-height: 1.2;

  /* ✨ Polierter Goldverlauf mit mehr Tiefe */
  background: linear-gradient(
    90deg,
    #F9E7AA 0%,         /* heller Reflex */
    #E3B44A 40%,        /* mittleres Gold */
    #B98A28 100%        /* tiefer warmer Ton */
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* 🩶 bessere Lesbarkeit auf hellem Hintergrund */
  text-shadow:
    0 1px 1px rgba(0, 0, 0, 0.12),   /* leichte Tiefe */
    0 0 2px rgba(0, 0, 0, 0.07);     /* sanfte Kontur */
}

/* ========== HERO OPTIMIERUNG 3DM (MOBILE FIRST) ========== */
@media (max-width: 767px) {

  /* Kürzere Hero-Höhe */
  .hero-3dm.hero-3dm--large {
    min-height: 62vh !important;
    height: auto !important;
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  /* Hero-Bild weniger hoch skalieren */
  .hero-3dm__media img,
  .hero-3dm__media picture {
    height: auto !important;
    max-height: 48vh !important;
    object-fit: cover !important;
  }

  /* CTA höher platzieren */
  .hero-3dm__cta {
    margin-top: 1.2rem !important;
    margin-bottom: 0.5rem !important;
  }

  /* Weniger Abstand über dem Text */
  .hero-3dm__text-wrapper {
    margin-top: 0.4rem !important;
  }
}

/* ========== DESKTOP HERO FEINTUNING ========== */
@media (min-width: 768px) {

  .hero-3dm.hero-3dm--large {
    min-height: 72vh !important;
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .hero-3dm__cta {
    margin-top: 1.5rem !important;
  }
}
/* ================================
   3DM HERO OPTIMIERUNG – MOBILE FIRST
   ================================ */
@media (max-width: 767px) {

  /* Kürzt die gesamte Hero-Höhe */
  #hero-3dm-{{ section.id }} .hero-3dm {
    min-height: 62vh !important;
    padding-top: 1.8rem !important;
    padding-bottom: 1.8rem !important;
  }

  /* Bild skalieren (weniger Höhe, mehr Shop-Gefühl) */
  #hero-3dm-{{ section.id }} .hero-3dm__media img {
    max-height: 46vh !important;
    object-fit: cover !important;
  }

  /* CTA näher an Text + weniger Weißraum */
  #hero-3dm-{{ section.id }} .hero-3dm__cta {
    margin-top: 1rem !important;
  }

  /* Abstand oberhalb des Textes reduzieren */
  #hero-3dm-{{ section.id }} .hero-3dm__content {
    margin-top: 0 !important;
  }
}

/* ================================
   3DM HERO OPTIMIERUNG – DESKTOP
   ================================ */
@media (min-width: 768px) {

  #hero-3dm-{{ section.id }} .hero-3dm {
    min-height: 72vh !important;
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  #hero-3dm-{{ section.id }} .hero-3dm__cta {
    margin-top: 1.4rem !important;
  }
}
/* ==========================================================
   3DM HERO – FUNKTIONIERENDE OPTIMIERUNG (AUF DEINEN CODE)
   ========================================================== */

/* MOBILE */
@media (max-width: 749px) {

  /* Hero kürzen */
  [id^="hero-3dm-"] .hero-3dm {
    min-height: 58vh !important;
    padding-top: 1.2rem !important;
    padding-bottom: 1.2rem !important;
  }

  /* Bild weniger hoch */
  [id^="hero-3dm-"] .hero-3dm__media img {
    max-height: 42vh !important;
    object-fit: cover !important;
  }

  /* CTA näher ran */
  [id^="hero-3dm-"] .hero-3dm__cta {
    margin-top: 0.8rem !important;
  }

  /* Content kompakter */
  [id^="hero-3dm-"] .hero-3dm__inner {
    min-height: auto !important;
  }
}

/* DESKTOP */
@media (min-width: 750px) {

  [id^="hero-3dm-"] .hero-3dm {
    min-height: 70vh !important;
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  [id^="hero-3dm-"] .hero-3dm__cta {
    margin-top: 1.2rem !important;
  }
}
/* ==========================================================
   FIX – Entfernt den weißen/hellen Block unter dem Hero-Bild
   ========================================================== */

/* MOBILE */
@media (max-width: 749px) {
  [id^="hero-3dm-"] {
    height: auto !important;
    min-height: auto !important;
  }

  [id^="hero-3dm-"] .hero-3dm {
    height: auto !important;
    min-height: auto !important;
  }

  [id^="hero-3dm-"] .hero-3dm__media {
    height: auto !important;
  }

  /* Overlay an Bildhöhe koppeln */
  [id^="hero-3dm-"] .hero-3dm__overlay {
    height: 100% !important;
    top: 0 !important;
    bottom: 0 !important;
  }
}

/* DESKTOP */
@media (min-width: 750px) {
  [id^="hero-3dm-"] {
    min-height: auto !important;
  }

  [id^="hero-3dm-"] .hero-3dm {
    min-height: auto !important;
  }
}
/* ==========================================================
   3DM HERO – FINAL MOBILE TUNING (Dichter, edler, höher)
   ========================================================== */

@media (max-width: 749px) {

  /* Textblock leicht nach oben */
  [id^="hero-3dm-"] .hero-3dm__content {
    margin-top: -0.8rem !important;
  }

  /* CTA näher an den Text */
  [id^="hero-3dm-"] .hero-3dm__cta {
    margin-top: 0.4rem !important;
  }

  /* Bild minimal kompakter */
  [id^="hero-3dm-"] .hero-3dm__media img {
    max-height: 38vh !important;
  }

  /* Weniger Padding im kompletten Hero */
  [id^="hero-3dm-"] .hero-3dm {
    padding-top: 0.9rem !important;
    padding-bottom: 0.9rem !important;
  }
}



/* ============================================
   3DM HERO – MOBILE ONLY Optimierung
   ============================================ */

@media (max-width: 749px) {

  /* --------------------------------------------
     TEXT: Kicker, Heading, Subheading verfeinern
     -------------------------------------------- */

  [id^="hero-3dm-"] .hero-3dm__kicker {
    font-size: 0.72rem !important;
    letter-spacing: 1.2px !important;
    margin-bottom: 0.15rem !important;
    opacity: 0.85 !important;
  }

  [id^="hero-3dm-"] .hero-3dm__heading {
    font-size: 1.42rem !important;
    line-height: 1.22 !important;
    font-weight: 600 !important;
    letter-spacing: -0.3px !important;
    margin-bottom: 0.2rem !important;
  }

  [id^="hero-3dm-"] .hero-3dm__subheading {
    font-size: 0.86rem !important;
    line-height: 1.28 !important;
    opacity: 0.92 !important;

  }

  [id^="hero-3dm-"] .btn-3dm--primary {
    padding: 0.46rem 1.15rem !important; /* 25–30% kleiner */
    font-size: 0.82rem !important;       /* feiner */
    border-radius: 9px !important;
    font-weight: 600 !important;
  }

  [id^="hero-3dm-"] .btn-3dm--primary .btn-3dm__inner {
    letter-spacing: 0.3px !important;
  }
}
