:root {
    --primary-color: #a47764;
    --secondary-color: #ffa94a;
    --light-bg: #fff0e5;
    --dark-text: #5a3921;
    --card-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --dogcare-blue: #0C51B9;
}

/* ========== GLOBAL ========== */
.container {
    padding-top: 20px;
    padding-bottom: 20px;
    
}

  /* Globale Styles */
  .hero-section {
    background: white;
    padding: var(--section-padding);
    position: relative;
  }

  .section-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
  }

  .section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin: 1rem auto 0;
  }

  .btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .btn-primary:hover {
    background-color: #8a6454;
    transform: translateY(-2px);
  }

  .card {
    border: none;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease;
    height: 100%;
  }

  .card:hover {
    transform: translateY(-5px);
  }

  /* Zusätzliche Styles für quadratisches Bild */
  .square-image-container {
    position: relative;
    width: 100%;
    padding-top: calc(100% * 3 / 4); /* 4:3 Aspect Ratio (75%) */
    overflow: hidden;
  }

  .square-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  /* Neue Animationen für den Slide-In-Effekt */
  @keyframes slideInFromLeft {
    0% {
      transform: translateX(-50px) perspective(500px) rotateY(15deg);
      opacity: 0;
      filter: blur(2px);
    }
    100% {
      transform: translateX(0) perspective(500px) rotateY(0);
      opacity: 1;
      filter: blur(0);
    }
  }

  @keyframes fadeInUp {
    0% {
      transform: translateY(15px);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }

  .blog-section-animated {
    overflow: hidden;
  }

  .blog-section-animated .section-title {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .blog-section-animated .card {
    animation: slideInFromLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.2s;
    padding: 2px;
    transform-origin: left center;
  }

  .blog-section-animated .card-img-top {
    transform-origin: left center;
  }
/* ========== FACT CARDS ========== */
.factcards .card-item {
  background: white;
  border: none;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  padding: 1.5rem;
  text-align: center;
}

.factcards .card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
}

.factcards .icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.factcards h4 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

.factcards p {
  color: var(--dark-text);
  font-size: 0.95rem;
  line-height: 1.6;
}
/* ========== FACT CARDS CICD ========== */
 .consultation-card {
    background: white;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
  }

  .consultation-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
  }

  .consultation-point {
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 8px;
  } .consultation-card {
    background: white;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
  }

  .consultation-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
  }

  .consultation-point {
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 8px;
  }
/* ========== BUTTON STYLES ========== */
/* Button-Grundstyles (für .btn-primary) */
.btn-primary {
  background-color: #a47764 !important;
  border: none !important;
  padding: 0.75rem 1.5rem !important;
  font-weight: 600 !important;
  color: white !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  border-radius: 0.25rem !important;
}

/* Hover-Effekt */
.btn-primary:hover {
  background-color: #8a6454 !important;
  transform: translateY(-2px) !important;
}

/* Abstandsklasse (falls benötigt) */
.mt-4 {
  margin-top: 1.5rem !important;
}
/* ========== CARD DESIGN ========== */
.card {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease-in-out;
    border: none;
}

.card:hover {
    transform: translateY(-5px);
}

.card-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 15px;
}

.card-title {
    margin-bottom: 10px;
}

.card-text {
    margin-bottom: 12px;
    color: #333;
}

.card-footer {
    background-color: transparent;
    border-top: none;
    padding: 8px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.badge {
    margin-bottom: 10px;
}

/* ========== CONSULTATION HERO SECTION ========== */
.consultation-hero {
    background-color: var(--light-bg);
    padding: 4rem 0;
}
.consultationfact-hero {
    background-color: var(--light-bg);
    padding: 4rem 0;
    text-align: center;
    
  }

/* ========== CONSULTATION SECTION ========== */
.consultation-header {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
}

.consultation-header::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin: 1rem auto 2rem;
}
.section-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
  }

  .section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin: 1rem auto 0;
  }


/* ========== TABLES & TEXT ========== */
.table-section-title {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.table-section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin: 1rem auto 2rem;
}

.table-custom thead {
    background-color: var(--light-bg);
}

.table-custom th {
    color: var(--primary-color);
}

.custom-dark-text {
    color: var(--dark-text);
}

.custom-list {
    color: var(--dark-text);
    padding-left: 1.2rem;
}

.rabatt-info {
    color: var(--dark-text);
    font-size: 0.9rem;
}
/* ========== Preis Karten========== */
.nutrition-hero {
    background-color: var(--light-bg);
    padding: 4rem 0;
  }

  .nutrition-header {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .nutrition-header::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin: 1rem auto 2rem;
  }

  .nutrition-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }

  .nutrition-card {
    background: white;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    padding: 2rem;
    margin-bottom: 2rem;
  }

  .nutrition-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
  }

  .nutrition-step {
    text-align: center;
    padding: 1.5rem;
  }
  .step-number {
    background: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: 600;
  }

  .btn-nutrition {
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 1rem;
  }

  .package-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
  }

  .package {
    border: 2px solid var(--light-bg);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
  }

  .package:hover {
    border-color: var(--secondary-color);
  }

  .package h3 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--light-bg);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
  }
/* ========== PROCESS STEPS WITH ANIMATED BORDERS ========== */
.processfact {
  position: relative;
  border: none;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease;
  background: white;
  z-index: 1;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center; /* Zentriert den Inhalt */
}

/* Mobile-first Anpassungen */
@media (min-width: 768px) {
  .processfact {
    padding: 2rem;
    text-align: left; /* Auf Desktop linksbündig */
  }
}

.processfact::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  z-index: -1;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--primary-color));
  background-size: 200% 200%;
  border-radius: 14px;
  animation: gradientBorder 3s ease infinite;
}

.processfact::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  border-radius: 12px;
  z-index: -1;
  margin: 2px;
}

.processfact:hover {
  transform: translateY(-5px);
}

/* Flex-Container für die Anordnung */
.processfact .step-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .processfact .step-container {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

.processfact .step-number {
  background: var(--primary-color);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: bold;
}

.processfact h3 {
  color: var(--primary-color);
  margin: 0.5rem 0;
  font-size: 1.25rem;
}

.processfact p {
  color: var(--dark-text);
  margin: 0;
  line-height: 1.5;
}

@keyframes gradientBorder {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}





.service-hero {
    background-color: var(--light-bg);
    padding: 4rem 0;
  }

  .service-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }

  .service-header {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .service-header::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin: 1rem auto 2rem;
  }

  .service-card {
    background: white;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    padding: 2rem;
    margin-bottom: 2rem;
    max-width: 1200px;
  }

  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
    max-width: 1200px;
  }

  .benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }

  .benefit-icon {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-top: 0.3rem;
  }

  .btn-service {
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 1rem;
  }

  @media (max-width: 768px) {
    .service-header {
      font-size: 2rem;
    }
  }

  
  /* Proffesionelle Service Icons in Cards auf Tagesbetreuungseite */
  .services-section-pro {
    background: white;
    padding: var(--section-padding);
  }

  .service-card-pro {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
  }

  .service-card-pro:hover {
    transform: translateY(-5px);
  }

  .service-icon-pro {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin: 0 auto 1rem;
  }
  
  /* Preistabelle Styles */
  .pricing-section {
    background: white;
    padding: var(--section-padding);
  }

  .price-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
  }

  .price-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
  }

  .price-card.featured {
    border-color: var(--secondary-color);
    background: var(--light-bg);
    position: relative;
  }

  .price-card.featured::before {
    content: "BELIEBT";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
  }

  .price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 1rem 0;
  }

  .price-unit {
    font-size: 1rem;
    color: var(--dark-text);
    font-weight: normal;
  }

  .feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
  }

  .feature-list li {
    padding: 0.5rem 0;
    color: var(--dark-text);
    position: relative;
    padding-left: 1.5rem;
  }

  .feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
  }
  /* Daily Schedule Section */
  .schedule-section {
    background: var(--light-bg);
    padding: var(--section-padding);
  }

  .schedule-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: var(--card-shadow);
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .schedule-time {
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    min-width: 80px;
    text-align: center;
  }

  .schedule-activity {
    flex: 1;
  }

  .schedule-activity h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
  }

    /* Service Details Section */
  .service-details-plat {
    background: var(--light-bg);
    padding: var(--section-padding);
  }

  .service-item-plat {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: var(--card-shadow);
  }

  .service-icon-plat {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 1rem;
  }














    /* Globale Styles */
  .hero-section {
    background: var(--light-bg);
    padding: var(--section-padding);
    position: relative;
  }

  .section-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
  }

  .section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin: 1rem auto 0;
  }

  .btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .btn-primary:hover {
    background-color: #8a6454;
    transform: translateY(-2px);
  }

  .card {
    border: none;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease;
    height: 100%;
  }

  .card:hover {
    transform: translateY(-5px);
  }

  /* Zusätzliche Styles für quadratisches Bild */
  .square-image-container {
    position: relative;
    width: 100%;
    padding-top: calc(100% * 3 / 4); /* 4:3 Aspect Ratio (75%) */
    overflow: hidden;
  }

  .square-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .calendar-widget {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    font-family: "Inter", sans-serif;
  }

  .events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 12px;
    margin-top: 1rem;
  }

  .event-card {
    background: var(--light-bg);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    transition: all 0.3s ease;
  }

  .event-card.booked {
    background: #ffebee;
    border-left: 4px solid #f44336;
  }

  .event-card.free {
    background: #e8f5e9;
    border-left: 4px solid #4caf50;
  }

  .event-time {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 4px;
  }
  .calendar-container {
    margin: 2rem auto; /* Zentriert den Container horizontal */
    max-width: 1000px; /* Gibt eine maximale Breite vor */
    width: 75%; /* Prozentuale Breite mit etwas Abstand zu den Seiten */
    border-radius: 12px;
    overflow: hidden;

    display: flex; /* Flexbox für bessere Kontrolle */
    justify-content: center; /* Zentriert den Inhalt horizontal */
  }

  .calendar-container iframe {
    min-height: 600px;
    width: 75%; /* Nimmt die volle Breite des Containers ein */
    border: none;
  }
  /* Zu Ihrem CSS hinzufügen */
  .calendar-section {
    background-color: var(--light-bg);
  }

  @media (max-width: 768px) {
    .calendar-container {
      width: 100%; /* Volle Breite auf mobilen Geräten */
      border-radius: 0; /* Keine abgerundeten Ecken auf kleinen Bildschirmen */
    }

    .calendar-container iframe {
      min-height: 400px;
    }
  }
  /* Neue Animationen für den Slide-In-Effekt */
  @keyframes slideInFromLeft {
    0% {
      transform: translateX(-50px) perspective(500px) rotateY(15deg);
      opacity: 0;
      filter: blur(2px);
    }
    100% {
      transform: translateX(0) perspective(500px) rotateY(0);
      opacity: 1;
      filter: blur(0);
    }
  }

  @keyframes fadeInUp {
    0% {
      transform: translateY(15px);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }

  .blog-section-animated {
    overflow: hidden;
  }

  .blog-section-animated .section-title {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .blog-section-animated .card {
    animation: slideInFromLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.2s;
    transform-origin: left center;
  }

  .blog-section-animated .card-img-top {
    transform-origin: left center;
  }
  /* Animation für die Shop-Sektion */
  .shop-section-animated {
    opacity: 0;
    width: 100%;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
  }

  .shop-section-animated.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Quadratisches Bildformat */
  .square-image-container {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    overflow: hidden;
  }

  .square-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  /* Garantiert sichtbare Elemente */
  .section-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
  }

  .square-image-container {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    overflow: hidden;
    background: #f8f9fa; /* Fallback Hintergrund */
  }

  .square-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .card {
    border: none;
    transition: transform 0.3s;
  }

  .card:hover {
    transform: translateY(-5px);
  }
  .stats-card {
    position: relative;
    border: none;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease;
    height: 100%;
    overflow: hidden; /* Versteckt den überlaufenden Pseudo-Element */
    background: white;
    z-index: 1;
  }

  .stats-card::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    z-index: -1;
    background: linear-gradient(45deg, #007bff, #ff7b00, #007bff);
    background-size: 200% 200%;
    border-radius: 14px; /* Etwas größer als die Karte selbst */
    animation: gradientBorder 3s ease infinite;
  }

  .stats-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    border-radius: 12px;
    z-index: -1;
    margin: 2px; /* Erzeugt den Border-Effekt */
  }

  @keyframes gradientBorder {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }

  .stats-card:hover {
    transform: translateY(-5px);
  }
  /* Team Section Styles */
  /* Team Section Styles */
  .team-section {
    background-color: var(--light-bg);
    position: relative;
  }

  .team-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    height: 100%;
    background: white;
    opacity: 1; /* Standard auf sichtbar setzen */
  }

  .team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }

  .team-img-container {
    position: relative;
    width: 100%;
    padding-top: 100%; /* Quadratisches Format 1:1 */
    overflow: hidden;
  }

  .team-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .team-card:hover .team-img {
    transform: scale(1.05);
  }

  .team-card-body {
    padding: 1.5rem;
  }

  .team-member-name {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
  }

  .team-member-position {
    color: var(--dark-text);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
  }

  .team-social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
  }

  .team-social-links a {
    color: var(--primary-color);
    font-size: 1.25rem;
    transition: all 0.3s ease;
  }

  .team-social-links a:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
  }

  /* Animation für Teammitglieder */
  .team-card {
    animation: fadeInUp 0.6s ease-out forwards;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Verzögerte Animation für jedes Teammitglied */
  .team-card:nth-child(1) {
    animation-delay: 0.1s;
  }

  .team-card:nth-child(2) {
    animation-delay: 0.3s;
  }

  .team-card:nth-child(3) {
    animation-delay: 0.5s;
  }
  /* Animation für die Value-Karten */
  .value-card {
    position: relative;
    border: none;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease;
    height: 100%;
    overflow: hidden; /* Versteckt den überlaufenden Pseudo-Element */
    background: white;
    z-index: 1;
  }

  .value-card::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    z-index: -1;
    background: linear-gradient(45deg, #007bff, #ff7b00, #007bff);
    background-size: 200% 200%;
    border-radius: 14px; /* Etwas größer als die Karte selbst */
    animation: gradientBorder 3s ease infinite;
  }

  .value-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    border-radius: 12px;
    z-index: -1;
    margin: 2px; /* Erzeugt den Border-Effekt */
  }

  @keyframes gradientBorder {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }

  .value-card:hover {
    transform: translateY(-5px);
  }

  /* Anpassungen für die Icons */
  .value-card .rounded-circle {
    position: relative;
    z-index: 2; /* Über dem animierten Rand */
    transition: all 0.3s ease;
  }

  .value-card:hover .rounded-circle {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  /* ========== PROFESSIONAL DOG VIEW STYLES ========== */

/* Main Container */
.dog-view-professional {
  background-color: #f8f9fa;
  min-height: 100vh;
  padding-bottom: 2rem;
}

/* Header Section */
.dog-view-header-section {
  background: linear-gradient(135deg, var(--primary-color), #8a6454);
  color: white;
  padding: 2rem 0;
  margin-bottom: 2rem;
}

.dog-name-main {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.dog-meta-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  opacity: 0.9;
}

.status-badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.status-active {
  background: rgba(40, 167, 69, 0.9);
}

.status-inactive {
  background: rgba(108, 117, 125, 0.9);
}

.btn-edit {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-edit:hover {
  background: white;
  color: var(--primary-color);
  border-color: white;
}

/* Content Container */
.dog-content-container {
  max-width: 1400px;
}

/* Dog Image Card */
.dog-image-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  margin-bottom: 1.5rem;
}

.dog-image-container {
  position: relative;
  width: 100%;
  padding-top: 75%; /* 4:3 Aspect Ratio */
  overflow: hidden;
}

.dog-image-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.dog-image-main:hover {
  transform: scale(1.05);
}

.dog-image-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--light-bg);
  color: var(--primary-color);
}

