     /* ---------- Grundlayout ---------- */
     .bf-startseite {
       font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
       color: #162022;
       line-height: 1.6;
     }

     .bf-startseite * {
       box-sizing: border-box;
     }

     .bf-startseite a {
       text-decoration: none;
       color: inherit;
     }

     .bf-startseite img {
       max-width: 100%;
       height: auto;
       display: block;
     }

     .bf-section {
       padding: 80px 5vw;
     }

     .bf-section--light {
       background: #f8fbf9;
     }

     .bf-section--white {
       background: #ffffff;
     }

     .bf-section--soft-green {
       background: #ecf7ef;
     }

     .bf-inner {
     max-width: min(90vw, 1600px);
     margin: 0 auto;
     padding: 0 32px;
     }    

     .bf-hero-inner {
     max-width: min(90vw, 1600px);
     margin: 0 auto;
     padding: 140px 32px 120px;
     }

     .bf-kicker {
       letter-spacing: 0.14em;
       text-transform: uppercase;
       font-size: 12px;
       font-weight: 600;
       color: #159f50;
       margin-bottom: 12px;
     }

     .bf-heading-xl {
       font-size: clamp(32px, 4vw, 40px);
       line-height: 1.15;
       font-weight: 700;
       margin-bottom: 20px;
       color: #13251b;
     }

     .bf-heading-l {
       font-size: 26px;
       line-height: 1.25;
       font-weight: 700;
       margin-bottom: 16px;
       color: #13251b;
     }

     .bf-text-m {
       font-size: 16px;
       color: #374745;
     }

     .bf-text-s {
       font-size: 14px;
       color: #6a7a76;
     }

     /* ---------- Buttons ---------- */
     .bf-btn-row {
       display: flex;
       flex-wrap: wrap;
       gap: 14px;
       margin-top: 28px;
     }

     .bf-btn {
       display: inline-flex;
       align-items: center;
       justify-content: center;
       gap: 8px;
       padding: 12px 24px;
       border-radius: 999px;
       font-size: 15px;
       font-weight: 600;
       border: none;
       cursor: pointer;
       transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
       white-space: nowrap;
     }

     .bf-btn-icon-dot {
       width: 9px;
       height: 9px;
       border-radius: 999px;
       background: #ffffff;
       box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
     }

     .bf-btn-primary {
       background: linear-gradient(135deg, #10b15b, #0b8f4a);
       color: #ffffff;
       box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
     }

     .bf-btn-primary:hover {
       transform: translateY(-1px);
       box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
       background: linear-gradient(135deg, #11c062, #0b8f4a);
     }

     .bf-btn-outline {
       background: transparent;
       color: #ffffff;
       border: 1.6px solid rgba(255, 255, 255, 0.6);
       box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
     }

     .bf-btn-outline:hover {
       background: rgba(255, 255, 255, 0.08);
       border-color: #ffffff;
       transform: translateY(-1px);
     }

     .bf-btn-outline--light {
       background: transparent;
       color: #0b8f4a;
       border-color: rgba(16, 177, 91, 0.35);
       box-shadow: none;
     }

     .bf-btn-outline--light:hover {
       background: rgba(16, 177, 91, 0.06);
       border-color: #10b15b;
       box-shadow: 0 8px 20px rgba(16, 177, 91, 0.25);
       transform: translateY(-1px);
     }

/* =========================================
   Spezielle Button-Variante: Preisliste
   ========================================= */
.bf-btn-preisliste {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  padding-inline: 26px;

  /* выглядит как уже "aktiv" */
  background: linear-gradient(135deg, #10b15b, #0b8f4a);
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(16, 185, 129, 0.45);
}

/* небольшой Glanz-эффект при ховере */
.bf-btn-preisliste::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.32), transparent 55%);
  opacity: 0;
  transform: translateX(-40%);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* состояние hover / focus: чуть приподнимается и пробегает "блик" */
.bf-btn-preisliste:hover,
.bf-btn-preisliste:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.6);
  background: linear-gradient(135deg, #11c062, #0b8f4a);
}

.bf-btn-preisliste:hover::before,
.bf-btn-preisliste:focus-visible::before {
  opacity: 1;
  transform: translateX(10%);
}

