﻿@import url(/assets/css/base.css);
html, body {
    width: 100%;
    max-width: 100%;
}
@media (max-width: 1199.98px) {
    html, body {
        overflow-x: hidden; /* Fallback für sehr alte Browser */
    }
}
@supports (overflow-x: clip) {
    @media (max-width: 1199.98px) {
        html, body {
            overflow-x: clip;
        }
    }
}
body {
    overflow-x: hidden;
    font-family: var(--font-body);
    background-color: var(--bg-light) !important;
    color: var(--text-body);
    font-size: 18px; /* Target age 40+ */
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
@media (max-width: 768px) {
    body { font-size: 16px; }
}
@supports (overflow-x: clip) {
    body { overflow-x: clip; }
}
.skip-link {
    position: absolute;
    left: -999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: 2000;
    background: #ffffff;
    color: var(--text-dark);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.skip-link:focus {
    left: 1rem;
    top: 1rem;
    width: auto;
    height: auto;
    outline: 3px solid var(--primary-color, #1a7a35);
    outline-offset: 2px;
    font-weight: 600;
    text-decoration: underline;
}
img, svg, video, canvas {
    max-width: 100%;
    height: auto;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}
a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}
a:hover {
    color: var(--primary-dark);
}
:focus-visible {
    outline: 3px solid rgba(1, 72, 158, 0.65);
    outline: 3px solid color-mix(in srgb, var(--accent-color) 70%, #ffffff 30%);
    outline-offset: 2px;
}
.top-bar {
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    font-weight: 500;
}
.text-accent {
    color: var(--accent-color) !important;
}
.bg-accent {
    background-color: var(--accent-color) !important;
}
.border-accent {
    border-color: var(--accent-color) !important;
}
.bg-accent-soft {
    background-color: rgba(0, 0, 0, 0.04);
    background-color: color-mix(in srgb, var(--accent-color) 12%, #ffffff 88%);
}
.hover-opacity:hover {
    opacity: 0.8;
}
.navbar {
    background-color: rgba(255, 255, 255, 0.95) !important;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1020;
}
@supports (backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px)) {
    .navbar::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        z-index: -1;
    }
    .navbar {
        background-color: rgba(255, 255, 255, 0.85) !important;
    }
}
.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}
.brand-icon {
    color: var(--primary-color);
    font-size: 1.8rem;
}
.nav-link {
    font-weight: 500;
    color: var(--text-body) !important;
    padding: 0.5rem 1rem !important;
    border-radius: var(--border-radius-sm) !important;
    transition: var(--transition);
    white-space: nowrap;
}
.nav-home-icon { display: none; }
.nav-home-text { display: inline; }
.nav-faq-short { display: none; }
.nav-faq-long  { display: inline; }
@media (min-width: 1200px) and (max-width: 1550px) {
    .nav-home-icon {
        display: inline-block;
        font-size: 1.1rem;
        vertical-align: middle;
        line-height: 1;
    }
    .nav-home-text {
        display: none;
    }
    .navbar-nav > .nav-item:first-child .nav-link::before {
        inset: 4px 4px !important;
    }
    .nav-faq-long  { display: none; }
    .nav-faq-short { display: inline; }
}
@media (min-width: 1200px) and (max-width: 1550px) {
    .navbar .container-fluid {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }
    .navbar-nav > .nav-item:first-child .nav-link {
        padding: 0.5rem 0.6rem !important;
    }

    .navbar-brand img {
        max-height: 45px !important;
    }
    .nav-link {
        padding-left: 0.4rem !important;
        padding-right: 0.4rem !important;
        font-size: 0.85rem;
    }
    .navbar .btn {
        padding: 0.35rem 0.8rem !important;
        font-size: 0.85rem;
    }
    .navbar .me-3 {
        margin-right: 0.25rem !important;
    }
    .ms-auto.d-flex {
        flex-shrink: 0;
    }
}
@media (min-width: 1200px) {
    .navbar .btn {
        white-space: nowrap;
    }
    .ms-auto.d-flex {
        flex-shrink: 0;
    }
}
.btn {
    font-weight: 500;
    padding: 0.6rem 1.5rem;
    min-height: 48px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}
.navbar-toggler,
.navbar .nav-link,
.dropdown-item,
.contact-fab__item,
.social-btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
}
.navbar-toggler {
    min-width: 48px;
    justify-content: center;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    box-shadow: 0 4px 12px rgba(24, 131, 41, 0.25);
    font-weight: 600;
    letter-spacing: 0.01em;
}
.btn-primary:hover {
    box-shadow: 0 8px 18px rgba(24, 131, 41, 0.35);
}
.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}
.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
}
.btn-white {
    background-color: #fff;
    border: 1px solid #e2e8f0;
    color: var(--text-dark);
}
.btn-white:hover {
    background-color: #f8f9fa;
    border-color: #cbd5e0;
}
.hero-section {
    background: linear-gradient(135deg, #EBF4FA 0%, #f6fbff 50%, #ffffff 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}
.home-section {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    overflow-x: hidden;
}
body:not(.page-cart):not(.page-checkout):not(.page-contact) .home-section.hero-section.compact-section {
    min-height: calc(100vh - var(--navbar-height, 88px));
    min-height: calc(100svh - var(--navbar-height, 88px));
}
@media (max-width: 991.98px) {
    .home-section.compact-section {
        min-height: auto;
        min-height: unset;
    }
    .home-section.compact-section:not(.hero-section) {
        min-height: unset !important;
    }
}
.home-section > .container {
    width: 100%;
}
@media (max-width: 991.98px) {
    .home-section {
        justify-content: flex-start;
    }
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(1, 72, 158, 0.06) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
    pointer-events: none;
}
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeRight {
    from { opacity: 0; transform: translateX(16px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes heroCheckPop {
    from { opacity: 0; transform: scale(0.5); }
    to   { opacity: 1; transform: scale(1); }
}
.hero-anim {
    opacity: 0;
    animation: heroFadeUp 1.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-anim-d2 { animation-delay: 1.00s; }
.hero-anim-d3 { animation-delay: 1.30s; }
.hero-anim-img {
    opacity: 0;
    animation: heroFadeRight 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}
.hero-li {
    opacity: 0;
    animation: heroFadeUp 1.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-li-1 { animation-delay: 0.35s; }
.hero-li-2 { animation-delay: 0.52s; }
.hero-li-3 { animation-delay: 0.69s; }
.hero-li-4 { animation-delay: 0.86s; }
.hero-check {
    display: inline-block;
    opacity: 0;
    animation: heroCheckPop 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-check-1 { animation-delay: 0.55s; }
.hero-check-2 { animation-delay: 0.72s; }
.hero-check-3 { animation-delay: 0.89s; }
.hero-check-4 { animation-delay: 1.06s; }

@media (prefers-reduced-motion: reduce) {
    .hero-anim, .hero-anim-img, .hero-li, .hero-check {
        opacity: 1 !important;
        animation: none !important;
        transform: none !important;
    }
}
body:not(.page-cart):not(.page-checkout) .page-hero {
    min-height: calc(100vh - var(--navbar-height, 88px));
    min-height: calc(100svh - var(--navbar-height, 88px));
    margin: 0 !important;
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--text-dark), var(--primary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.card, .product-card {
    border: none;
    border-radius: var(--border-radius);
    background: var(--bg-card);
    box-shadow: var(--box-shadow);
    transition: box-shadow 0.3s ease;
    overflow: hidden;
}
.product-card:hover,
.product-card.hover-shadow:hover {
    box-shadow: var(--box-shadow);
}
.no-transform {
    transition: box-shadow 0.3s ease;
}
.no-transform:hover {
    box-shadow: var(--box-shadow-hover);
}
.cart-qty-input {
    width: 70px;
    min-width: 70px;
}
.product-img-top {
    height: 240px;
    object-fit: contain;
    padding: 2rem;
    background-color: #fff;
}
.card-body {
    padding: 1.5rem;
}
.card-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.product-card .card-text {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 5.6em;
}
.price-tag {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.25rem;
}
.feature-box {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.03);
}
.feature-box:hover {
    border-color: rgba(42, 157, 143, 0.1);
}
.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    background: rgba(42, 157, 143, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}
.step-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(42, 157, 143, 0.3);
}
.organic-shape {
    border-radius: 56% 44% 71% 29% / 50% 56% 44% 50%;
    border: 5px solid rgba(255, 255, 255, 0.5);
    transition: border-radius 1.5s ease-in-out;
}
footer {
    background-color: #264653;
    color: #a8b2d1;
    font-size: 0.95rem;
}
footer h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}
footer a {
    color: #a8b2d1;
    transition: var(--transition);
}
footer a:hover {
    color: white;
    padding-left: 5px;
}
.trust-badge {
    max-width: 100px;
    filter: grayscale(100%) brightness(200%);
    opacity: 0.5;
    transition: var(--transition);
}
.trust-badge:hover {
    filter: grayscale(0%);
    opacity: 1;
}
#checkout-form .form-control:hover,
#checkout-form .form-select:hover,
#checkout-form .form-control:focus,
#checkout-form .form-select:focus {
    border-color: #dee2e6;
    box-shadow: none;
    transform: none;
}
#checkout-form .card:hover,
#checkout-form .card.hover-shadow:hover {
    border-color: rgba(0,0,0,0.125) !important;
    transform: none !important;
    box-shadow: var(--box-shadow-hover) !important;
}
#checkout-form .hover-shadow {
    transition: none !important;
}
#checkout-form .btn:hover {
    transform: none !important;
    box-shadow: none !important;
}
.site-footer {
    background-color: #264653;
    color: #a8b2d1;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}
.site-footer .footer-content-wide {
    max-width: 1480px;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}
.footer-heading {
    color: #f1faee;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}
.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 2px;
}
.footer-subheading {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0 0 0.75rem;
}
.footer-link-group .footer-link:last-child {
    margin-bottom: 0;
}
.footer-link {
    color: #a8b2d1;
    text-decoration: none;
    transition: all 0.2s ease;
    display: block;
    margin-bottom: 0.75rem;
}
.footer-link:hover {
    color: #fff;
}
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}
.footer-contact-icon {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.1rem;
    margin-top: 0.2rem;
}
.newsletter-form .form-control {
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
}
.newsletter-form .form-control:focus {
    background-color: rgba(255,255,255,0.1);
    border-color: var(--primary-color);
    box-shadow: none;
}
.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    margin-right: 0.5rem;
}
.social-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
}
.footer-bottom {
    background-color: #1d3540;
    padding: 1.5rem 0;
    margin-top: 4rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.1rem;
        line-height: 1.15;
    }
    .hero-section {
        padding: 32px 0 40px;
    }
    .hero-media {
        margin-bottom: 1rem;
    }
    .home-section.compact-section.py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    .hero-image {
        max-height: 200px;
        max-width: 85%;
        width: auto;
    }
    .hero-image-inline {
        max-width: 160px;
        width: 45vw;
        border-width: 4px;
    }
    .hero-cta .btn {
        justify-content: center;
    }
}
@media (max-width: 575.98px) {
    .hero-cta .btn {
        width: 100%;
    }
    .hero-section .badge {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem !important;
    }
    .hero-section .list-unstyled {
        margin-bottom: 1.5rem;
    }
    .hero-section .display-4 {
        margin-bottom: 1rem !important;
    }
    .hero-section .blur-bg {
        display: none;
    }
}
@media (max-width: 575px) {
    .hero-image-inline {
        max-width: 140px;
        width: 50vw;
    }
}
@media (min-width: 768px) and (max-width: 991.98px) {
    .hero-section {
        padding: 60px 0;
    }
    .hero-media {
        margin-top: 0.5rem;
    }
    .hero-image {
        max-height: 320px;
        width: auto;
    }
}
.hover-lift {
    transition: box-shadow 0.3s ease;
}

.hover-lift:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.bg-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%) !important;
}

