/* =================================================== */
/* CSS für FAHNDUNGX Shop (Finale Version)             */
/* =================================================== */

/* Allgemeine Variablen (Beispiel, passen Sie diese an Ihre tatsächlichen Werte an) */
:root {
    --primary-blue: #007bff; /* Ein kräftiges Blau */
    --primary-blue-darker: #0056b3; /* Dunkleres Blau für Text in Alerts */
    --dark-blue: #0056b3; /* Etwas dunkler für Hover-Effekte auf Blau */
    --hover-blue: #0056e6; /* Explizit für Button-Hover */
    --success-green: #28a745; /* Ein sattes Grün */
    --dark-green: #1e7e34; /* Dunkleres Grün für Hover-Effekte auf Grün */
    --light-gray: #f8f9fa; /* Sehr helles Grau */
    --dark-gray: #343a40; /* Dunkles Grau für Header/Text */
    --border-color: #dee2e6; /* Standard-Rahmenfarbe */
    --light-blue: #e7f2ff; /* Sehr helles Blau, z.B. für ausgewählte Zahlungsoptionen */
    --text-color: #343a40; /* Standardtextfarbe */
    --light-text-color: #6c757d; /* Hellerer Text, z.B. für durchgestrichen */
    --text-muted: #6c757d; /* Für Bootstrap text-muted Klasse */
    --white: #ffffff; /* Weiß */

    /* Bootstrap-Variablen, die wir überschreiben */
    --bs-border-radius: 0.375rem;
    --bs-border-radius-sm: 0.25rem;
    --bs-card-border-radius: 0.375rem; /* Hinzugefügt für Konsistenz */
    --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

body {
    padding-top: 70px !important;
    background-color: var(--light-gray); /* Einheitlicher Hintergrund für den Body (Standard) */
    font-family: 'Roboto', sans-serif; /* Einheitliche Schriftart */
    color: var(--text-color); /* Standardtextfarbe */
}

/* Zusätzliches Padding für den main-Bereich, um Footer-Überschneidungen zu vermeiden */
main {
    padding-bottom: 3rem; /* Oder passend anpassen, falls der Footer mit margin-top Abstand hat */
}

/* Neue allgemeine Hintergrundfarben für Sektionen */
.bg-light-gray { /* Korrigiert, um direkt die Variable zu verwenden */
    background-color: var(--light-gray) !important;
}
.bg-light-blue-custom { /* Um Konflikte zu vermeiden, benenne ich es um */
    background-color: #e3f2fd !important; /* Ein sehr helles Blau für Akzente */
}

#bestellen .row > .col-lg-6 {
    padding-left: 15px;
    padding-right: 15px;
}

/* --- Header & Navigation --- */
nav.navbar {
    background-color: #0866FF !important;
    position: fixed !important;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}
.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 400; /* Standardgewicht */
}
.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--white) !important;
}
/* --- Hero-Bereich (Services Seite und Index Seite) --- */
.page-hero {
    background-color: #DBECFC;
    border-bottom: 1px solid var(--border-color);
    padding: 6rem 0; /* Mehr Polsterung */
}
.page-hero h1 {
    color: #0056B3;
}
.page-hero .btn-primary {
    background-color: #0866FF;
    border-color: #0866FF;
    transition: all 0.3s ease;
}
.page-hero .btn-primary:hover {
    background-color: #0056e6;
    border-color: #0056e6;
    transform: translateY(-2px); /* Leichter Schwebe-Effekt */
}

/* --- Produkt-Konfigurator (Linke Seite auf index.php: product-gallery) --- */
.product-gallery {
    background-color: var(--white); /* Weißer Hintergrund für die Galerie */
    border: 1px solid var(--border-color); /* Leichte Umrandung */
    border-radius: .75rem; /* Etwas stärker abgerundete Ecken */
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.08); /* Prägnanterer Schatten */
    padding: 1.5rem; /* Innenabstand */
    display: flex;
    flex-direction: row; /* Wichtig: Elemente nebeneinander */
    align-items: flex-start; /* **KORRIGIERT**: Richtet alle Flex-Items (Hauptbild-Wrapper und Thumbnails) am oberen Rand aus */
    flex-grow: 1; /* Wichtig: Lässt die Galerie die verfügbare Höhe ausfüllen */
    max-width: 100%; /* Stellt sicher, dass es in der Spalte bleibt */
    height: auto; /* **KORRIGIERT**: Höhe wird dynamisch angepasst */
}

