:root {
  --rose: #D27E95;
  --ink: #1F1F1F;
  --brown: #5b1a15;   /* NEU */
  --snow: #FFFFFF;
  --fog: #F5F5F5;
  --radius: 30px;
  --overlap: 48px;
}

    html, body { margin: 0; padding: 0; }

    body {
      font-family: "Poppins", system-ui, sans-serif;
      color: var(--ink);
      background: var(--snow);
      line-height: 1.6;
    }
            /* ===== Content-Bereich für Unterseiten ===== */
    main {
      margin: 0;
      padding: 0; /* Abstand nach unten, damit nichts unter der Navi verschwindet */
    }

    @media (max-width: 957px) {
      main {
        padding-top: 90px;
      }
    }

    /* ===== Header/Navi (Desktop) ===== */
    .site-header { position: absolute; top: 0; left: 0; width: 100%; z-index: 1000; }
    .cb-bar-wrap { width: 98%; max-width: 1680px; margin: 0 auto; padding-top: 12px; }
    .cb-bar {
      background: rgba(255,255,255,.92);
      backdrop-filter: blur(10px);
      border-radius: var(--radius);
      box-shadow: 0 8px 26px rgba(0,0,0,.08);
      padding: 10px 36px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: .3s;
    }

    .cb-bar.uk-active {
      background: #fff;
      box-shadow: 0 6px 18px rgba(0,0,0,.10);
      padding: 6px 28px;
    }

    .cb-left, .cb-right { flex: 0 0 auto; display: flex; align-items: center; gap: 10px; }
    .cb-center { flex: 1 1 auto; display: flex; justify-content: center;}
    .uk-logo img { height: 70px; width: auto; }

    .cb-nav { display: flex; align-items: center; gap: clamp(24px,3vw,48px); }
    .cb-nav > li { position: relative; }
    .cb-nav > li > a {
      text-transform: uppercase;
      letter-spacing: .05em;
      font-weight: 400;
      color: var(--ink);
      padding: 0 4px;
      line-height: 44px;
      font-size: clamp(13px,1.15vw,16px);
      display: flex;
      align-items: center;
      gap: 6px;
      transition: color .25s;
    }
     
    .cb-nav > li > a:hover {
      color: var(--rose);
    }

    .cb-nav > li.uk-active > a {
      color: var(--rose);
      font-weight: 500;
    }

    .navbar li.active > a:visited {
      color: var(--rose);
      background: #fafafa;
}

    /* Dropdown bündig */
    .uk-navbar-dropdown {
      background: #fff;
      border: 1px solid #f0f0f0;
      border-radius: 10px;
      box-shadow: 0 8px 28px rgba(0,0,0,.08);
      padding: 12px 0;
      min-width: 260px;
      margin-top: 0;
    }

    .uk-navbar-dropdown-nav > li > a {
      color: var(--ink);
      padding: 10px 24px;
      text-transform: none;
      transition: .2s;
    }

    .uk-navbar-dropdown-nav > li + li > a { border-top: 1px solid #f5f5f5; }

    .uk-navbar-dropdown-nav > li > a:hover {
      color: var(--rose);
      background: #fafafa;
    }

.user-icon-btn {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background: transparent;
    transition: background 0.3s;
}
.user-icon-btn:hover {
    background: #f0f0f0;
}
    .cta-btn {
      background: var(--rose);
      color: #fff !important;
      border-radius: 10px;
      height: 44px;
      padding: 0 18px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .06em;
    }

    .cart-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--snow);
      border-radius: 10px;
      width: 44px;
      height: 44px;
    }

    /* ===== Burger (mobil) ===== */
    .mobile-burger {
      position: fixed;
      top: clamp(12px,3.5vw,22px);
      right: clamp(12px,5vw,28px);
      z-index: 4000;
      display: none;
    }

    .mobile-burger button {
      background: rgba(0,0,0,.30);
      border: none;
      border-radius: 50%;
      width: 54px;
      height: 54px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 0 14px rgba(0,0,0,.35);
      transition: .2s;
    }

    .mobile-burger button:hover {
      background: rgba(0,0,0,.40);
      transform: scale(1.05);
    }

    .mobile-burger [uk-icon] svg {
      stroke: #fff;
      stroke-width: 2.2;
      width: 28px;
      height: 28px;
    }

    .mobile-nav-parent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.mobile-nav-link {
    flex: 1 1 auto;
    display: block;
}