.testimonial-card {
    border: none;
    border-radius: var(--border-radius);
    background: #fff;
    transition: var(--transition);
}
.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 1.2rem;
}
.btn-white {
    background-color: #fff;
    border: 1px solid #e2e8f0;
    color: var(--text-dark);
}
.btn-white:hover {
    background-color: #f8f9fa;
    border-color: #cbd5e0;
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
    color: var(--primary-color);
    opacity: 0.8;
}
.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(42, 157, 143, 0.1);
}
.hover-lift {
    transition: box-shadow 0.3s ease;
}
.hover-lift:hover {
    box-shadow: 0 1rem 3rem rgba(0,0,0,.1) !important;
}
.icon-square {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.claim-section {
    position: relative;
    min-height: calc(100vh - var(--navbar-height, 88px));
    min-height: calc(100svh - var(--navbar-height, 88px));
}
body:not(.page-cart):not(.page-checkout):not(.page-contact) .home-section.compact-section.claim-section {
    min-height: calc(100vh - var(--navbar-height, 88px));
    min-height: calc(100svh - var(--navbar-height, 88px));
}
.claim-section.py-5 {
    padding-top: clamp(40px, 5vw, 72px) !important;
    padding-bottom: clamp(60px, 8vw, 120px) !important;
}
.claim-section .container {
    position: relative;
    min-height: inherit;
    display: flex;
    flex-direction: column;
}
.claim-section .row {
    position: relative;
    z-index: 2;
    margin-bottom: clamp(12px, 2vw, 34px);
}
.claim-section-illustration {
    position: relative;
    width: 100%;
    margin-top: auto;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    z-index: 2;
    opacity: 0.98;
    pointer-events: none;
}
.claim-section-illustration.scroll-fade-in {
    opacity: 0;
    transform: translate3d(0, 40px, 0) scale(0.93);
    filter: blur(3px);
    transition: opacity 1s ease-out, transform 1s ease-out, filter 1s ease-out;
}
.claim-section-illustration.scroll-fade-in.visible {
    opacity: 0.98;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
}
.claim-section-illustration img {
    width: clamp(320px, 70vw, 1000px);
    max-width: 100%;
    height: auto;
    display: block;
}
.sc-illus-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: -30px;
    z-index: 2;
    pointer-events: none;
}
.sc-illus-glow {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%) scaleX(1.6);
    width: 60%;
    height: 60%;
    background: radial-gradient(ellipse at center,
        rgba(255, 255, 255, 0.22) 0%,
        rgba(255, 255, 255, 0.06) 50%,
        transparent 75%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 1.4s ease 0.6s;
}
.sc-illus-wrap.sc-visible .sc-illus-glow {
    opacity: 1;
}
.sc-illus-anim {
    opacity: 0;
    transform: translateY(90px) scale(0.82);
    filter: blur(6px) drop-shadow(0 0 0 rgba(0,0,0,0));
    transition:
        opacity  0.95s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1.15s cubic-bezier(0.34, 1.56, 0.64, 1),
        filter   0.95s ease;
    will-change: opacity, transform, filter;
}
.sc-illus-wrap.sc-visible .sc-illus-anim {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0) drop-shadow(0 24px 48px rgba(0,0,0,0.28));
}
.sc-illus-wrap.sc-visible .sc-illus-anim .sc-illus-img {
    animation: sc-float 5s ease-in-out infinite 1.3s;
}
@keyframes sc-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    30%       { transform: translateY(-8px) rotate(0.5deg); }
    70%       { transform: translateY(-4px) rotate(-0.5deg); }
}
.sc-scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin: 6px auto 20px;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.6s ease 1.4s, transform 0.6s ease 1.4s;
}
.sc-illus-wrap.sc-visible ~ .sc-scroll-hint {
    opacity: 0.55;
    transform: translateY(0);
}
.sc-scroll-hint span {
    display: block;
    width: 16px;
    height: 16px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    animation: sc-chevron 1.6s ease-in-out infinite;
}
.sc-scroll-hint span:nth-child(2) { animation-delay: 0.15s; opacity: 0.7; }
.sc-scroll-hint span:nth-child(3) { animation-delay: 0.30s; opacity: 0.4; }
@keyframes sc-chevron {
    0%, 100% { opacity: 0.9; transform: rotate(45deg) translateY(0); }
    50%       { opacity: 0.3; transform: rotate(45deg) translateY(4px); }
}
.sc-form-stage {
    opacity: 0;
    transform: translateY(64px);
    transition:
        opacity  0.85s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1.0s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}
.sc-form-stage.sc-visible {
    opacity: 1;
    transform: translateY(0);
}
.sc-form-stage.sc-visible #anspruchscheck-card {
    animation: sc-card-pop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s both;
}
@keyframes sc-card-pop {
    from { transform: scale(0.94); opacity: 0.4; }
    to   { transform: scale(1);    opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
    .sc-illus-anim,
    .sc-form-stage,
    .sc-scroll-hint {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        transition: none !important;
        animation: none !important;
    }
    .sc-illus-anim .sc-illus-img {
        animation: none !important;
    }
}
.claim-section-card {
    position: relative;
    z-index: 3;
}
.section-smooth-reveal.scroll-fade-in {
    opacity: 0;
    transform: translate3d(0, 56px, 0);
    transition: opacity 0.9s ease-out, transform 1s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}
.section-smooth-reveal.scroll-fade-in.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}
@media (max-width: 1199.98px) {
    .claim-section-illustration img {
        width: clamp(280px, 54vw, 560px);
    }
}
@media (max-width: 991.98px) {
    .claim-section-illustration {
        margin-top: 1.25rem;
    }

    .claim-section-illustration img {
        width: clamp(250px, 66vw, 460px);
    }
}
@media (max-width: 575.98px) {
    .claim-section-illustration {
        margin-top: 1rem;
    }

    .claim-section-illustration img {
        width: clamp(220px, 82vw, 360px);
    }
}
.hover-lift:hover .icon-square {
    background-color: var(--primary-color) !important;
    color: #fff !important;
}
.blur-bg {
    filter: blur(80px);
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}
.transform-hover {
    transition: none;
}
.step-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    font-size: 2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 20px rgba(42, 157, 143, 0.3);
}
.display-4, .display-5, .display-6 {
    letter-spacing: -0.03em;
}
.tracking-tight {
    letter-spacing: -0.02em;
}
.tracking-wide {
    letter-spacing: 0.1em;
}
.card {
    border: none;
    transition: all 0.3s ease;
}
.bg-primary {
    background-color: var(--primary-color) !important;
}
.text-primary {
    color: var(--primary-color) !important;
}
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}
.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}
.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
}
.opacity-90 {
    opacity: 0.9;
}
.top-bar {
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    transform-origin: top;
}
body.menu-open .top-bar {
    height: 0;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    overflow: hidden;
    opacity: 0;
}
.top-bar-slider {
    height: 30px;
    overflow: hidden;
    position: relative;
    width: 100%;
    margin: 0 auto;
}
.top-bar-item {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    opacity: 0;
    animation: topBarFade 12s ease-in-out infinite;
    animation-delay: calc(var(--tbi, 0) * 4s);
}
@keyframes topBarFade {
    0%      { opacity: 0; transform: translateY(5px); }
    6%      { opacity: 1; transform: translateY(0); }
    30%     { opacity: 1; transform: translateY(0); }
    36%     { opacity: 0; transform: translateY(-5px); }
    100%    { opacity: 0; transform: translateY(-5px); }
}
.contact-fab {
    position: fixed;
    right: 20px;
    bottom: 12px;
    z-index: 1055;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}