/* Wrapper für das Hauptproduktbild */
.product-image-wrapper {
    position: relative;
    width: 100%; /* Nimmt die Breite der Galerie ein */
    padding-top: 100%; /* **KORRIGIERT**: Reduzierte Padding für bessere Skalierung */
    overflow: hidden;
    border-radius: .5rem;
    margin-bottom: 1rem;
    flex-shrink: 0;
    display: flex; /* Flexbox für die Zentrierung des Bildes */
    justify-content: center;
    align-items: center;
    min-height: 300px; /* **NEU**: Mindesthöhe für das Hauptbild */
}

.main-product-image {
    position: absolute; /* Positioniert das Bild innerhalb des Wrappers */
    top: 50%; /* **KORRIGIERT**: Vertikale Zentrierung */
    left: 50%; /* **KORRIGIERT**: Horizontale Zentrierung */
    transform: translate(-50%, -50%); /* **KORRIGIERT**: Korrigiert die Positionierung für die Mitte */
    object-fit: contain; /* Bild wird skaliert, sodass es in die Box passt, ohne zu verzerren */
    max-width: 100%; /* Verhindert, dass das Bild über den Container hinausgeht */
    max-height: 100%; /* Verhindert, dass das Bild über den Container hinausgeht */
    background-color: transparent !important; /* Wichtig für transparente PNGs */
    border-radius: .375rem;
}

.product-thumbnails-container {
    flex-wrap: wrap;
    gap: 0.5rem;
    display: flex;
    flex-direction: column;
}

.product-thumbnail {
    cursor: pointer;
    border: 3px solid #e9ecef;
    transition: border-color 0.2s ease, transform 0.2s ease;
    width: 70px;
    height: 70px;
    object-fit: contain; /* **KORRIGIERT**: Passend für Thumbnails */
    padding: 2px;
    border-radius: .375rem;
    background-color: transparent !important;
}
.product-thumbnail.active {
    transform: scale(1.05);
}
.product-thumbnail:hover {
    transform: scale(1.05);
}


/* Kauf-Box (rechte Seite auf index.php) */
.purchase-card {
    border: 1px solid var(--border-color);
    border-radius: .75rem;
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.08);
    background-color: var(--white);
    display: flex;
    flex-direction: column;
}
.purchase-card h2 {
    color: var(--text-color);
}
.purchase-card .form-label {
    color: var(--text-color);
}
.purchase-card .btn-primary {
    background-color: #0866FF;
    border-color: #0866FF;
    font-size: 1.25rem;
    padding: 0.8rem 1.5rem;
    transition: all 0.3s ease;
}
.purchase-card .btn-primary:hover {
    background-color: #0056e6;
    border-color: #0056e6;
    transform: translateY(-2px);
}
.purchase-card .btn-outline-dark, .purchase-card .btn-outline-danger {
    transition: all 0.2s ease;
}
.purchase-card .btn-check:checked + .btn-outline-dark {
    background-color: var(--dark-gray);
    color: var(--white);
    border-color: var(--dark-gray);
}
.purchase-card .btn-check:checked + .btn-outline-danger {
    background-color: #dc3545;
    color: var(--white);
    border-color: #dc3545;
}


/* --- Full-Width Teaser Bereich (auf index.php und services.php) --- */
.full-width-teaser {
    background: linear-gradient(135deg, #0866FF 0%, #0056e6 100%);
    padding: 5rem 0;
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.full-width-teaser .section-title {
    color: var(--white) !important;
    margin-bottom: 1.5rem;
    font-size: 2.8rem;
}
.full-width-teaser .lead {
    color: rgba(255, 255, 255, 0.8) !important;
}

.teaser-device-item {
    margin-bottom: 2rem;
}
.teaser-device-item .device-image-circle {
    width: 120px;
    height: 120px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1rem auto;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}
.teaser-device-item .device-image-circle:hover {
    transform: translateY(-5px) scale(1.05);
}
.teaser-device-item img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    background-color: transparent !important;
    filter: drop-shadow(0 0 5px rgba(0,0,0,0.3));
}
.teaser-device-item p {
    font-size: 1rem;
}


/* Kompaktere Feature Boxen für den Teaser (allgemein) */
.feature-box-compact {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: .75rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
}
.feature-box-compact:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
.feature-box-compact .feature-icon {
    font-size: 3rem;
    color: #0866FF;
    margin-bottom: 1rem;
}
.feature-box-compact h5 {
    color: var(--text-color);
    font-weight: 600;
}
.feature-box-compact p {
    color: var(--light-text-color);
    font-size: 0.9rem;
}


/* Kompaktere Spec Boxen für den Teaser */
.spec-boxes-teaser {
    margin-top: 3rem;
}
.spec-box-compact {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: .75rem;
    border: 1px solid #e0e6eb;
    box-shadow: 0 0.15rem 0.3rem rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.2rem;
}
.spec-box-compact:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.06);
}
.spec-box-compact .spec-icon {
    font-size: 2rem;
    color: #0866FF;
    margin-bottom: 0.8rem;
}
.spec-box-compact h6 {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 0.3rem;
}
.spec-box-compact p {
    color: var(--light-text-color);
    font-size: 0.85rem;
}