.mobile-nav-toggle {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.mobile-nav-toggle::before {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    display: block;
    transition: transform 0.2s ease;
}

.uk-parent.uk-open > .mobile-nav-parent .mobile-nav-toggle::before {
    transform: rotate(-135deg);
}

    @media (max-width:957px) { .site-header { display: none; } .mobile-burger { display: block; } }
    @media (min-width:958px) { .mobile-burger { display: none; } .site-header { display: block; } }

    html.uk-offcanvas .mobile-burger,
    body.uk-offcanvas-page .mobile-burger { display: none !important; }
    #offcanvas-nav.uk-open ~ .mobile-burger { display: none !important; }


/* ===== Hero ===== */

/* Entferne unnötige Padding und Margin */
main > *:first-child,
.cb-hero,
.hero-top {
  margin-top: calc(-2.5 * var(--overlap)) !important;
  padding-top: 0 !important;
}

.cb-hero {
  padding: 0;
  overflow: hidden;
  position: relative;
  width: 100%; /* Stellt sicher, dass der Container die volle Breite einnimmt */
  height: 100vh;
}

.cb-hero .uk-slideshow-items > li {
  height: 100%;  /* Setzt die Höhe auf 100%, damit das Bild vollständig ausgefüllt wird */
  width: 100%;  /* Breite auf 100% setzen */
  object-fit: cover; /* Skaliert das Bild proportional, ohne es abzuschneiden */
}

.cb-hero .uk-slideshow-items img {
  width: 100%; /* Das Bild füllt die Breite des Containers */
  height: 100%; /* Bildhöhe auf 100% setzen */
  object-fit: cover; /* Bild bleibt sichtbar, wird aber nicht abgeschnitten */
}


/* Desktop */
@media (min-width: 1200px) {
  main > *:first-child,
  .cb-hero,
  .hero-top {
    margin-top: calc(-3 * var(--overlap)) !important;
  }

  .cb-hero .uk-slideshow-items > li {
    height: 100vh !important; /* Setze feste Höhe für Desktop */
    object-fit: cover; /* Bild bleibt vollständig sichtbar und füllt den Container */
  }
}

/* Tablet */
@media (max-width: 1200px) {
  main > *:first-child,
  .cb-hero,
  .hero-top {
    margin-top: calc(-2 * var(--overlap)) !important;
  }

  .cb-hero .uk-slideshow-items > li {
    height: 30vh !important; /* Anpassung für Tablets */
    object-fit: cover; /* Bild bleibt vollständig sichtbar und füllt den Container */
  }
}

/* Mobile */
@media (max-width: 957px) {
  main > *:first-child,
  .cb-hero,
  .hero-top {
    margin-top: calc(-3 * var(--overlap)) !important;
    padding-top: 40px !important;
  }

  .cb-hero {
    height: 300px !important; /* Anpassung für mobile Geräte */
    object-fit: cover; /* Bild bleibt vollständig sichtbar und füllt den Container */
  }
  .uk-slideshow-items > li {
    height: 300px !important; /* Anpassung für mobile Geräte */
    object-fit: cover; /* Bild bleibt vollständig sichtbar und füllt den Container */
  }
  .cb-hero .uk-slideshow-items img {
  width: 100%;
  height: 100%; /* Die Höhe des Bildes soll die Höhe des Containers ausfüllen */
  object-fit: cover; /* Das Bild wird so skaliert, dass es den Container füllt, ohne das Verhältnis zu verzerren */
}
}

@media (max-width: 780px) {
  main > *:first-child,
  .cb-hero,
  .hero-top {
    margin-top: calc(-3 * var(--overlap)) !important;
  }

  .cb-hero {
    height: 200px !important; /* Anpassung für mobile Geräte */
    object-fit: cover; /* Bild bleibt vollständig sichtbar und füllt den Container */
  }
  .uk-slideshow-items > li {
    height: 200px !important; /* Anpassung für mobile Geräte */
    object-fit: cover; /* Bild bleibt vollständig sichtbar und füllt den Container */
  }
  .cb-hero .uk-slideshow-items img {
  width: 100%;
  height: 100%; /* Die Höhe des Bildes soll die Höhe des Containers ausfüllen */
  object-fit: cover; /* Das Bild wird so skaliert, dass es den Container füllt, ohne das Verhältnis zu verzerren */
}
}
@media (max-width: 568px) {
  main > *:first-child,
  .cb-hero,
  .hero-top {
    margin-top: calc(-3 * var(--overlap)) !important;
  }

  .cb-hero {
    height: 30vh !important; /* Anpassung für mobile Geräte */
    object-fit: cover; /* Bild bleibt vollständig sichtbar und füllt den Container */
  }
  .uk-slideshow-items > li {
    height: 30vh !important; /* Anpassung für mobile Geräte */
    object-fit: cover; /* Bild bleibt vollständig sichtbar und füllt den Container */
  }
  .cb-hero .uk-slideshow-items img {
  width: 100%;
  height: 100%; /* Die Höhe des Bildes soll die Höhe des Containers ausfüllen */
  object-fit: cover; /* Das Bild wird so skaliert, dass es den Container füllt, ohne das Verhältnis zu verzerren */
}
}

/* Headline */
.cb-hero h1,
.uk-slideshow h1,
.cb-title {
  font-family: "Playfair Display", serif;
  color: #fff;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  margin: 0 auto;
  padding: 0 20px;

  /* Dynamische Schriftgröße */
  font-size: clamp(24px, 5vw, 60px);

  text-shadow: 0 2px 8px rgba(0, 0, 0, .25);
}

/* ==============================
   TEXT IMAGE MODUL – FIXED
============================== */

.cb-textimage {
  padding: 40px 0;
  background: var(--fog);
  display: flow-root;
}

/* Titel */
.cb-textimage__title {
  font-family: "Gabriela", serif;
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--rose);
}