.contact-fab__btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    box-shadow: 0 10px 20px rgba(24, 131, 41, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-fab__btn:hover {
    box-shadow: 0 14px 24px rgba(24, 131, 41, 0.35);
}
.contact-fab__menu {
    position: absolute;
    right: 0;
    bottom: 64px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.contact-fab.is-open .contact-fab__menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.contact-fab__item {
    background: #fff;
    color: var(--text-dark);
    border-radius: 999px;
    padding: 0.5rem 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
button.contact-fab__item {
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-size: inherit;
    font-family: inherit;
}
.contact-fab__item i {
    color: var(--primary-color);
}
.contact-fab__item:hover {
    box-shadow: 0 10px 18px rgba(0,0,0,0.12);
}
@media (max-width: 575px) {
    .contact-fab {
        right: 14px;
        bottom: 8px;
    }
    .contact-fab__btn {
        width: 52px;
        height: 52px;
    }
}
.contact-fab {
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}
body.fab--visible .contact-fab {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
:root {
    --topbar-height: 0px;
    --navbar-height: 88px;
}
@media (max-width: 767.98px) {
    :root {
        --topbar-height: 30px;
        --navbar-height: 64px;
    }
    .top-bar {
        position: fixed;
        top: 0; left: 0; right: 0;
        z-index: 1031;
        height: var(--topbar-height);
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    .top-bar .container-fluid { height: 100%; }

    .top-bar-slider {
        height: var(--topbar-height);
        overflow: hidden;
    }
    .top-bar-item {
        font-size: 0.75rem;
    }
}
@media (min-width: 768px) and (max-width: 991.98px) {
    :root {
        --topbar-height: 34px;
        --navbar-height: 72px;
    }
    .top-bar {
        position: fixed;
        top: 0; left: 0; right: 0;
        z-index: 1031;
        height: var(--topbar-height);
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .top-bar .container-fluid { height: 100%; }

    .top-bar-slider {
        height: var(--topbar-height);
        overflow: hidden;
    }

    .top-bar-item {
        font-size: 0.8rem;
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    :root {
        --topbar-height: 46px;
        --navbar-height: 80px;
    }

    .top-bar {
        position: fixed;
        top: 0; left: 0; right: 0;
        z-index: 1031;
        height: var(--topbar-height);
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .top-bar .container-fluid { height: 100%; }

    .top-bar-slider {
        height: var(--topbar-height);
        overflow: hidden;
    }

    .top-bar-item {
        font-size: 0.82rem;
    }
}

@media (min-width: 1200px) {
    .nav-custom-center {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        margin: 0 !important;
        z-index: 10;
        width: max-content;
    }
}
@media (max-width: 1199.98px) {
    /* Fixed Navbar direkt unter der fixierten Top-Bar */
    .navbar {
        position: fixed !important;
        top: var(--topbar-height) !important;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 1020;
    }

    /* Body-Offset = Top-Bar + Navbar */
    body {
        padding-top: calc(var(--topbar-height) + var(--navbar-height)) !important;
    }

    /* Wenn Mobile-Menü öffnet: Top-Bar wegsliden, Navbar an top:0 */
    body.menu-open .top-bar {
        transform: translateY(-100%);
    }

    body.menu-open .navbar {
        top: 0 !important;
    }

    body.menu-open {
        padding-top: var(--navbar-height) !important;
    }

    /* Einzeilige Flex-Row — kein Wrap */
    nav.navbar.navbar-expand-xl {
        flex-wrap: nowrap !important;
        padding-top: 0.35rem !important;
        padding-bottom: 0.35rem !important;
    }

    nav.navbar.navbar-expand-xl > .container-fluid {
        flex-wrap: nowrap !important;
        align-items: center !important;
    }

    /* Logo */
    .navbar-brand {
        z-index: 2;
        position: relative;
        flex-shrink: 0;
    }

    .navbar-brand .nav-logo {
        max-height: 48px !important;
        width: auto;
        transition: max-height 0.3s ease;
    }

    .navbar-scrolled .navbar-brand .nav-logo {
        max-height: 38px !important;
    }

    .navbar-scrolled {
        padding-top: 0.2rem !important;
        padding-bottom: 0.2rem !important;
    }

    /* Animierter Hamburger */
    .custom-toggler {
        width: 42px !important;
        height: 42px !important;
        min-height: 42px !important;
        min-width: 42px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 5px !important;
        flex-direction: column !important;
        padding: 0 !important;
        background: transparent !important;
        border: none !important;
        flex-shrink: 0;
        z-index: 2;
        position: relative;
    }

    .custom-toggler .toggler-bar {
        width: 24px;
        height: 2px;
        background: var(--text-dark);
        border-radius: 2px;
        transition: transform 0.25s ease, opacity 0.2s ease, width 0.25s ease;
        transform-origin: center;
        display: block;
    }

    .custom-toggler:not(.collapsed) .toggler-bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
        width: 22px;
    }

    .custom-toggler:not(.collapsed) .toggler-bar:nth-child(2) {
        opacity: 0;
        transform: scaleX(0.2);
    }

    .custom-toggler:not(.collapsed) .toggler-bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
        width: 22px;
    }

    .custom-toggler:focus,
    .navbar-toggler:focus { box-shadow: none; outline: none; }

    /* Bootstrap-Collapse ausblenden — Mobile nutzt Offcanvas */
    .navbar-collapse {
        display: none !important;
        visibility: hidden !important;
    }
}
@media (max-height: 480px) and (max-width: 991.98px) {
    :root {
        --topbar-height: 0px;
    }

    .top-bar {
        display: none !important;
    }

    .navbar {
        top: 0 !important;
    }

    body {
        padding-top: var(--navbar-height) !important;
    }
}
@media (max-width: 379.98px) {
    :root {
        --topbar-height: 26px;
        --navbar-height: 58px;
    }

    .navbar-brand .nav-logo {
        max-height: 36px !important;
    }

    .mobile-nav-icon.icon-pill {
        height: 34px !important;
        padding: 0 10px 0 8px !important;
        border-radius: 17px !important;
        gap: 5px !important;
    }

    .mobile-nav-icon .icon-pill-label {
        font-size: 0.7rem !important;
    }

    .custom-toggler {
        width: 36px !important;
        height: 36px !important;
        min-height: 36px !important;
        min-width: 36px !important;
    }
}

/* Scroll Animation */
.scroll-fade-in {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.scroll-fade-in.fade-down {
    transform: translate3d(0, -30px, 0);
}

.scroll-fade-in.fade-left {
    transform: translate3d(-40px, 0, 0);
}

.scroll-fade-in.fade-right {
    transform: translate3d(40px, 0, 0);
}

.scroll-fade-in.fade-up-left {
    transform: translate3d(-30px, 30px, 0);
}

.scroll-fade-in.fade-up-right {
    transform: translate3d(30px, 30px, 0);
}

.scroll-fade-in.zoom-in {
    transform: scale(0.95);
}

.scroll-fade-in.zoom-out {
    transform: scale(1.05);
}

.scroll-fade-in.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.scroll-fade-in.long-duration {
    transition-duration: 10s;
}

.scroll-fade-in.delay-1 { transition-delay: 0.1s; }
.scroll-fade-in.delay-2 { transition-delay: 0.2s; }
.scroll-fade-in.delay-3 { transition-delay: 0.3s; }
.scroll-fade-in.delay-4 { transition-delay: 0.4s; }
.scroll-fade-in.delay-5 { transition-delay: 0.5s; }
.scroll-fade-in.delay-6 { transition-delay: 0.6s; }
.scroll-fade-in.delay-7 { transition-delay: 0.7s; }
.scroll-fade-in.delay-8 { transition-delay: 0.8s; }

@media (prefers-reduced-motion: reduce) {
    .scroll-fade-in {
        opacity: 1;
        transform: none;
        transition: none;
    }
}


/* Mobile Logo Scroll Animation */
@media (max-width: 1199.98px) {
    .navbar-brand {
        transition: all 0.3s ease;
        max-height: 80px;
        overflow: hidden;
    }
    .navbar-brand.scrolled-hidden {
        opacity: 0;
        transform: translateY(-20px);
        margin-top: -80px;
        pointer-events: none;
        padding: 0;
    }
}
.sidebar-sticky {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 120px !important;
    z-index: 1000;
    height: calc(100vh - 140px) !important;
    overflow-y: auto !important;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(1, 72, 158, 0.2) transparent;
    transition: top 0.3s ease;
}
.sidebar-sticky::-webkit-scrollbar { width: 4px; }
.sidebar-sticky::-webkit-scrollbar-thumb { background: rgba(1, 72, 158, 0.2); border-radius: 4px; }

@media (max-width: 1399.98px) {
    .sidebar-sticky { top: 100px !important; }
}
@media (max-width: 1199.98px) {
    .sidebar-sticky {
        top: calc(var(--topbar-height, 34px) + var(--navbar-height, 72px) + 8px) !important;
    }
}
@media (max-height: 800px) {
    .sidebar-sticky { top: calc(var(--topbar-height, 34px) + var(--navbar-height, 64px) + 8px) !important; }
}
.sidebar-search-group {
    display: flex;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
}
.sidebar-search-input {
    flex: 1;
    border: 2px solid #e2e8f0;
    border-right: none;
    background: #fff;
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
    border-radius: 0.75rem 0 0 0.75rem;
    outline: none;
    transition: border-color 0.2s ease;
    font-family: var(--font-body);
    color: var(--text-dark);
}
.sidebar-search-input::placeholder { color: #a0aec0; }
.sidebar-search-input:focus {
    border-color: var(--accent-color);
    box-shadow: none;
}
.sidebar-search-btn {
    background: var(--accent-color);
    color: #fff;
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 0 0.75rem 0.75rem 0;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.2s ease;
    flex-shrink: 0;
}
.sidebar-search-btn:hover {
    background: color-mix(in srgb, var(--accent-color) 82%, #000 18%);
}
.sidebar-card {
    background: #fff;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.07);
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.sidebar-card-header {
    background: linear-gradient(135deg, var(--accent-color) 0%, #003680 100%);
    color: #fff;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.7rem 1rem;
}
.sidebar-nav {
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.sidebar-nav-item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-body);
    text-decoration: none;
    line-height: 1.3;
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.sidebar-nav-item:hover {
    background: color-mix(in srgb, var(--accent-color) 9%, #fff 91%);
    color: var(--accent-color);
    transform: translateX(3px);
}
.sidebar-nav-item.active {
    background: var(--accent-color);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(1, 72, 158, 0.3);
}
.sidebar-nav-icon {
    width: 1.1rem;
    text-align: center;
    font-size: 0.68rem;
    color: var(--accent-color);
    flex-shrink: 0;
    transition: color 0.18s ease;
}
.sidebar-nav-item.active .sidebar-nav-icon {
    color: rgba(255,255,255,.85);
}
.sidebar-nav-item:hover .sidebar-nav-icon {
    color: var(--accent-color);
}
.sidebar-nav-item.active:hover {
    transform: none;
    background: var(--accent-color);
    color: #fff;
}
.sidebar-text {
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    line-height: 1.3;
}
.sidebar-help-card {
    background: linear-gradient(135deg, var(--accent-color) 0%, #003680 100%);
    border-radius: 0.75rem;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 18px rgba(1, 72, 158, 0.35);
}
.sidebar-help-deco {
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 5rem;
    color: rgba(255,255,255,.08);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}
.sidebar-help-body {
    padding: 1.25rem;
    position: relative;
}
.sidebar-help-title {
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}
.sidebar-help-text {
    color: rgba(255,255,255,.82);
    font-size: 0.8rem;
    margin-bottom: 0.9rem;
    line-height: 1.5;
}
.sidebar-help-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: #fff;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.82rem;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
    transition: all 0.2s ease;
    font-family: var(--font-body);
}
.sidebar-help-btn:hover {
    background: #eef4ff;
    color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0,0,0,.2);
}
@media (max-width: 1399px) {
    .sidebar-nav-item { font-size: 0.84rem; }
    .sidebar-help-title { font-size: 1rem; }
    .sidebar-help-text { font-size: 0.75rem; }
}
@media (max-width: 1199px) {
    .sidebar-nav-item { font-size: 0.8rem; padding: 0.45rem 0.6rem; }
    .sidebar-help-text { display: none; }
    .sidebar-help-body { padding: 0.9rem; }
    .sidebar-help-title { font-size: 0.95rem; }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .sidebar-nav-item { font-size: 0.88rem; }
    .sidebar-help-title { font-size: 1rem !important; }
    .sidebar-help-text { display: block !important; font-size: 0.78rem !important; }
    .sidebar-help-body { padding: 1rem !important; }
}
.navbar {
    transition: padding 0.3s ease, box-shadow 0.3s ease;
}
.navbar-brand .nav-logo {
    transition: max-height 0.3s ease;
    max-height: 80px; 
}

/* Scrolled State */
.navbar-scrolled {
    padding-top: 0.5rem !important; 
    padding-bottom: 0.5rem !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.navbar-scrolled .navbar-brand .nav-logo {
    max-height: 50px !important;
}

@media (max-width: 991.98px) {
    .navbar-scrolled .navbar-brand .nav-logo {
         max-height: 45px !important; 
    }
}

@media (min-width: 1200px) {
    .navbar.navbar-fixed {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 1020;
    }

    body.has-fixed-navbar {
        padding-top: var(--navbar-height, 88px);
    }
}
@keyframes heartbeat {
    0% { transform: scale(1); }
    14% { transform: scale(1.1); }
    28% { transform: scale(1); }
    42% { transform: scale(1.1); }
    70% { transform: scale(1); }
}

.heart-beat {
    animation: heartbeat 2s infinite linear;
}
:root {
    --lux-radius: 1.1rem;
    --lux-radius-lg: 1.6rem;
    --lux-border: 1px solid rgba(31, 59, 44, 0.08);
    --lux-card-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    --lux-card-shadow-hover: 0 30px 60px rgba(0, 0, 0, 0.12);
    --lux-soft-glow: 0 0 0 6px rgba(24, 131, 41, 0.12);
}
.odenwald-ui {
    --brand-name: "Odenwald Pflegebox";
}

.odenwald-ui {
    font-family: 'Inter', var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-body);
    text-rendering: optimizeLegibility;
}

.odenwald-ui h1,
.odenwald-ui h2,
.odenwald-ui h3,
.odenwald-ui h4,
.odenwald-ui h5,
.odenwald-ui h6 {
    font-family: 'Poppins', var(--font-heading);
    letter-spacing: -0.03em;
    font-weight: 700;
}

.odenwald-ui .display-4,
.odenwald-ui .display-5,
.odenwald-ui .display-6 {
    letter-spacing: -0.04em;
}

.odenwald-ui .site-main {
    background: radial-gradient(circle at top right, rgba(24, 131, 41, 0.06), transparent 45%),
                radial-gradient(circle at 20% 20%, rgba(1, 72, 158, 0.06), transparent 40%),
                var(--bg-light);
    min-height: 100vh;
}

.odenwald-ui .home-section {
    /* Kein extra padding – py-5 (Bootstrap) + section-arc regeln den Abstand */
}

.odenwald-ui .home-section.compact-section {
    /* Kein überschreibendes padding – section-before-arc und py-5 sind zuständig */
    align-items: flex-start;
}

.odenwald-ui .card {
    border-radius: var(--lux-radius);
    border: var(--lux-border);
    box-shadow: var(--lux-card-shadow);
    background-color: var(--bg-card);
}

.odenwald-ui .card.border-0 {
    border: transparent;
}

.odenwald-ui .card.hover-shadow:hover,
.odenwald-ui .card.hover-lift:hover,
.odenwald-ui .hover-lift:hover,
.odenwald-ui .hover-up:hover {
    box-shadow: var(--lux-card-shadow);
}

.odenwald-ui .card .card-header {
    border-bottom: 1px solid rgba(31, 59, 44, 0.08);
    background: #ffffff;
}

.odenwald-ui .product-card {
    overflow: hidden;
}

.odenwald-ui .product-card .card-img-top,
.odenwald-ui .product-card img {
    transition: none;
}

.odenwald-ui .product-card .badge {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.odenwald-ui .btn {
    font-weight: 600;
    letter-spacing: 0.01em;
}

.odenwald-ui .btn-primary {
    box-shadow: 0 12px 30px rgba(24, 131, 41, 0.22);
}

.odenwald-ui .btn-primary:hover {
    box-shadow: 0 20px 40px rgba(24, 131, 41, 0.28);
}

.odenwald-ui .form-control,
.odenwald-ui .form-select,
.odenwald-ui .input-group-text {
    border-radius: 0.9rem;
    border: 1px solid rgba(31, 59, 44, 0.12);
    background-color: #ffffff;
    box-shadow: none;
}

.odenwald-ui .form-control:focus,
.odenwald-ui .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: var(--lux-soft-glow);
}

.odenwald-ui .accordion-item {
    border-radius: var(--lux-radius);
    border: var(--lux-border);
    box-shadow: var(--lux-card-shadow);
}

.odenwald-ui .accordion-button {
    font-weight: 600;
    letter-spacing: -0.01em;
}

.odenwald-ui .list-group-item {
    border-color: rgba(31, 59, 44, 0.08);
}

.odenwald-ui .navbar {
    border-bottom: 1px solid rgba(31, 59, 44, 0.08);
}

.odenwald-ui .nav-link {
    border-radius: 8px;
    padding: 0.6rem 1.1rem !important;
}

/* Nav hover/active → ux-premium.css übernimmt */

.odenwald-ui .top-bar {
    letter-spacing: 0.02em;
}

.odenwald-ui .site-footer {
    margin-top: clamp(80px, 10vw, 160px);
}

.odenwald-ui.page-startseite .site-footer {
    margin-top: 0;
}

.odenwald-ui .footer-heading {
    letter-spacing: 0.08em;
}

.odenwald-ui .footer-link:hover {
    text-decoration: underline;
}

.odenwald-ui .table {
    border-color: rgba(31, 59, 44, 0.08);
}

.odenwald-ui .table thead th {
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

.odenwald-ui .badge {
    font-weight: 600;
    letter-spacing: 0.03em;
}

.odenwald-ui .hero-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
}

.odenwald-ui .hero-section::before {
    background: radial-gradient(circle, rgba(24, 131, 41, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
}

.odenwald-ui .page-hero {
    border-radius: 0;
    margin: 0;
    overflow: hidden;
    border: none;
    box-shadow: none;
    position: relative;
}


.odenwald-ui .page-hero__panel {
    background: rgba(255, 255, 255, 0.92);
    border-radius: var(--lux-radius-lg);
    box-shadow: var(--lux-card-shadow);
    border: var(--lux-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

@media (prefers-reduced-motion: reduce) {
    .odenwald-ui .card.hover-shadow:hover,
    .odenwald-ui .card.hover-lift:hover,
    .odenwald-ui .hover-lift:hover,
    .odenwald-ui .hover-up:hover,
    .odenwald-ui .btn-primary:hover,
    .odenwald-ui .product-card:hover img {
        transform: none;
    }
}
.odenwald-ui .container,
.odenwald-ui .container-fluid {
    padding-left: clamp(18px, 3vw, 48px);
    padding-right: clamp(18px, 3vw, 48px);
}

.odenwald-ui .page-hero .display-4,
.odenwald-ui .page-hero .display-5 {
    letter-spacing: -0.05em;
    text-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.odenwald-ui .page-hero p.lead {
    color: var(--text-body);
}
.ratgeber-hero {
    position: relative;
    background: linear-gradient(135deg, rgba(24, 131, 41, 0.08), rgba(1, 72, 158, 0.06));
    overflow: hidden;
}

.ratgeber-hero::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -160px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(24, 131, 41, 0.18) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.ratgeber-hero::after {
    content: "";
    position: absolute;
    bottom: -140px;
    left: -120px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(1, 72, 158, 0.14) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.ratgeber-chip {
    background: #ffffff;
    color: var(--text-dark);
    border: 1px solid rgba(31, 59, 44, 0.12);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.ratgeber-panel {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 1.4rem;
    border: 1px solid rgba(31, 59, 44, 0.12);
    box-shadow: var(--lux-card-shadow);
    backdrop-filter: blur(10px);
}

.ratgeber-panel__inner {
    padding: 2rem;
}

.ratgeber-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(24, 131, 41, 0.12);
    color: var(--primary-color);
    font-size: 1.2rem;
}

.ratgeber-steps {
    margin: 0;
    padding-left: 1.2rem;
    color: var(--text-body);
    font-weight: 500;
}

.ratgeber-steps li {
    margin-bottom: 0.6rem;
}

.ratgeber-tile {
    display: block;
    height: 100%;
    padding: 1.6rem;
    border-radius: 1.2rem;
    background: #ffffff;
    border: 1px solid rgba(31, 59, 44, 0.08);
    box-shadow: var(--lux-card-shadow);
    text-decoration: none;
}

.ratgeber-tile__icon {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

.ratgeber-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.ratgeber-cluster {
    background: #ffffff;
    border-radius: 1.4rem;
    padding: 2rem;
    border: 1px solid rgba(31, 59, 44, 0.08);
    box-shadow: var(--lux-card-shadow);
}

.ratgeber-side {
    background: #ffffff;
    border-radius: 1.4rem;
    padding: 2rem;
    border: 1px solid rgba(31, 59, 44, 0.08);
    box-shadow: var(--lux-card-shadow);
    height: 100%;
}

.ratgeber-mini {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 1rem;
    border-radius: 0.9rem;
    border: 1px solid rgba(31, 59, 44, 0.08);
    color: inherit;
    text-decoration: none;
    margin-bottom: 0.8rem;
    background: rgba(24, 131, 41, 0.04);
}

.ratgeber-mini:last-child {
    margin-bottom: 0;
}

.ratgeber-card {
    padding: 1.8rem;
    border-radius: 1.2rem;
    border: 1px solid rgba(31, 59, 44, 0.08);
    box-shadow: var(--lux-card-shadow);
    background: #ffffff;
    height: 100%;
}

.ratgeber-cta {
    padding: 2.4rem;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, rgba(24, 131, 41, 0.1), rgba(255, 255, 255, 0.8));
    border: 1px solid rgba(31, 59, 44, 0.12);
    box-shadow: var(--lux-card-shadow);
}

.ratgeber-reveal {
    animation: ratgeberFade 0.6s ease both;
}

@keyframes ratgeberFade {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    .ratgeber-reveal {
        animation: none;
    }
}
.page-haeufige-fragen .faq-accordion {
    margin-top: 0 !important;
}

.page-haeufige-fragen .faq-content-wrap {
    margin-top: clamp(0.25rem, 1.5vw, 1rem);
}


.page-haeufige-fragen .faq-intro h2 {
    letter-spacing: -0.03em;
}

.page-haeufige-fragen .faq-intro p {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.page-haeufige-fragen .faq-topic-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
}

.page-haeufige-fragen .faq-topic-links a {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(31, 59, 44, 0.14);
    background: #ffffff;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
}

.page-haeufige-fragen .faq-topic-links a:hover {
    border-color: rgba(24, 131, 41, 0.42);
    background: rgba(24, 131, 41, 0.08);
    color: var(--text-dark);
}

.page-haeufige-fragen .faq-accordion .accordion-item {
    border: var(--lux-border);
    border-radius: var(--lux-radius);
    box-shadow: var(--lux-card-shadow);
    background: #ffffff;
    overflow: hidden;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.page-haeufige-fragen .faq-accordion .accordion-item:hover {
    box-shadow: var(--lux-card-shadow-hover);
}

.page-haeufige-fragen .faq-accordion .accordion-button {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1rem 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    background: #ffffff;
    border: none;
}

.page-haeufige-fragen .faq-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(90deg, rgba(24, 131, 41, 0.12), rgba(24, 131, 41, 0.04));
    color: var(--text-dark);
    box-shadow: inset 0 -1px 0 rgba(31, 59, 44, 0.08);
}

.page-haeufige-fragen .faq-accordion .accordion-button:focus {
    box-shadow: 0 0 0 0.22rem rgba(24, 131, 41, 0.24);
    box-shadow: 0 0 0 0.22rem color-mix(in srgb, var(--primary-color) 24%, transparent 76%);
}

.page-haeufige-fragen .faq-accordion .accordion-button::after {
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    background-color: rgba(31, 59, 44, 0.06);
    background-position: center;
    background-size: 0.95rem;
}

.page-haeufige-fragen .faq-question-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-width: 2.2rem;
    height: 2.2rem;
    border-radius: 0.75rem;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    font-weight: 700;
    color: var(--primary-color);
    background: rgba(24, 131, 41, 0.1);
    border: 1px solid rgba(24, 131, 41, 0.18);
}

.page-haeufige-fragen .faq-question-text {
    flex: 1;
    line-height: 1.45;
    padding-right: 0.55rem;
}

.page-haeufige-fragen .faq-accordion .accordion-body {
    padding: 1.05rem 1.25rem 1.35rem 4.1rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(24, 131, 41, 0.06));
    line-height: 1.85;
    font-size: 1.02rem;
}

.page-haeufige-fragen .faq-cta {
    padding: 1.4rem 1.2rem;
    border-radius: var(--lux-radius);
    border: 1px solid rgba(31, 59, 44, 0.1);
    background: var(--bg-light);
    background: color-mix(in srgb, var(--bg-light) 84%, #ffffff 16%);
}

.page-haeufige-fragen .faq-related {
    border: 1px solid rgba(31, 59, 44, 0.1);
    border-radius: var(--lux-radius);
    background: #ffffff;
    padding: 1.1rem;
}

.page-haeufige-fragen .faq-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.page-haeufige-fragen .faq-related-item {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    border: 1px solid rgba(31, 59, 44, 0.1);
    border-radius: 0.85rem;
    padding: 0.85rem 0.95rem;
    text-decoration: none;
    background: rgba(24, 131, 41, 0.03);
}

.page-haeufige-fragen .faq-related-item:hover {
    border-color: rgba(24, 131, 41, 0.42);
    box-shadow: var(--lux-card-shadow);
}

.page-haeufige-fragen .faq-related-title {
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.35;
}

.page-haeufige-fragen .faq-related-link {
    color: var(--primary-color);
    font-size: 0.86rem;
    font-weight: 600;
}

.page-haeufige-fragen .faq-cta-actions {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.page-haeufige-fragen .faq-cta p {
    color: var(--text-dark);
    font-weight: 500;
}

@media (max-width: 991.98px) {
    .page-haeufige-fragen .faq-shell {
        padding: 1rem;
    }

    .page-haeufige-fragen .faq-accordion .accordion-body {
        padding-left: 1.2rem;
        font-size: 0.98rem;
    }

    .page-haeufige-fragen .faq-accordion .accordion-button {
        padding: 0.9rem 0.95rem;
    }

    .page-haeufige-fragen .faq-related-grid {
        grid-template-columns: 1fr;
    }
}

.odenwald-ui .dropdown-menu {
    border-radius: var(--lux-radius);
    border: var(--lux-border);
    box-shadow: var(--lux-card-shadow);
    padding: 0.75rem;
}

.odenwald-ui .dropdown-item {
    border-radius: 0.75rem;
    padding: 0.65rem 0.85rem;
}

.odenwald-ui .dropdown-item:hover,
.odenwald-ui .dropdown-item:focus {
    background: rgba(24, 131, 41, 0.08);
}

.odenwald-ui .top-bar-slider {
    font-weight: 600;
    letter-spacing: 0.01em;
}

.odenwald-ui .cta-pulse {
    position: relative;
    overflow: hidden;
}

.odenwald-ui .cta-pulse::after {
    content: "";
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4), transparent 60%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.odenwald-ui .cta-pulse:hover::after {
    opacity: 1;
}

.odenwald-ui .product-card {
    position: relative;
    border-radius: var(--lux-radius-lg);
}


.odenwald-ui .product-card:hover::after {
    opacity: 1;
}

.odenwald-ui .product-card .card-body {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), #ffffff 80%);
}

.odenwald-ui .product-card .card-title {
    letter-spacing: -0.02em;
}

.odenwald-ui .badge.bg-accent,
.odenwald-ui .badge.bg-primary {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.odenwald-ui .alert {
    border-radius: var(--lux-radius);
    border: var(--lux-border);
    box-shadow: var(--lux-card-shadow);
}

.odenwald-ui .progress {
    border-radius: 999px;
    overflow: hidden;
    background: rgba(31, 59, 44, 0.08);
}

.odenwald-ui .progress-bar {
    border-radius: 999px;
}

.odenwald-ui .offcanvas {
    border-left: var(--lux-border);
    box-shadow: var(--lux-card-shadow);
}

.odenwald-ui .offcanvas-header {
    border-bottom: var(--lux-border);
}

.odenwald-ui #offcanvasCart .offcanvas-header .offcanvas-title,
.odenwald-ui #offcanvasCart .offcanvas-header .offcanvas-title i {
    color: var(--bs-white) !important;
}

.odenwald-ui .contact-fab__btn {
    box-shadow: var(--lux-card-shadow-hover);
}

.odenwald-ui .contact-fab__menu {
    border-radius: var(--lux-radius);
    border: var(--lux-border);
    box-shadow: var(--lux-card-shadow);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.odenwald-ui .list-group-item-action:hover {
    background: rgba(24, 131, 41, 0.06);
}

.odenwald-ui .sidebar-sticky .card,
.odenwald-ui .sidebar-sticky .alert {
    border-radius: var(--lux-radius-lg);
}

.odenwald-ui .checkout-stepper {
    gap: clamp(10px, 2vw, 24px);
}

.odenwald-ui .checkout-stepper::before {
    height: 3px;
    background: linear-gradient(90deg, rgba(1, 72, 158, 0.2), rgba(24, 131, 41, 0.25));
}

.odenwald-ui .step-circle {
    width: 42px;
    height: 42px;
    font-size: 0.95rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.odenwald-ui .step-item.active .step-circle {
    box-shadow: 0 0 0 8px rgba(1, 72, 158, 0.18);
}

.page-checkout .btn-check:checked + .btn-outline-primary,
.page-checkout .btn-check:checked + .btn-outline-primary i {
    color: var(--bs-white) !important;
}

.odenwald-ui .site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(31, 59, 44, 0.96), rgba(31, 59, 44, 1));
}

.odenwald-ui .site-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.odenwald-ui .nav-logo {
    filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.1));
}

.odenwald-ui .navbar .btn {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.odenwald-ui .group-item-card {
    border-radius: var(--lux-radius);
    border: var(--lux-border);
    box-shadow: var(--lux-card-shadow);
}

.odenwald-ui .group-item-card:hover {
    box-shadow: var(--lux-card-shadow-hover);
}

.odenwald-ui .bundle-add-btn {
    box-shadow: 0 18px 35px rgba(24, 131, 41, 0.2);
}

.odenwald-ui .form-floating > label {
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

.odenwald-ui .form-floating > .form-control:focus ~ label,
.odenwald-ui .form-floating > .form-control:not(:placeholder-shown) ~ label,
.odenwald-ui .form-floating > .form-select ~ label {
    color: var(--primary-color);
}

.odenwald-ui .accordion-button:not(.collapsed) {
    background: rgba(24, 131, 41, 0.08);
    color: var(--text-dark);
    box-shadow: inset 0 -1px 0 rgba(31, 59, 44, 0.08);
}

.odenwald-ui .badge.rounded-pill {
    padding: 0.45rem 0.8rem;
}
.odenwald-ui .hero-section .hero-cta .btn {
    padding: 0.875rem 2.5rem;
    font-size: 1rem;
    letter-spacing: 0.01em;
    transition: transform 0.2s ease, box-shadow 0.25s ease;
}

.odenwald-ui .hero-btn-primary {
    min-width: 220px;
    box-shadow: 0 6px 20px rgba(24, 131, 41, 0.35) !important;
}

.odenwald-ui .hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(24, 131, 41, 0.45) !important;
}

.odenwald-ui .hero-btn-secondary {
    min-width: 190px;
    border-width: 2px;
}

.odenwald-ui .hero-btn-secondary:hover {
    transform: translateY(-2px);
}

.odenwald-ui .hero-section .list-unstyled li {
    padding: 0.25rem 0;
}
.odenwald-ui .home-section,
.odenwald-ui .bg-light {
    position: relative;
}



.odenwald-ui .home-section > .container,
.odenwald-ui .home-section > .container-fluid {
    position: relative;
    z-index: 1;
}

.odenwald-ui .home-section + .home-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(420px, 60vw);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(31, 59, 44, 0.12), transparent);
}


.odenwald-ui .hero-media::after {
    content: "";
    position: absolute;
    inset: 12% 8% 12% 8%;
    border-radius: 50%;
    border: 1px solid rgba(24, 131, 41, 0.2);
    pointer-events: none;
}

.odenwald-ui .hero-image,
.odenwald-ui .hero-image-inline {
    border-radius: clamp(1rem, 2vw, 2rem);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.odenwald-ui .hero-cta .btn {
    position: relative;
    overflow: hidden;
}

.odenwald-ui .hero-cta .btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.4), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.odenwald-ui .hero-cta .btn:hover::before {
    opacity: 1;
}

.odenwald-ui .card {
    transition: box-shadow 0.4s ease;
}

.odenwald-ui .card .icon-square,
.odenwald-ui .card .fa,
.odenwald-ui .card .fas {
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.1));
}

.odenwald-ui .list-group-item {
    transition: background 0.3s ease;
}

.odenwald-ui .list-group-item:hover {
    background-color: var(--accent-color);
    color: var(--bg-light);
}

.odenwald-ui .sidebar-sticky {
    scrollbar-width: thin;
    scrollbar-color: rgba(31, 59, 44, 0.3) transparent;
}

.odenwald-ui .sidebar-sticky::-webkit-scrollbar {
    width: 6px;
}

.odenwald-ui .sidebar-sticky::-webkit-scrollbar-thumb {
    background: rgba(31, 59, 44, 0.25);
    border-radius: 999px;
}

.odenwald-ui .accordion-item {
    overflow: hidden;
}

.odenwald-ui .accordion-button {
    position: relative;
}

.odenwald-ui .accordion-button::after {
    transition: transform 0.35s ease;
}

.odenwald-ui .table {
    border-radius: var(--lux-radius);
    overflow: hidden;
}

.odenwald-ui .table tbody tr {
    transition: background 0.25s ease;
}

.odenwald-ui .table tbody tr:hover {
    background: rgba(24, 131, 41, 0.05);
}

.odenwald-ui .badge {
    text-transform: uppercase;
    font-size: 0.65rem;
}

.odenwald-ui .product-card .card-body {
    padding: 1.75rem !important;
}

.odenwald-ui .product-card .card-text {
    line-height: 1.7;
}

.odenwald-ui .product-card .btn {
    box-shadow: 0 12px 25px rgba(24, 131, 41, 0.18);
}

.odenwald-ui .site-footer {
    position: relative;
    overflow: hidden;
}

.odenwald-ui .site-footer::after {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
    pointer-events: none;
}

.odenwald-ui .contact-fab__btn {
    animation: softPulse 3.6s ease-in-out infinite;
}

@keyframes softPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18); }
    50% { transform: scale(1.06); box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22); }
}

@media (prefers-reduced-motion: reduce) {
    .odenwald-ui .card:hover,
    .odenwald-ui .list-group-item:hover {
        transform: none;
    }

    .odenwald-ui .contact-fab__btn {
        animation: none;
    }
}
.diagonal-split-section {
    background: var(--bs-primary);
    background: linear-gradient(115deg, var(--bs-primary) 0%, var(--bs-primary) 50%, #ffffff 50.1%, #ffffff 100%);
}

@media (max-width: 991.98px) {
    .diagonal-split-section {
        background: linear-gradient(180deg, var(--bs-primary) 0%, var(--bs-primary) 40%, #ffffff 40.1%, #ffffff 100%);
    }
    
    .diagonal-split-section .text-white {
        /* Ensure text remains readable on mobile if gradient shifts */
    }
}
.accordion {
    margin-top: 100px !important;
}
@keyframes step-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes number-glow {
    0% { box-shadow: 0 .5rem 1rem rgba(0,0,0,.15); }
    50% { box-shadow: 0 0 0 10px rgba(24, 131, 41, 0.3); transform: scale(1.1); }
    100% { box-shadow: 0 .5rem 1rem rgba(0,0,0,.15); transform: scale(1); }
}

.step-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 28px rgba(0, 0, 0, 0.07);
    padding: 2.5rem !important;
    background: #fff;
}
.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(24, 131, 41, 0.14) !important;
}
@media (min-width: 992px) {
    .step-number {
        width: 88px !important;
        height: 88px !important;
        font-size: 2rem !important;
    }
}

.step-card.active-guide {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175) !important;
}

.step-card.active-guide .step-number {
    animation: number-glow 1s ease-in-out forwards;
}
.navbar-nav .nav-link {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark) !important;
    padding: 0.75rem 1.25rem !important;
    border-radius: 8px !important;
    margin: 0;
    position: relative;
    background-color: transparent !important;
    white-space: nowrap;
    transition: color 0.3s ease;
}
.dropdown-menu {
    border: none !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15) !important;
    padding: 0.75rem !important;
    margin-top: 10px !important;
    min-width: 280px;
}

/* Dropdown Items */
.dropdown-item {
    border-radius: 8px !important;
    padding: 0.75rem 1rem !important;
    margin-bottom: 0.25rem;
    position: relative;
    transition: all 0.2s ease;
    border-left: 3px solid transparent; 
    border-right: 3px solid transparent;
}

.navbar .dropdown-menu .dropdown-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.15rem;
    white-space: normal;
    line-height: 1.35;
}

.dropdown-item:last-child {
    margin-bottom: 0;
}
.dropdown-item span.fw-bold {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.dropdown-item small.text-muted {
    display: block;
    font-size: 0.85rem;
    color: #6c757d !important;
    opacity: 0.9;
}

/* Dropdown Hover → UX-Premium übernimmt glasmorphe Effekte */
.dropdown-item:hover, .dropdown-item:focus {
    background-color: rgba(24, 131, 41, 0.05) !important;
    border-left-color: var(--primary-color);
}

.dropdown-item:hover span.fw-bold {
    color: var(--primary-color);
}

.dropdown-item:hover small.text-muted {
    color: #4a5568 !important;
}
.dropdown-divider {
    margin: 0.5rem 0;
    border-top: 1px solid rgba(0,0,0,0.06);
}
@media (min-width: 1200px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        animation: fadeInUp 0.3s ease forwards;
        visibility: visible;
        opacity: 1;
    }
    .nav-item.dropdown:hover .dropdown-toggle::after {
        transform: rotate(180deg);
    }
    .dropdown-toggle::after {
        transition: transform 0.3s ease;
        margin-left: 0.4em;
    }
    .dropdown-menu::before {
        content: '';
        position: absolute;
        top: -20px;
        left: 0;
        width: 100%;
        height: 20px; 
        background: transparent;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.offcanvas-custom-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1045;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.offcanvas-custom-backdrop.show {
    opacity: 1;
    visibility: visible;
}

.offcanvas-custom-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: #fff;
    z-index: 1050;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.offcanvas-custom-menu.show {
    transform: translateX(0);
}

.offcanvas-custom-header {
    background: #c69c6d;
    background: linear-gradient(90deg, #c69c6d 0%, #b08d55 100%);
    color: #fff;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
}

.offcanvas-custom-header .header-title {
    font-size: 1.1rem;
}

.btn-close-custom {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
}

.offcanvas-custom-body {
    flex: 1;
    overflow: hidden;
    position: relative;
    background: #fff;
}

.menu-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.featured-products-carousel {
    position: relative;
    padding: 0 2.5rem;
}

.featured-products-carousel .carousel-inner {
    padding: 0.35rem 0.25rem 0.9rem;
}

.featured-products-carousel .carousel-item .row {
    margin-left: 0;
    margin-right: 0;
}

.featured-products-carousel .carousel-item .row > [class*="col-"] {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.featured-product-link {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.featured-product-link .card {
    border-radius: 1.1rem;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.featured-product-link:hover .card,
.featured-product-link:focus-visible .card {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12) !important;
}

.featured-product-image {
    height: clamp(150px, 22vw, 230px);
    object-fit: contain;
}

.featured-product-link h6 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.6em;
    line-height: 1.3;
}

@media (min-width: 1200px) {
    .featured-product-image {
        height: 300px;
    }
}
@media (min-width: 1400px) {
    .featured-product-image {
        height: 340px;
    }
}

.featured-products-carousel .carousel-control-prev,
.featured-products-carousel .carousel-control-next {
    width: 2.75rem;
    opacity: 1;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
}

.featured-products-carousel .carousel-control-prev {
    left: -0.5rem;
}

.featured-products-carousel .carousel-control-next {
    right: -0.5rem;
}

.featured-products-carousel .carousel-control-prev-icon,
.featured-products-carousel .carousel-control-next-icon {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background-color: var(--primary-color);
    background-size: 55% 55%;
    box-shadow: 0 8px 20px rgba(24, 131, 41, 0.28);
}

@media (max-width: 767.98px) {
    .featured-products-carousel {
        padding: 0 1.7rem;
    }

    .featured-products-carousel .carousel-inner {
        padding: 0.2rem 0.1rem 0.65rem;
    }

    .featured-product-image {
        height: 148px;
    }

    .featured-product-link .card .card-body {
        padding: 0.85rem 0.75rem;
    }

    .featured-product-link h6 {
        font-size: 1rem;
        min-height: 2.45em;
    }

    .featured-product-link p.text-muted {
        font-size: 0.64rem !important;
    }

    .featured-products-carousel .carousel-control-prev,
    .featured-products-carousel .carousel-control-next {
        width: 2.4rem;
    }

    .featured-products-carousel .carousel-control-prev {
        left: -0.15rem;
    }

    .featured-products-carousel .carousel-control-next {
        right: -0.15rem;
    }

    .featured-products-carousel .carousel-control-prev-icon,
    .featured-products-carousel .carousel-control-next-icon {
        width: 2.1rem;
        height: 2.1rem;
    }
}

@media (max-width: 575.98px) {
    /* Native Scroll-Snap – wirkt touch-nativer als Prev/Next-Buttons */
    .featured-products-carousel {
        padding: 0;
    }

    /* Erlaubt dem Scroll-Inhalt über den inneren Rand hinauszuschauen */
    .featured-products-carousel .carousel-inner {
        overflow: visible;
        padding: 0.4rem 0 1rem;
    }

    /* Buttons ausblenden – Wischen übernimmt */
    .featured-products-carousel .carousel-control-prev,
    .featured-products-carousel .carousel-control-next {
        display: none !important;
    }

    /* Horizontaler Scroll-Container */
    .featured-products-carousel .carousel-item .row {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        padding: 0 1rem 0.5rem;
        margin: 0 !important;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .featured-products-carousel .carousel-item .row::-webkit-scrollbar {
        display: none;
    }

    /* Jede Karte 75 % breit → nächste schaut rechts heraus (Wisch-Hint) */
    .featured-products-carousel .carousel-item .row > [class*="col-"] {
        flex: 0 0 75% !important;
        max-width: 75% !important;
        scroll-snap-align: start;
        padding-left: 0.45rem;
        padding-right: 0.45rem;
    }

    .featured-product-image {
        height: 165px;
    }
}

.menu-level {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background: #fff;
    transition: transform 0.3s ease;
    transform: translateX(100%);
    display: flex;
    flex-direction: column;
}

.menu-level[data-level="0"] {
    transform: translateX(0);
}

.menu-level.slide-out-left {
    transform: translateX(-100%);
}

.menu-level.active {
    transform: translateX(0);
}

.menu-section-title {
    padding: 1rem;
    font-weight: 700;
    color: #b08d55;
    border-bottom: 1px solid #eee;
    background: #fdfdfd;
}

.custom-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-menu-list li {
    border-bottom: 1px solid #f0f0f0;
}

.menu-link {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    align-items: center;
    transition: background 0.2s;
}

.menu-link:hover, .menu-link:active {
    background-color: #f9f9f9;
    color: #c69c6d;
}

.menu-link .arrow {
    color: #ccc;
    font-size: 0.9rem;
}

.submenu-header {
    background-color: #fff;
    padding: 0;
    border-bottom: 1px solid #eee;
}

.btn-back-menu {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1rem;
    color: #c69c6d;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
}

.btn-back-menu:hover {
    background-color: #f9f9f9;
}

.submenu-title {
    display: block;
    padding: 1rem;
    font-weight: 700;
    background: #fdfdfd;
    color: #b08d55;
}
.mobile-menu-sidebar {
    /* Responsiv: max. 320px, aber nie mehr als 88vw */
    width: min(320px, 88vw) !important;
}
@media (min-width: 576px) {
    .mobile-menu-sidebar {
        width: min(380px, 88vw) !important;
    }
}

.mobile-menu-container {
    background: #fff;
}

.mobile-menu-list-group .list-group-item {
    border-left: none;
    border-right: none;
    border-radius: 0;
    padding: 12px 16px;
    font-size: 1rem;
    font-weight: 500;
}

.mobile-menu-list-group .list-group-item:first-child {
    border-top: none;
}

.cursor-pointer {
    cursor: pointer;
}

.transition-transform {
    transition: transform 0.35s ease-in-out;
}

.mobile-menu-view {
    height: 100%;
    overflow-y: auto;
    background: #fff;
}
.offcanvas-body {
    display: flex;
    flex-direction: column;
}
.mobile-menu-sidebar .offcanvas-header {
    background-color: var(--primary-color) !important;
    color: #ffffff !important;
}
.mobile-menu-sidebar .offcanvas-header .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
    opacity: 1;
}
.mobile-menu-sidebar .offcanvas-header .offcanvas-title {
    color: #ffffff !important;
}
.odenwald-ui .site-footer {
    background: linear-gradient(170deg, #1d3b2f 0%, #142921 100%); 
    color: #ffffffb7;
    font-size: 0.95rem; 
    border-top: none;
    position: relative;
    overflow: hidden;
    padding-top: 0; 
}

.odenwald-ui .site-footer .footer-content-wide {
    max-width: 1520px;
}

.odenwald-ui .site-footer a.footer-link {
    display: block;
    color: rgba(255, 255, 255, 0.726);
    text-decoration: none;
    transition: all 0.3s ease;
    padding-left: 0;
}

.odenwald-ui .site-footer a.footer-link:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255,255,255,0.2);
    text-decoration: none;
}

.odenwald-ui .site-footer .footer-heading {
    font-family: var(--font-heading, sans-serif);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.9rem; 
}

.odenwald-ui .site-footer .footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color, #c59d5f); 
    border-radius: 2px;
}

.odenwald-ui .site-footer .footer-subheading {
    color: rgba(255, 255, 255, 0.78);
}


.odenwald-ui .site-footer .social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-radius: 50%;
    margin-right: 0.5rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    font-size: 1rem;
}

.odenwald-ui .site-footer .social-btn:hover {
    background-color: var(--primary-color, #4CAF50);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: #fff;
}

.odenwald-ui .trust-badge {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    padding: 8px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 65px;
    text-align: center;
    transition: all 0.3s ease;
    color: rgba(255,255,255,0.7);
    cursor: default;
}

.odenwald-ui .trust-badge:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.25);
    color: #fff;
}

.odenwald-ui .trust-badge i {
    color: var(--accent-color, #c59d5f);
}

.odenwald-ui .trust-badge span {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-top: 4px;
}

.letter-spacing-2 {
    letter-spacing: 2px;
}

.odenwald-ui .footer-bottom {
    background-color: rgba(0, 0, 0, 0.25);
    padding: 1.5rem 0;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}
.site-footer .bg-white.p-3 {
    background-color: #fff !important;
}
.mobile-nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    flex-shrink: 0;
    text-decoration: none;
    font-size: 1.05rem;
    line-height: 1;
    cursor: pointer;
    transition: opacity 0.2s ease;
    white-space: nowrap;
}
/* d-none darf NICHT durch mobile-nav-icon überschrieben werden */
.mobile-nav-icon.d-none {
    display: none !important;
}
.mobile-nav-icon:active { opacity: 0.75; }

/* Pill: Icon + Text (beide Buttons haben diese Form) */
.mobile-nav-icon.icon-pill {
    width: auto;
    height: 40px;
    border-radius: 20px;
    padding: 0 14px 0 10px;
    gap: 7px;
}
.mobile-nav-icon .icon-pill-label {
    font-size: 0.82rem;
    font-weight: 600;
}

.mobile-nav-icon.icon-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #fff !important;
    box-shadow: 0 2px 8px rgba(24, 131, 41, 0.35);
}
.mobile-nav-icon.icon-cart {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #fff !important;
    box-shadow: 0 2px 8px rgba(24, 131, 41, 0.35);
}
@media (min-width: 1400px) {
    .container {
        max-width: 1500px;
    }
}
@media (min-width: 1800px) {
    .container {
        max-width: min(90vw, 1920px);
    }
}

/* Karten auf breiten Bildschirmen mehr Luft geben */
@media (min-width: 1400px) {
    .home-section .card.hover-lift,
    .home-section .card.h-100.border-0.hover-lift {
        padding: 2.25rem !important;
    }
    /* Garantie-Kacheln auch breiter */
    .home-section .bg-white.bg-opacity-10.rounded-3 {
        padding: 2rem !important;
    }
    /* Schritt-Karten: noch mehr vertikale Luft */
    .step-card {
        padding: 3rem !important;
    }
}
@media (min-width: 1200px) {
    .home-section .card.text-decoration-none.hover-lift .card-body {
        padding: 2rem !important;
    }
}
@media (max-width: 1199.98px) {
    .mobile-center-actions {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        display: flex !important;
        align-items: center;
        gap: 0.5rem;
        z-index: 1;
        pointer-events: auto;
        max-width: calc(100% - 180px);
        overflow: hidden;
    }

    .mobile-nav-icon .icon-pill-label {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}
.section-arc-top {
    border-top-left-radius:  50% 56px;
    border-top-right-radius: 50% 56px;
    margin-top: -56px;
    position: relative;
    z-index: 2;
    overflow: hidden; /* Fallback alte Browser */
    overflow: clip;
}

.section-arc-bottom {
    border-bottom-left-radius:  50% 56px;
    border-bottom-right-radius: 50% 56px;
    overflow: hidden; /* Fallback */
    overflow: clip;
}

.section-after-arc {
    position: relative;
    z-index: 3;
}
.home-section:has(+ .section-arc-top) {
    padding-bottom: calc(3rem + 56px) !important;
}

/* Explizite Klasse als :has()-Fallback für ältere Browser */
.section-before-arc {
    padding-bottom: calc(3rem + 56px) !important;
}

/* Tablet (768px – 991px) */
@media (max-width: 991.98px) {
    .section-arc-top {
        border-top-left-radius:  50% 44px;
        border-top-right-radius: 50% 44px;
        margin-top: -44px;
    }
    .section-arc-bottom {
        border-bottom-left-radius:  50% 44px;
        border-bottom-right-radius: 50% 44px;
    }
    .home-section:has(+ .section-arc-top),
    .section-before-arc {
        padding-bottom: calc(2.5rem + 44px) !important;
    }
    /* Illustration auf Tablet/Mobile ausblenden: bricht aus dem Arc heraus */
    .claim-section-illustration {
        display: none !important;
    }
    /* claim-section: natürliche Höhe auf Tablet/Mobile */
    .claim-section {
        min-height: unset !important;
    }
}

/* Mobile (< 768px) */
@media (max-width: 767.98px) {
    .section-arc-top {
        border-top-left-radius:  50% 28px;
        border-top-right-radius: 50% 28px;
        margin-top: -28px;
    }
    .section-arc-bottom {
        border-bottom-left-radius:  50% 28px;
        border-bottom-right-radius: 50% 28px;
    }
    .home-section:has(+ .section-arc-top),
    .section-before-arc {
        padding-bottom: calc(2rem + 28px) !important;
    }
    .home-section.bg-primary {
        padding-top:    2.5rem !important;
        padding-bottom: 2.5rem !important;
    }
}
.section-arc-top-out {
    position: relative;
    z-index: 4;
    overflow: clip;
}
.section-arc-bottom-out {
    position: relative;
    z-index: 4;
    overflow: clip;
}
/* SVG-Divider-Element */
.g-wave {
    position: absolute;
    width: 100%;
    left: 0;
    pointer-events: none;
    display: block;
    line-height: 0;
    z-index: 2;
}
.g-wave-top    { top: 0;    height: 60px; }
.g-wave-bottom { bottom: 0; height: 60px; }

@media (max-width: 991.98px) {
    .g-wave-top    { height: 44px; }
    .g-wave-bottom { height: 44px; }
}
@media (max-width: 767.98px) {
    .g-wave-top    { height: 28px; }
    .g-wave-bottom { height: 28px; }
}
.home-section.bg-primary {
    background:
        radial-gradient(ellipse 60% 50% at 12% 18%, rgba(255, 255, 255, 0.14) 0%, transparent 65%),
        radial-gradient(ellipse 40% 35% at 85% 80%, rgba(255, 255, 255, 0.07) 0%, transparent 55%),
        linear-gradient(140deg, var(--primary-color) 0%, var(--primary-dark) 100%) !important;
    position: relative;
}

.home-section.bg-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
}
.home-section.bg-primary > .container,
.home-section.bg-primary > .section-wave-divider {
    position: relative;
    z-index: 1;
}
.home-section.bg-primary .bg-white.bg-opacity-10 {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    border-radius: 1.1rem !important;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.35s ease,
                background 0.3s ease;
}
.home-section.bg-primary .bg-white.bg-opacity-10:hover {
    background: rgba(255, 255, 255, 0.18) !important;
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.22) !important;
}

/* Ikone in Garantie-Kacheln */
.home-section.bg-primary .bg-white.bg-opacity-10 .fa-2x {
    filter: drop-shadow(0 2px 8px rgba(255,255,255,0.4));
    transition: transform 0.3s ease;
}
.home-section.bg-primary .bg-white.bg-opacity-10:hover .fa-2x {
    transform: scale(1.15) rotate(-5deg);
}
.step-number {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%) !important;
    box-shadow: 0 8px 24px rgba(24, 131, 41, 0.35) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}