.dog-image-placeholder i {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

/* Quick Info Card */
.quick-info-card {
  padding: 1.5rem;
  border-top: 1px solid #e9ecef;
}

.quick-info-card h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1.1rem;
}

.quick-info-grid {
  display: grid;
  gap: 0.8rem;
}

.quick-info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f1f3f4;
}

.quick-info-item:last-child {
  border-bottom: none;
}

.info-label {
  font-weight: 500;
  color: #6c757d;
  font-size: 0.9rem;
}

.info-value {
  font-weight: 600;
  color: var(--dark-text);
  text-align: right;
}

/* Information Sections */
.info-section {
  background: white;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.section-header {
  background: var(--light-bg);
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #e9ecef;
}

.section-header h3 {
  margin: 0;
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Info Grid Layout */
.info-grid {
  padding: 1.5rem;
}

.info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.info-row:last-child {
  margin-bottom: 0;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.info-item.full-width {
  grid-column: 1 / -1;
}

.info-item label {
  font-weight: 600;
  color: #6c757d;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-item value {
  font-weight: 500;
  color: var(--dark-text);
  font-size: 1rem;
  padding: 0.5rem 0;
}

.alert-text {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 6px;
  padding: 0.75rem;
  color: #856404;
  font-size: 0.95rem;
}

/* Vaccination List */
.vaccination-list {
  padding: 1.5rem;
}

.vaccination-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 1rem;
  border-left: 4px solid var(--primary-color);
}

.vaccination-item:last-child {
  margin-bottom: 0;
}

.vaccination-info {
  flex: 1;
}

.vaccination-name {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.vaccination-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.vaccination-details span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.9rem;
  color: #6c757d;
}

.vaccination-status {
  margin-left: 1rem;
}

.vaccination-status span {
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-good {
  background: #d4edda;
  color: #155724;
}

.status-warning {
  background: #fff3cd;
  color: #856404;
}

.status-danger {
  background: #f8d7da;
  color: #721c24;
}

.status-unknown {
  background: #e2e3e5;
  color: #6c757d;
}

/* No Data Message */
.no-data-message {
  padding: 2rem;
  text-align: center;
  color: #6c757d;
  background: #f8f9fa;
  border-radius: 8px;
  margin: 1.5rem;
}

.no-data-message i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  opacity: 0.5;
}

/* Notes Content */
.notes-content {
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
  margin: 1.5rem;
  line-height: 1.6;
  color: var(--dark-text);
}

/* Responsive Design */
@media (max-width: 768px) {
  .dog-name-main {
    font-size: 2rem;
  }
  
  .dog-meta-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }
  
  .info-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .vaccination-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .vaccination-status {
    margin-left: 0;
    align-self: flex-start;
  }
  
  .vaccination-details {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 576px) {
  .dog-view-header-section {
    padding: 1.5rem 0;
  }
  
  .btn-edit {
    width: 100%;
    margin-top: 1rem;
  }
  
  .dog-content-container {
    padding: 0 1rem;
  }
}

/* ========== PROFESSIONAL DOG LIST STYLES ========== */

/* Main Container */
.dog-list-professional {
  background-color: #f8f9fa;
  min-height: 100vh;
}

/* Header Section */
.dog-list-header-professional {
  background: linear-gradient(135deg, var(--primary-color), #8a6454);
  color: white;
  padding: 2.5rem 0;
  margin-bottom: 0;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.page-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  margin: 0;
}

.header-actions {
  text-align: right;
}

.btn-add-dog {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-add-dog:hover {
  background: white;
  color: var(--primary-color);
  border-color: white;
  transform: translateY(-2px);
}

/* Search and Filter Section */
.search-filter-section {
  background: white;
  padding: 2rem 0;
  border-bottom: 1px solid #e9ecef;
}

.search-filter-card {
  background: white;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  padding: 1.5rem;
}

.search-input-group {
  position: relative;
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
  z-index: 2;
}

.search-input {
  padding: 0.8rem 1rem 0.8rem 3rem;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  width: 100%;
}

.search-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(164, 119, 100, 0.25);
  outline: none;
}

.clear-search {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
  text-decoration: none;
  transition: color 0.3s ease;
}

.clear-search:hover {
  color: #dc3545;
}

.btn-search {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  width: 100%;
  transition: all 0.3s ease;
}

.btn-search:hover {
  background: #8a6454;
  transform: translateY(-2px);
}

/* Results Section */
.results-section {
  padding: 2rem 0;
}

.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding: 0 0.5rem;
}

.results-count {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.count-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.count-text {
  color: #6c757d;
  font-weight: 500;
}

.view-options {
  display: flex;
  gap: 0.5rem;
}

.view-btn {
  background: white;
  border: 2px solid #e9ecef;
  color: #6c757d;
  padding: 0.5rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.view-btn:hover,
.view-btn.active {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: rgba(164, 119, 100, 0.1);
}

/* Dogs Grid */
.dogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  transition: all 0.3s ease;
}

/* List View */
.dogs-grid.list-view {
  grid-template-columns: 1fr;
}

.dogs-grid.list-view .dog-card {
  display: flex;
  align-items: center;
  padding: 1rem;
}

.dogs-grid.list-view .dog-card-image {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  margin-right: 1.5rem;
}

.dogs-grid.list-view .dog-card-content {
  flex: 1;
  margin-right: 1rem;
}

.dogs-grid.list-view .dog-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.5rem;
}

/* Dog Card */
.dog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.dog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Dog Image */
.dog-card-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.dog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.dog-card:hover .dog-image {
  transform: scale(1.05);
}

.dog-image-placeholder {
  width: 100%;
  height: 100%;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 2rem;
}

.status-overlay {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
}

.status-badge {
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.status-active {
  background: rgba(40, 167, 69, 0.9);
  color: white;
}

.status-inactive {
  background: rgba(108, 117, 125, 0.9);
  color: white;
}

/* Card Content */
.dog-card-content {
  padding: 1.5rem;
  flex: 1;
}

.dog-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.dog-name {
  color: var(--primary-color);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
}

.dog-id {
  background: var(--light-bg);
  color: var(--primary-color);
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.dog-details {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6c757d;
  font-size: 0.9rem;
}

.detail-item i {
  color: var(--primary-color);
  width: 16px;
  flex-shrink: 0;
}

.owner-email {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.owner-email:hover {
  color: var(--secondary-color);
}

/* Card Actions */
.dog-card-actions {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
}

.action-btn {
  background: white;
  border: 2px solid #e9ecef;
  color: #6c757d;
  padding: 0.5rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
}

.btn-view:hover {
  border-color: #17a2b8;
  color: #17a2b8;
  background: rgba(23, 162, 184, 0.1);
}

.btn-edit:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: rgba(164, 119, 100, 0.1);
}

.btn-delete:hover {
  border-color: #dc3545;
  color: #dc3545;
  background: rgba(220, 53, 69, 0.1);
}

.delete-form {
  margin: 0;
}

/* Pagination */
.pagination-nav {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

.pagination-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
}

.pagination-item {
  margin: 0;
}

.pagination-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: white;
  border: 2px solid #e9ecef;
  color: #6c757d;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.pagination-link:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: rgba(164, 119, 100, 0.1);
}

.pagination-item.active .pagination-link {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.pagination-item.disabled .pagination-link {
  opacity: 0.5;
  cursor: not-allowed;
}

/* No Results */
.no-results {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.no-results-content {
  text-align: center;
  max-width: 400px;
}

.no-results-content i {
  font-size: 4rem;
  color: #e9ecef;
  margin-bottom: 1rem;
}

.no-results-content h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.no-results-content p {
  color: #6c757d;
  margin-bottom: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .dog-list-header-professional {
    padding: 1.5rem 0;
  }
  
  .page-title {
    font-size: 2rem;
  }
  
  .header-actions {
    text-align: left;
    margin-top: 1rem;
  }
  
  .btn-add-dog {
    width: 100%;
    justify-content: center;
  }
  
  .results-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .dogs-grid {
    grid-template-columns: 1fr;
  }
  
  .dogs-grid.list-view .dog-card {
    flex-direction: column;
    text-align: center;
  }
  
  .dogs-grid.list-view .dog-card-image {
    width: 100%;
    height: 200px;
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .dogs-grid.list-view .dog-details {
    grid-template-columns: 1fr;
  }
  
  .pagination-list {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .search-filter-section {
    padding: 1rem 0;
  }
  
  .btn-search {
    margin-top: 1rem;
  }
  
  .dog-card-actions {
    justify-content: space-between;
  }
  
  .pagination-link {
    padding: 0.5rem 0.8rem;
    font-size: 0.9rem;
  }
}
/* =============================================================
   HOME DASHBOARD – DOG CARE PLUS
   CI/CD: #a47764 · #ffa94a · #fff0e5 · #5a3921 · #0c51b9
   ============================================================= */

.dash {
  --d-primary: #a47764;
  --d-secondary: #ffa94a;
  --d-light: #fff0e5;
  --d-dark: #5a3921;
  --d-blue: #0c51b9;
  --d-white: #ffffff;
  --d-surface: #fdf8f4;
  --d-border: rgba(164, 119, 100, 0.1);
  --d-shadow-sm: 0 1px 4px rgba(90, 57, 33, 0.05);
  --d-shadow-md: 0 3px 16px rgba(90, 57, 33, 0.07);
  --d-shadow-lg: 0 10px 35px rgba(90, 57, 33, 0.11);
  --d-radius: 12px;
  --d-radius-sm: 8px;
  --d-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --d-gradient: linear-gradient(135deg, var(--d-primary) 0%, #8a6454 100%);
  --d-gradient-sec: linear-gradient(135deg, var(--d-secondary) 0%, #e6953e 100%);
  --d-gradient-blue: linear-gradient(135deg, var(--d-blue) 0%, #1a3f8a 100%);

  background: var(--d-surface);
  min-height: 100vh;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}


/* =============================================================
   HERO BAR
   ============================================================= */
.dash__hero {
  background: var(--d-gradient-blue);
  color: var(--d-white);
  padding: 1.5rem 0;
  position: relative;
  overflow: hidden;
}

.dash__hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.dash__hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.dash__hero-title {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 800;
  margin: 0 0 0.2rem;
  line-height: 1.2;
}

.dash__hero-name {
  background: linear-gradient(135deg, #fff 0%, var(--d-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dash__hero-sub {
  font-size: 0.85rem;
  opacity: 0.7;
  margin: 0;
}

/* Hero Stats */
.dash__hero-stats {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.dash__stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
}

.dash__stat-num {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--d-secondary);
}

.dash__stat-num--ok { color: #34d399; }

.dash__stat-lbl {
  font-size: 0.68rem;
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}


/* =============================================================
   SCHNELLZUGRIFF-LEISTE
   ============================================================= */
.dash__quick {
  background: var(--d-white);
  border-bottom: 1px solid var(--d-border);
  padding: 0.6rem 0;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--d-shadow-sm);
}

.dash__quick-inner {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.dash__quick-inner::-webkit-scrollbar { display: none; }

.dash__qlink {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.85rem;
  border-radius: var(--d-radius-sm);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--d-dark);
  text-decoration: none;
  transition: var(--d-transition);
  white-space: nowrap;
  border: 1px solid transparent;
  position: relative;
}

.dash__qlink i { font-size: 0.72rem; opacity: 0.6; }

.dash__qlink:hover {
  background: var(--d-light);
  border-color: var(--d-border);
  color: var(--d-primary);
  text-decoration: none;
}

.dash__qlink--admin {
  color: var(--d-blue);
  margin-left: auto;
}

.dash__qbadge {
  background: var(--d-secondary);
  color: var(--d-white);
  font-size: 0.58rem;
  font-weight: 700;
  padding: 0.05rem 0.35rem;
  border-radius: 10px;
  min-width: 0.9rem;
  text-align: center;
}


/* =============================================================
   CONTENT GRID
   ============================================================= */
.dash__grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 1.25rem;
  padding: 1.5rem 0 2rem;
}

.dash__col-left {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.dash__col-right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}


/* =============================================================
   KARTEN
   ============================================================= */
.dash__card {
  background: var(--d-white);
  border-radius: var(--d-radius);
  box-shadow: var(--d-shadow-md);
  overflow: hidden;
  border: 1px solid rgba(164, 119, 100, 0.05);
}

.dash__card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  background: var(--d-light);
  border-bottom: 1px solid var(--d-border);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--d-primary);
  gap: 0.5rem;
}

.dash__card-head i {
  font-size: 0.8rem;
  opacity: 0.7;
}

.dash__card-count {
  background: var(--d-primary);
  color: var(--d-white);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.1rem 0.4rem;
  border-radius: 8px;
  margin-left: 0.4rem;
}

.dash__card-body {
  padding: 1.25rem;
}


/* =============================================================
   PROFIL-INFO
   ============================================================= */
.dash__info {
  display: flex;
  flex-direction: column;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(164, 119, 100, 0.06);
}

.dash__info:last-of-type { border-bottom: none; }

.dash__info-lbl {
  font-size: 0.65rem;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.15rem;
}

.dash__info-val {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--d-dark);
}


/* =============================================================
   HUNDE-LISTE
   ============================================================= */
.dash__dogs {
  display: flex;
  flex-direction: column;
}

.dash__dog {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(164, 119, 100, 0.06);
  transition: background 0.2s;
}

.dash__dog:last-child { border-bottom: none; }
.dash__dog:hover { background: rgba(255, 240, 229, 0.4); }

.dash__dog-img {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--d-light);
}

.dash__dog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dash__dog-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--d-primary);
  font-size: 1.3rem;
  opacity: 0.5;
}

.dash__dog-status {
  position: absolute;
  bottom: -2px;
  right: -2px;
  font-size: 0.52rem;
  font-weight: 700;
  padding: 0.1rem 0.35rem;
  border-radius: 6px;
  text-transform: uppercase;
  border: 2px solid var(--d-white);
}

.dash__dog-status--on { background: #34d399; color: #fff; }
.dash__dog-status--off { background: #9ca3af; color: #fff; }

.dash__dog-info { flex: 1; min-width: 0; }

.dash__dog-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--d-dark);
  margin: 0 0 0.1rem;
}

.dash__dog-breed {
  font-size: 0.78rem;
  color: #999;
  font-style: italic;
  margin: 0;
}

.dash__dog-age {
  font-size: 0.72rem;
  color: #aaa;
  margin: 0.2rem 0 0;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.dash__dog-age i { font-size: 0.6rem; }

.dash__dog-actions {
  display: flex;
  gap: 0.3rem;
  flex-shrink: 0;
}


/* =============================================================
   BLOG
   ============================================================= */
.dash__blog {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
}

.dash__blog-img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--d-radius-sm);
  flex-shrink: 0;
}

.dash__blog-text { flex: 1; min-width: 0; }

.dash__blog-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--d-dark);
  margin: 0 0 0.3rem;
  line-height: 1.3;
}