/* чуть приглушаем при активном клике */
.bf-btn-preisliste:active {
  transform: translateY(0);
  box-shadow: 0 10px 24px rgba(16, 185, 129, 0.5);
}


     /* ---------- HEADER / NAV ---------- */
     .bf-header {
       position: sticky;
       top: 0;
       z-index: 50;
       background: rgba(255, 255, 255, 0.96);
       backdrop-filter: blur(10px);
       border-bottom: 1px solid rgba(15, 23, 42, 0.04);
     }

     .bf-header-inner {
       max-width: 1180px;
       margin: 0 auto;
       padding: 14px 5vw;
       display: flex;
       align-items: center;
       justify-content: space-between;
       gap: 24px;
     }

     .bf-logo-wrap {
       display: flex;
       align-items: center;
       gap: 10px;
     }

     .bf-logo-img {
       width: 52px;
       height: 52px;
       border-radius: 999px;
       overflow: hidden;
       box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
       background: #ffffff;
     }

     .bf-logo-text-main {
       font-weight: 700;
       font-size: 16px;
       color: #13251b;
     }

     .bf-logo-text-sub {
 	  font-size: 11px;
 	  line-height: 1.2;
  	  color: #6a7a76;
  	  max-width: 260px;   /* чуть уже, чтобы перенос был аккуратным */
 	}


 /* ---------- NAV – минималистичный контейнер ---------- */
 .bf-nav {
   display: flex;
   align-items: center;
   margin-top: 3px;
   gap: 28px;
   font-size: 13px;
   padding: 0;
   background: transparent;
   border: none;
   box-shadow: none;
 }

 .bf-nav > li {
   list-style: none;
   position: relative;
 }

 /* ---------- NAV LINKS ---------- */
 .bf-nav-link {
   position: relative;
   display: inline-flex;
   align-items: center;
   gap: 6px;

   padding: 8px 0;
   font-size: 13px;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 0.22em;

   color: #4b5563;
   opacity: 0.9;

   transition:
     color 0.2s ease,
     opacity 0.2s ease,
     transform 0.2s ease;
 }

 /* underline из центра */
 .bf-nav-link::after {
   content: "";
   position: absolute;
   left: 50%;
   bottom: -6px;
   width: 0;
   height: 2px;
   border-radius: 999px;
   background: #10b15b;
   transform: translateX(-50%);
   transition: width 0.25s ease;
 }

 .bf-nav-link:hover {
   color: #0b8f4a;
   opacity: 1;
   transform: translateY(-1px);
 }

 .bf-nav-link:hover::after {
   width: 60%;
 }

 .bf-nav-link.is-active {
   color: #0b8f4a;
   opacity: 1;
 }

 .bf-nav-link.is-active::after {
   width: 60%;
 }

 /* ---------- Dropdown ---------- */
 .bf-nav-dropdown-toggle {
   display: inline-flex;
   align-items: center;
   gap: 6px;
 }

 .bf-nav-dropdown-toggle svg {
   width: 12px;
   height: 12px;
   transition: transform 0.18s ease;
 }

 /* Всплывающее меню */
 .bf-submenu {
   position: absolute;
   top: calc(100% - 1px);                       /* на 5px ниже пункта меню */
   left: 50%;                                   /* центр под "Leistungen" */
   transform: translateX(-50%) translateY(8px); /* центр + лёгкий сдвиг вниз */

   min-width: 210px;
   margin: 0;
   padding: 10px 0;
   list-style: none;

   background: #ffffff;
   border-radius: 14px;
   border-top: 3px solid #10b15b;              /* зелёная линия на всю ширину */
   box-shadow: none;                           /* без зелёного ореола */

   opacity: 0;
   pointer-events: none;
   transition: opacity 0.18s ease, transform 0.18s ease;
 }

 /* элементы без точек */
 .bf-submenu li {
   list-style: none;
   margin: 0;
   padding: 0;
 }

 /* ссылки внутри дропдауна */
 .bf-submenu a,
 .bf-submenu a:hover,
 .bf-submenu a:focus {
   display: block;
   padding: 8px 16px;
   font-size: 14px;
   color: #374745;
   white-space: nowrap;
   text-decoration: none;                      /* нигде нет подчёркивания */
 }

 /* подсветка строки по всей ширине */
 .bf-submenu a:hover {
   background: rgba(16, 177, 91, 0.06);
   color: #0b8f4a;
 }

 /* показываем дропдаун */
 .bf-nav > li:hover .bf-submenu {
   opacity: 1;
   pointer-events: auto;
   transform: translateX(-50%) translateY(0);
 }

 /* поворот стрелки */
 .bf-nav > li:hover .bf-nav-dropdown-toggle svg {
   transform: rotate(180deg);
 }

 .bf-nav-cta {
   margin-left: 10px;
 }

     /* ---------- HERO ---------- */
 /* =========================
    HERO – Startseite
    ========================= */

 .bf-hero {
   position: relative;
   min-height: 70vh;
   display: flex;
   align-items: center;
   justify-content: flex-start;
   overflow: hidden;
   color: #ffffff;
 }

 /* затемнённая фотография без зелёной заливки */
 .bf-hero::before {
   content: "";
   position: absolute;
   inset: 0;
   background:
     linear-gradient(to bottom, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.60)),
     url("https://bestfriends-hunde-salon.de/wp-content/uploads/TEST.jpeg")
       center/cover no-repeat;
   z-index: -2;
 }

 .bf-hero-overlay {
   position: absolute;
   inset: 0;
   z-index: -1;
 }

 /* внутренний контейнер */
 .bf-hero-inner {
   position: relative;
   max-width: 1120px;
   width: 100%;
   margin: 0 auto;
   padding: 140px 24px 120px; /* сверху/снизу как на «широком» скрине */
   box-sizing: border-box;
 }

 /* текстовая колонка слева */
 .bf-hero-content {
   max-width: 620px;
 }

 /* заголовок */
 .bf-hero-title {
   font-size: 3rem;          /* примерно как на скрине 3 */
   line-height: 1.15;
   font-weight: 700;
   margin: 0 0 24px;
 }

 /* основной текст */
 .bf-hero-text {
   font-size: 1.05rem;
   line-height: 1.7;
   margin: 0 0 10px;
 }

 /* второй абзац поменьше */
 .bf-hero-text-small {
   font-size: 0.98rem;
   opacity: 0.9;
 }

 /* адаптив под телефоны */
 @media (max-width: 768px) {
   .bf-hero {
     min-height: 60vh;
   }

   .bf-hero-inner {
     padding: 110px 18px 80px;
   }

   .bf-hero-title {
     font-size: 2.2rem;
   }
 }


     /* ---------- Über mich ---------- */
     .bf-about-grid {
       display: grid;
       grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.9fr);
       gap: 40px;
       align-items: center;
     }

     .bf-about-badges {
       display: flex;
       flex-wrap: wrap;
       gap: 10px;
       margin-top: 22px;
     }

     .bf-pill {
       display: inline-flex;
       align-items: center;
       gap: 6px;
       padding: 6px 12px;
       border-radius: 999px;
       font-size: 13px;
       background: #e2f6eb;
       color: #166534;
     }

     .bf-pill-dot {
       width: 7px;
       height: 7px;
       border-radius: 999px;
       background: #16a34a;
     }

     .bf-about-photo-wrap {
       position: relative;
       border-radius: 26px;
       overflow: hidden;
       box-shadow: 0 24px 50px rgba(15, 23, 42, 0.32);
     }

     .bf-about-photo-wrap img {
       width: 100%;
       height: 100%;
       object-fit: cover;
       transform: scale(1.02);
     }

     /* ---------- Leistungen Cards ---------- */
     .bf-cards {
       display: grid;
       grid-template-columns: repeat(3, minmax(0, 1fr));
       gap: 22px;
     }

     .bf-card {
       background: #ffffff;
       border-radius: 22px;
       padding: 18px 18px 20px;
       box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
       border: 1px solid rgba(148, 163, 184, 0.2);
       display: flex;
       flex-direction: column;
       gap: 12px;
       min-height: 100%;
       transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease, background 0.16s ease;
     }

     .bf-card:hover {
       transform: translateY(-4px);
       box-shadow: 0 26px 55px rgba(15, 23, 42, 0.14);
       border-color: rgba(16, 177, 91, 0.45);
       background: linear-gradient(180deg, #ffffff, #f3faf6);
     }

     .bf-card-kicker {
       font-size: 12px;
       letter-spacing: 0.18em;
       text-transform: uppercase;
       font-weight: 600;
       color: #16a34a;
       margin-bottom: 2px;
     }

     .bf-card-title {
       font-size: 18px;
       font-weight: 600;
       color: #162022;
       margin-bottom: 8px;
     }

     .bf-card-img {
       border-radius: 16px;
       overflow: hidden;
       margin-bottom: 6px;
     }

     .bf-card-footer {
       margin-top: 10px;
     }

     .bf-card-footer .bf-btn-outline--light {
       width: 100%;
       justify-content: center;
     }

     /* ---------- Standort & Kontakt ---------- */
     .bf-contact-grid {
       display: grid;
       grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
       gap: 32px;
       align-items: stretch;
     }

     .bf-contact-card {
       background: #ffffff;
       border-radius: 20px;
       padding: 22px 22px 20px;
       box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
       border: 1px solid rgba(148, 163, 184, 0.2);
     }

     .bf-contact-card h3 {
       font-size: 18px;
       margin-bottom: 14px;
       color: #13251b;
     }

     .bf-contact-row {
       margin-bottom: 8px;
       font-size: 14px;
     }

     .bf-contact-label {
       font-weight: 600;
       color: #4b5563;
     }

     .bf-contact-link {
       color: #059669;
       text-decoration: underline;
       text-decoration-thickness: 1px;
       text-underline-offset: 2px;
     }

     .bf-map-wrap iframe {
       width: 100%;
       height: 360px;
       border: 0;
       border-radius: 20px;
       box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
     }

     /* ---------- CTA Bottom ---------- */
     .bf-cta-bar {
       margin-top: 40px;
       border-radius: 24px;
       padding: 22px 26px;
       background: linear-gradient(135deg, #10b15b, #0b8f4a);
       color: #ffffff;
       display: flex;
       flex-wrap: wrap;
       align-items: center;
       justify-content: space-between;
       gap: 18px;
       box-shadow: 0 26px 60px rgba(15, 23, 42, 0.4);
     }

     .bf-cta-bar-title {
       font-size: 18px;
       font-weight: 600;
       margin-bottom: 4px;
     }

     .bf-cta-bar-text {
       font-size: 14px;
       color: rgba(255, 255, 255, 0.85);
     }

     .bf-cta-buttons {
       display: flex;
       flex-wrap: wrap;
       gap: 12px;
     }

     .bf-cta-buttons .bf-btn-primary {
       box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5);
     }

     .bf-cta-buttons .bf-btn-outline {
       border-color: rgba(255, 255, 255, 0.75);
     }

     /* ---------- Floating WhatsApp ---------- */
     .bf-whatsapp-float {
       position: fixed;
       right: 18px;
       bottom: 18px;
       z-index: 60;
     }

     .bf-whatsapp-btn {
       width: 54px;
       height: 54px;
       border-radius: 999px;
       background: #25d366;
       display: flex;
       align-items: center;
       justify-content: center;
       box-shadow: 0 18px 35px rgba(34, 197, 94, 0.65);
       cursor: pointer;
       transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
     }

     .bf-whatsapp-btn img {
       width: 26px;
       height: 26px;
     }

     .bf-whatsapp-btn:hover {
       transform: translateY(-3px) scale(1.04);
       box-shadow: 0 22px 45px rgba(34, 197, 94, 0.8);
       background: #22c35e;
     }

     /* Puls-Animation */
     .bf-whatsapp-btn::after {
       content: "";
       position: absolute;
       inset: 0;
       border-radius: 999px;
       border: 2px solid rgba(37, 211, 102, 0.6);
       animation: bf-pulse 1.8s infinite;
     }

     @keyframes bf-pulse {
       0% {
         transform: scale(1);
         opacity: 0.7;
       }
       70% {
         transform: scale(1.35);
         opacity: 0;
       }
       100% {
         transform: scale(1.35);
         opacity: 0;
       }
     }
 /* ---------- Modal (Termin) ---------- */
 .bf-modal-backdrop {
   position: fixed;
   inset: 0;
   background: rgba(15, 23, 42, 0.6);
   display: none;                /* по умолчанию скрыто */
   align-items: center;
   justify-content: center;
   z-index: 120;
   padding: 16px;
 }

 .bf-modal-backdrop.is-visible {
   display: flex;                /* показывает модалку */
 }

 .bf-modal-card {
   background: #ffffff;
   border-radius: 22px;
   max-width: 760px;
   width: 100%;
   box-shadow: 0 24px 70px rgba(15, 23, 42, 0.55);
   padding: 22px 26px 24px;
   position: relative;
 }

 .bf-modal-header {
   display: flex;
   justify-content: space-between;
   align-items: flex-start;
   gap: 16px;
   margin-bottom: 10px;
 }

 .bf-modal-title {
   font-size: 22px;
   font-weight: 700;
   margin-bottom: 4px;
   color: #13251b;
 }

 .bf-modal-subtitle {
   font-size: 14px;
   color: #6b7280;
 }

 .bf-modal-close {
   background: #f3f4f6;
   border-radius: 999px;
   border: none;
   padding: 6px 12px;
   font-size: 13px;
   cursor: pointer;
   color: #374151;
   display: inline-flex;
   align-items: center;
   gap: 4px;
   transition: background 0.15s ease, transform 0.15s ease;
 }

 .bf-modal-close:hover {
   background: #e5e7eb;
   transform: translateY(-1px);
 }

 	/* ---------- Termin-Formular (ohne Plugin) ---------- */

 	.bf-termin-form {
 	  display: grid;
 	  grid-template-columns: repeat(2, minmax(0, 1fr));
 	  gap: 14px 18px;
 	  margin-top: 14px;
 	}

 	.bf-termin-form label {
 	  display: block;
 	  font-size: 13px;
 	  font-weight: 500;
 	  color: #4b5563;
 	  margin-bottom: 4px;
 	}

 	.bf-termin-form input[type="text"],
 	.bf-termin-form input[type="email"],
 	.bf-termin-form input[type="tel"],
 	.bf-termin-form input[type="date"],
 	.bf-termin-form select,
 	.bf-termin-form textarea {
 	  width: 100%;
 	  border-radius: 11px;
 	  border: 1px solid #d1d5db;
 	  padding: 9px 11px;
 	  font-size: 14px;
 	  outline: none;
 	  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
 	  background: #f9fafb;
 	}

 	.bf-termin-form input:focus,
 	.bf-termin-form select:focus,
 	.bf-termin-form textarea:focus {
 	  border-color: #10b15b;
 	  box-shadow: 0 0 0 1px rgba(16, 177, 91, 0.35);
 	  background: #ffffff;
 	}

 	.bf-termin-form .bf-termin-full {
 	  grid-column: 1 / -1;
 	}

 	.bf-termin-submit {
 	  grid-column: 2 / -1;
 	  justify-self: flex-end;
 	}

 	.bf-termin-form button[type="submit"] {
 	  margin-top: 6px;
 	  border-radius: 999px;
 	  padding: 11px 22px;
 	  border: none;
 	  background: linear-gradient(135deg, #10b15b, #0b8f4a);
 	  color: #ffffff;
 	  font-size: 15px;
 	  font-weight: 600;
 	  cursor: pointer;
 	  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.4);
 	  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
 	}

 	.bf-termin-form button[type="submit"]:hover {
 	  transform: translateY(-1px);
 	  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.5);
 	  background: linear-gradient(135deg, #11c062, #0b8f4a);
 	}

 	.bf-termin-response {
 	  font-size: 12px;
 	  margin-top: 4px;
 	  color: #16a34a;
 	}
    
     /* ---------- Footer ---------- */
     .bf-footer {
       padding: 18px 5vw 22px;
       background: #0f172a;
       color: #9ca3af;
       font-size: 13px;
     }

     .bf-footer-inner {
       max-width: 1180px;
       margin: 0 auto;
       display: flex;
       flex-wrap: wrap;
       align-items: center;
       justify-content: space-between;
       gap: 12px;
     }

     .bf-footer-links {
       display: flex;
       flex-wrap: wrap;
       gap: 14px;
     }

     .bf-footer-links a {
       color: #e5e7eb;
       font-size: 13px;
     }

     .bf-footer-links a:hover {
       color: #a7f3d0;
     }

     /* ---------- Responsive ---------- */
     @media (max-width: 960px) {
       .bf-header-inner {
         padding-inline: 4vw;
       }

       .bf-nav {
         display: none; /* для простоты: на мобиле будет стандартное меню темы */
       }

       .bf-hero-inner,
       .bf-about-grid,
       .bf-contact-grid {
         grid-template-columns: minmax(0, 1fr);
       }

       .bf-hero-inner {
         padding-top: 70px;
         padding-bottom: 70px;
       }

       .bf-hero-card {
         margin-top: 10px;
       }

       .bf-cards {
         grid-template-columns: minmax(0, 1fr);
       }

       .bf-section {
         padding-inline: 6vw;
         padding-block: 60px;
       }

       .bf-cta-bar {
         padding: 18px 18px 20px;
       }

       .bf-modal-card .wpcf7 form {
         grid-template-columns: minmax(0, 1fr);
       }

       .bf-modal-card .wpcf7-submit {
         grid-column: 1 / -1;
         justify-self: stretch;
       }
     }

     @media (max-width: 640px) {
       .bf-section {
         padding-inline: 5vw;
       }

       .bf-cta-bar {
         border-radius: 18px;
       }

       .bf-footer-inner {
         flex-direction: column;
         align-items: flex-start;
       }
     }
     /* Scroll-to-Top Pfeil komplett ausblenden (Astra + Spectra) */
     .ast-scroll-top-icon,
     .ast-scroll-to-top-right,
     .ast-scroll-to-top-left,
     .ast-scroll-to-top,
     .ast-scroll-top,
     .uagb-scroll-to-top,
     .uagb-scroll-to-top-wrap {
       display: none !important;
       opacity: 0 !important;
       visibility: hidden !important;
       pointer-events: none !important;
     }
 /* ----- Logo area tuning ----- */

 .bf-logo-wrap {
   display: flex;
   align-items: center;
 }

 .bf-logo {
   display: flex;
   align-items: center;
   gap: 14px;
   text-decoration: none;
 }

 .bf-logo-img img {
   width: 64px;
   height: 64px;
   border-radius: 999px;
   object-fit: cover;
   display: block;
 }

 .bf-logo-text {
   display: flex;
   flex-direction: column;
   line-height: 1.2;
   max-width: 320px;    /* больше места под текст */
 }

 .bf-logo-text-main {
   font-size: 18px;
   font-weight: 700;
   color: #13251b;
   white-space: nowrap; /* всегда в одну строку */
 }

 .bf-logo-text-sub {
   font-size: 12px;
   color: #6a7a76;
   white-space: nowrap; /* вся фраза во вторую строку */
 }

 /* на совсем маленьких экранах позволим переноситься */
 @media (max-width: 640px) {
   .bf-logo-text-sub {
     white-space: normal;
   }

   .bf-logo-img img {
     width: 52px;
     height: 52px;
   }
 }
 /* Unterseite: Leistungen */

.bf-hero--small {
  min-height: 45vh;
}

.bf-hero-title--small {
  font-size: clamp(2.2rem, 3vw, 2.6rem);
}

/* kleine Navi-Pills oben */
.bf-leistungen-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bf-pill-nav {
  cursor: pointer;
}

/* Grid für Text + Bildbox */
.bf-leistungen-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: flex-start;
}