/* Bild */
.cb-textimage__img {
  height: auto;
  border-radius: 14px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.08);
  margin: 0 30px 20px 0;
}

/* Float Varianten */
.cb-textimage__img.is-left {
  float: left;
}

.cb-textimage__img.is-right {
  float: right;
  margin: 0 0 20px 30px;
}

/* Größen */
.cb-textimage__img--small  { width: 250px; }
.cb-textimage__img--medium { width: 350px; }
.cb-textimage__img--large  { width: 450px; }

/* Text */
.cb-textimage__text {
  font-family: "Inter", sans-serif;
  line-height: 1.8;
  color: var(--ink);
  margin-bottom: 0;
}

/* Mobile */
@media (max-width: 768px) {
  .cb-textimage__img {
    float: none;
    display: block;
    width: 100%;
    margin: 0 0 20px 0;
  }
}

/* ===================================== */
/* Contact Booking Modul */
/* ===================================== */

.contact-section {
    position: relative;
    padding: 15px 12px 40px;
    margin: 0;
}

.contact-overlay {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    max-width: 900px;
    margin: 0 auto;
    padding: 28px 16px;
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
}

.contact-title {
    font-size: 1.7rem;
    font-weight: 300;
    margin-bottom: 12px;
    color: #2b2b2b;
    letter-spacing: 0.3px;
    line-height: 1.2;
}

.contact-intro {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.6;
}

.contact-main-btn {
    display: block;
    width: 100%;
    max-width: 100%;
    background: #d27e95;
    color: #fff !important;
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 40px;
    font-size: 0.98rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(210, 126, 149, 0.25);
    margin: 0 auto 24px;
    box-sizing: border-box;
}

.contact-main-btn:hover {
    background: #bf6d84;
    color: #fff !important;
    text-decoration: none;
    transform: translateY(-2px);
}

.contact-divider {
    margin: 18px auto 24px;
    width: 70px;
    height: 1px;
    background: #d9b7c1;
}

.contact-grid {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.contact-card {
    background: #fff;
    border-radius: 16px;
    padding: 22px 16px;
    min-width: 100%;
    max-width: 100%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    text-align: center;
    box-sizing: border-box;
}

.contact-card-title {
    font-size: 0.98rem;
    font-weight: 600;
    color: #2b2b2b;
    margin-bottom: 10px;
}

.contact-card-text {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 16px;
    word-break: break-word;
    line-height: 1.5;
}

.contact-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #f6dfe5;
    color: #b85f79;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-icon-link:hover {
    background: #d27e95;
    color: #fff;
    text-decoration: none;
    transform: scale(1.05);
}

.contact-map-title {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 14px;
    color: #2b2b2b;
}