.step-card:hover .step-number {
    transform: scale(1.12) rotate(-5deg);
    box-shadow: 0 14px 34px rgba(24, 131, 41, 0.48) !important;
}

/* Icon-Kreise in Vorteil-Cards: Spring-Animation beim Hover */
.icon-square {
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.card.hover-lift:hover .icon-square {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) !important;
    color: #fff !important;
    transform: scale(1.18) rotate(-6deg);
    box-shadow: 0 8px 24px rgba(24, 131, 41, 0.32);
}

/* Hero Section: sanft grüner Hintergrundtönung */
.hero-section.bg-light {
    background: linear-gradient(150deg, #fdfffe 0%, #f1faf4 55%, #eef8f1 100%) !important;
}
.accordion {
    margin-top: 0 !important;
}
#anspruchscheck-card {
    border-radius: 1.5rem !important;
    overflow: hidden;
}
#anspruchscheck-card .btn-outline-primary,
#anspruchscheck-card .btn-outline-secondary {
    transition: all 0.25s ease;
}
#anspruchscheck-card .btn-outline-primary:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 18px rgba(24, 131, 41, 0.25);
}

/* Cross-Sell & FAQ-Preview Karten: subtiler grüner Rand beim Hover */
.home-section .card.shadow-sm.hover-lift {
    border: 1.5px solid transparent !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.home-section .card.shadow-sm.hover-lift:hover {
    border-color: rgba(24, 131, 41, 0.22) !important;
}

/* --- CTA-Section: dezente grüne Trennlinie oben --- */
.bg-light.border-top.home-section:last-of-type {
    border-top: 2px solid rgba(24, 131, 41, 0.18) !important;
}

/* --- Produktkarten (Featured / Produkt-Seiten): modernisiert --- */
.featured-product-link .card {
    border-radius: 1.25rem !important;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.35s ease,
                border-color 0.3s ease !important;
    border: 1.5px solid rgba(24, 131, 41, 0.06) !important;
}
.featured-product-link:hover .card {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 48px rgba(24, 131, 41, 0.12), 0 4px 16px rgba(0,0,0,0.05) !important;
    border-color: rgba(24, 131, 41, 0.2) !important;
}

.vsp-section {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: stretch !important;
    min-height: auto;
    gap: clamp(18px, 2.4vw, 34px);
    padding: 0 clamp(20px, 3.6vw, 64px) !important;
    overflow: hidden;
    position: relative;
    background: linear-gradient(140deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}
.vsp-stage-left {
    flex: 0 1 620px;
    max-width: 620px;
    align-self: stretch;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 72px 48px 0 56px;
    position: relative;
    clip-path: none;
    margin-right: 0;
    border-right: 0;
    z-index: 1;
    overflow: hidden;
}
.vsp-stage-left::before {
    content: none;
}

.vsp-stage-eyebrow {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.65);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.vsp-stage-heading {
    font-size: clamp(2.7rem, 3.8vw, 3.8rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 18px;
    text-shadow: 0 3px 18px rgba(0,0,0,0.22);
    position: relative;
    z-index: 1;
}

.vsp-stage-sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 0;
    max-width: 360px;
    position: relative;
    z-index: 1;
}

.vsp-mascot {
    display: block;
    width: 115%;
    max-width: 480px;
    height: auto;
    object-fit: contain;
    margin: clamp(28px, 4vh, 60px) -28px 0 -28px;
    filter: drop-shadow(0 -6px 36px rgba(0,0,0,0.28));
    animation: vspMascotFloat 5s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes vspMascotFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-12px); }
}
.vsp-stage-right {
    flex: 0 1 700px;
    max-width: 700px;
    align-self: stretch;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 44px 0 36px;
    position: relative;
    z-index: 1;
}
.vsp-stack-wrap {
    width: 100%;
    max-width: 620px;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    backdrop-filter: none;
}