.dash__blog-excerpt {
  font-size: 0.8rem;
  color: #888;
  line-height: 1.5;
  margin: 0 0 0.4rem;
}

.dash__blog-date {
  font-size: 0.7rem;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.dash__blog-date i { font-size: 0.6rem; }


/* =============================================================
   BUTTONS
   ============================================================= */
.dash__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 1rem;
  border-radius: var(--d-radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--d-transition);
  cursor: pointer;
  border: none;
  background: var(--d-gradient);
  color: var(--d-white);
  white-space: nowrap;
}

.dash__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(164, 119, 100, 0.25);
  color: var(--d-white);
  text-decoration: none;
}

.dash__btn--full { width: 100%; justify-content: center; margin-top: 1rem; }

.dash__btn--sm { padding: 0.35rem 0.65rem; font-size: 0.72rem; }

.dash__btn--outline {
  background: transparent;
  color: var(--d-primary);
  border: 1px solid var(--d-border);
}

.dash__btn--outline:hover {
  background: var(--d-primary);
  color: var(--d-white);
  border-color: var(--d-primary);
}

.dash__btn--ghost {
  background: transparent;
  color: #999;
  border: 1px solid rgba(0,0,0,0.08);
}

.dash__btn--ghost:hover {
  background: #f3f3f3;
  color: var(--d-dark);
}

.dash__link {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--d-primary);
  text-decoration: none;
}

.dash__link:hover { text-decoration: underline; color: var(--d-secondary); }


/* =============================================================
   EMPTY STATE
   ============================================================= */
.dash__empty {
  text-align: center;
  padding: 2.5rem 1.5rem;
  color: #bbb;
}

.dash__empty i { font-size: 2rem; display: block; margin-bottom: 0.5rem; opacity: 0.3; }
.dash__empty p { margin: 0 0 1rem; font-size: 0.85rem; }