.bf-leistungen-image-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bf-leistungen-box {
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 18px 18px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.bf-list {
  margin: 16px 0;
  padding-left: 18px;
  font-size: 15px;
  color: #374745;
}

.bf-list li {
  margin-bottom: 6px;
}

.bf-list-ol {
  list-style: decimal;
  padding-left: 22px;
}

.bf-text-hinweis {
  margin-top: 10px;
}

/* responsive */
@media (max-width: 960px) {
  .bf-leistungen-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Buttons auf der Danke-Seite */
.bf-danke-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* WhatsApp-Button auf der Danke-Seite –
   einfach wie Primary-Button, nur с иконкой */
.bf-danke-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px; /* как у normalen bf-btn */
}

/* контейнер для иконки */
.bf-danke-whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.bf-danke-whatsapp-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

/* ===== Katzenpflege – двухколоночные блоки с фото ===== */

.bf-katzen-row {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

/* вариант с фото слева, текст справа */
.bf-katzen-row--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
}

.bf-katzen-img-wrap {
  border-radius: 26px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.16);
}

.bf-katzen-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* текст без лишних отступов слева */
.bf-katzen-row .bf-text-m,
.bf-katzen-row ul {
  margin-left: 0;
}

.bf-katzen-row ul {
  padding-left: 20px;
}