.vsp-deck {
    position: relative;
    height: 500px;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}
.vsp-deck:active { cursor: grabbing; }
.vsp-card {
    position: absolute;
    inset: 0;
    background: #ffffff;
    border-radius: 22px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow:
        0 2px 4px rgba(0,0,0,0.04),
        0 8px 24px rgba(0,0,0,0.07),
        0 20px 48px rgba(0,0,0,0.04);
    overflow: hidden;
    will-change: transform, opacity;
    touch-action: none;
    display: flex;
    flex-direction: column;
}

.vsp-card__stripe { display: none; }

.vsp-card__inner {
    padding: 44px 44px 36px 44px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.vsp-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
}

.vsp-card__icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 10px 26px rgba(24, 131, 41,0.30);
    flex-shrink: 0;
}

.vsp-card__counter {
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(22,34,28,0.38);
    letter-spacing: 0.5px;
    padding-top: 4px;
    line-height: 1;
}
.vsp-card__counter em { font-style: normal; }

.vsp-card__title {
    font-size: 1.55rem;
    font-weight: 800;
    color: #1f3b2c;
    margin-bottom: 14px;
    line-height: 1.25;
}

.vsp-card__body {
    font-size: 1.05rem;
    color: #2b3f33;
    line-height: 1.72;
    font-weight: 500;
    flex: 1;
    margin: 0;
}