.contact-map {
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-map iframe {
    width: 100%;
    min-height: 300px;
    border: 0;
    display: block;
}

/* Tablet / Desktop */
@media (min-width: 769px) {
    .contact-section {
        padding: 30px 20px 60px;
    }

    .contact-overlay {
        padding: 42px 28px;
        border-radius: 24px;
    }

    .contact-title {
        font-size: 2.1rem;
        margin-bottom: 15px;
    }

    .contact-intro {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .contact-main-btn {
        display: inline-block;
        width: auto;
        max-width: none;
        padding: 16px 34px;
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .contact-divider {
        margin: 20px auto 30px;
    }

    .contact-grid {
        gap: 25px;
        margin-bottom: 35px;
    }

    .contact-card {
        min-width: 240px;
        max-width: 320px;
        flex: 1 1 260px;
        border-radius: 20px;
        padding: 25px 20px;
    }

    .contact-card-title {
        font-size: 1rem;
    }

    .contact-map-title {
        font-size: 1.35rem;
        margin-bottom: 18px;
    }

    .contact-map {
        border-radius: 22px;
    }

    .contact-map iframe {
        min-height: 420px;
    }
}

/* ===================================== */
/* Bon Cadeau */
/* ===================================== */
/* FORMULAR */
h2 {
    color: #D27E95;
    font-weight: bold;
}
.bon-cadeau-wrapper {
    max-width: 720px;
    margin: 60px auto;
    padding: 0 20px;
}
.custom-register-form {
    background: #fff;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
}
.custom-register-form input[type="text"],
.custom-register-form input[type="email"],
.custom-register-form textarea,
.custom-register-form select,
.custom-register-form .uk-select {
    width: 100%;
    padding: 0.9rem 1rem;
    font-size: 1rem;
    border-radius: 6px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}
.custom-register-form textarea {
    min-height: 120px;
    resize: vertical;
}
.custom-register-form input:focus,
.custom-register-form textarea:focus,
.custom-register-form select:focus {
    border-color: #D27E95;
    outline: none;
}
.custom-register-form input[type="submit"],
.custom-register-form button[type="submit"] {
    background-color: #D27E95;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.9rem 2rem;
    font-size: 1.15rem;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
    transition: background-color 0.2s ease, transform 0.1s ease;
    box-shadow: 0 4px 12px rgba(210, 126, 149, 0.25);
}
.custom-register-form input[type="submit"]:hover,
.custom-register-form button[type="submit"]:hover {
    background-color: #bf6d82;
    transform: translateY(-1px);
}
.custom-register-form input[type="submit"]:active,
.custom-register-form button[type="submit"]:active {
    transform: translateY(0);
}

/* LOGIN / REGISTER */
.gift-login-wrapper {
    max-width: 900px;
    margin: 80px auto;
    padding: 40px 20px;

    display: flex;
    justify-content: center;
    gap: 30px;
}

/* Boxen */
.login-section,
.register-section {
    background-color: #fff;
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    text-align: center;

    width: 50%;
    max-width: 420px;

    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Titel */
.login-section h3,
.register-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #D27E95;
    margin-bottom: 20px;
}

/* Text */
.login-section p,
.register-section p {
    max-width: 480px;
    margin: 0 auto 25px;
    line-height: 1.6;
}
.login-section:hover,
.register-section:hover{
    transform: translateY(-4px);
    transition: 0.3s;
}
/* Mobile */
@media (max-width: 768px) {

    .gift-login-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .login-section,
    .register-section {
        width: 100%;
        max-width: 420px;
    }

}

/* Buttons */
.gift-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    max-width: 480px;

    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 8px;
    transition: background-color 0.2s ease;
    text-decoration: none;
}

/* Farben */
.btn-rose {
    background-color: #D27E95;
    color: #fff;
}
.btn-rose:hover {
    background-color: #BF6D82;
}

.btn-pink {
    background-color: #F7D6DE;
    color: #B14462;
    border: 1px solid #B14462;
}
.btn-pink:hover {
    background-color: #f0c3cd;


}

/* ===============================
   VOUCHER WRAPPER
================================= */

.voucher-wrap {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(6px);
    border-radius: 24px;
    padding: 60px;
    max-width: 1100px;
    margin: 80px auto;
    box-shadow: 0 25px 70px rgba(0,0,0,0.12);
}

/* ===============================
   TITLE
================================= */

.voucher-title {
    text-align: center;
    color: #c67a8b;
    font-weight: 600;
    font-size: 28px;
    letter-spacing: 1px;
    margin-bottom: 50px;
}

/* ===============================
   TABLE BASE
================================= */

.voucher-wrap table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 12px;
}

/* HEADER */

.voucher-wrap thead th {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    font-weight: 600;
    padding-bottom: 15px;
}

/* ROWS */

.voucher-wrap tbody tr {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
}

.voucher-wrap tbody tr:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* CELLS */

.voucher-wrap td {
    padding: 18px 20px;
    font-size: 15px;
    color: #333;
}

/* CODE stärker */

.voucher-wrap td:first-child {
    font-weight: 600;
    color: #222;
    letter-spacing: 0.5px;
}

/* MONAT + DATE stärker sichtbar */

.voucher-wrap td:nth-child(2),
.voucher-wrap td:nth-child(3),
.voucher-wrap td:nth-child(4) {
    font-weight: 500;
    color: #444;
}

/* Date d'achat etwas dunkler */

.voucher-wrap td:nth-child(3) {
    font-weight: 600;
    color: #222;
}

/* Valable jusqu'au leicht rosé */

.voucher-wrap td:nth-child(4) {
    font-weight: 600;
    color: #c67a8b;
}

/* ===============================
   MOBILE
================================= */

@media (max-width: 768px) {

    .voucher-wrap {
        margin: 30px 15px;
        padding: 30px;
    }

    .voucher-title {
        font-size: 22px;
    }
    .voucher-wrap td:nth-child(4),
    .voucher-wrap th:nth-child(4) {
        display: none;
    }
    .voucher-wrap td {
        font-size: 13px;
        padding: 12px 10px;
    }

    .voucher-wrap thead th {
        font-size: 11px;   /* vorher 13px */
        letter-spacing: 0.5px;
    }
}

/* ===================================== */
/* Login */
/* ===================================== */
.custom-login-form {
    max-width: 600px;
    margin: 60px auto;
    padding: 30px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.custom-login-form .uk-input {
    border-radius: 4px;
}
.custom-login-form button.uk-button-primary {
    background-color: #D27E95;
    border: none;
    border-radius: 8px;
    color: #fff;
}
.custom-login-form button.uk-button-primary:hover {
    background-color: #c16984;
}
.custom-login-form .uk-link-text {
    color: #D27E95;
    text-decoration: none;
}

/* ===================================== */
/* Profil */
/* ===================================== */
.profile-form {
    max-width: 600px;
    margin: 60px auto;
    padding: 30px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.profile-form h2 {
    color: #D7A1AF;
}

.profile-form .uk-button-primary {
    background-color: #D27E95;
    border: none;
    border-radius: 10px;
}

.profile-form .uk-button-primary:hover {
    background-color: #c16984;
}

.profile-form .uk-checkbox:checked {
    background-color: #D27E95;
}

.profile-form .uk-alert {
    text-align: center;
}

/* ===================================== */
/* ===== Text (Redactor) Modul ===== */
/* ===================================== */
.color-dark {
    color: var(--ink);
}

.color-brown {
    color: var(--brown);
}

/* ===================================== */
/* Tabellen – Desktop Preislisten */
/* ===================================== */

table.abstand {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 0;
}

table.abstand tr {
    position: relative;
}

table.abstand td {
    padding: 0.6em 1.5em;
    vertical-align: top;
}

/* Titel */
table.abstand td:first-child:not(:only-child) {
    font-weight: 600;
}

/* Dauer */
table.abstand td:nth-child(2) {
    text-align: right;
    white-space: nowrap;
}

/* Preis */
table.abstand td:nth-child(3) {
    text-align: right;
    white-space: nowrap;
}

/* Beschreibung direkt unter Titel */
table.abstand tr td:only-child {
    padding: 0.2em 1.5em 0.8em 1.5em;
    font-style: italic;
    line-height: 1.4;
    font-size: 0.95em;
    color: inherit;
    position: relative;
    top: -6px; /* zieht Text näher an Titel */
}

/* Sup */
.cb-text sup {
    font-size: 0.8em;
}


/* ===================================== */
/* Mobile Premium Preislisten Layout */
/* ===================================== */

@media (max-width: 640px) {

    table.abstand,
    table.abstand tbody {
        display: block;
        width: 100%;
    }

    table.abstand tr {
        display: block;
        margin-bottom: 28px;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(0,0,0,0.08);
    }

    table.abstand td {
        display: block;
        width: 100%;
        padding: 0;
        text-align: left !important;
    }

    /* ============================= */
    /* TITEL */
    /* ============================= */

    table.abstand tr td:first-child:not(:only-child) {
        font-weight: 600;
        font-size: 1.1em;
        margin-bottom: 6px;
    }

    /* ============================= */
    /* SUBTEXT */
    /* ============================= */

    table.abstand tr + tr td:only-child {
        margin-top: -6px;
        margin-bottom: 14px;
        font-size: 0.9em;
        font-style: italic;
        opacity: 0.85;
        line-height: 1.5;
    }

    /* ============================= */
    /* ZEIT + PREIS ALS FLEX-ZEILE */
    /* ============================= */

    table.abstand tr td:nth-child(2),
    table.abstand tr td:nth-child(3) {
        display: inline-block;
        font-size: 0.95em;
        margin: 0;
    }

    /* Container für Dauer + Preis */
    table.abstand tr td:nth-child(2) {
        float: left;
    }

    table.abstand tr td:nth-child(3) {
        float: right;
        font-weight: 500;
    }

    /* Clearfix */
    table.abstand tr::after {
        content: "";
        display: block;
        clear: both;
    }

    table.abstand tr:last-child {
        border-bottom: none;
    }
}
/* ===================================== */
/* Content Box */
/* ===================================== */

.custom-content-box {
    background: rgba(255, 255, 255, 0.88);
    padding: 40px;
    border-radius: var(--radius);
    max-width: 960px;
    margin: auto;
    font-size: 1rem;
    line-height: 1.6;
}


/* ===================================== */
/* Modul-Headline */
/* ===================================== */

.cb-headline {
    color: var(--rose);
    text-align: center;
    margin-bottom: 25px;
    font-weight: 700;
}

/* ===================================== */
/* Heading-Farboptionen (nur Textbereich) */
/* ===================================== */

.heading-inherit .cb-text h1,
.heading-inherit .cb-text h2,
.heading-inherit .cb-text h3,
.heading-inherit .cb-text h4,
.heading-inherit .cb-text h5,
.heading-inherit .cb-text h6 {
    color: inherit;
}

.heading-dark .cb-text h1,
.heading-dark .cb-text h2,
.heading-dark .cb-text h3,
.heading-dark .cb-text h4,
.heading-dark .cb-text h5,
.heading-dark .cb-text h6 {
    color: var(--ink);
}

.heading-brown .cb-text h1,
.heading-brown .cb-text h2,
.heading-brown .cb-text h3,
.heading-brown .cb-text h4,
.heading-brown .cb-text h5,
.heading-brown .cb-text h6 {
    color: var(--brown);
}

.heading-rose .cb-text h1,
.heading-rose .cb-text h2,
.heading-rose .cb-text h3,
.heading-rose .cb-text h4,
.heading-rose .cb-text h5,
.heading-rose .cb-text h6 {
    color: var(--rose);
}

/* ===================================== */
/* Heading-Ausrichtung */
/* ===================================== */

.heading-align-inherit .cb-text h1,
.heading-align-inherit .cb-text h2,
.heading-align-inherit .cb-text h3,
.heading-align-inherit .cb-text h4,
.heading-align-inherit .cb-text h5,
.heading-align-inherit .cb-text h6 {
    text-align: inherit;
}

.heading-left .cb-text h1,
.heading-left .cb-text h2,
.heading-left .cb-text h3,
.heading-left .cb-text h4,
.heading-left .cb-text h5,
.heading-left .cb-text h6 {
    text-align: left;
}

.heading-center .cb-text h1,
.heading-center .cb-text h2,
.heading-center .cb-text h3,
.heading-center .cb-text h4,
.heading-center .cb-text h5,
.heading-center .cb-text h6 {
    text-align: center;
}

.heading-right .cb-text h1,
.heading-right .cb-text h2,
.heading-right .cb-text h3,
.heading-right .cb-text h4,
.heading-right .cb-text h5,
.heading-right .cb-text h6 {
    text-align: right;
}

/* ===================================== */
/* Textbereich */
/* ===================================== */

.cb-text {
    font-size: 1.1rem;
    color: inherit;
}

/* Absätze */
.cb-text p,
.cb-paragraph {
    margin-bottom: 1em;
}

/* Headings im Textbereich */
.cb-text h1,
.cb-text h2,
.cb-text h3,
.cb-text h4,
.cb-text h5,
.cb-text h6 {
    color: inherit;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    font-weight: 600;
}

/* Optionale Größenanpassung */
.cb-text h1 { font-size: 1.8rem; }
.cb-text h2 { font-size: 1.5rem; }
.cb-text h3 { font-size: 1.3rem; }
.cb-text h4 { font-size: 1.15rem; }


/* ===================================== */
/* Links */
/* ===================================== */

.cb-text a {
    color: inherit;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.cb-text a:hover {
    text-decoration: underline;
    opacity: 0.8;
}

 /* ===== Karten (vereinheitlicht mit Hauptüberschriften) ===== */
.cb-card {
  border: 2px solid #d7b9a7;        /* weicher Ton, wie dein restliches Design */
  border-radius: 18px;
  padding: 36px 32px 40px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}

.cb-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.cb-card-title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(24px, 2.4vw, 32px);
  color: var(--rose);              /* gleiche Farbe wie Navi: #D27E95 */
  margin: 0 0 22px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}
.cb-card:hover .cb-card-title {
  color: #b35f78; /* etwas dunkleres Rosé für Reaktion */
}

.cb-card img {
  display: block;
  margin-top: 10px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

/* Einheitlicher Abstand zwischen Karten */
.uk-grid > div {
  padding-top: 14px;
  padding-bottom: 14px;
}
/* ZWISCHENSEITE */
.uk-alert-success {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    background-color: #D27E95; /* Farbe der Erfolgsmeldung */
    color: white;
    padding: 10px;
    text-align: center;
    z-index: 9999;
}
/* ================= BON CADEAU ================= */
/* PRINT BUTTON */
.print-bar{
    position: sticky;
    top: 20px;
    text-align:center;
    margin-bottom: 20px;
}
.print-btn{
    background:#D27E95;
    color:#fff;
    padding:7px 26px;
    border-radius:16px;
    font-weight:600;
    text-decoration:none;
}

/* WRAPPER */
.carte-wrapper{
    max-width: 820px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

/* CARD */
.carte-card{
    background:#f6dfe1;
    padding: 40px 46px 30px;
    font-family: "Playfair Display", Georgia, serif;
    color:#111;
}

/* HEADER */
.carte-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
}
.carte-title{
    font-size: 5rem;
    font-weight:700;
    line-height:0.95;
}
.carte-logo{
    max-width:100px;
}

/* =========================
   CONTENT (ZENTRIERT)
========================= */

.carte-content{
    margin: 30px;
    max-width: 720px;          /* mehr Luft, wirkt zentrierter */
    text-align: center;        /* wichtig: gesamter Block zentriert */
}

/* De / Pour – eine Linie */
.carte-names{
    display: inline-flex;      /* damit es wirklich "im Zentrum" bleibt */
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 20px;
    font-size: 1.5rem;
}

.carte-names .sep{
    opacity: 0.4;
}

/* Betrag – zentraler Fokus */
.carte-amount{
    margin: 10px 0 10px;
    font-size: 5rem;
    font-weight: 700;
    text-align: center;
    color: #b08d57;
    letter-spacing: 0.04em;
    text-shadow: 0 1px 0 rgba(255,255,255,0.4);
}

/* Message unten */
.carte-message{
    margin: 34px auto 0;
    max-width: 520px;
    text-align: center;
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.45;
}

/* PRINT: identisch sauber */
@media print{
    .carte-content{
        margin-top: 28px;
        max-width: none;
    }
    .carte-amount{
        font-size: 6rem;
    }
}


/* VALID */
.carte-valid{
    margin-top: 26px;
}

/* LINE */
.carte-line{
    margin: 14px 0 12px;
    border-top: 1px solid #111;
    width: 100%;
}

/* FOOTER */
.carte-footer{
    margin-top: 16px;
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    font-size:0.95rem;
}
.carte-code{
    font-weight:700;
}

@media print {

    .no-print { display: none !important; }
    body { background: #fff !important; }

    .carte-wrapper { margin: 0; padding: 0; }

    .carte-card {
        width: 21cm;
        height: 29.7cm;
        padding: 36px;
    }

    /* ✅ LOGO IM DRUCK KLEINER (EXAKT) */
    img[src*="logo"] {
        max-width: 90px !important;
        height: auto !important;
    }

    /* Trennlinie */
    .carte-line {
        border-top: 1.5px solid #000;
    }
}

/* =========================
   MOBILE DIGITAL VERSION
========================= */

@media (max-width: 768px) {

    body{
        background:#f3f3f3;
    }

    .carte-wrapper{
        padding: 20px;
        margin-bottom: 40px;
    }

    .carte-card{
        background:#f6dfe1;
        padding: 36px 24px;
        border-radius: 22px;
        box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    }

    /* HEADER */
    .carte-header{
        flex-direction: column;
        align-items: center;
        gap: 16px;
        text-align:center;
    }

    .carte-title{
        font-size: clamp(2.4rem, 9vw, 3.2rem);
        line-height: 1.05;
    }

    .carte-logo{
        max-width: 80px;
    }

    /* CONTENT */
    .carte-content{
        margin: 30px 0;
        text-align:center;
    }

    .carte-names{
        font-size: 1rem;
        margin-top: 10px;
        opacity: 0.8;
    }

    .carte-amount{
        font-size: clamp(3rem, 14vw, 4rem);
        margin: 30px 0;
        color:#b08d57;
        letter-spacing: 0.05em;
    }

    .carte-message{
        font-size: 1rem;
        margin-top: 10px;
        line-height: 1.6;
        padding: 0 10px;
    }

    /* VALID */
    .carte-valid{
        font-size: 0.9rem;
        opacity: 0.7;
        margin-top: 20px;
    }

    .carte-line{
        margin: 20px auto;
        width: 60%;
        border-top: 1px solid rgba(0,0,0,0.2);
    }

    /* FOOTER */
    .carte-footer{
        flex-direction: column;
        align-items: center;
        text-align:center;
        gap: 6px;
        font-size: 0.85rem;
        margin-top: 20px;
        opacity: 0.8;
    }

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

footer.cb-footer {
  background: #D27E95;
  color: #fff;
  padding: 40px 0; /* mehr Luft = hochwertiger */
}

/* Links */
.cb-footer a {
  color: #fff;
  text-decoration: none; /* keine Standard-Unterstreichung */
  border-bottom: 1px solid rgba(255,255,255,0.4); /* elegante Linie */
  transition: all 0.3s ease;
}

.cb-footer a:hover {
  color: #AF0C3E;
  border-bottom: 1px solid #AF0C3E;
}

/* Titel */
.cb-footer-title {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: #800027;
  letter-spacing: 0.5px;
}

/* Liste */
.cb-footer ul.uk-list {
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1.8;
}

.cb-footer .cb-newsletter-btn {
  background: #fff;
  color: #D27E95;
  font-weight: 600;
  border-radius: 22px;
  border: 1px solid #fff;
  padding: 6px 18px;   /* kleiner */
  font-size: 0.85rem;  /* dezenter */
  letter-spacing: 0.5px;
  height: 42px;        /* gleiche Höhe wie Input */
  line-height: 1;
  transition: all 0.25s ease;
  box-shadow: none;
}

.cb-footer .cb-newsletter-btn:hover {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.cb-postfooter {
  background-color: #D27E95;
  padding: 16px 0;
  color: white;
  font-size: 1rem;
}

.cb-postfooter-divider {
  border: none;
  border-top: 1px solid white;
  margin: 16px 0;
}

.cb-postfooter-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px; /* Etwas mehr Abstand zwischen den Elementen */
  padding: 0 20px;
}

.cb-social-icons {
  display: flex;
  gap: 16px;
}

.cb-social-icons .uk-icon-button {
  background: #fff;
  color: #AF0C3E;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.cb-social-icons .uk-icon-button:hover {
  background: #f0f0f0;
  color: #800027;
}

.cb-copyright {
  text-align: center;
  white-space: nowrap;
  font-size: 0.9rem; /* Eine kleine Reduzierung der Schriftgröße für den Copyright-Text */
  margin-top: 12px;
}

/* Mobilfreundlichkeit */
@media (max-width: 640px) {
  .cb-postfooter-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px; /* Mehr Abstand zwischen den Elementen */
  }

  .cb-copyright {
    text-align: center;
    white-space: normal;
    font-size: 1rem; /* Etwas größere Schrift auf mobilen Geräten */
  }
}