/* ===== 3 карточки внизу (Krallen / Augen / Worauf ich achte) ===== */

/* внешний контейнер без зелёного баннера */
.bf-katzen-card-bar {
  background: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

/* сетка карточек */
.bf-katzen-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

/* ===== 3 карточки внизу (Krallen / Augen / Worauf ich achte) ===== */

/* внешний контейнер — без баннера */
.bf-katzen-card-bar {
  background: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

/* сетка, как на Startseite */
.bf-katzen-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

/* сама карточка — копия .bf-card по стилю */
.bf-katzen-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 18px 18px 20px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.2);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 100%;
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    border-color 0.16s ease,
    background 0.16s ease;
}

/* hover – такой же градиент и «подпрыгивание», как на стартовой */
.bf-katzen-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 55px rgba(15, 23, 42, 0.14);
  border-color: rgba(16, 177, 91, 0.45);
  background: linear-gradient(180deg, #ffffff, #f3faf6);
}

/* список внутри карточки */
.bf-katzen-card ul {
  margin-left: 0;
  padding-left: 18px;
}

/* ===== Katzenpflege: карточки полностью НЕ кликабельные ===== */

/* сама карточка — обычный курсор */
.bf-katzen-card {
  cursor: default;
}

/* весь контент внутри берет тот же курсор,
   даже если где-то случайно есть <a> */