/* --- Footer --- */
footer {
    background-color: var(--light-gray) !important;
    border-top: 1px solid #e9ecef;
    padding: 2rem 0 !important;
    margin-top: 5rem !important; /* Sicherstellen, dass der Footer genügend Abstand hat */
}
footer p {
    font-size: 0.9rem;
    color: var(--light-text-color) !important;
}
footer a {
    color: #0866FF !important;
    text-decoration: none;
    transition: color 0.2s ease;
}
footer a:hover {
    color: #0056e6 !important;
    text-decoration: underline;
}
footer strong {
    color: var(--text-color);
}


/* =================================================== */
/* Allgemeine Styles für Überschriften und Sektionen   */
/* =================================================== */
.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #0866FF;
}
/* Anpassung für kleinere Überschriften in Sektionen */
h3.fw-bold {
    font-size: 2rem; /* Etwas größer für bessere Prägnanz */
}


/* =================================================== */
/* Styles für Service-Seite (services.php)             */
/* =================================================== */

/* Image Placeholder Styles (für Services Seite) */
.image-placeholder {
    background-color: #e9ecef;
    border: 1px dashed #ced4da;
    color: var(--light-text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 250px; /* Mindesthöhe für Platzhalter */
    font-style: italic;
    border-radius: .75rem;
}

/* Feature-Karten für die Notrufzentrale (größer und prominenter) */
.feature-card-elevated {
    background-color: var(--white); /* Weißer Hintergrund */
    border: 1px solid #e0e6eb; /* Leichter Rand */
    border-radius: .75rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08); /* Deutlicherer Schatten */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 2rem; /* Mehr Innenabstand */
}
.feature-card-elevated:hover {
    transform: translateY(-7px);
    box-shadow: 0 0.8rem 1.6rem rgba(0, 0, 0, 0.12);
}
.feature-card-elevated .card-icon {
    font-size: 4rem; /* Sehr großes Icon */
    margin-bottom: 1rem;
    color: #0866FF; /* Akzentfarbe */
}
.feature-card-elevated h5 {
    font-size: 1.5rem;
    color: var(--text-color);
}
.feature-card-elevated p {
    font-size: 1rem;
    color: var(--light-text-color);
}


/* Feature-Karten für den Auskunftsdienst (kompakter) */
.feature-card-small {
    background-color: var(--white); /* Weißer Hintergrund */
    border: 1px solid #e0e6eb;
    border-radius: .5rem;
    box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.05); /* Dezenterer Schatten */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    padding: 1rem;
}
.feature-card-small:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.08);
}
.feature-card-small .card-body {
    padding: 0 !important; /* Kein Standard-Padding von Bootstrap Card-body */
    display: flex; /* Flexbox für Icon und Text im Center */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 90px; /* Mindesthöhe, damit alle Karten gleich hoch sind */
}
.feature-card-small .card-icon {
    font-size: 2.5rem; /* Icon-Größe */
    margin-bottom: 0.5rem;
    color: #0866FF; /* Akzentfarbe */
}
.feature-card-small h6 {
    font-size: 0.9rem; /* Kleinere Überschrift */
    color: var(--text-color);
    font-weight: 600;
    line-height: 1.2; /* Zeilenhöhe für besseren Textfluss */
}
.feature-card-small p {
    font-size: 0.8rem;
    color: var(--light-text-color);
}