.vsp-card__tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 20px;
    padding: 7px 16px;
    background: rgba(24, 131, 41,0.08);
    border: 1.5px solid rgba(24, 131, 41,0.22);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    align-self: flex-start;
}
.vsp-card__tag i { font-size: 0.7rem; opacity: 0.8; }
.vsp-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 22px;
}

.vsp-dots { display: flex; gap: 8px; }
.vsp-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.65);
    background: rgba(255,255,255,0.30);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    padding: 0;
}
.vsp-dot--active {
    background: #ffffff;
    border-color: #ffffff;
    transform: scale(1.55);
    box-shadow: 0 0 0 2px rgba(24, 131, 41,0.36);
}
.vsp-dot:hover:not(.vsp-dot--active) { background: rgba(255,255,255,0.58); transform: scale(1.2); }

.vsp-nav-btn {
    width: 42px; height: 42px;
    border-radius: 50%;
    border: 2px solid rgba(24, 131, 41,0.25);
    background: #fff;
    color: var(--primary-color);
    font-size: 0.88rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.22s, border-color 0.22s, transform 0.18s;
}
.vsp-nav-btn:hover { background: var(--primary-color); border-color: var(--primary-color); color: #fff; transform: scale(1.1); }
.vsp-nav-btn:active { transform: scale(0.95); }
.vsp-hint {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.73rem;
    color: rgba(255,255,255,0.62);
    transition: opacity 0.4s;
}
.vsp-hint__text i { margin-right: 4px; opacity: 0.65; }
.vsp-hint__arrow {
    opacity: 0.3;
    animation: vspArrowPulse 1.8s ease-in-out infinite;
}
.vsp-hint__arrow--right { animation-delay: 0.9s; }
@keyframes vspArrowPulse {
    0%,100% { opacity: 0.12; transform: translateX(0); }
    50%      { opacity: 0.5;  transform: translateX(3px); }
}
.vsp-hint__arrow--left { animation-direction: reverse; }
@media (max-width: 1199.98px) {
    .vsp-section { gap: 18px; padding-inline: 24px !important; }
    .vsp-stage-left  { padding: 60px 42px 0 44px; }
    .vsp-stage-right { padding: 36px 0 32px; }
    .vsp-deck  { height: 480px; }
    .vsp-stack-wrap { max-width: 560px; }
}
@media (max-width: 991.98px) {
    .vsp-section { flex-direction: column !important; min-height: auto !important; gap: 0; padding-inline: 0 !important; }

    .vsp-stage-left {
        flex: none;
        width: 100%;
        align-self: auto;
        clip-path: none;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,0.16);
        padding: 64px 48px 96px;
        align-items: center;
        text-align: center;
    }
    .vsp-stage-heading { text-align: center; }
    .vsp-stage-sub { text-align: center; max-width: 460px; margin: 0 auto; }
    .vsp-mascot {
        max-width: 240px;
        margin: 32px auto 0 auto;
        width: 100%;
    }
    .vsp-stage-right {
        padding: 40px 32px 36px;
        align-self: auto;
    }
    .vsp-stack-wrap { max-width: 580px; }
    .vsp-deck { height: 460px; }
}
@media (max-width: 767.98px) {
    .vsp-stage-left  { padding: 52px 36px 80px; }
    .vsp-stage-heading { font-size: clamp(1.9rem, 5vw, 2.4rem); }
    .vsp-mascot { max-width: 200px; }
    .vsp-stage-right { padding: 32px 24px 28px; }
    .vsp-stack-wrap { max-width: 480px; }
    .vsp-deck { height: 430px; }
    .vsp-card__inner { padding: 36px 36px 28px; }
    .vsp-card__title { font-size: 1.4rem; }
}
@media (max-width: 575.98px) {
    .vsp-stage-left  { padding: 44px 24px 72px; }
    .vsp-stage-eyebrow { font-size: 0.68rem; }
    .vsp-stage-heading { font-size: clamp(1.65rem, 6.5vw, 2rem); }
    .vsp-stage-sub { font-size: 0.92rem; }
    .vsp-mascot { max-width: 170px; }
    .vsp-stage-right { padding: 28px 16px 24px; }
    .vsp-deck { height: 400px; }
    .vsp-card__inner { padding: 28px 26px 22px; }
    .vsp-card__title { font-size: 1.25rem; }
    .vsp-card__body { font-size: 0.97rem; }
    .vsp-card__icon-wrap { width: 60px; height: 60px; font-size: 1.5rem; border-radius: 16px; }
    .vsp-nav-btn { width: 38px; height: 38px; }
}
.odenwald-ui .vsp-section.home-section {
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0;
}