.bf-katzen-card * {
  cursor: inherit;
}

/* на всякий случай: отключаем клики по ссылкам внутри этих карточек */
.bf-katzen-card a {
  pointer-events: none;
  text-decoration: none;
  color: inherit;
}


/* мобильная адаптация */
@media (max-width: 960px) {
  .bf-katzen-row,
  .bf-katzen-row--reverse {
    grid-template-columns: minmax(0, 1fr);
  }

  .bf-katzen-row--reverse {
    /* на мобиле убираем «чередование», идёт просто столбиком */
  }

  .bf-katzen-img-wrap {
    margin-top: 18px;
  }

  .bf-katzen-card-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* =========================================
   Unterseite: SPA & Wellness
   (eigene Klassen, damit nichts мешается)
========================================= */

.bf-page-spa .bf-section--soft-green {
  /* просто используем существende Hintergrundfarbe – ничего особенного */
}

/* Zweispaltige Blöcke mit Bild + Text */
.bf-spa-row {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

/* Variante mit Bild links, Text rechts */
.bf-spa-row--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
}

/* Bild-Container */
.bf-spa-img-wrap {
  border-radius: 26px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.16);
}

.bf-spa-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Listen schön einrücken */
.bf-spa-row ul {
  margin-left: 0;
  padding-left: 20px;
}