/* Pricing Table (Allgemeine Anpassungen) */
.pricing-table {
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    overflow: hidden;
    /* Box-shadow wird jetzt von der .card-Klasse übernommen */
}
.pricing-table .list-group-item {
    border-left: none;
    border-right: none;
    padding: 1.25rem 1.5rem; /* Einheitliches Padding */
}
.pricing-header {
    background-color: #0866FF !important; /* Passt zur Akzentfarbe */
    color: var(--white) !important;
    padding: 1.5rem !important; /* Etwas mehr Padding */
}
.pricing-header h4 {
    font-size: 1.75rem;
    font-weight: 700;
}

/* =================================================== */
/* Styles für Checkout-Schritte (Checkout allgemein)   */
/* =================================================== */

/* Hero-Bereich (Header der Seite) */
/* Dies überschreibt den generischen .page-hero für Checkout-Seiten */
.page-hero.checkout-hero { /* NEUE KLASSE HINZUGEFÜGT, um spezifisch zu sein */
    background-color: var(--light-gray); /* Hintergrundfarbe aus custom-shop.css */
    padding-top: 3rem;
    padding-bottom: 3rem;
    margin-bottom: 3rem; /* Abstand nach unten zum Inhalt */
    border-bottom: none; /* Keine Unterlinie, da Stepper direkt darunter ist */
}

/* --- Checkout-Stepper --- */
.checkout-stepper {
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin-bottom: 3rem;
    list-style: none;
    position: relative;
    padding-inline-start: 0; /* Webkit-Browser Fix */
}

.checkout-stepper:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: var(--border-color);
    top: 25px;
    z-index: 1;
}

.checkout-stepper .step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.checkout-stepper .step-icon {
    width: 50px;
    height: 50px;
    background-color: var(--border-color);
    color: var(--light-text-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}

.checkout-stepper .step-text {
    font-size: 0.875rem;
    color: var(--light-text-color);
    font-weight: 500;
    margin-top: 0.5rem;
    transition: color 0.3s;
}

/* Aktiver Schritt */
.checkout-stepper .step.active .step-icon {
    background-color: var(--primary-blue);
    color: var(--white);
}

.checkout-stepper .step.active .step-text {
    color: var(--primary-blue);
}

/* Abgeschlossener Schritt */
.checkout-stepper .step.completed .step-icon {
    background-color: var(--success-green);
    color: var(--white);
}


/* --- Service-Optionen als Karten (checkout_services.php) --- */
.service-option-card .form-check {
    height: 100%;
}

.service-option-card .form-check-label {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    cursor: pointer;
    padding: 0 !important;
    text-align: center;
    border: 2px solid var(--border-color);
    border-radius: var(--bs-card-border-radius);
    transition: all 0.2s ease-in-out;
}

.service-option-card .form-check-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.service-option-card .form-check-input:checked + .form-check-label {
    border-color: var(--primary-blue);
    background-color: var(--light-blue);
    box-shadow: 0 0.5rem 1rem rgba(0, 123, 255, 0.15) !important;
}

.service-option-card .card-body {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.service-option-card .card-icon {
    line-height: 1;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

/* Sim-Karten Info im Service-Block */
.sim-info-block {
    color: var(--success-green);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 1rem;
}

.sim-info-block.text-muted {
    color: var(--text-muted) !important;
}


/* Laufzeit-Optionen Container */
.laufzeit-options {
    transition: opacity 0.3s ease-in-out;
}

.laufzeit-options.disabled {
    opacity: 0.5;
    pointer-events: none;
}

/* Laufzeit Radio-Buttons als Bootstrap Buttons */
.laufzeit-options .btn-check:checked + .btn-outline-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 0.5rem 1rem rgba(0, 123, 255, 0.15) !important;
}

.laufzeit-options .btn-check:checked + .btn-outline-primary .badge {
    background-color: var(--white) !important;
    color: var(--primary-blue) !important;
}

.laufzeit-options .btn-outline-primary:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.laufzeit-options .btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

/* Warenkorb-Zusammenfassung (allgemeiner für alle Checkout-Seiten) */
.cart-summary-wrapper .card-header {
    background-color: var(--dark-gray) !important;
}

.cart-summary-wrapper .card-header h5 {
    color: var(--white) !important;
}

.cart-summary-wrapper .list-group-item {
    background-color: transparent;
    border-color: var(--border-color);
    padding-left: 0;
    padding-right: 0;
}

.cart-summary-wrapper .list-group-item:last-child {
    border-bottom: 0;
}

.cart-summary-wrapper .text-success {
    color: var(--success-green) !important;
}

/* Gesamtbetrag hervorheben */
.cart-summary-wrapper .list-group-item.bg-light-blue-custom { /* Umbenannt */
    background-color: var(--light-blue) !important;
    color: var(--primary-blue);
    font-size: 1.25rem;
}

.cart-summary-wrapper .sticky-top {
    position: sticky;
    top: 20px;
    z-index: 1000;
}

/* =================================================== */
/* Styles spezifisch für checkout_summary.php          */
/* =================================================== */

.summary-section {
    border: 1px solid var(--border-color);
    border-radius: var(--bs-border-radius);
    padding: 1.5rem;
    background-color: var(--white);
    box-shadow: var(--bs-box-shadow-sm);
}
.info-section {
    padding: 1rem 0;
}
.info-section h5 {
    color: var(--text-color);
    font-weight: 600;
    border-bottom: 2px solid var(--primary-blue);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    display: flex; /* Für Icon und Text in einer Linie */
    align-items: center; /* Vertikale Zentrierung des Icons */
}
.info-section h5 .fas {
    margin-right: 0.5rem; /* Abstand zwischen Icon und Text */
}
.info-section p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-color);
}
.list-group-item-summary {
    font-size: 0.95rem;
    color: var(--text-color);
    background-color: transparent;
    border-color: var(--border-color);
}
.list-group-item-summary:last-child {
    border-bottom: 0;
}
/* Spezieller Stil für die Gesamtsummenzeile */
.list-group-item-light { /* Sollte light-gray sein */
    background-color: var(--light-gray) !important;
    border-radius: var(--bs-border-radius-sm);
    margin-top: 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 1.1rem !important;
}
.strikethrough {
    text-decoration: line-through;
    color: var(--light-text-color) !important;
}