.garantie-merged {
    min-height: auto !important;
    min-height: unset !important;
    padding-top: clamp(1.25rem, 2.8vw, 2rem) !important;
    padding-bottom: clamp(2.5rem, 5vw, 4rem) !important;
    margin-top: 0;
    background: linear-gradient(140deg, var(--primary-color) 0%, var(--primary-dark) 100%) !important;
    position: relative;
    z-index: 1;
}

.garantie-merged::before {
    content: none;
}

.garantie-merged.bg-primary {
    background: linear-gradient(140deg, var(--primary-color) 0%, var(--primary-dark) 100%) !important;
}

.garantie-merged.bg-primary::after {
    content: none !important;
    background: none !important;
}

@media (max-width: 991.98px) {
    .garantie-merged {
        margin-top: 0;
        padding-top: 1.25rem !important;
        padding-bottom: 2.5rem !important;
    }
}

@media (min-width: 992px) {
    .vsp-section,
    .garantie-merged {
        background-image: linear-gradient(140deg, var(--primary-color) 0%, var(--primary-dark) 100%) !important;
        background-attachment: fixed;
        background-position: center top;
        background-size: cover;
    }
}

@media (max-width: 991.98px) {
    .odenwald-ui .vsp-section.home-section { flex-direction: column; }
}

/* ============================================================
   Final CTA + Rückruf – kombinierte letzte Section
   ============================================================ */
.final-cta-section {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    padding: 0 !important;
    position: relative;
    overflow: hidden;
    background: #edf2ee;
}
.final-cta-left {
    flex: 0 0 50%;
    background: linear-gradient(145deg, var(--primary-color) 0%, #2f8f42 100%);
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
    position: relative;
    overflow: hidden;
    margin-right: -2px;
    padding: 80px 80px 80px 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
    transition: flex-basis 0.42s ease, clip-path 0.42s ease, padding 0.42s ease;
}
.final-cta-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 15% 20%, rgba(255,255,255,0.08), transparent 65%),
        radial-gradient(circle 220px at 82% 80%, rgba(255,255,255,0.04), transparent);
    pointer-events: none;
}
.final-cta-left::after {
    content: none;
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.final-cta-left__inner {
    position: relative;
    z-index: 1;
    max-width: 460px;
}
.final-cta-badge {
    background: rgba(255,255,255,0.12) !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.final-cta-heading {
    font-size: clamp(1.9rem, 3vw, 2.75rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.final-cta-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.86);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    max-width: 400px;
}
.final-cta-checks {
    list-style: none;
    padding: 0;
    margin: 0;
}
.final-cta-checks li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255,255,255,0.9);
    font-size: 0.92rem;
    font-weight: 500;
    padding: 0.32rem 0;
}
.final-cta-checks li i { color: rgba(255,255,255,0.75); flex-shrink: 0; }
.btn-outline-white {
    color: #fff !important;
    border: 2px solid rgba(255,255,255,0.55) !important;
    background: transparent !important;
    transition: all 0.25s ease;
}
.btn-outline-white:hover,
.btn-outline-white:focus {
    background: rgba(255,255,255,0.18) !important;
    border-color: rgba(255,255,255,0.9) !important;
    color: #fff !important;
}
.final-cta-inline-note {
    color: rgba(255,255,255,0.86);
    font-size: 0.9rem;
}
.final-cta-stats {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
    padding: 0.75rem 0.9rem;
    border-top: 0;
    border-radius: 14px;
    background: rgba(255,255,255,0.08);
}
.final-cta-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    text-align: center;
}
.final-cta-stat strong {
    font-size: 1.55rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    display: block;
}
.final-cta-stat span {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.72);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 5px;
    display: block;
    line-height: 1.3;
}
.final-cta-stat__divider {
    width: 1px;
    height: 28px;
    background: rgba(255,255,255,0.14);
    flex-shrink: 0;
}
.final-cta-oder {
    flex: 0 0 80px;
    background: var(--bg-light);
    position: relative;
    z-index: 2;
    margin-left: -28px;
}
.final-cta-oder span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(24, 131, 41,0.18);
    background: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #8a9a8e;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.final-cta-right {
    flex: 1;
    background: #edf2ee;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 64px 64px;
    transition: transform 0.42s ease, opacity 0.36s ease;
}
.final-cta-form-wrap {
    width: 100%;
    max-width: 520px;
}
.final-cta-form-card {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 10px 28px rgba(31,59,44,0.07), 0 1px 3px rgba(0,0,0,0.03);
    padding: 2.25rem;
    border: 1px solid rgba(31,59,44,0.05);
}
.final-cta-hr {
    border-color: rgba(31,59,44,0.10);
    margin: 0 0 1.75rem;
}
.final-cta-phone-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 6px 16px rgba(24, 131, 41,0.18);
    flex-shrink: 0;
}
.final-cta-close {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(31,59,44,0.12);
    border-radius: 50%;
    background: #fff;
    color: #42544a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}
.final-cta-close:hover,
.final-cta-close:focus {
    background: #f4f7f4;
    color: #1f3b2c;
    border-color: rgba(31,59,44,0.2);
}

@media (min-width: 992px) {
    .final-cta-section:not(.is-callback-open) .final-cta-left {
        flex-basis: 100%;
        clip-path: none;
        padding: 84px clamp(28px, 6vw, 96px);
        align-items: center;
    }
    .final-cta-section:not(.is-callback-open) .final-cta-left__inner {
        width: min(760px, 100%);
        max-width: none;
        margin: 0 auto;
    }
    .final-cta-section:not(.is-callback-open) .final-cta-sub {
        max-width: 560px;
    }
    .final-cta-section:not(.is-callback-open) .final-cta-right {
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        width: min(560px, 48%);
        transform: translateX(105%);
        opacity: 0;
        pointer-events: none;
    }
    .final-cta-section.is-callback-open .final-cta-right {
        position: relative;
        width: auto;
        height: auto;
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }
}

.final-cta-form-wrap .form-control,
.final-cta-form-wrap .form-select {
    border: 1px solid rgba(31,59,44,0.12);
    background: #fff;
    box-shadow: none;
    border-radius: 0.75rem;
}
.final-cta-form-wrap .form-control:focus,
.final-cta-form-wrap .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(24, 131, 41,0.15);
}
/* Responsive */
@media (max-width: 1199.98px) {
    .final-cta-left  { padding: 64px 56px 64px 52px; }
    .final-cta-right { padding: 60px 52px; }
}
@media (max-width: 991.98px) {
    .final-cta-section { flex-direction: column !important; min-height: auto !important; }
    .final-cta-left {
        clip-path: polygon(0 0, 100% 0, 100% 86%, 50% 100%, 0 86%);
        flex: none;
        width: 100%;
        padding: 60px 40px 96px;
        align-items: center;
    }
    .final-cta-left__inner { max-width: 100%; }
    .final-cta-oder  { display: none !important; }
    .final-cta-right {
        flex: none;
        width: 100%;
        padding: 52px 24px 60px;
        justify-content: center;
        position: relative !important;
        transform: none !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
    .final-cta-form-wrap { max-width: 100%; }
    .final-cta-form-card { padding: 2rem; }
}
@media (max-width: 767.98px) {
    .final-cta-heading { font-size: clamp(1.75rem, 6vw, 2.2rem); }
    .final-cta-left  { padding: 48px 24px 80px; }
    .final-cta-right { padding: 36px 16px 48px; }
    .final-cta-form-card { padding: 1.5rem; border-radius: 1.25rem; }
    .final-cta-stat  { flex: 0 0 calc(33.33% - 4px); }
    .final-cta-stat__divider { display: none; }
    .final-cta-stat strong { font-size: 1.3rem; }
    .final-cta-stats { flex-wrap: wrap; gap: 0.75rem; }
    .final-cta-inline-note { font-size: 0.84rem; }
}

@media (max-width: 575.98px) {
    /* Grüne Seite: weniger Padding, flacherer V-Schnitt */
    .final-cta-left {
        padding: 40px 20px 68px;
        clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
    }

    .final-cta-heading {
        font-size: clamp(1.45rem, 7.5vw, 1.85rem);
        margin-bottom: 0.75rem;
    }

    .final-cta-sub {
        font-size: 0.88rem;
        margin-bottom: 0.9rem;
    }

    /* Checkboxen kompakter */
    .final-cta-checks li {
        font-size: 0.86rem;
        padding: 0.22rem 0;
    }

    /* Stats: alle 3 neben­einander ohne Zeilenumbruch */
    .final-cta-stats {
        flex-wrap: nowrap;
        gap: 0;
        padding: 0.55rem 0.6rem;
        margin-top: 1rem;
        border-radius: 10px;
    }

    .final-cta-stat { flex: 1; }
    .final-cta-stat__divider { display: block; height: 22px; }
    .final-cta-stat strong { font-size: 1.15rem; }
    .final-cta-stat span   { font-size: 0.6rem; }

    /* "Oder direkt anrufen"-Zeile kompakter */
    .final-cta-inline-note { font-size: 0.8rem; margin-top: 0.6rem !important; }

    /* Formular-Seite */
    .final-cta-right { padding: 24px 14px 36px; }
    .final-cta-form-card {
        padding: 1.1rem;
        border-radius: 1rem;
        box-shadow: 0 6px 18px rgba(31,59,44,0.09);
    }

    /* Schließen-Button auf Mobile ausblenden (kein Toggle-Verhalten) */
    .final-cta-close { display: none !important; }

    /* Formular-Kopf enger */
    .final-cta-form-card .d-flex.align-items-start {
        gap: 0.75rem !important;
        margin-bottom: 1rem !important;
    }
    .final-cta-phone-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        border-radius: 10px;
    }
    .final-cta-form-card h3 { font-size: 1.05rem; }
}

/* ============================================================
   PRODUKT-SHOWCASE SECTION  (.pshowcase-*)
   ============================================================ */
.pshowcase-section {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    padding: 0 !important;
    min-height: min(100vh, 900px);
    min-height: min(100svh, 900px);
    overflow: hidden;
    position: relative;
}

/* Left info panel */
.pshowcase-info {
    flex: 0 0 50%;
    background: linear-gradient(140deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 80px 80px 72px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.pshowcase-info::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top left, rgba(255,255,255,0.12) 0%, transparent 55%),
                radial-gradient(ellipse at bottom right, rgba(0,0,0,0.15) 0%, transparent 55%);
    pointer-events: none;
}
.pshowcase-info::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}
.pshowcase-info__inner {
    position: relative;
    z-index: 1;
    max-width: 420px;
}
.pshowcase-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .04em;
    border-radius: 999px;
    padding: 5px 14px;
    margin-bottom: 18px;
}
.pshowcase-heading {
    font-size: clamp(2rem, 3.2vw, 3rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -.02em;
}
.pshowcase-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.6;
    margin-bottom: 1.75rem;
    max-width: 380px;
}
.pshowcase-checks {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}
.pshowcase-checks li {
    color: rgba(255,255,255,0.9);
    padding: .35rem 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}
.pshowcase-checks li i {
    color: rgba(255,255,255,0.65);
    width: 16px;
    flex-shrink: 0;
}
.pshowcase-btns {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

/* Right gallery */
.pshowcase-gallery {
    flex: 1;
    background: var(--bg-light);
    overflow-x: auto;
    overflow-y: hidden;
    display: flex;
    flex-direction: column;
    padding: 60px 0 40px 60px;
    cursor: grab;
    user-select: none;
    scrollbar-width: none;
}
.pshowcase-gallery::-webkit-scrollbar { display: none; }
.pshowcase-gallery.is-dragging { cursor: grabbing; }

.pshowcase-track {
    display: flex;
    gap: 1.5rem;
    padding-right: 60px;
    flex: 1;
}

/* Product card */
.pshowcase-card {
    flex: 0 0 280px;
    background: #fff;
    border-radius: 1.25rem;
    border: 1px solid rgba(31,59,44,0.08);
    box-shadow: 0 8px 24px rgba(0,0,0,0.07);
    color: inherit;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: pcard-in .5s ease forwards;
    animation-delay: var(--delay, 0ms);
}
@keyframes pcard-in {
    to { opacity: 1; transform: translateY(0); }
}
.pshowcase-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(24, 131, 41,0.14);
    color: inherit;
}
.pshowcase-card__img-wrap {
    background: #f8fdf9;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
}
.pshowcase-card__img-wrap img {
    width: auto;
    object-fit: contain;
    transition: transform .35s ease;
}
.pshowcase-card:hover .pshowcase-card__img-wrap img {
    transform: scale(1.06);
}
.pshowcase-card__body {
    padding: 1.25rem 1.5rem 1.5rem;
}
.pshowcase-card__label {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--text-muted, #6c757d);
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}
.pshowcase-card__name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark, #1F3B2C);
    margin: 0 0 .75rem;
    line-height: 1.3;
}
.pshowcase-card__tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .75rem;
    font-weight: 700;
    color: var(--primary-color);
    background: rgba(24, 131, 41,0.08);
    border: 1px solid rgba(24, 131, 41,0.2);
    border-radius: 999px;
    padding: 3px 10px;
}