/* Responsive für SPA-Blocks */
@media (max-width: 960px) {
  .bf-spa-row,
  .bf-spa-row--reverse {
    grid-template-columns: minmax(0, 1fr);
  }

  .bf-spa-img-wrap {
    margin-top: 18px;
  }
}
/* =========================================
   SPA-Seite: Ozonbad / Thalasso / Milchbad
========================================= */

/* двухколоночный блок с чередованием, аналогично Katzenpflege */
.bf-spa-row {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 32px;
  align-items: flex-start;
}

/* вариант с Bild rechts */
.bf-spa-row--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
}

.bf-spa-img-wrap {
  border-radius: 26px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.16);
}

.bf-spa-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* отдельные текстовые блоки внутри Ozon-Sektion */
.bf-spa-subsection {
  margin-top: 22px;
}

.bf-spa-subsection:first-of-type {
  margin-top: 18px;
}

/* подзаголовки внутри секции чуть поменьше и компактнее */
.bf-spa-subheading {
  font-size: 20px;
  margin-bottom: 8px;
}

/* списки внутри SPA-блока */
.bf-spa-list {
  margin-top: 6px;
  margin-bottom: 10px;
}

/* адаптив */
@media (max-width: 960px) {
  .bf-spa-row,
  .bf-spa-row--reverse {
    grid-template-columns: minmax(0, 1fr);
  }

  .bf-spa-img-wrap {
    margin-top: 18px;
  }
}
/* =========================================
   Unterseite: Hundepflege
========================================= */

.bf-page-hundepflege .bf-section {
  /* немного мягче отступы, как на Katzen-/SPA-Seite */
  padding-top: 70px;
  padding-bottom: 70px;
}

/* двухколоночные ряды (Text + Bild) */
.bf-hunde-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 32px;
  align-items: flex-start;
}

/* вариант с Bild links, Text rechts */
.bf-hunde-row--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
}

/* Bild-Karte */
.bf-hunde-img-wrap {
  border-radius: 26px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.16);
}

.bf-hunde-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* небольшие «подблоки» внутри секции */
.bf-hunde-block + .bf-hunde-block {
  margin-top: 26px;
}

.bf-hunde-block ul {
  margin-left: 0;
  padding-left: 20px;
}

/* Hero-Foto на Hundepflege (чуть меньше тени, чем стандартный about) */
.bf-page-hundepflege .bf-hunde-hero-photo {
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.22);
}

/* responsive */
@media (max-width: 960px) {
  .bf-page-hundepflege .bf-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .bf-hunde-row,
  .bf-hunde-row--reverse {
    grid-template-columns: minmax(0, 1fr);
  }

  .bf-hunde-img-wrap {
    margin-top: 18px;
  }
}
/* =========================================
   Startseite: Preis-Pakete
========================================= */

/* Handy: 1 Karte pro Reihe – как bei Leistungen */
.bf-price-cards {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1fr);
}

/* Tablet: 3 Karten nebeneinander */
@media (min-width: 900px) {
  .bf-price-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Desktop: 5 schmalere Karten */
@media (min-width: 1200px) {
  .bf-price-cards {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

/* у карточек цен футер всегда прижат к низу,
   чтобы Kg/Preis и Button "Details" были на одном уровне */
.bf-price-cards .bf-card-footer {
  margin-top: auto;
}

/* строчка с Gewicht + Preis */
.bf-card-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  margin-bottom: 8px;
  color: #6b7280;
}

.bf-card-price-row .bf-card-price {
  font-weight: 600;
  color: #111827;
}
/* =========================
   Mobiles Menü – EINZIGE Version
   ========================= */

/* Кнопка-бургер справа в хедере */
.bf-mobile-toggle {
  display: none;               /* включаем только в @media */
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.bf-mobile-toggle-bar {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #111827;
}

/* Тёмный оверлей по всей высоте */
.bf-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;                 /* включается классом .is-open */
  align-items: flex-start;
  justify-content: center;
  background: rgba(15, 23, 42, 0.65);
}

/* когда меню открыто */
.bf-mobile-menu.is-open {
  display: flex;
}

/* Белая «карточка» меню почти на всю ширину телефона */
.bf-mobile-menu-inner {
  position: relative;            /* ВАЖНО: больше НИКАКОГО absolute */
  width: 100%;
  max-width: 480px;
  margin: 72px 16px 24px;        /* отступ сверху под шапку */
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.40);
  padding: 8px 0 16px;
  max-height: calc(100vh - 96px);
  overflow-y: auto;
}

/* Кнопка закрытия "X" */
.bf-mobile-close {
  border: none;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  padding: 4px 18px;
  cursor: pointer;
  color: #111827;
}

/* Список ссылок */
.bf-mobile-nav ul {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
}

.bf-mobile-nav li + li {
  border-top: 1px solid rgba(148, 163, 184, 0.35);
}

.bf-mobile-nav a {
  display: block;
  padding: 12px 20px;
  font-size: 16px;
  color: #111827;
  text-decoration: none;
}

.bf-mobile-nav a:hover {
  background: rgba(16, 177, 91, 0.06);
  color: #0b8f4a;
}

/* Блок с кнопками внизу меню */
.bf-mobile-nav-cta {
  margin-top: 12px;
  padding: 0 20px 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Переключение на мобилу */
@media (max-width: 960px) {
  /* прячем десктопное меню */
  .bf-nav {
    display: none;
  }

  /* показываем бургер справа от логотипа */
  .bf-mobile-toggle {
    display: inline-flex;
  }
}
/* Mobile-Fix für CTA-Bar (Termin + WhatsApp) */
@media (max-width: 640px) {
  .bf-cta-bar {
    padding: 18px 16px 20px;
  }

  .bf-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .bf-cta-buttons .bf-btn {
    width: 100%;
    justify-content: center;
  }
}
/* =========================================
   Spezielle Button-Variante: Preisliste
   ========================================= */
.bf-btn-preisliste {
  position: relative;
  overflow: hidden;

  /* базовая кнопочная геометрия */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;

  /* выглядит как уже "aktiv" */
  background: linear-gradient(135deg, #10b15b, #0b8f4a);
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(16, 185, 129, 0.45);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

/* небольшой Glanz-эффект при ховере */
.bf-btn-preisliste::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.32), transparent 55%);
  opacity: 0;
  transform: translateX(-40%);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* hover / focus: лёгкий "подскок" и блик */
.bf-btn-preisliste:hover,
.bf-btn-preisliste:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.6);
  background: linear-gradient(135deg, #11c062, #0b8f4a);
}

.bf-btn-preisliste:hover::before,
.bf-btn-preisliste:focus-visible::before {
  opacity: 1;
  transform: translateX(10%);
}

/* при активном клике чуть тише */
.bf-btn-preisliste:active {
  transform: translateY(0);
  box-shadow: 0 10px 24px rgba(16, 185, 129, 0.5);
}
/* гарантируем белый текст во всех состояниях кнопки */
.bf-btn-preisliste,
.bf-btn-preisliste:hover,
.bf-btn-preisliste:focus-visible,
.bf-btn-preisliste:active {
  color: #ffffff !important;
}
/* =========================================
   Preise – Parallax-Hund im Hintergrund
========================================= */

/* сама секция: градиентный фон + переменная для параллакса */
#preise {
  position: relative;
  overflow: hidden;
  --preis-parallax: 0px;

  background: linear-gradient(
    180deg,
    #f9fafb 0%,
    #f1f5f9 60%,
    #ffffff 100%
  );
}