.alert-info {
    --bs-alert-color: var(--primary-blue-darker);
    --bs-alert-bg: var(--light-blue);
    --bs-alert-border-color: var(--primary-blue);
}

/* Sticky Checkout Summary (Rechts) */
.summary-sidebar {
    position: sticky;
    top: 20px; /* Abstand vom oberen Rand */
}


/* =================================================== */
/* Allgemeine Text- und Button-Farb-Anpassungen        */
/* =================================================== */

.text-primary {
    color: var(--primary-blue) !important;
}
.text-muted {
    color: var(--text-muted) !important;
}
.text-dark {
    color: #0866FF !important;
}
.bg-light-gray { /* Diese Klasse sollte die Variable nutzen, wenn sie als Utility-Klasse genutzt wird */
    background-color: var(--light-gray) !important;
}
.bg-success {
    background-color: var(--success-green) !important;
}

/* Button Stile */
.btn-primary {
    --bs-btn-color: var(--white);
    --bs-btn-bg: var(--primary-blue);
    --bs-btn-border-color: var(--primary-blue);
    --bs-btn-hover-color: var(--white);
    --bs-btn-hover-bg: var(--hover-blue);
    --bs-btn-hover-border-color: var(--hover-blue);
    --bs-btn-active-color: var(--white);
    --bs-btn-active-bg: var(--hover-blue);
    --bs-btn-active-border-color: var(--hover-blue);
    font-weight: bold;
    transition: all 0.2s ease-in-out;
}
.btn-outline-primary {
    --bs-btn-color: var(--primary-blue);
    --bs-btn-border-color: var(--primary-blue);
    --bs-btn-hover-color: var(--white);
    --bs-btn-hover-bg: var(--primary-blue);
    --bs-btn-hover-border-color: var(--primary-blue);
    --bs-btn-active-color: var(--white);
    --bs-btn-active-bg: var(--primary-blue);
    --bs-btn-active-border-color: var(--primary-blue);
    font-weight: bold;
    transition: all 0.2s ease-in-out;
}
.btn-outline-secondary {
    --bs-btn-color: var(--dark-gray);
    --bs-btn-border-color: var(--dark-gray);
    --bs-btn-hover-color: var(--white);
    --bs-btn-hover-bg: var(--dark-gray);
    --bs-btn-hover-border-color: var(--dark-gray);
    --bs-btn-active-color: var(--white);
    --bs-btn-active-bg: var(--dark-gray);
    --bs-btn-active-border-color: var(--dark-gray);
    font-weight: bold;
    transition: all 0.2s ease-in-out;
}
.btn-success {
    --bs-btn-color: var(--white);
    --bs-btn-bg: var(--success-green);
    --bs-btn-border-color: var(--success-green);
    --bs-btn-hover-color: var(--white);
    --bs-btn-hover-bg: var(--dark-green);
    --bs-btn-hover-border-color: var(--dark-green);
    --bs-btn-active-color: var(--white);
    --bs-btn-active-bg: var(--dark-green);
    --bs-btn-active-border-color: var(--dark-green);
    font-weight: bold;
    transition: all 0.2s ease-in-out;
}
.badge.bg-success {
    background-color: var(--success-green) !important;
    color: white !important;
}
.hover-link-primary:hover {
    color: var(--primary-blue) !important;
}