/* Scrollbar indicator */
.pshowcase-scrollbar {
    height: 4px;
    background: rgba(31,59,44,0.1);
    border-radius: 2px;
    margin: 20px 60px 0 0;
    position: relative;
    flex-shrink: 0;
}
.pshowcase-scrollbar__thumb {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--primary-color);
    border-radius: 2px;
    transition: left .1s ease;
    min-width: 50px;
}
@media (max-width: 991.98px) {
    .pshowcase-section {
        flex-direction: column !important;
        min-height: auto !important;
    }
    .pshowcase-info {
        clip-path: polygon(0 0, 100% 0, 100% 86%, 50% 100%, 0 86%);
        flex: none;
        width: 100%;
        padding: 52px 36px 80px;
    }
    .pshowcase-info__inner { max-width: 100%; }
    .pshowcase-gallery { padding: 40px 0 32px 24px; }
    .pshowcase-track  { padding-right: 24px; }
    .pshowcase-scrollbar { margin-right: 24px; }
}
@media (max-width: 767.98px) {
    .pshowcase-info { padding: 44px 24px 72px; }
    .pshowcase-card { flex: 0 0 240px; }
    .pshowcase-card__img-wrap { height: 180px; }
    .pshowcase-btns { flex-direction: column; }
}


/* ============================================================
   GARANTIE SECTION  (.garantie-tile, .garantie-stats)
   ============================================================ */
.garantie-tile {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 1.25rem;
    padding: 2.25rem 1.5rem;
    height: 100%;
    text-align: center;
    transition: background .3s ease, border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.garantie-tile:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.28);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.garantie-tile__icon {
    font-size: 2.6rem;
    color: #fff;
    margin-bottom: .85rem;
    transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.garantie-tile:hover .garantie-tile__icon {
    transform: scale(1.18) rotate(-5deg);
}
.garantie-tile__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .5rem;
}
.garantie-tile__text {
    font-size: .9rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.55;
    margin: 0;
}

/* Stats-Bar */
.garantie-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 1.25rem;
    padding: 1.5rem 2rem;
}
.garantie-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem 2.5rem;
    gap: 2px;
}
.garantie-stat strong {
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}
.garantie-stat span {
    font-size: .78rem;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 600;
}
.garantie-stat__div {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    flex-shrink: 0;
}

@media (max-width: 767.98px) {
    .garantie-stat { padding: .5rem 1.5rem; }
    .garantie-stat strong { font-size: 1.3rem; }
    .garantie-stat__div { display: none; }
    .garantie-stats { gap: .5rem; }
}


/* ============================================================
   INFO-HUB SECTION  (FAQ + Cross-Links kombiniert)
   ============================================================ */
.infohub-section {
    background: var(--bg-light, #F4FBF6);
    padding: 80px 0 96px;
}

/* Badge (kleines Label über Headline) */
.infohub-badge {
    display: inline-block;
    background: rgba(24, 131, 41,0.10);
    border: 1px solid rgba(24, 131, 41,0.20);
    color: var(--primary-color);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .05em;
    border-radius: 999px;
    padding: 5px 14px;
}

/* FAQ-Karten */
.infohub-faq-card {
    background: #fff;
    border-radius: 1.25rem;
    border: 1px solid rgba(31,59,44,0.07);
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    padding: 2rem 1.5rem;
    height: 100%;
    text-align: center;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.infohub-faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(24, 131, 41,0.10);
    border-color: rgba(24, 131, 41,0.18);
}
.infohub-faq-icon {
    width: 56px;
    height: 56px;
    background: rgba(24, 131, 41,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary-color);
    margin: 0 auto 1.1rem;
    transition: background .3s ease, transform .3s cubic-bezier(.34,1.56,.64,1);
}
.infohub-faq-card:hover .infohub-faq-icon {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.12) rotate(-5deg);
}
.infohub-faq-card h5 {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-dark, #1F3B2C);
    margin-bottom: .6rem;
}
.infohub-faq-card p {
    font-size: .9rem;
    color: #5a6978;
    line-height: 1.55;
    margin: 0;
}

/* Trennlinie */
.infohub-divider {
    border-color: rgba(31,59,44,0.10);
    margin: 3rem 0 2.5rem;
}

/* Wegweiser-Karten */
.infohub-link-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: #fff;
    border-radius: 1.25rem;
    border: 1px solid rgba(31,59,44,0.08);
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    padding: 1.5rem 1.5rem 1.75rem;
    height: 100%;
    text-decoration: none;
    color: inherit;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    cursor: pointer;
    text-align: left;
}
.infohub-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(24, 131, 41,0.10);
    border-color: rgba(24, 131, 41,0.2);
    color: inherit;
}
.infohub-link-icon {
    width: 44px;
    height: 44px;
    background: rgba(24, 131, 41,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: .75rem;
    flex-shrink: 0;
    transition: background .3s ease, transform .3s cubic-bezier(.34,1.56,.64,1);
}
.infohub-link-card:hover .infohub-link-icon {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
}
.infohub-link-label {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--primary-color);
    font-weight: 700;
}
.infohub-link-card h6 {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark, #1F3B2C);
    margin: 2px 0 4px;
    line-height: 1.3;
}
.infohub-link-arrow {
    font-size: .82rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: auto;
}

/* CTA-Variante (grüner Hintergrund) */
.infohub-link-card--cta {
    background: linear-gradient(140deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-color: transparent;
}
.infohub-link-card--cta .infohub-link-icon {
    background: rgba(255,255,255,0.18);
    color: #fff;
}
.infohub-link-card--cta:hover .infohub-link-icon {
    background: rgba(255,255,255,0.3);
    color: #fff;
}
.infohub-link-card--cta .infohub-link-label,
.infohub-link-card--cta h6,
.infohub-link-card--cta .infohub-link-arrow {
    color: rgba(255,255,255,0.92) !important;
}
.infohub-link-card--cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(24, 131, 41,0.3);
}

/* Responsive */
@media (max-width: 767.98px) {
    .infohub-section { padding: 60px 0 72px; }
    .infohub-faq-card { padding: 1.5rem 1.25rem; }
    .infohub-link-card { padding: 1.25rem 1.25rem 1.5rem; }
}

/* ============================================================
   PRODUKT-SLIDER  (.prod-slider-*)
   ============================================================ */
.prod-slider-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    cursor: grab;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
}
.prod-slider-wrap::-webkit-scrollbar { display: none; }
.prod-slider-wrap.is-dragging { cursor: grabbing; }

.prod-slider-track {
    display: flex;
    gap: 1.25rem;
    padding: 8px 4px 8px;
    width: max-content;
}

.prod-slider-card {
    flex: 0 0 240px;
    background: #fff;
    border-radius: 1.25rem;
    border: 1px solid rgba(31,59,44,0.07);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: transform .28s ease, box-shadow .28s ease;
    display: flex;
    flex-direction: column;
}
.prod-slider-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(24, 131, 41,0.12);
    color: inherit;
}
.prod-slider-card__img {
    background: #f8fdf9;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px;
    padding: 1.25rem;
}
.prod-slider-card__img img {
    max-height: 150px;
    width: auto;
    object-fit: contain;
    transition: transform .3s ease;
}
.prod-slider-card:hover .prod-slider-card__img img { transform: scale(1.05); }
.prod-slider-card__body {
    padding: 1rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.prod-slider-card__label {
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .09em;
    font-weight: 700;
    color: #6c757d;
}
.prod-slider-card__name {
    font-size: .95rem;
    font-weight: 700;
    color: var(--text-dark, #1F3B2C);
    line-height: 1.3;
    margin: 0;
}
.prod-slider-card__tag {
    display: inline-flex;
    align-items: center;
    font-size: .72rem;
    font-weight: 700;
    color: var(--primary-color, #2E8B3C);
    background: rgba(24, 131, 41,0.08);
    border: 1px solid rgba(24, 131, 41,0.18);
    border-radius: 999px;
    padding: 2px 9px;
    width: fit-content;
    margin-top: 4px;
}
.prod-slider-bar {
    height: 3px;
    background: rgba(31,59,44,0.08);
    border-radius: 2px;
    position: relative;
    margin: 4px 4px 0;
}
.prod-slider-bar__thumb {
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    background: var(--primary-color, #2E8B3C);
    border-radius: 2px;
    transition: left .1s ease;
    min-width: 40px;
}

/* ============================================================
   Produktkarten (Produktliste) – Premium .plk-card
   ============================================================ */
.plk-card {
    background: #fff;
    border-radius: 1rem;
    border: 1px solid rgba(0,0,0,0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s ease;
}
.plk-card:hover {
    box-shadow: 0 12px 32px rgba(0,0,0,0.10);
}

/* Bild-Bereich */
.plk-img-wrap {
    display: block;
    position: relative;
    background: linear-gradient(145deg, #f0fdf4 0%, #eef6f0 100%);
    aspect-ratio: 5 / 4;
    overflow: hidden;
    text-decoration: none;
}
.plk-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
    transition: transform 0.4s ease;
}
.plk-card:hover .plk-img-wrap img {
    transform: scale(1.04);
}
.plk-kasse-badge {
    position: absolute;
    top: 0.625rem;
    right: 0.625rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 0.25rem 0.65rem;
    border-radius: 2rem;
    box-shadow: 0 3px 10px rgba(24,131,41,0.3);
    pointer-events: none;
}

/* Body */
.plk-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1rem;
    gap: 0.375rem;
}

/* Lager-Status */
.plk-stock {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 2rem;
    width: fit-content;
}
.plk-stock.instock  { background: #ecfdf5; color: #059669; border: 1px solid #a7f3d0; }
.plk-stock.outofstock { background: #fff1f2; color: #be123c; border: 1px solid #fecdd3; }

/* Titel */
.plk-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.15s;
}
.plk-title:hover { color: var(--primary-color); }

/* Kurzbeschreibung */
.plk-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Footer-Bereich */
.plk-footer {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

/* Preis-Zeile */
.plk-price-row {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
}
.plk-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.02em;
    line-height: 1;
}
.plk-price-unit {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Formular */
.plk-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.plk-select {
    width: 100%;
    padding: 0.45rem 2rem 0.45rem 0.75rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 0.6rem;
    font-size: 0.82rem;
    font-family: var(--font-body);
    background: #f8fafc;
    color: var(--text-dark);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23718096' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.6rem center;
    transition: border-color 0.2s;
}
.plk-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(24,131,41,0.10);
    background-color: #fff;
}

/* Menge + Button Zeile – vertikal gestapelt (robust gegen langen Button-Text) */
.plk-action-row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
}
.plk-qty-wrap {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 0.6rem;
    padding: 0.2rem 0.75rem;
    width: 100%;
    justify-content: space-between;
}
.plk-qty-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    white-space: nowrap;
}
.plk-qty-select {
    border: 0;
    background: transparent;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    padding: 0.4rem 0.2rem;
    cursor: pointer;
    font-family: var(--font-body);
}
.plk-qty-select:focus { outline: none; }

/* Hinzufügen-Button */
.plk-add-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.6rem 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #fff;
    border: 0;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(24,131,41,0.25);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.plk-add-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(24,131,41,0.35);
    background: linear-gradient(135deg, #1a9430 0%, var(--primary-dark) 100%);
}
.plk-add-btn:active { transform: none; }

/* Budget-Warn-Zustand: gelb/amber */
.plk-btn-warn {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%) !important;
    box-shadow: 0 4px 12px rgba(217,119,6,0.30) !important;
    cursor: not-allowed;
    opacity: 0.92;
}
.plk-btn-warn:hover {
    transform: none !important;
    box-shadow: 0 4px 12px rgba(217,119,6,0.30) !important;
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%) !important;
}

/* ============================================================
   Responsive – .plk-card List Cards
   Basis: Action-Row gestapelt (Qty oben, Button unten, je volle Breite)
   Ab 992px: nebeneinander wenn genug Raum
   ============================================================ */

/* ≤ 991px: Badge kleiner */
@media (max-width: 991.98px) {
    .plk-kasse-badge { font-size: 0.6rem; padding: 0.18rem 0.5rem; }
    .plk-body        { padding: 0.875rem; }
    .plk-price       { font-size: 1.15rem; }
}

/* ≤ 575px: 1-Spalte */
@media (max-width: 575.98px) {
    .plk-desc    { -webkit-line-clamp: 1; }
    .plk-add-btn { font-size: 0.83rem; }
}

/* ≥ 992px: genug Platz – side-by-side Layout */
@media (min-width: 992px) {
    .plk-action-row {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
    }
    .plk-qty-wrap { width: auto; flex-shrink: 0; padding: 0 0.5rem; justify-content: flex-start; }
    .plk-add-btn  { width: auto; flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; }

    /* Warn-Button side-by-side: nur Icon – Text per title-Tooltip */
    .plk-btn-warn {
        flex: 0 0 2.5rem;
        width: 2.5rem;
        padding: 0.6rem 0;
        border-radius: 50%;
    }
    .plk-btn-warn span { display: none; }
    .plk-btn-warn i    { font-size: 1rem; margin: 0; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .plk-card,
    .plk-img-wrap img,
    .plk-add-btn,
    .plk-title { transition: none; }
    .plk-card:hover .plk-img-wrap img { transform: none; }
}