/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 992px) {
  .dash__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .dash__col-left {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .dash__hero { padding: 1.25rem 0; }

  .dash__hero-inner { flex-direction: column; text-align: center; gap: 1rem; }

  .dash__hero-stats { justify-content: center; gap: 1.5rem; }

  .dash__col-left { grid-template-columns: 1fr; }

  .dash__blog { flex-direction: column; }
  .dash__blog-img { width: 100%; height: 150px; }
}

@media (max-width: 576px) {
  .dash__hero { padding: 1rem 0; }
  .dash__hero-title { font-size: 1.2rem; }

  .dash__grid { padding: 1rem 0; }

  .dash__dog { padding: 0.75rem 1rem; gap: 0.75rem; }
  .dash__dog-img { width: 44px; height: 44px; }

  .dash__qlink { padding: 0.35rem 0.65rem; font-size: 0.72rem; }
}


/* =============================================================
   ACCESSIBILITY
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .dash *, .dash *::before, .dash *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

.dash__btn:focus-visible,
.dash__qlink:focus-visible,
.dash__link:focus-visible {
  outline: 2px solid var(--d-secondary);
  outline-offset: 2px;
}

/* ========== PROFESSIONAL DOG EDIT STYLES ========== */

/* Main Container */
.dog-edit-professional {
  background-color: #f8f9fa;
  min-height: 100vh;
  padding-bottom: 2rem;
}

/* Header Section */
.dog-edit-header-section {
  background: linear-gradient(135deg, var(--primary-color), #8a6454);
  color: white;
  padding: 2rem 0;
  margin-bottom: 2rem;
}

.page-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.page-subtitle {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-secondary:hover {
  background: white;
  color: var(--primary-color);
  border-color: white;
}

/* Form Container */
.form-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Current Image Section */
.current-image-section {
  margin-bottom: 2rem;
}

.current-image-container {
  position: relative;
  display: inline-block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.current-dog-image {
  width: 200px;
  height: 200px;
  object-fit: cover;
  display: block;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  padding: 0.5rem;
  font-size: 0.8rem;
}

/* Form Sections */
.form-section {
  background: white;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.section-header {
  background: var(--light-bg);
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #e9ecef;
}

.section-header h3 {
  margin: 0;
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-body {
  padding: 1.5rem;
}

/* Form Elements */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  display: block;
  font-size: 0.95rem;
}

.form-label.required::after {
  content: " *";
  color: #dc3545;
}

.form-control,
.form-select {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 0.75rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: white;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(164, 119, 100, 0.25);
  outline: none;
}

.form-control.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.form-text {
  font-size: 0.85rem;
  color: #6c757d;
  margin-top: 0.25rem;
}

/* Form Switch */
.form-check-input {
  width: 3rem;
  height: 1.5rem;
  cursor: pointer;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.form-check-label {
  font-weight: 500;
  color: var(--dark-text);
  cursor: pointer;
  margin-left: 0.5rem;
}

/* Textarea */
textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

/* Image Preview */
.image-preview {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1rem;
  border: 1px solid #e9ecef;
}

.preview-image {
  max-width: 200px;
  max-height: 200px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Form Actions */
.form-actions {
  background: white;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  padding: 1.5rem;
  margin-top: 2rem;
}

.btn-save {
  background: var(--primary-color);
  border: none;
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-right: 1rem;
}

.btn-save:hover {
  background: #8a6454;
  transform: translateY(-2px);
  color: white;
}

.btn-primary {
  background: var(--primary-color);
  border: none;
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-right: 0.5rem;
}

.btn-primary:hover {
  background: #8a6454;
  color: white;
  transform: translateY(-1px);
}

.btn-outline-secondary {
  border: 2px solid #6c757d;
  color: #6c757d;
  background: transparent;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-right: 0.5rem;
}

.btn-outline-secondary:hover {
  background: #6c757d;
  color: white;
}

.btn-danger {
  background: #dc3545;
  border: none;
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-danger:hover {
  background: #c82333;
  transform: translateY(-1px);
  color: white;
}

/* Validation Styles */
.is-invalid {
  animation: shake 0.5s ease-in-out;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

/* File Input Styling */
input[type="file"] {
  padding: 0.5rem;
}

input[type="file"]::-webkit-file-upload-button {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  margin-right: 1rem;
  cursor: pointer;
}

input[type="file"]::-webkit-file-upload-button:hover {
  background: #8a6454;
}

/* Responsive Design */
@media (max-width: 768px) {
  .dog-edit-header-section {
    padding: 1.5rem 0;
  }
  
  .page-title {
    font-size: 1.8rem;
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .section-header {
    padding: 1rem;
  }
  
  .section-body {
    padding: 1rem;
  }
  
  .form-actions {
    padding: 1rem;
  }
  
  .form-actions .row {
    flex-direction: column;
  }
  
  .form-actions .col-md-6:last-child {
    text-align: left;
    margin-top: 1rem;
  }
  
  .btn-save,
  .btn-primary,
  .btn-outline-secondary,
  .btn-danger {
    width: 100%;
    margin-bottom: 0.5rem;
    margin-right: 0;
  }
  
  .current-dog-image {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 576px) {
  .form-container {
    padding: 0 1rem;
  }
  
  .section-header h3 {
    font-size: 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }
  
  .current-dog-image {
    width: 120px;
    height: 120px;
  }
}

/* Success/Error Messages */
.alert {
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border: none;
}

.alert-success {
  background: #d4edda;
  color: #155724;
  border-left: 4px solid #28a745;
}

.alert-danger {
  background: #f8d7da;
  color: #721c24;
  border-left: 4px solid #dc3545;
}

.alert-warning {
  background: #fff3cd;
  color: #856404;
  border-left: 4px solid #ffc107;
}













































































































































































/* ========== EINZELTRAINING SPEZIFISCHE CSS KLASSE ========== */

/* Container für die gesamte Einzeltraining-Sektion */
.einzeltraining-container {
  background-color: var(--light-bg);
  padding: 4rem 0;
}

/* Haupttitel für Einzeltraining */
.einzeltraining-title {
  color: var(--primary-color);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.einzeltraining-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  margin: 1rem auto 0;
}

/* Service-Karten für Einzeltraining */
.einzeltraining-service-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: var(--card-shadow);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.einzeltraining-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Service Icons für Einzeltraining */
.einzeltraining-icon {
  width: 60px;
  height: 60px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.einzeltraining-service-card:hover .einzeltraining-icon {
  transform: scale(1.1);
  background: var(--primary-color);
}

/* Service Titel */
.einzeltraining-service-title {
  color: var(--primary-color);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Service Beschreibung */
.einzeltraining-service-description {
  color: var(--dark-text);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Preissektion für Einzeltraining */
.einzeltraining-pricing {
  background: white;
  padding: 4rem 0;
}

/* Preiskarten */
.einzeltraining-price-card {
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.einzeltraining-price-card:hover {
  border-color: var(--secondary-color);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Featured Preiskarte */
.einzeltraining-price-card.featured {
  border-color: var(--secondary-color);
  background: var(--light-bg);
  position: relative;
}

.einzeltraining-price-card.featured::before {
  content: "BELIEBT";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary-color);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Preisanzeige */
.einzeltraining-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin: 1rem 0;
}

.einzeltraining-price-unit {
  font-size: 1rem;
  color: var(--dark-text);
  font-weight: normal;
}

/* Preiskarten Titel */
.einzeltraining-price-title {
  color: var(--primary-color);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Preiskarten Beschreibung */
.einzeltraining-price-description {
  color: var(--dark-text);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

/* Feature Liste */
.einzeltraining-feature-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  text-align: left;
}

.einzeltraining-feature-list li {
  padding: 0.5rem 0;
  color: var(--dark-text);
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
}

.einzeltraining-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 1.1rem;
}

/* Booking Button */
.einzeltraining-btn {
  background-color: var(--primary-color);
  border: none;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  width: 100%;
}

.einzeltraining-btn:hover {
  background-color: #8a6454;
  transform: translateY(-2px);
  color: white;
  box-shadow: 0 5px 15px rgba(164, 119, 100, 0.3);
}

/* Zusatzleistungen Sektion */
.einzeltraining-zusatz {
  margin-top: 3rem;
}

.einzeltraining-zusatz-title {
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}

.einzeltraining-zusatz-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  margin: 1rem auto 0;
}

/* Tabelle für Zusatzleistungen */
.einzeltraining-table {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.einzeltraining-table thead {
  background-color: var(--light-bg);
}

.einzeltraining-table th {
  color: var(--primary-color);
  font-weight: 600;
  padding: 1rem;
  border: none;
}

.einzeltraining-table td {
  padding: 1rem;
  border-bottom: 1px solid #f1f3f4;
  color: var(--dark-text);
}

.einzeltraining-table tr:last-child td {
  border-bottom: none;
}

.einzeltraining-table tr:hover {
  background-color: rgba(164, 119, 100, 0.05);
}

/* Rabatt Information */
.einzeltraining-rabatt-info {
  color: var(--primary-color);
  font-size: 0.9rem;
  text-align: center;
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--light-bg);
  border-radius: 8px;
  border-left: 4px solid var(--secondary-color);
}

.einzeltraining-rabatt-info strong {
  color: var(--primary-color);
  font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
  .einzeltraining-container {
    padding: 2rem 0;
  }
  
  .einzeltraining-title {
    font-size: 2rem;
  }
  
  .einzeltraining-zusatz-title {
    font-size: 1.5rem;
  }
  
  .einzeltraining-price {
    font-size: 2.5rem;
  }
  
  .einzeltraining-service-card {
    padding: 1.5rem;
  }
  
  .einzeltraining-price-card {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .einzeltraining-title {
    font-size: 1.8rem;
  }
  
  .einzeltraining-service-card {
    padding: 1rem;
  }
  
  .einzeltraining-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .einzeltraining-table th,
  .einzeltraining-table td {
    padding: 0.75rem 0.5rem;
    font-size: 0.9rem;
  }
}


/* ========== HUNDEAUSBILDUNG SPEZIFISCHE CSS KLASSE ========== */

/* Container für die gesamte Hundeausbildung-Sektion */
.hundeausbildung-container {
  background-color: var(--light-bg);
  padding: 4rem 0;
}

/* Haupttitel für Hundeausbildung */
.hundeausbildung-title {
  color: var(--primary-color);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.hundeausbildung-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  margin: 1rem auto 0;
}

/* Service-Karten für Hundeausbildung */
.hundeausbildung-service-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: var(--card-shadow);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.hundeausbildung-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Service Icons für Hundeausbildung */
.hundeausbildung-icon {
  width: 60px;
  height: 60px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.hundeausbildung-service-card:hover .hundeausbildung-icon {
  transform: scale(1.1);
  background: var(--primary-color);
}

/* Service Titel */
.hundeausbildung-service-title {
  color: var(--primary-color);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Service Beschreibung */
.hundeausbildung-service-description {
  color: var(--dark-text);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Preissektion für Hundeausbildung */
.hundeausbildung-pricing {
  background: white;
  padding: 4rem 0;
}

/* Preiskarten */
.hundeausbildung-price-card {
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.hundeausbildung-price-card:hover {
  border-color: var(--secondary-color);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Featured Preiskarte */
.hundeausbildung-price-card.featured {
  border-color: var(--secondary-color);
  background: var(--light-bg);
  position: relative;
}

.hundeausbildung-price-card.featured::before {
  content: "BELIEBT";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary-color);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Preisanzeige */
.hundeausbildung-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin: 1rem 0;
}

.hundeausbildung-price-unit {
  font-size: 1rem;
  color: var(--dark-text);
  font-weight: normal;
}

/* Preiskarten Titel */
.hundeausbildung-price-title {
  color: var(--primary-color);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Preiskarten Beschreibung */
.hundeausbildung-price-description {
  color: var(--dark-text);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

/* Feature Liste */
.hundeausbildung-feature-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  text-align: left;
}

.hundeausbildung-feature-list li {
  padding: 0.5rem 0;
  color: var(--dark-text);
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
}

.hundeausbildung-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 1.1rem;
}

/* Booking Button */
.hundeausbildung-btn {
  background-color: var(--primary-color);
  border: none;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  width: 100%;
}

.hundeausbildung-btn:hover {
  background-color: #8a6454;
  transform: translateY(-2px);
  color: white;
  box-shadow: 0 5px 15px rgba(164, 119, 100, 0.3);
}

/* Zusatzleistungen Sektion */
.hundeausbildung-zusatz {
  margin-top: 3rem;
}

.hundeausbildung-zusatz-title {
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}

.hundeausbildung-zusatz-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  margin: 1rem auto 0;
}

/* Tabelle für Zusatzleistungen */
.hundeausbildung-table {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.hundeausbildung-table thead {
  background-color: var(--light-bg);
}

.hundeausbildung-table th {
  color: var(--primary-color);
  font-weight: 600;
  padding: 1rem;
  border: none;
}

.hundeausbildung-table td {
  padding: 1rem;
  border-bottom: 1px solid #f1f3f4;
  color: var(--dark-text);
}

.hundeausbildung-table tr:last-child td {
  border-bottom: none;
}

.hundeausbildung-table tr:hover {
  background-color: rgba(164, 119, 100, 0.05);
}

/* Rabatt Information */
.hundeausbildung-rabatt-info {
  color: var(--primary-color);
  font-size: 0.9rem;
  text-align: center;
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--light-bg);
  border-radius: 8px;
  border-left: 4px solid var(--secondary-color);
}

.hundeausbildung-rabatt-info strong {
  color: var(--primary-color);
  font-weight: 700;
}



/* Responsive Design */
@media (max-width: 768px) {
  .hundeausbildung-container {
    padding: 2rem 0;
  }
  
  .hundeausbildung-title {
    font-size: 2rem;
  }
  
  .hundeausbildung-zusatz-title {
    font-size: 1.5rem;
  }
  
  .hundeausbildung-price {
    font-size: 2.5rem;
  }
  
  .hundeausbildung-service-card {
    padding: 1.5rem;
  }
  
  .hundeausbildung-price-card {
    padding: 1.5rem;
  }
  

}

@media (max-width: 576px) {
  .hundeausbildung-title {
    font-size: 1.8rem;
  }
  
  .hundeausbildung-service-card {
    padding: 1rem;
  }
  
  .hundeausbildung-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .hundeausbildung-table th,
  .hundeausbildung-table td {
    padding: 0.75rem 0.5rem;
    font-size: 0.9rem;
  }
}

/* ========== HUNDEBERATUNG SPEZIFISCHE CSS KLASSE ========== */

/* Container für die gesamte Hundeberatung-Sektion */
.hundeberatung-container {
  background-color: var(--light-bg);
  padding: 4rem 0;
}

/* Haupttitel für Hundeberatung */
.hundeberatung-title {
  color: var(--primary-color);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.hundeberatung-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  margin: 1rem auto 0;
}

/* Service-Karten für Hundeberatung */
.hundeberatung-service-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: var(--card-shadow);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.hundeberatung-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Service Icons für Hundeberatung */
.hundeberatung-icon {
  width: 60px;
  height: 60px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.hundeberatung-service-card:hover .hundeberatung-icon {
  transform: scale(1.1);
  background: var(--primary-color);
}

/* Service Titel */
.hundeberatung-service-title {
  color: var(--primary-color);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Service Beschreibung */
.hundeberatung-service-description {
  color: var(--dark-text);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Preissektion für Hundeberatung */
.hundeberatung-pricing {
  background: white;
  padding: 4rem 0;
}

/* Preiskarten */
.hundeberatung-price-card {
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.hundeberatung-price-card:hover {
  border-color: var(--secondary-color);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Featured Preiskarte */
.hundeberatung-price-card.featured {
  border-color: var(--secondary-color);
  background: var(--light-bg);
  position: relative;
}

.hundeberatung-price-card.featured::before {
  content: "EMPFOHLEN";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary-color);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Preisanzeige */
.hundeberatung-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin: 1rem 0;
}

.hundeberatung-price-unit {
  font-size: 1rem;
  color: var(--dark-text);
  font-weight: normal;
}

/* Preiskarten Titel */
.hundeberatung-price-title {
  color: var(--primary-color);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Preiskarten Beschreibung */
.hundeberatung-price-description {
  color: var(--dark-text);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

/* Feature Liste */
.hundeberatung-feature-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  text-align: left;
}

.hundeberatung-feature-list li {
  padding: 0.5rem 0;
  color: var(--dark-text);
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
}

.hundeberatung-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 1.1rem;
}

/* Booking Button */
.hundeberatung-btn {
  background-color: var(--primary-color);
  border: none;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  width: 100%;
}

.hundeberatung-btn:hover {
  background-color: #8a6454;
  transform: translateY(-2px);
  color: white;
  box-shadow: 0 5px 15px rgba(164, 119, 100, 0.3);
}

/* Zusatzleistungen Sektion */
.hundeberatung-zusatz {
  margin-top: 3rem;
}

.hundeberatung-zusatz-title {
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}

.hundeberatung-zusatz-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  margin: 1rem auto 0;
}

/* Tabelle für Zusatzleistungen */
.hundeberatung-table {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.hundeberatung-table thead {
  background-color: var(--light-bg);
}

.hundeberatung-table th {
  color: var(--primary-color);
  font-weight: 600;
  padding: 1rem;
  border: none;
}

.hundeberatung-table td {
  padding: 1rem;
  border-bottom: 1px solid #f1f3f4;
  color: var(--dark-text);
}

.hundeberatung-table tr:last-child td {
  border-bottom: none;
}

.hundeberatung-table tr:hover {
  background-color: rgba(164, 119, 100, 0.05);
}

/* Rabatt Information */
.hundeberatung-rabatt-info {
  color: var(--primary-color);
  font-size: 0.9rem;
  text-align: center;
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--light-bg);
  border-radius: 8px;
  border-left: 4px solid var(--secondary-color);
}

.hundeberatung-rabatt-info strong {
  color: var(--primary-color);
  font-weight: 700;
}

/* Spezielle Features für Beratungsthemen */
.hundeberatung-service-card.highlight {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, white 0%, var(--light-bg) 100%);
}

.hundeberatung-service-card.highlight .hundeberatung-icon {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

/* Info-Boxen für spezielle Hinweise */
.hundeberatung-info-box {
  background: #e8f4fd;
  border-left: 4px solid #007bff;
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
}

.hundeberatung-info-box h5 {
  color: #007bff;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.hundeberatung-info-box p {
  margin: 0;
  color: #495057;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hundeberatung-container {
    padding: 2rem 0;
  }
  
  .hundeberatung-title {
    font-size: 2rem;
  }
  
  .hundeberatung-zusatz-title {
    font-size: 1.5rem;
  }
  
  .hundeberatung-price {
    font-size: 2.5rem;
  }
  
  .hundeberatung-service-card {
    padding: 1.5rem;
  }
  
  .hundeberatung-price-card {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .hundeberatung-title {
    font-size: 1.8rem;
  }
  
  .hundeberatung-service-card {
    padding: 1rem;
  }
  
  .hundeberatung-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .hundeberatung-table th,
  .hundeberatung-table td {
    padding: 0.75rem 0.5rem;
    font-size: 0.9rem;
  }
  
  .hundeberatung-info-box {
    padding: 0.75rem 1rem;
    margin: 1rem 0;
  }
}

/* ========== ZUSATZANGEBOTE SPEZIFISCHE CSS KLASSE ========== */

/* Container für die gesamte Zusatzangebote-Sektion */
.zusatzangebote-container {
  background-color: var(--light-bg);
  padding: 4rem 0;
}

/* Haupttitel für Zusatzangebote */
.zusatzangebote-title {
  color: var(--primary-color);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.zusatzangebote-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  margin: 1rem auto 0;
}

/* Service-Karten für Zusatzangebote */
.zusatzangebote-service-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: var(--card-shadow);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.zusatzangebote-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Service Icons für Zusatzangebote */
.zusatzangebote-icon {
  width: 60px;
  height: 60px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.zusatzangebote-service-card:hover .zusatzangebote-icon {
  transform: scale(1.1);
  background: var(--primary-color);
}

/* Service Titel */
.zusatzangebote-service-title {
  color: var(--primary-color);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Service Beschreibung */
.zusatzangebote-service-description {
  color: var(--dark-text);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Preissektion für Zusatzangebote */
.zusatzangebote-pricing {
  background: white;
  padding: 4rem 0;
}

/* Preiskarten */
.zusatzangebote-price-card {
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.zusatzangebote-price-card:hover {
  border-color: var(--secondary-color);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Featured Preiskarte */
.zusatzangebote-price-card.featured {
  border-color: var(--secondary-color);
  background: var(--light-bg);
  position: relative;
}

.zusatzangebote-price-card.featured::before {
  content: "HIGHLIGHT";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary-color);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Preisanzeige */
.zusatzangebote-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin: 1rem 0;
}

.zusatzangebote-price-unit {
  font-size: 1rem;
  color: var(--dark-text);
  font-weight: normal;
}

/* Preiskarten Titel */
.zusatzangebote-price-title {
  color: var(--primary-color);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Preiskarten Beschreibung */
.zusatzangebote-price-description {
  color: var(--dark-text);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

/* Feature Liste */
.zusatzangebote-feature-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  text-align: left;
}

.zusatzangebote-feature-list li {
  padding: 0.5rem 0;
  color: var(--dark-text);
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
}

.zusatzangebote-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 1.1rem;
}

/* Booking Button */
.zusatzangebote-btn {
  background-color: var(--primary-color);
  border: none;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  width: 100%;
}

.zusatzangebote-btn:hover {
  background-color: #8a6454;
  transform: translateY(-2px);
  color: white;
  box-shadow: 0 5px 15px rgba(164, 119, 100, 0.3);
}

/* Zusatzleistungen Sektion */
.zusatzangebote-zusatz {
  margin-top: 3rem;
}

.zusatzangebote-zusatz-title {
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}

.zusatzangebote-zusatz-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  margin: 1rem auto 0;
}

/* Tabelle für Zusatzleistungen */
.zusatzangebote-table {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.zusatzangebote-table thead {
  background-color: var(--light-bg);
}

.zusatzangebote-table th {
  color: var(--primary-color);
  font-weight: 600;
  padding: 1rem;
  border: none;
}

.zusatzangebote-table td {
  padding: 1rem;
  border-bottom: 1px solid #f1f3f4;
  color: var(--dark-text);
}

.zusatzangebote-table tr:last-child td {
  border-bottom: none;
}

.zusatzangebote-table tr:hover {
  background-color: rgba(164, 119, 100, 0.05);
}

/* Rabatt Information */
.zusatzangebote-rabatt-info {
  color: var(--primary-color);
  font-size: 0.9rem;
  text-align: center;
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--light-bg);
  border-radius: 8px;
  border-left: 4px solid var(--secondary-color);
}

.zusatzangebote-rabatt-info strong {
  color: var(--primary-color);
  font-weight: 700;
}

/* Info-Boxen für spezielle Hinweise */
.zusatzangebote-info-box {
  background: #f0f8ff;
  border-left: 4px solid #28a745;
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
}

.zusatzangebote-info-box h5 {
  color: #28a745;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.zusatzangebote-info-box p {
  margin: 0;
  color: #495057;
  font-size: 0.9rem;
}

/* Spezielle Fun-Day Karte */
.zusatzangebote-service-card.fun-day {
  background: linear-gradient(135deg, white 0%, #fff8f0 100%);
  border: 2px solid var(--secondary-color);
}

.zusatzangebote-service-card.fun-day .zusatzangebote-icon {
  background: linear-gradient(45deg, #ff6b6b, #ffa500);
}

/* Spezielle Gruppenruhe Karte */
.zusatzangebote-service-card.gruppenruhe {
  background: linear-gradient(135deg, white 0%, #f0f9ff 100%);
  border: 2px solid #87ceeb;
}

.zusatzangebote-service-card.gruppenruhe .zusatzangebote-icon {
  background: linear-gradient(45deg, #4682b4, #87ceeb);
}

/* Responsive Design */
@media (max-width: 768px) {
  .zusatzangebote-container {
    padding: 2rem 0;
  }
  
  .zusatzangebote-title {
    font-size: 2rem;
  }
  
  .zusatzangebote-zusatz-title {
    font-size: 1.5rem;
  }
  
  .zusatzangebote-price {
    font-size: 2.5rem;
  }
  
  .zusatzangebote-service-card {
    padding: 1.5rem;
  }
  
  .zusatzangebote-price-card {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .zusatzangebote-title {
    font-size: 1.8rem;
  }
  
  .zusatzangebote-service-card {
    padding: 1rem;
  }
  
  .zusatzangebote-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .zusatzangebote-table th,
  .zusatzangebote-table td {
    padding: 0.75rem 0.5rem;
    font-size: 0.9rem;
  }
  
  .zusatzangebote-info-box {
    padding: 0.75rem 1rem;
    margin: 1rem 0;
  }
}

/* ========== TAGESBETREUUNG SPEZIFISCHE CSS KLASSE ========== */

/* Container für die gesamte Tagesbetreuung-Sektion */
.tagesbetreuung-container {
  background-color: var(--light-bg);
  padding: 4rem 0;
}

/* Haupttitel für Tagesbetreuung */
.tagesbetreuung-title {
  color: var(--primary-color);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.tagesbetreuung-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  margin: 1rem auto 0;
}

/* Service-Karten für Tagesbetreuung */
.tagesbetreuung-service-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: var(--card-shadow);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.tagesbetreuung-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Service Icons für Tagesbetreuung */
.tagesbetreuung-icon {
  width: 60px;
  height: 60px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.tagesbetreuung-service-card:hover .tagesbetreuung-icon {
  transform: scale(1.1);
  background: var(--primary-color);
}

/* Service Titel */
.tagesbetreuung-service-title {
  color: var(--primary-color);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Service Beschreibung */
.tagesbetreuung-service-description {
  color: var(--dark-text);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Preissektion für Tagesbetreuung */
.tagesbetreuung-pricing {
  background: white;
  padding: 4rem 0;
}

/* Preiskarten */
.tagesbetreuung-price-card {
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.tagesbetreuung-price-card:hover {
  border-color: var(--secondary-color);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Featured Preiskarte */
.tagesbetreuung-price-card.featured {
  border-color: var(--secondary-color);
  background: var(--light-bg);
  position: relative;
}

.tagesbetreuung-price-card.featured::before {
  content: "PREMIUM";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary-color);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Preisanzeige */
.tagesbetreuung-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin: 1rem 0;
}

.tagesbetreuung-price-unit {
  font-size: 1rem;
  color: var(--dark-text);
  font-weight: normal;
}

/* Preiskarten Titel */
.tagesbetreuung-price-title {
  color: var(--primary-color);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Preiskarten Beschreibung */
.tagesbetreuung-price-description {
  color: var(--dark-text);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

/* Feature Liste */
.tagesbetreuung-feature-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  text-align: left;
}

.tagesbetreuung-feature-list li {
  padding: 0.5rem 0;
  color: var(--dark-text);
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
}

.tagesbetreuung-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 1.1rem;
}

/* Booking Button */
.tagesbetreuung-btn {
  background-color: var(--primary-color);
  border: none;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  width: 100%;
}

.tagesbetreuung-btn:hover {
  background-color: #8a6454;
  transform: translateY(-2px);
  color: white;
  box-shadow: 0 5px 15px rgba(164, 119, 100, 0.3);
}

/* Zusatzleistungen Sektion */
.tagesbetreuung-zusatz {
  margin-top: 3rem;
}

.tagesbetreuung-zusatz-title {
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}

.tagesbetreuung-zusatz-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  margin: 1rem auto 0;
}

/* Tabelle für Zusatzleistungen */
.tagesbetreuung-table {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.tagesbetreuung-table thead {
  background-color: var(--light-bg);
}

.tagesbetreuung-table th {
  color: var(--primary-color);
  font-weight: 600;
  padding: 1rem;
  border: none;
}

.tagesbetreuung-table td {
  padding: 1rem;
  border-bottom: 1px solid #f1f3f4;
  color: var(--dark-text);
}

.tagesbetreuung-table tr:last-child td {
  border-bottom: none;
}

.tagesbetreuung-table tr:hover {
  background-color: rgba(164, 119, 100, 0.05);
}

/* Rabatt Information */
.tagesbetreuung-rabatt-info {
  color: var(--primary-color);
  font-size: 0.9rem;
  text-align: center;
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--light-bg);
  border-radius: 8px;
  border-left: 4px solid var(--secondary-color);
}

.tagesbetreuung-rabatt-info strong {
  color: var(--primary-color);
  font-weight: 700;
}

/* Info-Boxen für spezielle Hinweise */
.tagesbetreuung-info-box {
  background: #fff8f0;
  border-left: 4px solid var(--secondary-color);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
}

.tagesbetreuung-info-box h5 {
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.tagesbetreuung-info-box p {
  margin: 0;
  color: #495057;
  font-size: 0.9rem;
}

/* Tagesablauf Sektion */
.tagesbetreuung-schedule {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: var(--card-shadow);
}

.tagesbetreuung-schedule h4 {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 600;
}

.schedule-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.schedule-time {
  background: var(--secondary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  min-width: 80px;
  text-align: center;
  margin-right: 1rem;
}

.schedule-activity {
  flex: 1;
}

.schedule-activity h6 {
  color: var(--primary-color);
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.schedule-activity p {
  margin: 0;
  color: var(--dark-text);
  font-size: 0.9rem;
}

/* Spezielle Service-Karten Varianten */
.tagesbetreuung-service-card.kleine-gruppen .tagesbetreuung-icon {
  background: linear-gradient(45deg, #28a745, #20c997);
}

.tagesbetreuung-service-card.dog-life-balance .tagesbetreuung-icon {
  background: linear-gradient(45deg, #007bff, #6f42c1);
}

.tagesbetreuung-service-card.individuelle-gestaltung .tagesbetreuung-icon {
  background: linear-gradient(45deg, #fd7e14, #ffc107);
}

.tagesbetreuung-service-card.flexible-routinen .tagesbetreuung-icon {
  background: linear-gradient(45deg, #e83e8c, #dc3545);
}

/* Responsive Design */
@media (max-width: 768px) {
  .tagesbetreuung-container {
    padding: 2rem 0;
  }
  
  .tagesbetreuung-title {
    font-size: 2rem;
  }
  
  .tagesbetreuung-zusatz-title {
    font-size: 1.5rem;
  }
  
  .tagesbetreuung-price {
    font-size: 2.5rem;
  }
  
  .tagesbetreuung-service-card {
    padding: 1.5rem;
  }
  
  .tagesbetreuung-price-card {
    padding: 1.5rem;
  }
  
  .schedule-item {
    flex-direction: column;
    text-align: center;
  }
  
  .schedule-time {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 576px) {
  .tagesbetreuung-title {
    font-size: 1.8rem;
  }
  
  .tagesbetreuung-service-card {
    padding: 1rem;
  }
  
  .tagesbetreuung-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .tagesbetreuung-table th,
  .tagesbetreuung-table td {
    padding: 0.75rem 0.5rem;
    font-size: 0.9rem;
  }
  
  .tagesbetreuung-info-box,
  .tagesbetreuung-schedule {
    padding: 1rem;
    margin: 1rem 0;
  }
}

/* ========== FERIENBETREUUNG SPEZIFISCHE CSS KLASSE ========== */

/* Container für die gesamte Ferienbetreuung-Sektion */
.ferienbetreuung-container {
  background-color: var(--light-bg);
  padding: 4rem 0;
}

/* Haupttitel für Ferienbetreuung */
.ferienbetreuung-title {
  color: var(--primary-color);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.ferienbetreuung-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  margin: 1rem auto 0;
}

/* Service-Karten für Ferienbetreuung */
.ferienbetreuung-service-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: var(--card-shadow);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.ferienbetreuung-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Service Icons für Ferienbetreuung */
.ferienbetreuung-icon {
  width: 60px;
  height: 60px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.ferienbetreuung-service-card:hover .ferienbetreuung-icon {
  transform: scale(1.1);
  background: var(--primary-color);
}

/* Service Titel */
.ferienbetreuung-service-title {
  color: var(--primary-color);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Service Beschreibung */
.ferienbetreuung-service-description {
  color: var(--dark-text);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Preissektion für Ferienbetreuung */
.ferienbetreuung-pricing {
  background: white;
  padding: 4rem 0;
}

/* Preiskarten */
.ferienbetreuung-price-card {
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.ferienbetreuung-price-card:hover {
  border-color: var(--secondary-color);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Featured Preiskarte */
.ferienbetreuung-price-card.featured {
  border-color: var(--secondary-color);
  background: var(--light-bg);
  position: relative;
}

.ferienbetreuung-price-card.featured::before {
  content: "BESTSELLER";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary-color);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Preisanzeige */
.ferienbetreuung-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin: 1rem 0;
}

.ferienbetreuung-price-unit {
  font-size: 1rem;
  color: var(--dark-text);
  font-weight: normal;
}

/* Preiskarten Titel */
.ferienbetreuung-price-title {
  color: var(--primary-color);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Preiskarten Beschreibung */
.ferienbetreuung-price-description {
  color: var(--dark-text);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

/* Feature Liste */
.ferienbetreuung-feature-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  text-align: left;
}

.ferienbetreuung-feature-list li {
  padding: 0.5rem 0;
  color: var(--dark-text);
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
}

.ferienbetreuung-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 1.1rem;
}

/* Booking Button */
.ferienbetreuung-btn {
  background-color: var(--primary-color);
  border: none;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  width: 100%;
}

.ferienbetreuung-btn:hover {
  background-color: #8a6454;
  transform: translateY(-2px);
  color: white;
  box-shadow: 0 5px 15px rgba(164, 119, 100, 0.3);
}

/* Zusatzleistungen Sektion */
.ferienbetreuung-zusatz {
  margin-top: 3rem;
}

.ferienbetreuung-zusatz-title {
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}

.ferienbetreuung-zusatz-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  margin: 1rem auto 0;
}

/* Tabelle für Zusatzleistungen */
.ferienbetreuung-table {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.ferienbetreuung-table thead {
  background-color: var(--light-bg);
}

.ferienbetreuung-table th {
  color: var(--primary-color);
  font-weight: 600;
  padding: 1rem;
  border: none;
}

.ferienbetreuung-table td {
  padding: 1rem;
  border-bottom: 1px solid #f1f3f4;
  color: var(--dark-text);
}

.ferienbetreuung-table tr:last-child td {
  border-bottom: none;
}

.ferienbetreuung-table tr:hover {
  background-color: rgba(164, 119, 100, 0.05);
}

/* Rabatt Information */
.ferienbetreuung-rabatt-info {
  color: var(--primary-color);
  font-size: 0.9rem;
  text-align: center;
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--light-bg);
  border-radius: 8px;
  border-left: 4px solid var(--secondary-color);
}

.ferienbetreuung-rabatt-info strong {
  color: var(--primary-color);
  font-weight: 700;
}

/* Info-Boxen für spezielle Hinweise */
.ferienbetreuung-info-box {
  background: #f0fff4;
  border-left: 4px solid #32cd32;
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
}

.ferienbetreuung-info-box h5 {
  color: #228b22;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.ferienbetreuung-info-box p {
  margin: 0;
  color: #495057;
  font-size: 0.9rem;
}

/* Urlaubspaket Sektion */
.ferienbetreuung-vacation-package {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: var(--card-shadow);
  border: 2px solid #2196f3;
}

.ferienbetreuung-vacation-package h4 {
  color: #1976d2;
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.vacation-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.vacation-feature {
  background: rgba(255, 255, 255, 0.8);
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  border: 1px solid rgba(33, 150, 243, 0.3);
}

.vacation-feature h6 {
  color: #1976d2;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.vacation-feature p {
  margin: 0;
  color: var(--dark-text);
  font-size: 0.9rem;
}

/* Spezielle Service-Karten Varianten */
.ferienbetreuung-service-card.individuelle-betreuung .ferienbetreuung-icon {
  background: linear-gradient(45deg, #ff6b6b, #ffa500);
}

.ferienbetreuung-service-card.trainingseinheiten .ferienbetreuung-icon {
  background: linear-gradient(45deg, #4ecdc4, #44a08d);
}

.ferienbetreuung-service-card.hauslicher-komfort .ferienbetreuung-icon {
  background: linear-gradient(45deg, #667eea, #764ba2);
}

.ferienbetreuung-service-card.regelmaessige-updates .ferienbetreuung-icon {
  background: linear-gradient(45deg, #f093fb, #f5576c);
}

/* Responsive Design */
@media (max-width: 768px) {
  .ferienbetreuung-container {
    padding: 2rem 0;
  }
  
  .ferienbetreuung-title {
    font-size: 2rem;
  }
  
  .ferienbetreuung-zusatz-title {
    font-size: 1.5rem;
  }
  
  .ferienbetreuung-price {
    font-size: 2.5rem;
  }
  
  .ferienbetreuung-service-card {
    padding: 1.5rem;
  }
  
  .ferienbetreuung-price-card {
    padding: 1.5rem;
  }
  
  .vacation-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .ferienbetreuung-title {
    font-size: 1.8rem;
  }
  
  .ferienbetreuung-service-card {
    padding: 1rem;
  }
  
  .ferienbetreuung-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .ferienbetreuung-table th,
  .ferienbetreuung-table td {
    padding: 0.75rem 0.5rem;
    font-size: 0.9rem;
  }
  
  .ferienbetreuung-info-box,
  .ferienbetreuung-vacation-package {
    padding: 1rem;
    margin: 1rem 0;
  }
}

/* ========== LANGZEITBETREUUNG SPEZIFISCHE CSS KLASSE ========== */

/* Container für die gesamte Langzeitbetreuung-Sektion */
.langzeitbetreuung-container {
  background-color: var(--light-bg);
  padding: 4rem 0;
}

/* Haupttitel für Langzeitbetreuung */
.langzeitbetreuung-title {
  color: var(--primary-color);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.langzeitbetreuung-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  margin: 1rem auto 0;
}

/* Service-Karten für Langzeitbetreuung */
.langzeitbetreuung-service-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: var(--card-shadow);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.langzeitbetreuung-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Service Icons für Langzeitbetreuung */
.langzeitbetreuung-icon {
  width: 60px;
  height: 60px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.langzeitbetreuung-service-card:hover .langzeitbetreuung-icon {
  transform: scale(1.1);
  background: var(--primary-color);
}

/* Service Titel */
.langzeitbetreuung-service-title {
  color: var(--primary-color);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Service Beschreibung */
.langzeitbetreuung-service-description {
  color: var(--dark-text);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Preissektion für Langzeitbetreuung */
.langzeitbetreuung-pricing {
  background: white;
  padding: 4rem 0;
}

/* Preiskarten */
.langzeitbetreuung-price-card {
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.langzeitbetreuung-price-card:hover {
  border-color: var(--secondary-color);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Featured Preiskarte */
.langzeitbetreuung-price-card.featured {
  border-color: var(--secondary-color);
  background: var(--light-bg);
  position: relative;
}

.langzeitbetreuung-price-card.featured::before {
  content: "BELIEBT";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary-color);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Preisanzeige */
.langzeitbetreuung-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin: 1rem 0;
}

.langzeitbetreuung-price-unit {
  font-size: 1rem;
  color: var(--dark-text);
  font-weight: normal;
}

/* Preiskarten Titel */
.langzeitbetreuung-price-title {
  color: var(--primary-color);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Preiskarten Beschreibung */
.langzeitbetreuung-price-description {
  color: var(--dark-text);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

/* Feature Liste */
.langzeitbetreuung-feature-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  text-align: left;
}

.langzeitbetreuung-feature-list li {
  padding: 0.5rem 0;
  color: var(--dark-text);
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
}

.langzeitbetreuung-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 1.1rem;
}

/* Booking Button */
.langzeitbetreuung-btn {
  background-color: var(--primary-color);
  border: none;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  width: 100%;
}

.langzeitbetreuung-btn:hover {
  background-color: #8a6454;
  transform: translateY(-2px);
  color: white;
  box-shadow: 0 5px 15px rgba(164, 119, 100, 0.3);
}

/* Zusatzleistungen Sektion */
.langzeitbetreuung-zusatz {
  margin-top: 3rem;
}

.langzeitbetreuung-zusatz-title {
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}

.langzeitbetreuung-zusatz-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  margin: 1rem auto 0;
}

/* Tabelle für Zusatzleistungen */
.langzeitbetreuung-table {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.langzeitbetreuung-table thead {
  background-color: var(--light-bg);
}

.langzeitbetreuung-table th {
  color: var(--primary-color);
  font-weight: 600;
  padding: 1rem;
  border: none;
}

.langzeitbetreuung-table td {
  padding: 1rem;
  border-bottom: 1px solid #f1f3f4;
  color: var(--dark-text);
}

.langzeitbetreuung-table tr:last-child td {
  border-bottom: none;
}

.langzeitbetreuung-table tr:hover {
  background-color: rgba(164, 119, 100, 0.05);
}

/* Rabatt Information */
.langzeitbetreuung-rabatt-info {
  color: var(--dark-text);
  font-size: 0.9rem;
  text-align: center;
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--light-bg);
  border-radius: 8px;
  border-left: 4px solid var(--secondary-color);
}

.langzeitbetreuung-rabatt-info strong {
  color: var(--primary-color);
  font-weight: 700;
}

/* Mengenrabatt-Übersicht */
.langzeitbetreuung-rabatt-overview {
  background: linear-gradient(135deg, #e8f5e8 0%, #d4f1d4 100%);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: var(--card-shadow);
  border: 2px solid #4caf50;
}

.langzeitbetreuung-rabatt-overview h4 {
  color: #2e7d32;
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.rabatt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.rabatt-item {
  background: rgba(255, 255, 255, 0.9);
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.rabatt-item h6 {
  color: #2e7d32;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.rabatt-item p {
  margin: 0;
  color: var(--dark-text);
  font-size: 0.9rem;
}

/* Spezielle Service-Karten Varianten */
.langzeitbetreuung-service-card.kostenersparnis .langzeitbetreuung-icon {
  background: linear-gradient(45deg, #4caf50, #8bc34a);
}

.langzeitbetreuung-service-card.planungssicherheit .langzeitbetreuung-icon {
  background: linear-gradient(45deg, #2196f3, #03a9f4);
}

.langzeitbetreuung-service-card.vertraute-bezugsperson .langzeitbetreuung-icon {
  background: linear-gradient(45deg, #e91e63, #f06292);
}

.langzeitbetreuung-service-card.premium-service .langzeitbetreuung-icon {
  background: linear-gradient(45deg, #ff9800, #ffc107);
}

/* Responsive Design */
@media (max-width: 768px) {
  .langzeitbetreuung-container {
    padding: 2rem 0;
  }
  
  .langzeitbetreuung-title {
    font-size: 2rem;
  }
  
  .langzeitbetreuung-zusatz-title {
    font-size: 1.5rem;
  }
  
  .langzeitbetreuung-price {
    font-size: 2.5rem;
  }
  
  .langzeitbetreuung-service-card {
    padding: 1.5rem;
  }
  
  .langzeitbetreuung-price-card {
    padding: 1.5rem;
  }
  
  .rabatt-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .langzeitbetreuung-title {
    font-size: 1.8rem;
  }
  
  .langzeitbetreuung-service-card {
    padding: 1rem;
  }
  
  .langzeitbetreuung-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .langzeitbetreuung-table th,
  .langzeitbetreuung-table td {
    padding: 0.75rem 0.5rem;
    font-size: 0.9rem;
  }
  
  .langzeitbetreuung-rabatt-overview {
    padding: 1rem;
    margin: 1rem 0;
  }
}

/* ========== BARF BERATUNG SPEZIFISCHE CSS KLASSE ========== */

/* Container für die gesamte BARF-Sektion */
.barf-container {
  background-color: var(--light-bg);
  padding: 4rem 0;
}

/* Haupttitel für BARF */
.barf-title {
  color: var(--primary-color);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.barf-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  margin: 1rem auto 0;
}

/* Service-Karten für BARF */
.barf-service-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: var(--card-shadow);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.barf-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Service Icons für BARF */
.barf-icon {
  width: 60px;
  height: 60px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.barf-service-card:hover .barf-icon {
  transform: scale(1.1);
  background: var(--primary-color);
}

/* Service Titel */
.barf-service-title {
  color: var(--primary-color);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Service Beschreibung */
.barf-service-description {
  color: var(--dark-text);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Preissektion für BARF */
.barf-pricing {
  background: white;
  padding: 4rem 0;
}

/* Preiskarten */
.barf-price-card {
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.barf-price-card:hover {
  border-color: var(--secondary-color);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Featured Preiskarte */
.barf-price-card.featured {
  border-color: var(--secondary-color);
  background: var(--light-bg);
  position: relative;
}

.barf-price-card.featured::before {
  content: "EMPFOHLEN";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary-color);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Preisanzeige */
.barf-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin: 1rem 0;
}

.barf-price-unit {
  font-size: 1rem;
  color: var(--dark-text);
  font-weight: normal;
}

/* Preiskarten Titel */
.barf-price-title {
  color: var(--primary-color);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Preiskarten Beschreibung */
.barf-price-description {
  color: var(--dark-text);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

/* Feature Liste */
.barf-feature-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  text-align: left;
}

.barf-feature-list li {
  padding: 0.5rem 0;
  color: var(--dark-text);
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
}

.barf-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 1.1rem;
}

/* Booking Button */
.barf-btn {
  background-color: var(--primary-color);
  border: none;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  width: 100%;
}

.barf-btn:hover {
  background-color: #8a6454;
  transform: translateY(-2px);
  color: white;
  box-shadow: 0 5px 15px rgba(164, 119, 100, 0.3);
}

/* Zusatzleistungen Sektion */
.barf-zusatz {
  margin-top: 3rem;
}

.barf-zusatz-title {
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}

.barf-zusatz-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  margin: 1rem auto 0;
}

/* Tabelle für Zusatzleistungen */
.barf-table {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.barf-table thead {
  background-color: var(--light-bg);
}

.barf-table th {
  color: var(--primary-color);
  font-weight: 600;
  padding: 1rem;
  border: none;
}

.barf-table td {
  padding: 1rem;
  border-bottom: 1px solid #f1f3f4;
  color: var(--dark-text);
}

.barf-table tr:last-child td {
  border-bottom: none;
}

.barf-table tr:hover {
  background-color: rgba(164, 119, 100, 0.05);
}

/* Rabatt Information */
.barf-rabatt-info {
  color: var(--primary-color);
  font-size: 0.9rem;
  text-align: center;
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--light-bg);
  border-radius: 8px;
  border-left: 4px solid var(--secondary-color);
}

.barf-rabatt-info strong {
  color: var(--primary-color);
  font-weight: 700;
}

/* Info-Boxen für spezielle Hinweise */
.barf-info-box {
  background: #f9fff9;
  border-left: 4px solid #4caf50;
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
}

.barf-info-box h5 {
  color: #2e7d32;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.barf-info-box p {
  margin: 0;
  color: #495057;
  font-size: 0.9rem;
}

/* BARF Grundlagen Sektion */
.barf-grundlagen {
  background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: var(--card-shadow);
  border: 2px solid #4caf50;
}

.barf-grundlagen h4 {
  color: #2e7d32;
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.barf-principles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.barf-principle {
  background: rgba(255, 255, 255, 0.9);
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.barf-principle h6 {
  color: #2e7d32;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.barf-principle p {
  margin: 0;
  color: var(--dark-text);
  font-size: 0.9rem;
}

/* Spezielle Service-Karten Varianten */
.barf-service-card.rationsberechnung .barf-icon {
  background: linear-gradient(45deg, #2196f3, #03a9f4);
}

.barf-service-card.naehrstoffbalance .barf-icon {
  background: linear-gradient(45deg, #00bcd4, #26c6da);
}

.barf-service-card.hygienetipps .barf-icon {
  background: linear-gradient(45deg, #4caf50, #66bb6a);
}

.barf-service-card.einsteigerhilfe .barf-icon {
  background: linear-gradient(45deg, #ff9800, #ffb74d);
}

/* Responsive Design */
@media (max-width: 768px) {
  .barf-container {
    padding: 2rem 0;
  }
  
  .barf-title {
    font-size: 2rem;
  }
  
  .barf-zusatz-title {
    font-size: 1.5rem;
  }
  
  .barf-price {
    font-size: 2.5rem;
  }
  
  .barf-service-card {
    padding: 1.5rem;
  }
  
  .barf-price-card {
    padding: 1.5rem;
  }
  
  .barf-principles {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .barf-title {
    font-size: 1.8rem;
  }
  
  .barf-service-card {
    padding: 1rem;
  }
  
  .barf-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .barf-table th,
  .barf-table td {
    padding: 0.75rem 0.5rem;
    font-size: 0.9rem;
  }
  
  .barf-info-box,
  .barf-grundlagen {
    padding: 1rem;
    margin: 1rem 0;
  }
}

/* ========== ERNÄHRUNGSBERATUNG SPEZIFISCHE CSS KLASSE ========== */

/* Container für die gesamte Ernährungsberatung-Sektion */
.ernaehrungsberatung-container {
  background-color: var(--light-bg);
  padding: 4rem 0;
}

/* Haupttitel für Ernährungsberatung */
.ernaehrungsberatung-title {
  color: var(--primary-color);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.ernaehrungsberatung-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  margin: 1rem auto 0;
}

/* Service-Karten für Ernährungsberatung */
.ernaehrungsberatung-service-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: var(--card-shadow);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.ernaehrungsberatung-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Service Icons für Ernährungsberatung */
.ernaehrungsberatung-icon {
  width: 60px;
  height: 60px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.ernaehrungsberatung-service-card:hover .ernaehrungsberatung-icon {
  transform: scale(1.1);
  background: var(--primary-color);
}

/* Service Titel */
.ernaehrungsberatung-service-title {
  color: var(--primary-color);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Service Beschreibung */
.ernaehrungsberatung-service-description {
  color: var(--dark-text);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Preissektion für Ernährungsberatung */
.ernaehrungsberatung-pricing {
  background: white;
  padding: 4rem 0;
}

/* Preiskarten */
.ernaehrungsberatung-price-card {
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.ernaehrungsberatung-price-card:hover {
  border-color: var(--secondary-color);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Featured Preiskarte */
.ernaehrungsberatung-price-card.featured {
  border-color: var(--secondary-color);
  background: var(--light-bg);
  position: relative;
}

.ernaehrungsberatung-price-card.featured::before {
  content: "BELIEBT";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary-color);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Preisanzeige */
.ernaehrungsberatung-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin: 1rem 0;
}

.ernaehrungsberatung-price-unit {
  font-size: 1rem;
  color: var(--dark-text);
  font-weight: normal;
}

/* Preiskarten Titel */
.ernaehrungsberatung-price-title {
  color: var(--primary-color);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Preiskarten Beschreibung */
.ernaehrungsberatung-price-description {
  color: var(--dark-text);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

/* Feature Liste */
.ernaehrungsberatung-feature-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  text-align: left;
}

.ernaehrungsberatung-feature-list li {
  padding: 0.5rem 0;
  color: var(--dark-text);
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
}

.ernaehrungsberatung-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 1.1rem;
}

/* Booking Button */
.ernaehrungsberatung-btn {
  background-color: var(--primary-color);
  border: none;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  width: 100%;
}

.ernaehrungsberatung-btn:hover {
  background-color: #8a6454;
  transform: translateY(-2px);
  color: white;
  box-shadow: 0 5px 15px rgba(164, 119, 100, 0.3);
}

/* Zusatzleistungen Sektion */
.ernaehrungsberatung-zusatz {
  margin-top: 3rem;
}

.ernaehrungsberatung-zusatz-title {
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}

.ernaehrungsberatung-zusatz-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  margin: 1rem auto 0;
}

/* Tabelle für Zusatzleistungen */
.ernaehrungsberatung-table {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.ernaehrungsberatung-table thead {
  background-color: var(--light-bg);
}

.ernaehrungsberatung-table th {
  color: var(--primary-color);
  font-weight: 600;
  padding: 1rem;
  border: none;
}

.ernaehrungsberatung-table td {
  padding: 1rem;
  border-bottom: 1px solid #f1f3f4;
  color: var(--dark-text);
}

.ernaehrungsberatung-table tr:last-child td {
  border-bottom: none;
}

.ernaehrungsberatung-table tr:hover {
  background-color: rgba(164, 119, 100, 0.05);
}

/* Rabatt Information */
.ernaehrungsberatung-rabatt-info {
  color: var(--primary-color);
  font-size: 0.9rem;
  text-align: center;
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--light-bg);
  border-radius: 8px;
  border-left: 4px solid var(--secondary-color);
}

.ernaehrungsberatung-rabatt-info strong {
  color: var(--primary-color);
  font-weight: 700;
}

/* Info-Boxen für spezielle Hinweise */
.ernaehrungsberatung-info-box {
  background: #fff8f0;
  border-left: 4px solid #ff9800;
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
}

.ernaehrungsberatung-info-box h5 {
  color: #f57c00;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.ernaehrungsberatung-info-box p {
  margin: 0;
  color: #495057;
  font-size: 0.9rem;
}

/* Ernährungsformen Sektion */
.ernaehrungsberatung-nutrition-types {
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: var(--card-shadow);
  border: 2px solid #ff9800;
}

.ernaehrungsberatung-nutrition-types h4 {
  color: #f57c00;
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.nutrition-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.nutrition-type {
  background: rgba(255, 255, 255, 0.9);
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  border: 1px solid rgba(255, 152, 0, 0.3);
}

.nutrition-type h6 {
  color: #f57c00;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.nutrition-type p {
  margin: 0;
  color: var(--dark-text);
  font-size: 0.9rem;
}

/* Spezielle Service-Karten Varianten */
.ernaehrungsberatung-service-card.futterplaene .ernaehrungsberatung-icon {
  background: linear-gradient(45deg, #4caf50, #8bc34a);
}

.ernaehrungsberatung-service-card.allergene .ernaehrungsberatung-icon {
  background: linear-gradient(45deg, #f44336, #ff5722);
}

.ernaehrungsberatung-service-card.futterumstellung .ernaehrungsberatung-icon {
  background: linear-gradient(45deg, #2196f3, #03a9f4);
}

.ernaehrungsberatung-service-card.gesundheit .ernaehrungsberatung-icon {
  background: linear-gradient(45deg, #e91e63, #f06292);
}

/* Responsive Design */
@media (max-width: 768px) {
  .ernaehrungsberatung-container {
    padding: 2rem 0;
  }
  
  .ernaehrungsberatung-title {
    font-size: 2rem;
  }
  
  .ernaehrungsberatung-zusatz-title {
    font-size: 1.5rem;
  }
  
  .ernaehrungsberatung-price {
    font-size: 2.5rem;
  }
  
  .ernaehrungsberatung-service-card {
    padding: 1.5rem;
  }
  
  .ernaehrungsberatung-price-card {
    padding: 1.5rem;
  }
  
  .nutrition-types-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .ernaehrungsberatung-title {
    font-size: 1.8rem;
  }
  
  .ernaehrungsberatung-service-card {
    padding: 1rem;
  }
  
  .ernaehrungsberatung-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .ernaehrungsberatung-table th,
  .ernaehrungsberatung-table td {
    padding: 0.75rem 0.5rem;
    font-size: 0.9rem;
  }
  
  .ernaehrungsberatung-info-box,
  .ernaehrungsberatung-nutrition-types {
    padding: 1rem;
    margin: 1rem 0;
  }
}

/* Modern Shop 2025 - Eigene CSS-Klassen für Shop */

/* =============================================================
   MODERN SHOP CSS – DOG CARE PLUS
   Zwei-Reihen Filter · Kompakt · Merkliste + Warenkorb
   ============================================================= */

.modern-shop {
  --shop-primary: #a47764;
  --shop-secondary: #ffa94a;
  --shop-light-bg: #fff0e5;
  --shop-dark-text: #5a3921;
  --shop-blue: #0c51b9;
  --shop-white: #ffffff;
  --shop-card-bg: #ffffff;
  --shop-surface: #fdf8f4;
  --shop-border: rgba(164, 119, 100, 0.12);
  --shop-gradient-primary: linear-gradient(135deg, var(--shop-primary) 0%, #8a6454 100%);
  --shop-gradient-secondary: linear-gradient(135deg, var(--shop-secondary) 0%, #e6953e 100%);
  --shop-gradient-hero: linear-gradient(160deg, #fff8f2 0%, var(--shop-light-bg) 50%, #fce8d5 100%);
  --shop-radius: 14px;
  --shop-radius-sm: 8px;
  --shop-radius-pill: 50px;
  --shop-shadow-sm: 0 1px 4px rgba(90, 57, 33, 0.05);
  --shop-shadow-md: 0 3px 16px rgba(90, 57, 33, 0.07);
  --shop-shadow-lg: 0 10px 35px rgba(90, 57, 33, 0.11);
  --shop-shadow-hover: 0 16px 44px rgba(90, 57, 33, 0.14);
  --shop-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shop-heart: #e74c3c;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--shop-surface);
}


/* =============================================================
   HERO – kompakt, weniger Abstand
   ============================================================= */
.modern-shop__hero {
  background: var(--shop-gradient-hero);
  padding: 2rem 0 0.6rem;
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}

.modern-shop__hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 169, 74, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.modern-shop__hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.modern-shop__title {
  font-size: clamp(1.6rem, 4.5vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 0.3rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.modern-shop__title-blue {
  background: linear-gradient(135deg, var(--shop-blue) 0%, #1e40af 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.modern-shop__title-orange {
  background: var(--shop-gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.modern-shop__title-suffix {
  background: var(--shop-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.modern-shop__subtitle {
  color: var(--shop-dark-text);
  font-size: 0.95rem;
  font-weight: 400;
  opacity: 0.6;
  margin: 0;
}


/* =============================================================
   FILTER-BAR – zwei Reihen, kein Scrollen
   ============================================================= */
.modern-shop__filter-bar {
  background: var(--shop-white);
  border-bottom: 1px solid var(--shop-border);
  padding: 0.6rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shop-shadow-sm);
}

/* Jede Reihe */
.modern-shop__filter-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0.2rem 0;
}

.modern-shop__filter-row + .modern-shop__filter-row {
  padding-top: 0.15rem;
  border-top: 1px solid rgba(164, 119, 100, 0.06);
  margin-top: 0.2rem;
}

/* Gruppen-Label */
.modern-shop__filter-label {
  color: var(--shop-primary);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.5;
  white-space: nowrap;
  padding-right: 0.15rem;
  user-select: none;
}

/* Filter-Chips */
.modern-shop__filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--shop-border);
  background: var(--shop-white);
  color: var(--shop-dark-text);
  border-radius: var(--shop-radius-sm);
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: var(--shop-transition);
}

.modern-shop__filter-chip i {
  font-size: 0.65rem;
  opacity: 0.5;
}

.modern-shop__filter-chip:hover {
  border-color: var(--shop-secondary);
  background: rgba(255, 169, 74, 0.05);
  color: var(--shop-primary);
}

.modern-shop__filter-chip--active {
  background: var(--shop-gradient-secondary);
  color: var(--shop-white);
  border-color: transparent;
  box-shadow: 0 2px 8px rgba(255, 169, 74, 0.25);
  font-weight: 600;
}

.modern-shop__filter-chip--active i { opacity: 1; }

.modern-shop__filter-chip--active:hover {
  background: var(--shop-gradient-secondary);
  color: var(--shop-white);
}


/* =============================================================
   BAR ACTIONS – Merkliste + Warenkorb (rechts)
   ============================================================= */
.modern-shop__bar-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: auto;
  flex-shrink: 0;
  padding-left: 0.75rem;
}

.modern-shop__bar-action {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--shop-radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--shop-transition);
  white-space: nowrap;
}

.modern-shop__bar-action--merkliste {
  background: rgba(231, 76, 60, 0.06);
  color: var(--shop-heart);
  border: 1px solid rgba(231, 76, 60, 0.15);
}

.modern-shop__bar-action--merkliste:hover {
  background: var(--shop-heart);
  color: var(--shop-white);
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(231, 76, 60, 0.25);
}

.modern-shop__bar-action--merkliste i { font-size: 0.75rem; }

.modern-shop__bar-action--cart {
  background: var(--shop-gradient-primary);
  color: var(--shop-white);
  border: none;
  box-shadow: 0 2px 8px rgba(164, 119, 100, 0.2);
}

.modern-shop__bar-action--cart:hover {
  box-shadow: 0 4px 14px rgba(164, 119, 100, 0.3);
  color: var(--shop-white);
  text-decoration: none;
}

.modern-shop__bar-badge {
  background: var(--shop-secondary);
  color: var(--shop-white);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.05rem 0.4rem;
  border-radius: 12px;
  min-width: 1rem;
  text-align: center;
}


/* =============================================================
   PRODUKT-HEADER – weniger Abstand, hübscher
   ============================================================= */
.modern-shop__main {
  padding: 1.5rem 0 2rem;
}

.modern-shop__products-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.modern-shop__products-title {
  color: var(--shop-primary);
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  font-weight: 800;
  margin-bottom: 0.25rem;
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
}

.modern-shop__products-title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2.5px;
  background: var(--shop-gradient-secondary);
  border-radius: 2px;
}

.modern-shop__products-subtitle {
  color: var(--shop-dark-text);
  font-size: 0.88rem;
  font-weight: 400;
  opacity: 0.55;
  margin-top: 0.5rem;
}


/* =============================================================
   PRODUKT-GRID
   ============================================================= */
.modern-shop__product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
  gap: 1.5rem;
}


/* =============================================================
   PRODUKT-KARTEN
   ============================================================= */
.modern-shop__product-card {
  background: var(--shop-card-bg);
  border-radius: var(--shop-radius);
  box-shadow: var(--shop-shadow-md);
  transition: var(--shop-transition);
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(164, 119, 100, 0.05);
  animation: shopCardIn 0.5s ease both;
}

.modern-shop__product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shop-shadow-hover);
}

.modern-shop__product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2.5px;
  background: var(--shop-gradient-secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: 2;
}

.modern-shop__product-card:hover::before { transform: scaleX(1); }


/* Bild */
.modern-shop__product-image-container {
  position: relative;
  width: 100%;
  padding-top: 82%;
  overflow: hidden;
  background: var(--shop-light-bg);
}

.modern-shop__product-image {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

.modern-shop__product-card:hover .modern-shop__product-image {
  transform: scale(1.05);
}

.modern-shop__product-link {
  text-decoration: none;
  color: inherit;
}

.modern-shop__product-link:hover { text-decoration: none; }
.modern-shop__product-link:hover .modern-shop__product-title { color: var(--shop-secondary); }


/* Merkliste-Herz auf Bild */
.modern-shop__wishlist-form {
  position: absolute;
  top: 10px; left: 10px;
  z-index: 4;
}

.modern-shop__wishlist-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--shop-transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  color: var(--shop-heart);
  font-size: 0.9rem;
}

.modern-shop__wishlist-btn:hover {
  background: var(--shop-heart);
  color: var(--shop-white);
  transform: scale(1.1);
  box-shadow: 0 3px 12px rgba(231, 76, 60, 0.3);
}


/* Overlay */
.modern-shop__product-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(90, 57, 33, 0.4) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1.25rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-decoration: none;
}

.modern-shop__product-card:hover .modern-shop__product-overlay { opacity: 1; }

.modern-shop__quick-view {
  background: var(--shop-white);
  color: var(--shop-primary);
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
  transform: translateY(8px);
  transition: transform 0.25s ease;
}

.modern-shop__product-card:hover .modern-shop__quick-view { transform: translateY(0); }


/* Stock Badge */
.modern-shop__stock-badge {
  position: absolute;
  top: 10px; right: 10px;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.6rem;
  border-radius: var(--shop-radius-pill);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  z-index: 3;
}

.modern-shop__stock-badge--high  { background: #ecfdf5; color: #059669; border: 1px solid #a7f3d0; }
.modern-shop__stock-badge--medium { background: #fffbeb; color: #d97706; border: 1px solid #fde68a; }
.modern-shop__stock-badge--low   { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.modern-shop__stock-badge i { font-size: 0.55rem; }


/* Inhalt */
.modern-shop__product-content {
  padding: 1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.modern-shop__product-title {
  color: var(--shop-dark-text);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.35;
  margin-bottom: 0.35rem;
  transition: color 0.2s;
}

.modern-shop__product-description {
  color: var(--shop-dark-text);
  font-size: 0.8rem;
  line-height: 1.55;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  opacity: 0.55;
  flex: 1;
}


/* Footer: Preis + Actions */
.modern-shop__product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--shop-border);
  margin-top: auto;
}

.modern-shop__product-price {
  color: var(--shop-primary);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.modern-shop__product-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Herz-Button klein */
.modern-shop__action-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--shop-border);
  background: var(--shop-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--shop-transition);
  font-size: 0.82rem;
  padding: 0;
}

.modern-shop__action-btn--wish {
  color: var(--shop-heart);
  border-color: rgba(231, 76, 60, 0.15);
}

.modern-shop__action-btn--wish:hover {
  background: var(--shop-heart);
  color: var(--shop-white);
  border-color: var(--shop-heart);
  transform: scale(1.08);
  box-shadow: 0 2px 10px rgba(231, 76, 60, 0.25);
}

/* Warenkorb-Button */
.modern-shop__add-to-cart {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--shop-gradient-secondary);
  color: var(--shop-white);
  padding: 0.5rem 1rem;
  border-radius: var(--shop-radius-sm);
  font-weight: 600;
  font-size: 0.75rem;
  text-decoration: none;
  transition: var(--shop-transition);
  box-shadow: 0 2px 8px rgba(255, 169, 74, 0.2);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.modern-shop__add-to-cart i { font-size: 0.68rem; }

.modern-shop__add-to-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 16px rgba(255, 169, 74, 0.35);
  text-decoration: none;
  color: var(--shop-white);
}


/* =============================================================
   ANIMATIONEN
   ============================================================= */
@keyframes shopCardIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes shopFadeInUp {
  from { transform: translateY(16px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.modern-shop__product-card:nth-child(1)  { animation-delay: 0.04s; }
.modern-shop__product-card:nth-child(2)  { animation-delay: 0.08s; }
.modern-shop__product-card:nth-child(3)  { animation-delay: 0.12s; }
.modern-shop__product-card:nth-child(4)  { animation-delay: 0.16s; }
.modern-shop__product-card:nth-child(5)  { animation-delay: 0.20s; }
.modern-shop__product-card:nth-child(6)  { animation-delay: 0.24s; }
.modern-shop__product-card:nth-child(7)  { animation-delay: 0.28s; }
.modern-shop__product-card:nth-child(8)  { animation-delay: 0.32s; }
.modern-shop__product-card:nth-child(9)  { animation-delay: 0.36s; }
.modern-shop__product-card:nth-child(10) { animation-delay: 0.40s; }
.modern-shop__product-card:nth-child(11) { animation-delay: 0.44s; }
.modern-shop__product-card:nth-child(12) { animation-delay: 0.48s; }


/* Empty */
.modern-shop__empty {
  text-align: center;
  padding: 3rem 2rem;
  color: var(--shop-dark-text);
  opacity: 0.45;
}

.modern-shop__empty i { font-size: 2.5rem; margin-bottom: 0.75rem; display: block; opacity: 0.3; }


/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1200px) {
  .modern-shop__product-grid {
    grid-template-columns: repeat(auto-fill, minmax(245px, 1fr));
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .modern-shop__hero { padding: 1.5rem 0 0.5rem; }

  .modern-shop__product-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
  }

  .modern-shop__product-content { padding: 0.85rem 1rem 1rem; }

  .modern-shop__bar-action--merkliste span,
  .modern-shop__bar-action--cart span { display: none; }

  .modern-shop__bar-action { padding: 0.3rem 0.55rem; }

  .modern-shop__filter-chip { padding: 0.25rem 0.55rem; font-size: 0.7rem; }
  .modern-shop__filter-label { font-size: 0.6rem; }
}

@media (max-width: 576px) {
  .modern-shop__hero { padding: 1.25rem 0 0.4rem; }
  .modern-shop__title { font-size: 1.5rem; }
  .modern-shop__subtitle { font-size: 0.8rem; }

  .modern-shop__product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }

  .modern-shop__product-image-container { padding-top: 100%; }
  .modern-shop__product-content { padding: 0.6rem 0.75rem 0.85rem; }
  .modern-shop__product-title { font-size: 0.82rem; }
  .modern-shop__product-description { display: none; }

  .modern-shop__product-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
    padding-top: 0.6rem;
  }

  .modern-shop__product-actions { width: 100%; justify-content: space-between; }

  .modern-shop__add-to-cart { flex: 1; justify-content: center; padding: 0.45rem 0.6rem; font-size: 0.7rem; }
  .modern-shop__add-to-cart span { display: none; }
  .modern-shop__add-to-cart::after { content: 'Kaufen'; }

  .modern-shop__product-price { font-size: 1rem; text-align: center; }

  .modern-shop__stock-badge { top: 6px; right: 6px; padding: 0.15rem 0.4rem; font-size: 0.55rem; }
  .modern-shop__stock-badge span { display: none; }

  .modern-shop__wishlist-btn { width: 30px; height: 30px; font-size: 0.78rem; }
  .modern-shop__wishlist-form { top: 6px; left: 6px; }

  .modern-shop__action-btn { width: 30px; height: 30px; font-size: 0.75rem; }

  .modern-shop__filter-row { gap: 0.25rem; }
  .modern-shop__filter-chip { padding: 0.2rem 0.45rem; font-size: 0.65rem; border-radius: 6px; }
  .modern-shop__filter-chip i { display: none; }
  .modern-shop__filter-label { font-size: 0.55rem; }

  .modern-shop__bar-actions { padding-left: 0.4rem; gap: 0.25rem; }
  .modern-shop__bar-badge { font-size: 0.55rem; padding: 0 0.3rem; }

  .modern-shop__products-header { margin-bottom: 1rem; }
  .modern-shop__products-title { font-size: 1.15rem; }
  .modern-shop__products-subtitle { font-size: 0.75rem; margin-top: 0.35rem; }
  .modern-shop__main { padding: 1rem 0 1.5rem; }
}

@media (max-width: 380px) {
  .modern-shop__product-grid { grid-template-columns: 1fr; }
}


/* =============================================================
   ACCESSIBILITY
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .modern-shop *, .modern-shop *::before, .modern-shop *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

.modern-shop__filter-chip:focus-visible,
.modern-shop__add-to-cart:focus-visible,
.modern-shop__bar-action:focus-visible,
.modern-shop__wishlist-btn:focus-visible,
.modern-shop__action-btn:focus-visible {
  outline: 2px solid var(--shop-secondary);
  outline-offset: 2px;
}
/* ========== INDEX-SPEZIFISCHE CSS KLASSEN ========== */

/* Hero Section für Index */
.index-hero-section {
  background: var(--light-bg);
  padding: var(--section-padding);
  position: relative;
}

/* Index Section Title - Zentral und mit korrigiertem orangem Strich */
.index-section-title {
  color: var(--primary-color);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.index-section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* Index Stats Cards mit Animation */
.index-stats-card {
  position: relative;
  border: none;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease;
  height: 100%;
  overflow: hidden;
  background: white;
  z-index: 1;
}

.index-stats-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  z-index: -1;
  background: linear-gradient(45deg, #007bff, #ff7b00, #007bff);
  background-size: 200% 200%;
  border-radius: 14px;
  animation: indexGradientBorder 3s ease infinite;
}

.index-stats-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  border-radius: 12px;
  z-index: -1;
  margin: 2px;
}

.index-stats-card:hover {
  transform: translateY(-5px);
}

@keyframes indexGradientBorder {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Index Team Section */
.index-team-section {
  background-color: var(--light-bg);
  position: relative;
}

.index-team-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  height: 100%;
  background: white;
  opacity: 1;
}

.index-team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.index-team-img-container {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
}

.index-team-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.index-team-card:hover .index-team-img {
  transform: scale(1.05);
}

.index-team-card-body {
  padding: 1.5rem;
}

.index-team-section .row {
  justify-content: center;
}

.index-team-member-name {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.index-team-member-position {
  color: var(--dark-text);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.index-team-social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.index-team-social-links a {
  color: var(--primary-color);
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.index-team-social-links a:hover {
  color: var(--secondary-color);
  transform: translateY(-2px);
}

/* Index Value Cards mit Animation */
.index-value-card {
  position: relative;
  border: none;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease;
  height: 100%;
  overflow: hidden;
  background: white;
  z-index: 1;
}

.index-value-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  z-index: -1;
  background: linear-gradient(45deg, #007bff, #ff7b00, #007bff);
  background-size: 200% 200%;
  border-radius: 14px;
  animation: indexGradientBorder 3s ease infinite;
}

.index-value-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  border-radius: 12px;
  z-index: -1;
  margin: 2px;
}

.index-value-card:hover {
  transform: translateY(-5px);
}

.index-value-card .rounded-circle {
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.index-value-card:hover .rounded-circle {
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Index Square Image Container */
.index-square-image-container {
  position: relative;
  width: 100%;
  padding-top: calc(100% * 3 / 4);
  overflow: hidden;
}

.index-square-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Index Blog Section Animation */
.index-blog-section-animated {
  overflow: hidden;
}

.index-blog-section-animated .index-section-title {
  animation: indexFadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.index-blog-section-animated .card {
  animation: indexSlideInFromLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.2s;
  transform-origin: left center;
}

@keyframes indexSlideInFromLeft {
  0% {
    transform: translateX(-50px) perspective(500px) rotateY(15deg);
    opacity: 0;
    filter: blur(2px);
  }
  100% {
    transform: translateX(0) perspective(500px) rotateY(0);
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes indexFadeInUp {
  0% {
    transform: translateY(15px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Index Calendar Container */
.index-calendar-container {
  margin: 2rem auto;
  max-width: 1000px;
  width: 75%;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.index-calendar-container iframe {
  min-height: 600px;
  width: 75%;
  border: none;
}

/* Index Calendar Widget */
.index-calendar-widget {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  font-family: "Inter", sans-serif;
}

.index-events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 12px;
  margin-top: 1rem;
}

.index-event-card {
  background: var(--light-bg);
  border-radius: 8px;
  padding: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.index-event-card.booked {
  background: #ffebee;
  border-left: 4px solid #f44336;
}

.index-event-card.free {
  background: #e8f5e9;
  border-left: 4px solid #4caf50;
}

.index-event-time {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

/* Team Card Animations */
.index-team-card {
  animation: indexFadeInUp 0.6s ease-out forwards;
}

.index-team-card:nth-child(1) {
  animation-delay: 0.1s;
}

.index-team-card:nth-child(2) {
  animation-delay: 0.3s;
}

.index-team-card:nth-child(3) {
  animation-delay: 0.5s;
}

/* Responsive Design für Index */
@media (max-width: 768px) {
  .index-section-title {
    font-size: 2rem;
  }
  
  .index-calendar-container {
    width: 100%;
    border-radius: 0;
  }

  .index-calendar-container iframe {
    min-height: 400px;
  }
  
  .index-team-member-name {
    font-size: 1.3rem;
  }
  
  .index-team-member-position {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .index-section-title {
    font-size: 1.8rem;
  }
  
  .index-team-card-body {
    padding: 1rem;
  }
}

/* Index specific animations completion */
.index-calendar-section {
  background-color: var(--light-bg);
}

/* Garantiert sichtbare Elemente für Index */
.index-section-title {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.index-square-image-container {
  background: #f8f9fa;
}

.index-square-image {
  object-fit: cover;
}

.card {
  border: none;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

/* Compact Cards Section */
.compact-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.compact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.compact-image-container {
  position: relative;
  width: 100%;
  padding-top: 60%; /* Seitenverhältnis 5:3 - kompakter als quadratisch */
  overflow: hidden;
  background: #f8f9fa;
}

.compact-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
}

.image-placeholder i {
  font-size: 3rem;
  color: #adb5bd;
}

.compact-card .card-body {
  padding: 1rem;
}

.compact-card .card-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.compact-card .btn-sm {
  padding: 0.4rem 1.2rem;
  font-size: 0.85rem;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  .compact-image-container {
    padding-top: 50%; /* Noch kompakter auf Mobile */
  }
}