/* собака отдельным слоем */
#preise::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: url("https://bestfriends-hunde-salon.de/wp-content/uploads/foto/Preis_hintergrund.jpg");
  background-repeat: no-repeat;
  background-size: 2000px auto;          /* размер собаки */
  background-position: center 68%;       /* положение по вертикали */

  /* параллакс — двигаем весь слой */
  transform: translate3d(0, var(--preis-parallax), 0);
  will-change: transform;

  opacity: 0.95;
  z-index: 0;
  pointer-events: none;
}

/* мягкая белая "плашка" под текстом сверху,
   чтобы заголовок и абзац читались */
#preise::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 260px;                          /* высота зоны, где текст */
  background: linear-gradient(
    to bottom,
    rgba(249, 250, 251, 1),
    rgba(249, 250, 251, 0.96),
    rgba(249, 250, 251, 0.8),
    rgba(249, 250, 251, 0)
  );
  z-index: 1;                             /* выше собаки, ниже контента */
  pointer-events: none;
}

/* контент поверх всего */
#preise .bf-inner {
  position: relative;
  z-index: 2;
}
/* =========================================
   Preise – Parallax nur Desktop
   Mobile = kein Hund + weißer Hintergrund
========================================= */

/* --- MOBIL: ПОЛНОСТЬЮ ВЫКЛЮЧАЕМ --- */
@media (max-width: 768px) {

  /* фон снова белый */
  #preise {
    background: #ffffff !important;
    --preis-parallax: 0px !important;
  }

  /* убираем собачий слой */
  #preise::before {
    display: none !important;
  }
}

/* --- ДЕСКТОП: Оставляем как есть (твой текущий код) --- */
/* =========================================
   CTA-Bar – Fallback-Hinweis unter den Buttons
========================================= */

.bf-cta-fallback {
  margin: 10px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
}

.bf-cta-fallback-link {
  background: none;
  border: none;
  padding: 0;
  margin-left: 4px;
  font: inherit;
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.bf-cta-fallback-link:hover {
  opacity: 0.9;
}

/* маленькая ссылка в футере Google-модалки */
.bf-modal-footer-hinweis {
  margin-top: 12px;
}

.bf-cta-fallback-inline {
  background: none;
  border: none;
  padding: 0;
  margin-left: 4px;
  font: inherit;
  color: #059669;
  text-decoration: underline;
  cursor: pointer;
}

.bf-cta-fallback-inline:hover {
  color: #047857;
}

/* Google-Kalender in der Modal */
.bf-google-iframe {
  width: 100%;
  min-height: 560px;
  border: 0;
  border-radius: 16px;
}

/* на очень маленьких экранах можно чуть уменьшить высоту */
@media (max-width: 640px) {
  .bf-google-iframe {
    min-height: 480px;
  }
}
/* Wrapper für iframe und Desktop-Hinweis */
.bf-google-iframe-wrap {
  margin-top: 6px;
}

.bf-google-desktop-hinweis {
  display: none;
}

/* Iframe-Grundstil */
.bf-google-iframe {
  width: 100%;
  min-height: 560px;
  border: 0;
  border-radius: 16px;
}

/* sehr kleine Screens */
@media (max-width: 640px) {
  .bf-google-iframe {
    min-height: 480px;
  }
}

/* ---- Umschalten: Mobile vs Desktop ---- */

/* Mobile (bis 900px): iframe sichtbar, Hinweis versteckt */
@media (max-width: 900px) {
  .bf-google-iframe-wrap {
    display: block;
  }
  .bf-google-desktop-hinweis {
    display: none;
  }
}

/* Desktop (ab 900px): iframe aus, Hinweis + Button an */
@media (min-width: 901px) {
  .bf-google-iframe-wrap {
    display: none;
  }
  .bf-google-desktop-hinweis {
    display: block;
    margin-top: 10px;
  }
}

/* уже были у тебя – для текста под CTA и inline-линка */
.bf-cta-fallback-inline {
  background: none;
  border: none;
  padding: 0;
  margin-left: 4px;
  font: inherit;
  color: #059669;
  text-decoration: underline;
  cursor: pointer;
}

.bf-cta-fallback-inline:hover {
  color: #047857;
}
/* Форма "Termin anfragen" всегда поверх Google-окна */
#bf-modal {
  z-index: 200 !important;
}
/* Текст на зелёных кнопках всегда белый */
.bf-btn-primary,
.bf-btn-primary:hover,
.bf-btn-primary:focus,
.bf-btn-primary:active {
  color: #ffffff !important;
}