/* Styling für den Reviews-Slider */
.review-box {
    max-width: 800px;
    background-color: #f8f9fa;
    border-radius: 10px;
}
.review-quote i {
    color: var(--bs-primary); /* Passt sich Ihrer Bootstrap-Primärfarbe an */
}
.carousel-control-prev, .carousel-control-next {
    width: 5%;
}
.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: #6c757d;
    border-radius: 50%;
    padding: 10px;
}

/* =================================================== */
/* Responsivität Anpassungen                           */
/* =================================================== */
@media (min-width: 992px) { /* Nur für Large Desktops und aufwärts */
    .product-image-wrapper {
        max-width: 497px;
        width: 100%;
        padding-top: calc(502 / 497 * 100%);
    }
    .col-lg-6.d-flex.justify-content-center {
        display: flex;
        justify-content: center;
    }
}

.btn-outline-primary { position: relative; }

@media (max-width: 991.98px) { /* Für Tablets und Mobilgeräte */
    .page-hero {
        padding: 4rem 0;
    }
    .page-hero h1 {
        font-size: 2.5rem;
    }
    .page-hero p {
        font-size: 1rem;
    }

    /* Textausrichtung auf Mobilgeräten */
    #notrufzentrale-section .text-lg-start,
    #auskunftsdienst-section .text-lg-start {
        text-align: center !important;
    }

    .image-placeholder {
        margin-top: 2rem;
        height: 200px !important;
    }

    .product-image-wrapper {
        width: 100%;
        padding-top: 75%;
        margin-bottom: 1rem;
    }
    .main-product-image {
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    .product-thumbnails-container {
        justify-content: center;
    }
    .product-thumbnail {
        width: 60px;
        height: 60px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    h3.fw-bold {
        font-size: 1.75rem;
    }

    .full-width-teaser {
        padding: 3rem 0;
    }
    .full-width-teaser .section-title {
        color: var(--white) !important;
        font-size: 2rem;
    }
    .teaser-device-item {
        margin-bottom: 1.5rem;
    }
    .teaser-device-item .device-image-circle {
        width: 90px;
        height: 90px;
    }
    .feature-box-compact, .spec-box-compact {
        padding: 1rem;
    }
    .feature-box-compact .feature-icon, .spec-box-compact .feature-icon {
        font-size: 2.5rem;
    }

    /* Mobile Anpassungen für Feature Cards auf Services Seite */
    .feature-card-elevated {
        padding: 1.5rem;
    }
    .feature-card-elevated .card-icon {
        font-size: 3rem;
    }
    .feature-card-elevated h5 {
        font-size: 1.3rem;
    }
    .feature-card-elevated p {
        font-size: 0.9rem;
    }

    .feature-card-small {
        padding: 0.75rem;
    }
    .feature-card-small .card-body {
        min-height: 70px;
    }
    .feature-card-small .card-icon {
        font-size: 2rem;
    }
    .feature-card-small h6 {
        font-size: 0.8rem;
    }
    .pricing-table .list-group-item {
        font-size: 0.9rem;
        padding: 1rem;
    }
    .pricing-table .list-group-item span.fs-5, .pricing-table .list-group-item div.fs-5 {
        font-size: 1.1rem !important;
    }
    .pricing-header h4 {
        font-size: 1.5rem;
    }

    /* Fix für Stepper auf kleineren Bildschirmen */
    .checkout-stepper .step-text {
        font-size: 0.75rem; /* Etwas kleiner für besseren Platz */
    }
    .checkout-stepper .step-icon {
        width: 40px; /* Kleinere Icons */
        height: 40px;
        top: 20px; /* Position des Strichs anpassen */
    }
    .checkout-stepper:before {
        top: 20px; /* Position des Strichs anpassen */
    }
}