  :root {
            --brand-primary: #68AB03;
            --brand-secondary: #DFC184;
            --brand-accent: #70A91E;
        }
        
        /* Body Background */
        body {
            background-color: #f4f1ec;
            font-size: 14px;
            scroll-behavior: smooth;
            overflow-x: hidden; /* Verhindert horizontales Scrollen global */
            width: 100%;
        }
        
        /* Smooth Page Transitions - Fade-In für Content */
        html {
            scroll-behavior: smooth;
            overflow-x: hidden; /* Zusätzliche Sicherheit */
        }
        
        /* Content Area mit sanftem Fade-In (ohne Transform-Verschiebung) */
        .content-area {
            background-color: #f4f1ec;
            min-height: calc(100vh ); /* Höhe bis zum Main-Bereich */
            overflow-x: hidden; /* Verhindert, dass Inhalte den Bereich sprengen */
            max-width: 100%; /* Sicherstellen, dass die Breite nicht überschritten wird */
        }
        
        /* Sanftes Fade-In ohne Transform (verhindert Schütteln) */
        .content-area.page-loaded {
            animation: fadeInContent 0.4s ease-in-out;
            animation-fill-mode: forwards;
        }
        
        @keyframes fadeInContent {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        /* Verhindere Springen beim Seitenwechsel */
        body.page-loading {
            overflow: hidden;
        }
        
        /* Card Backgrounds */
        .card {
            background-color: #f4f1ec !important;
        }
        
        .card-body {
            background-color: #f4f1ec !important;
        }
        
        /* Container - transparent to show body background */
        .container {
            background-color: transparent;
        }
        
        /* Remove borders and shadows from header container */
        .navbar .container {
            border-left: none !important;
            border-right: none !important;
            box-shadow: none !important;
        }
        
        .navbar {
            box-shadow: none !important;
        }
        
        /* Main and Offcanvas Backgrounds */
        main {
            background-color: transparent;
        }
        
        .offcanvas-body {
            background-color: #f4f1ec !important;
        }
        
        .offcanvas {
            background-color: #f4f1ec !important;
        }
        
		.blocksatz {
			hyphens: auto;
			-webkit-hyphens: auto;			
			text-align: justify;
		}
        /* Header Styles */
        .navbar {
            border-bottom: 3px solid var(--brand-primary);
        }
        
        /* Akkordeon Styling für Granitpflaster */
        #granitCalculatorAccordion .accordion-item {
            background-color: #D9D2C6;
        }
        
        #granitCalculatorAccordion .accordion-button {
            background-color: #D9D2C6 !important;
            padding: 0.5rem 1rem;
        }
        
        #granitCalculatorAccordion .accordion-button:not(.collapsed) {
            background-color: #D9D2C6 !important;
            color: inherit;
        }
        
        #granitCalculatorAccordion .accordion-button:focus {
            box-shadow: none;
        }
        
        /* Akkordeon Styling für Sandsteinpflaster */
        #sandsteinCalculatorAccordion .accordion-item {
            background-color: #D9D2C6;
        }
        
        #sandsteinCalculatorAccordion .accordion-button {
            background-color: #D9D2C6 !important;
            padding: 0.5rem 1rem;
        }
        
        #sandsteinCalculatorAccordion .accordion-button:not(.collapsed) {
            background-color: #D9D2C6 !important;
            color: inherit;
        }
        
        #sandsteinCalculatorAccordion .accordion-button:focus {
            box-shadow: none;
        }
        
        /* Akkordeon Styling für Granitmauersteine */
        #granitMauerCalculatorAccordion .accordion-item {
            background-color: #D9D2C6;
        }
        
        #granitMauerCalculatorAccordion .accordion-button {
            background-color: #D9D2C6 !important;
            padding: 0.5rem 1rem;
        }
        
        #granitMauerCalculatorAccordion .accordion-button:not(.collapsed) {
            background-color: #D9D2C6 !important;
            color: inherit;
        }
        
        #granitMauerCalculatorAccordion .accordion-button:focus {
            box-shadow: none;
        }
        
        /* Akkordeon Styling für Sandsteinmauersteine */
        #sandsteinMauerCalculatorAccordion .accordion-item {
            background-color: #D9D2C6;
        }
        
        #sandsteinMauerCalculatorAccordion .accordion-button {
            background-color: #D9D2C6 !important;
            padding: 0.5rem 1rem;
        }
        
        #sandsteinMauerCalculatorAccordion .accordion-button:not(.collapsed) {
            background-color: #D9D2C6 !important;
            color: inherit;
        }
        
        #sandsteinMauerCalculatorAccordion .accordion-button:focus {
            box-shadow: none;
        }
        
        /* Langsamere Akkordeon-Animationen für alle 4 Akkordeons */
        #granitCalculatorAccordion .accordion-collapse,
        #sandsteinCalculatorAccordion .accordion-collapse,
        #granitMauerCalculatorAccordion .accordion-collapse,
        #sandsteinMauerCalculatorAccordion .accordion-collapse {
            transition: height 0.8s ease !important;
        }
        
        #granitCalculatorAccordion .accordion-collapse.collapsing,
        #sandsteinCalculatorAccordion .accordion-collapse.collapsing,
        #granitMauerCalculatorAccordion .accordion-collapse.collapsing,
        #sandsteinMauerCalculatorAccordion .accordion-collapse.collapsing {
            transition: height 0.8s ease !important;
        }
        
        .navbar-brand img {
            max-height: 60px;
            width: auto;
        }
        .navbar-nav .nav-link {
            color: #333 !important;
            font-weight: bold;
            transition: color 0.3s ease;
            padding-top: 0.5rem !important;
            padding-bottom: 0.5rem !important;
            line-height: 1.2 !important;
        }
        .navbar-nav .nav-link:hover {
            color: #0066cc !important;
        }
        .navbar-toggler {
            border-color: var(--brand-primary);
        }
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(104, 171, 3, 0.25);
        }
        
        /* Brand Colors */
        .btn-primary { background-color: var(--brand-primary); border-color: var(--brand-primary); }
        .btn-primary:hover { background-color: #5a9402; border-color: #5a9402; }
        .text-primary { color: var(--brand-primary) !important; }
        .border-primary { border-color: var(--brand-primary) !important; }
        .bg-brand { background-color: var(--brand-secondary); }

        /* Sidebar Styles - Linksbündig und scrollend */
        .sidebar {
            position: static !important;
            height: auto !important;
        }
        
        .sidebar-nav {
            text-align: left;
            position: static !important;
        }
        
        .sidebar-nav .nav-link {
            color: #333;
            border-bottom: 1px dotted #000;
            padding: 10px 0px 10px 3px;
            font-size: 14px;
            transition: background-color 0.3s ease;
            text-align: left;
            width: 100%;
            display: block;
        }
        
        .sidebar-nav .nav-link:hover { 
            background-color: var(--brand-secondary);
            text-decoration: none;
        }
        
        .sidebar-section-title {
            background-color: transparent;
            border-bottom: 4px solid var(--brand-primary);
            font-size: 14px;
            font-weight: bold;
            margin-left: 0;
            margin-bottom: 10px;
            padding-left: 0;
            width: 100%;
            text-align: left;
        }
        
        .sidebar-section {
            margin-bottom: 2rem;
        }
        
        .sidebar-nav .nav {
            padding-left: 0;
        }
        
        .sidebar-nav .nav-item {
            margin-bottom: 0;
        }
        
        /* Sidebar Search Styles */
        .sidebar-section .input-group {
            border-radius: 0.375rem;
        }
        
        .sidebar-section .form-control {
            border-color: #ddd;
            font-size: 13px !important;
        }
        
        .sidebar-section .form-control:focus {
            border-color: var(--brand-primary);
            box-shadow: 0 0 0 0.2rem rgba(104, 171, 3, 0.25);
        }
        
        .sidebar-section .btn-outline-primary:hover {
            background-color: var(--brand-primary);
            border-color: var(--brand-primary);
            color: white;
        }
        
        /* Active Navigation States */
        .nav-link.active {
            background-color: var(--brand-primary) !important;
            color: white !important;
            font-weight: bold;
            padding-top: 0.5rem !important;
            padding-bottom: 0.5rem !important;
            line-height: 1.2 !important;
        }
        
        .navbar-nav .nav-link.active {
            font-weight: bold !important;
        }
        
        .navbar-nav .nav-item .small {
            margin-top: 0.2rem !important;
            display: block !important;
            position: relative !important;
        }
        
        .navbar-nav .nav-item.active .small {
            border-bottom-color: var(--brand-primary) !important;
            color: var(--brand-primary) !important;
            margin-top: 0.2rem !important;
        }
        
        .navbar-nav .nav-item > div {
            display: flex;
            flex-direction: column;
        }
        
        .navbar-nav .nav-link {
            margin-bottom: 0 !important;
        }
        
        .sidebar-nav .nav-link.active {
            background-color: var(--brand-primary) !important;
            color: white !important;
            padding-left: 10px !important;
        }
        
        /* Content Section Backgrounds */
        .content-section {
            background-color: #f4f1ec;
        }
        
        /* List Group Backgrounds */
        .list-group {
            background-color: #f4f1ec;
        }
        
        .list-group-item {
            background-color: #f4f1ec !important;
        }
        
        /* Alert Backgrounds - keep colored alerts but make light alerts match background */
        .alert-light {
            background-color: #f4f1ec !important;
            border: none !important;
            box-shadow: none !important;
        }
        
        /* Remove borders and shadows from all alerts on contact page */
        .alert {
            border: none !important;
            box-shadow: none !important;
        }
        
        /* Remove border-bottom from alert-heading */
        .alert-heading.border-bottom {
            border-bottom: none !important;
        }
        
        /* Remove bg-light background */
        .bg-light {
            background-color: #f4f1ec !important;
        }
        
        /* Table Styles - Zebra Striping */
        .table {
            background-color: #f4f1ec !important;
        }
        
        /* Zebra striping for all table rows - odd rows */
        .table tbody tr:nth-child(odd),
        .table.table-striped tbody tr:nth-child(odd),
        .table thead.table-dark ~ tbody tr:nth-child(odd) {
            background-color: #f4f1ec !important;
        }
        
        /* Zebra striping for all table rows - even rows (stronger contrast) */
        .table tbody tr:nth-child(even),
        .table.table-striped tbody tr:nth-child(even),
        .table thead.table-dark ~ tbody tr:nth-child(even) {
            background-color: #d9d1c5 !important;
        }
        
        .table td,
        .table th {
            background-color: transparent !important;
        }
        
        .table thead th,
        .table thead.table-secondary th {
            background-color: #d6d0c7 !important;
        }
        
        .table-secondary {
            background-color: #d6d0c7 !important;
        }
        
        /* Table-dark (white headers) - change to gray */
        .table-dark,
        .table-dark thead th {
            background-color: #6c7a89 !important;
            color: #fff !important;
        }
        
        .table thead.table-dark th {
            background-color: #6c7a89 !important;
            color: #fff !important;
        }
        
        /* Ensure zebra striping works even with table-dark header */
        .table thead.table-dark + tbody tr:nth-child(odd) {
            background-color: #f4f1ec !important;
        }
        
        .table thead.table-dark + tbody tr:nth-child(even) {
            background-color: #d9d1c5 !important;
        }
        
        /* Green container background color for pflaster-info page */
        .card.bg-success.bg-opacity-10 .card-body {
            background-color: #C8E6C9 !important;
        }
        
        /* Footer Styles */
        footer {
            background-color: #f4f1ec !important;
            border-top: 1px solid var(--brand-primary) !important;
            border-bottom: 3px solid var(--brand-primary) !important;
        }
        
        footer a {
            color: #6c757d;
            transition: color 0.3s ease;
        }
        
        footer a:hover {
            color: #0066cc;
        }
        
        footer img {
            transition: transform 0.3s ease;
        }
        
        footer img:hover {
            transform: scale(1.05);
        }
        
        footer .gap-3 {
            gap: 1rem !important;
        }
        
        /* Offcanvas Styles */
        .offcanvas-header {
            border-bottom: 3px solid var(--brand-primary);
        }
        
        .offcanvas-body .sidebar-nav .sidebar-section-title {
            font-size: 16px;
            color: var(--brand-primary);
            border-bottom: 2px solid var(--brand-primary);
            margin-bottom: 15px;
            padding-bottom: 5px;
        }
        
        .offcanvas-body .sidebar-nav .nav-link {
            padding: 8px 0;
            border-bottom: 1px dotted #ccc;
            margin-bottom: 5px;
        }
        
        .offcanvas-body .sidebar-nav .nav-link:hover {
            background-color: var(--brand-secondary);
            padding-left: 10px;
            transition: all 0.3s ease;
        }
        
        /* Mobile Fixed Header */
        @media (max-width: 991.98px) {
            .navbar {
                position: fixed !important;
                top: 0;
                left: 0;
                right: 0;
                z-index: 1030;
                width: 100%;
            }
            
            body {
                padding-top: 70px; /* Platz für den festen Header */
            }
            
            .navbar-nav .nav-item {
                margin: 0.5rem 0;
            }
        }
        
        @media (min-width: 992px) {
            .navbar-nav .nav-item {
                margin-left: 1rem;
            }
        }

/* Mobile Styles für Produkt-Features */
@media (max-width: 1199px) {
    .product-features .list-group-item {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.25rem;
    }

    .product-features .list-group-item span:first-child {
        font-weight: bold;
        margin-bottom: 0.25rem;
    }

    .product-features .list-group-item span:last-child {
        text-align: left;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .product-features .list-group-item {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.25rem;
    }

    .product-features .list-group-item span:first-child {
        font-weight: bold;
        margin-bottom: 0.25rem;
    }

    .product-features .list-group-item span:last-child {
        text-align: left;
        width: 100%;
    }
}

      .yt-wrap{position:relative; padding-bottom:65.25%; height:0; overflow:hidden; border-radius:12px; background:#000;}
      .yt-thumb, .yt-wrap iframe{position:absolute; top:0; left:0; width:100%; height:100%; object-fit:cover; border:0;}
      .yt-consent{
        position:absolute; inset:auto 0 0 0; display:flex; gap:.5rem; align-items:center;
        justify-content:center; padding:1rem; background:rgba(0,0,0,.6); color:#fff; font:14px/1.4 system-ui;
      }
      .yt-btn{background:#fff; color:#000; border:0; padding:.5rem .8rem; border-radius:.5rem; cursor:pointer;}

/* Cookiebot schwebender Button verstecken - auf Desktop UND Tablet (ab 768px) */
/* Alle möglichen Cookiebot-Button-Selectors - VERSTÄRKT */
@media (min-width: 768px) {
    /* Haupt-Button-Selectors */
    #CybotCookiebotDialogPoweredbyCybot,
    #CybotCookiebotDialogBodyLevelButtonLevelButton,
    [id*="CybotCookiebotDialogBodyLevelButton"],
    [id*="CybotCookiebotDialogBodyButton"],
    [id*="CybotCookiebotDialogBodyLevel"],
    /* Alle Elemente mit Cookiebot-Klassen im unteren Bereich */
    div[id*="Cybot"][id*="Button"],
    div[id*="Cybot"][id*="Level"],
    /* Spezifische Position-Selectors */
    [style*="position: fixed"][id*="Cybot"],
    [style*="bottom"][id*="Cybot"],
    [style*="left"][id*="Cybot"],
    /* Alle Elemente die Cybot enthalten und fixed position haben */
    *[id*="Cybot"][style*="fixed"],
    *[id*="Cybot"][style*="bottom"],
    *[id*="Cybot"][style*="left"] {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        width: 0 !important;
        height: 0 !important;
        max-width: 0 !important;
        max-height: 0 !important;
        position: absolute !important;
        left: -9999px !important;
        bottom: -9999px !important;
        right: -9999px !important;
        top: -9999px !important;
        z-index: -9999 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
        transform: scale(0) !important;
    }
}

/* Cookiebot schwebender Button auch auf Tablet verstecken (iPad) - Verstärkt */
@media (min-width: 768px) and (max-width: 1024px) {
    #CybotCookiebotDialogPoweredbyCybot,
    #CybotCookiebotDialogBodyLevelButtonLevelButton,
    [id*="CybotCookiebotDialogBodyLevelButton"],
    [id*="CybotCookiebotDialogBodyButton"],
    [id*="CybotCookiebotDialogBodyLevel"],
    div[id*="Cybot"][id*="Button"],
    div[id*="Cybot"][id*="Level"],
    [style*="position: fixed"][id*="Cybot"],
    [style*="bottom"][id*="Cybot"],
    [style*="left"][id*="Cybot"] {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        width: 0 !important;
        height: 0 !important;
        position: absolute !important;
        left: -9999px !important;
        bottom: -9999px !important;
        z-index: -9999 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
    }
}

/* Cookiebot Dialog verstecken beim Laden */
#CybotCookiebotDialog:not(.cookiebot-dialog-manual-open),
#CybotCookiebotDialogUnderlay:not(.cookiebot-dialog-manual-open) {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Footer Cookie-Button: Auf allen Geräten sichtbar (Desktop, Tablet, Handy) */
/* Der schwebende Cookiebot-Button wird auf Desktop/Tablet versteckt, daher ist Footer-Button wichtig */
#footerCookieButton {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    width: 50px !important;
    height: 50px !important;
}

/* Fancybox - sicherstellen dass alles funktioniert */
.fancybox__container {
    z-index: 99999 !important;
    display: flex !important;
    visibility: visible !important;
}

.fancybox__backdrop {
    z-index: 99998 !important;
    background: rgba(0, 0, 0, 0.85) !important;
}

.fancybox__slide {
    z-index: 100000 !important;
}

.fancybox__image,
.fancybox__content img,
.fancybox__content picture img,
.fancybox__content picture,
.fancybox__content {
    filter: none !important;
    brightness: 1 !important;
    display: block !important;
    visibility: visible !important;
    max-width: 100% !important;
    max-height: 100% !important;
    position: relative !important;
    z-index: 100001 !important;
    background: transparent !important;
    transition: opacity 0.4s ease-in-out !important;
}

.fancybox__content {
    opacity: 1 !important;
    filter: none !important;
    background: transparent !important;
    position: relative !important;
    z-index: 100001 !important;
}

.fancybox__content::before,
.fancybox__content::after,
.fancybox__image::before,
.fancybox__image::after,
.fancybox__slide::before,
.fancybox__slide::after {
    display: none !important;
    content: none !important;
    opacity: 0 !important;
}

/* Entferne alle Overlays die Bilder verdunkeln könnten */
.fancybox__container::before,
.fancybox__container::after {
    display: none !important;
    content: none !important;
}

/* Stelle sicher dass Backdrop HINTER den Bildern ist */
.fancybox__backdrop {
    z-index: 99998 !important;
    background: rgba(0, 0, 0, 0.85) !important;
    position: fixed !important;
}

/* Entferne alle Elemente die über Bildern liegen könnten */
.fancybox__container > *:not(.fancybox__backdrop):not(.fancybox__carousel):not(.fancybox__toolbar):not(.fancybox__nav) {
    opacity: 1 !important;
    filter: none !important;
}

/* Stelle sicher dass Carousel und Navigation funktionieren */
.fancybox__carousel {
    z-index: 100000 !important;
    pointer-events: auto !important;
}

.fancybox__nav {
    z-index: 100002 !important;
    pointer-events: auto !important;
    display: flex !important;
    visibility: visible !important;
}

.fancybox__button {
    z-index: 100001 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: rgba(255, 255, 255, 0.9) !important;
}

.fancybox__nav {
    z-index: 100001 !important;
    pointer-events: auto !important;
}

.fancybox__nav button {
    z-index: 100002 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: rgba(255, 255, 255, 0.9) !important;
}

/* Scroll-to-Top Rakete Hover und Click Effekt */
.scroll-to-top-rocket {
    transition: transform 0.5s ease;
    cursor: pointer;
    position: relative;
    z-index: 1 !important; /* Niedriger z-index, beeinflusst Cookie-Fenster nicht */
    margin-top: 38px !important; /* Verschiebung nach unten (ca. 1 cm) */
}

.scroll-to-top-rocket:hover {
    transform: scale(1.3) rotate(360deg);
}

.scroll-to-top-rocket:active {
    transform: scale(1.5);
}

.scroll-to-top-rocket img {
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

/* Feuer-Effekt beim Hover */
.scroll-to-top-rocket:hover::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 32px;
    background: linear-gradient(to bottom, #990000, #cc0000, #ff0000, #ff1100, #ff3300, #ff5500);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: fire-flicker 0.3s ease-in-out infinite alternate;
    z-index: 0;
    filter: blur(2px);
}

@keyframes fire-flicker {
    0% {
        transform: translateX(-50%) scaleY(0.9) scaleX(1.1);
        opacity: 0.9;
    }
    100% {
        transform: translateX(-50%) scaleY(1.1) scaleX(0.9);
        opacity: 1;
    }
}