/* Hundepflege+SPA: CTA-Bar ближе к карточкам */
.bf-page-hundepflege .bf-section--cta,
.bf-page-spa .bf-section--cta {
  padding-top: 1px;
  padding-bottom: 60px;
}

/* SPA: меньше отступ под карточками */
.bf-page-spa .bf-section--spa-grid {
  padding-bottom: 30px;   /* или 20px, как понравится */
}

/* ---- Убираем белую полоску между секциями ---- */
/* Katzen – убираем белую полоску над зелёной CTA */
/* 1) Убираем верхний margin у самой CTA в Katzen-странице */
.page-template-page-bf-katzenpflege .bf-cta-bar {
  margin-top: 0;
}

/* 2) Даём такой же отступ самой секции с CTA */
.page-template-page-bf-katzenpflege .bf-section--soft-green:last-of-type {
  padding-top: 40px; /* столько же, сколько был margin-top у .bf-cta-bar */
}
/* ----  ---- */

/* Hundepflege: CTA-Bar ближе к карточкам */
.bf-page-hundepflege .bf-section--cta {
  padding-top: 1px;
  padding-bottom: 60px;
}

/* SPA: без белой полосы над CTA и с воздухом до футера */
.bf-page-spa .bf-cta-bar {
  margin-top: 0;             /* убираем щель над зелёной плашкой */
}

.bf-page-spa .bf-section--cta {
  padding-top: 32px;         /* мягкий отступ сверху внутри зелёного фона */
  padding-bottom: 80px;      /* больше воздуха до тёмного футера */
}


/* =========================================
   Katzenpflege – Parallax-Hintergrund im Ablauf-Block
   (как Hund auf der Preisseite)
========================================= */

#katzen-parallax {
  position: relative;
  overflow: hidden;
  --katzen-parallax: 0px; /* сюда пишет JS */
  background: #ffffff;
}

/* слой с кошкой */
#katzen-parallax::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: url("https://bestfriends-hunde-salon.de/wp-content/uploads/foto/Katze_paralaks.jpg");
  background-repeat: no-repeat;
  background-size: 1300px auto;         /* размер кошки, можно менять */
  background-position: right 85%;       /* кошка справа */

  transform: translate3d(0, var(--katzen-parallax), 0);
  will-change: transform;

  opacity: 0.95;
  pointer-events: none;
  z-index: 0;
}

/* мягкий белый градиент слева под текст */
#katzen-parallax::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 60%;                           /* ширина “белого” поля для текста */
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0.75),
    rgba(255, 255, 255, 0)
  );
  pointer-events: none;
  z-index: 1;
}

/* контент поверх всего */
#katzen-parallax .bf-inner {
  position: relative;
  z-index: 2;
}

/* немного меньше отступы, чтобы кошка была видна */
.page-template-page-bf-katzenpflege #katzen-parallax.bf-section {
  padding-top: 70px;
  padding-bottom: 70px;
}

/* на мобильном можно просто уменьшить фон,
   при желании параллакс можно оставить */
@media (max-width: 768px) {
  #katzen-parallax::before {
    background-size: 1100px auto;
    background-position: right 90%;
  }

  #katzen-parallax::after {
    width: 100%;
  }
}
/* =========================================
   Startseite – Hero nur mit Video (ohne Text/Overlay)
========================================= */

/* сбрасываем стандартный фон с картинкой/градиентом */
.bf-hero.bf-hero--video::before {
  content: none;
}

/* сам блок hero – можно оставить как есть,
   но на всякий случай фиксируем высоту */
.bf-hero.bf-hero--video {
  position: relative;
  min-height: 70vh;
  display: block;
  overflow: hidden;
  color: inherit; /* никакого белого текста не нужно */
}

/* видео растягиваем на весь экран */
.bf-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none; /* чтобы клики не ловило */
}
/* SPA + Termin: модалки с прокруткой содержимого */
.bf-modal-card {
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 40px); /* карточка никогда выше окна */
}

/* внутри прокручивается только тело (текст) */
.bf-modal-body {
  margin-top: 8px;
  overflow-y: auto;
}
/* =========================================
   Startseite – HERO-Video AUS auf Mobile
========================================= */

@media (max-width: 768px) {

  /* скрываем видео */
  .bf-hero.bf-hero--video .bf-hero-video {
    display: none;
  }

  /* сам hero убираем, чтобы не было пустоты */
  .bf-hero.bf-hero--video {
    min-height: 0;
    height: 0;
    padding: 0;
    overflow: hidden;
  }
}
