:root {
    --brand-dark: #1d3b2f;
    --brand-mid: #35634f;
    --brand-light: #edf5f1;
    --accent: #d4a44d;
    --text-muted: #667085;
    --border-soft: #e5e7eb;
}

body {
    font-family: Inter, Arial, sans-serif;
    color: #21313c;
    background: #fafaf8;
}

.site-header {
    background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-mid) 60%, #2a5240 100%);
    box-shadow: 0 2px 16px rgba(17,37,29,0.18) !important;
}

/* Logo in Navbar */
.site-logo {
    height: 64px;
    width: auto;
    object-fit: contain;
    background: #fff;
    border-radius: 0.5rem;
    padding: 4px 10px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.18);
    transition: opacity 0.2s, box-shadow 0.2s;
}

.navbar-brand:hover .site-logo {
    opacity: 0.92;
    box-shadow: 0 2px 8px rgba(0,0,0,0.26);
}

.site-logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #fff;
}

.site-footer {
    background: #11251d;
    color: #f4f6f8;
}

.site-footer a {
    color: #d7eadf;
}

/* ===== HERO SLIDER ===== */
.hero-slider-wrap {
    position: relative;
    overflow: hidden;
    background: #11251d;
}

.hero-slide-img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(0.72);
    transition: filter 0.5s ease;
}

@media (max-width: 767.98px) {
    .hero-slide-img {
        height: 180px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .hero-slide-img {
        height: 260px;
    }
}

/* Carousel controls styling */
.hero-ctrl .carousel-control-prev-icon,
.hero-ctrl .carousel-control-next-icon {
    width: 2.4rem;
    height: 2.4rem;
    background-color: rgba(29,59,47,0.55);
    border-radius: 50%;
    padding: 0.35rem;
    backdrop-filter: blur(4px);
}

.hero-ctrl:hover .carousel-control-prev-icon,
.hero-ctrl:hover .carousel-control-next-icon {
    background-color: rgba(29,59,47,0.85);
}

/* Carousel indicators */
#heroCarousel .carousel-indicators li {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.6);
    border: none;
    margin: 0 4px;
    transition: background-color 0.3s;
}

#heroCarousel .carousel-indicators li.active {
    background-color: var(--accent);
    transform: scale(1.25);
}

/* Caption inside slide */
.hero-caption {
    bottom: 3.5rem;
    text-align: left;
    left: 5%;
    right: auto;
    text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.hero-caption-title {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.hero-caption-sub {
    font-size: 1.1rem;
    font-weight: 400;
    opacity: 0.9;
}

/* Overlay-Box über Slider */
.hero-overlay-box {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(17,37,29,0.88) 0%, rgba(17,37,29,0.55) 60%, transparent 100%);
    padding: 3rem 0 2.5rem;
}

.hero-overlay-inner {
    max-width: 620px;
    color: #fff;
}

.hero-overlay-inner .eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.hero-overlay-inner .hero-headline {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.hero-overlay-inner .hero-lead {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
}

@media (max-width: 767.98px) {
    .hero-overlay-box {
        padding: 1.5rem 0 1.25rem;
    }
    .hero-overlay-inner .hero-headline {
        font-size: 1.4rem;
    }
    .hero-overlay-inner .hero-lead {
        display: none;
    }
    .hero-overlay-inner .btn-lg {
        padding: 0.45rem 1.1rem;
        font-size: 0.92rem;
    }
}

.py-lg-6 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

@media (min-width: 992px) {
    .py-lg-6 {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

.hero-headline {
    font-size: 2.1rem;
    line-height: 1.15;
    color: var(--brand-dark);
}

@media (max-width: 767.98px) {
    .hero-headline {
        font-size: 2.2rem;
    }
}

.hero-lead {
    font-size: 1.15rem;
    color: #4a6058;
    max-width: 540px;
}

.hero-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-logo {
    max-height: 340px;
    max-width: 100%;
    width: auto;
    filter: drop-shadow(0 8px 32px rgba(29,59,47,0.15));
    transition: transform 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.02);
}

/* Badges unter Hero-Text */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hero-badge {
    background: var(--brand-light);
    color: var(--brand-dark);
    border: 1px solid rgba(29,59,47,0.15);
    border-radius: 999px;
    padding: 0.3rem 0.85rem;
    font-size: 0.82rem;
    font-weight: 600;
}

/* USP-Streifen */
.usp-strip {
    background: var(--brand-dark);
    color: #fff;
}

.usp-item {
    padding: 0.5rem;
}

.usp-icon {
    font-size: 1.75rem;
    line-height: 1;
    margin-bottom: 0.35rem;
}

.usp-label {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #c8e6d8;
}

/* Abschnitts-Überschriften */
.section-title {
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--brand-dark);
}

/* Kategorie-Karte Arrow-Akzent */
.category-arrow {
    color: var(--accent);
    font-weight: 700;
}

/* CTA am Seitenende */
.cta-section {
    background: linear-gradient(135deg, #f0f9f5 0%, #e8f5ee 100%);
}

.cta-card {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    box-shadow: 0 4px 32px rgba(29,59,47,0.07);
}

.cta-logo-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white-soft);
    border-radius: 1rem;
    padding: 0.75rem 1.5rem;
}

.cta-logo {
    height: 60px;
    width: auto;
}

.hero-card,
.filter-card,
.panel-card,
.summary-card,
.success-card,
.empty-state,
.category-card,
.product-card,
.product-image-detail {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 1rem;
}

.hero-card,
.filter-card,
.panel-card,
.summary-card,
.success-card,
.empty-state {
    padding: 1.5rem;
}

.category-card {
    color: inherit;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover,
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 1rem 2rem rgba(17, 37, 29, 0.08);
    text-decoration: none;
}

.product-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-card-link {
    display: block;
}

.product-card-media {
    height: 220px;
    background: linear-gradient(135deg, #ecf7f1, #d6eadf);
}

.product-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: 700;
    color: var(--brand-mid);
}

.product-placeholder.large {
    min-height: 320px;
}

.object-cover {
    object-fit: cover;
}

.product-image-detail {
    padding: 1rem;
}

.quantity-input {
    max-width: 110px;
}

.summary-card {
    max-width: 420px;
}

.sticky-offset {
    top: 1rem;
}

.empty-state,
.success-card {
    max-width: 760px;
    margin: 0 auto;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
}

.price-box {
    font-size: 1.35rem;
}

.btn-primary {
    background-color: var(--brand-dark);
    border-color: var(--brand-dark);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #142a21;
    border-color: #142a21;
}

.btn-outline-primary {
    color: var(--brand-dark);
    border-color: var(--brand-dark);
}

.btn-outline-primary:hover {
    background-color: var(--brand-dark);
    border-color: var(--brand-dark);
}

.cart-button {
    border-radius: 999px;
}

.table td,
.table th {
    vertical-align: middle;
}

.small-gap > div + div {
    margin-left: 1rem;
}

code {
    color: var(--brand-mid);
}

@media (max-width: 767.98px) {
    .hero-section .display-4 {
        font-size: 2.4rem;
    }

    .product-card-media {
        height: 180px;
    }

    .summary-card {
        max-width: none;
    }
}

