/* ============================================================
   Laadpaal Solutions — Storefront CSS
   ============================================================ */

/* Google Fonts — Inter + Poppins */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@700;800&display=swap');

/* CSS Custom Properties */
:root {
    --sf-primary:       #2ecc71;   /* bright green like the real site */
    --sf-primary-dark:  #27ae60;
    --sf-navy:          #0d1b2a;   /* dark navy navbar */
    --sf-dark:          #111827;
    --sf-hero-min-h:    560px;
    --sf-card-radius:   0.5rem;
    --sf-transition:    0.2s ease-in-out;
    --home-section-pad: clamp(3.25rem, 6vw, 5.5rem);
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--sf-dark);
    line-height: 1.6;
}

a { text-decoration: none; }

.home-section {
    padding-top: var(--home-section-pad);
    padding-bottom: var(--home-section-pad);
}

main > section:first-child,
main .hero-section {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-weight: 700;
}

/* ============================================================
   Hero Banner
   ============================================================ */
.hero-section {
    min-height: clamp(500px, 62vw, 640px);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.hero-slides {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slide {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.7s ease, transform 1.1s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 12, 22, 0.66) 0%, rgba(7, 12, 22, 0.48) 45%, rgba(7, 12, 22, 0.36) 100%),
        radial-gradient(circle at 78% 58%, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.34) 62%, rgba(0, 0, 0, 0.52) 100%);
    pointer-events: none;
    z-index: 2;
}

.hero-slide-content {
    position: relative;
    z-index: 3;
    width: min(620px, 92vw);
    margin-left: clamp(14px, 7vw, 120px);
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    backdrop-filter: none;
    text-align: left;
}

.hero-kicker {
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #81f4c3 !important;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.hero-title {
    font-size: clamp(1.8rem, 4.2vw, 3.2rem);
    font-family: 'Poppins', 'Inter', 'Segoe UI', sans-serif;
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

.hero-title .text-white {
    color: #ffffff !important;
}

.hero-title .text-success {
    color: #38ef9a !important;
}

.hero-copy {
    max-width: 520px;
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
    opacity: 1;
}

.hero-cta {
    border-radius: 8px;
    font-size: 1rem;
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.46);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 6;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.hero-nav:hover {
    background: rgba(46, 204, 113, 0.96);
    border-color: rgba(46, 204, 113, 1);
    transform: translateY(-50%) scale(1.04);
    box-shadow: 0 10px 25px rgba(46, 204, 113, 0.35);
}

.hero-nav--prev {
    left: clamp(12px, 2vw, 28px);
}

.hero-nav--next {
    right: clamp(12px, 2vw, 28px);
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: clamp(16px, 2.6vw, 30px);
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 6;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, 0.35);
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.active {
    width: 28px;
    background: #27ae60;
}

.hero-icon-wrapper {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-12px); }
}

/* ============================================================
   Sticky Navbar
   ============================================================ */
.storefront-navbar {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    z-index: 1030;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    margin: 0;
}

.storefront-navbar .nav-link {
    font-weight: 500;
    font-size: 0.92rem;
    letter-spacing: 0.01em;
    color: #1a1a2e !important;
    transition: color var(--sf-transition);
    padding: 0.5rem 0.9rem;
}

.storefront-navbar .nav-link:hover,
.storefront-navbar .nav-link.active {
    color: var(--sf-primary) !important;
}



/* Dropdown */
.storefront-navbar .dropdown-item:hover,
.storefront-navbar .dropdown-item:focus {
    background-color: #f0faf4 !important;
    color: var(--sf-primary) !important;
}

.storefront-navbar .dropdown-item:hover i,
.storefront-navbar .dropdown-item:focus i {
    color: var(--sf-primary) !important;
}

/* Top announcement bar */
.top-bar {
    background-color: #0a1520;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.7);
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
    z-index: 2100;
    margin: 0;
    top: 0;
}

.top-bar a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color var(--sf-transition);
}

.top-bar a:hover {
    color: var(--sf-primary);
}

.top-lang-trigger {
    border: 0;
    color: #dbe4ee;
    background: transparent;
    border-radius: 999px;
    font-size: .78rem;
    line-height: 1;
    padding: 0.28rem 0.6rem;
}

.top-lang-trigger:hover,
.top-lang-trigger:focus {
    color: #fff;
    border-color: transparent;
    background: transparent;
}

.lang-flag-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    object-fit: cover;
    display: inline-block;
}

.top-bar .dropdown {
    position: relative;
    z-index: 2200;
}

.top-bar .dropdown-menu {
    z-index: 2300;
    background-color: #fff;
    border-radius: 10px;
}

.top-bar .dropdown-item.active,
.top-bar .dropdown-item:active {
    background-color: #27ae60 !important;
    color: #fff !important;
}

.top-bar .dropdown-item:hover {
    background-color: #f8f9fa;
    color: #27ae60;
}

/* ============================================================
   Cart Badge
   ============================================================ */
.cart-badge {
    background-color: #dc3545 !important;
    font-size: 0.65rem;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

/* ============================================================
   Language Switcher
   ============================================================ */
.lang-switcher .btn {
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all var(--sf-transition);
}

.lang-switcher .btn.active {
    background-color: #fff;
    color: #212529;
    border-color: #fff;
}

/* ============================================================
   Product Cards — Senlyte style
   ============================================================ */
.pcard {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.07);
    transition: transform .2s ease, box-shadow .2s ease;
}
.pcard:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,.13);
}
.pcard-img-wrap {
    background: #f0ece6;
    height: 210px;
    overflow: hidden;
    position: relative;
    display: block;
}
.pcard-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: opacity .3s ease;
}
.pcard-img-primary   { opacity: 1; }
.pcard-img-secondary { opacity: 0; }
.pcard:hover .pcard-img-primary   { opacity: 0; }
.pcard:hover .pcard-img-secondary { opacity: 1; }
.pcard-badge {
    position: absolute;
    top: 10px; left: 10px;
    font-size: .7rem; font-weight: 700;
    padding: 3px 8px; border-radius: 4px; z-index: 2;
}
.pcard-badge--out { background: #dc3545; color: #fff; }
.pcard-badge--low { background: #ffc107; color: #212529; }
.pcard-body { padding: 16px; }
.pcard-name {
    font-size: 1rem; font-weight: 700;
    color: #1a1a2e; margin-bottom: 4px; line-height: 1.3;
}
.pcard-name a:hover { color: #2ecc71; }
.pcard-subtitle {
    font-size: .9rem; color: #5b6675; font-weight: 500;
    margin-bottom: 10px; line-height: 1.4;
    display: -webkit-box; -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; overflow: hidden;
}
.pcard-price { line-height: 1; }
.pcard-price-regular { font-size: 1.1rem; font-weight: 700; color: #1a1a2e; }
.pcard-price-sale    { font-size: 1.1rem; font-weight: 700; color: #1a1a2e; }
.pcard-price-original {
    font-size: .85rem; color: #8a94a3;
    text-decoration: line-through; margin-left: 6px;
}
.pcard-btn-details {
    background: #1e5eb7; color: #fff; border: none;
    border-radius: 6px; padding: 9px 14px;
    font-size: .9rem; font-weight: 600;
    text-decoration: none; transition: background .2s ease;
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 8px;
}
.pcard-btn-details:hover { background: #1a529e; color: #fff; }
.pcard-btn-cart {
    background: transparent; color: #1a1a2e;
    border: 1.5px solid #ddd; border-radius: 6px;
    padding: 8px 14px; font-size: .9rem; font-weight: 600;
    cursor: pointer; width: 100%;
    transition: border-color .2s, color .2s;
}
.pcard-btn-cart:hover:not(:disabled) { border-color: #2ecc71; color: #2ecc71; }
.pcard-btn-cart:disabled { opacity: .5; cursor: not-allowed; }

/* ============================================================
   Bento Grid
   ============================================================ */
.bento-tile {
    cursor: pointer;
    border-radius: 22px;
}

.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.05) 55%);
    pointer-events: none;
}

.bento-caption {
    position: absolute;
    z-index: 2;
}

.bento-showcase {
    background: #ececec;
}

.bento-subtitle {
    color: #4a9b31;
    font-size: clamp(0.95rem, 1.1vw, 1.25rem);
    line-height: 1.15;
}

.bento-heading-block {
    margin-bottom: clamp(1.75rem, 3.2vw, 3rem);
}

.bento-grid {
    min-height: 640px;
}

.bento-img {
    object-fit: cover;
    transition: transform 0.4s ease;
}

.bento-tile--left {
    min-height: 630px;
}

.bento-tile--top {
    min-height: 300px;
}

.bento-tile--small {
    min-height: 310px;
}

.bento-caption-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.35;
}

.bento-caption--left,
.bento-caption--top,
.bento-caption--small {
    left: 22px;
    right: 22px;
    bottom: 22px;
    border-radius: 16px;
    padding: 18px 22px;
    background: rgba(30, 34, 43, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(3px);
}

.bento-tile img {
    transition: transform 0.4s ease;
}

.bento-tile:hover img {
    transform: scale(1.04);
}

/* ============================================================
   Kies een merk — Brand Cards
   ============================================================ */
.kies-merk-section {
    background: #002f3a;
}

.kies-merk-title {
    color: #fff;
    font-weight: 700;
    font-size: clamp(2rem, 2.4vw, 3.2rem);
    text-align: center;
    margin-bottom: 2.2rem;
}

.kies-merk-card {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    border: 1px solid #d7dbe0;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    box-shadow: none;
}

.kies-merk-card:hover {
    transform: translateY(-4px);
    border-color: #c5cdd6;
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

.kies-merk-img-wrap {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #e9edf1;
    padding: 10px;
}

.kies-merk-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.kies-merk-label {
    background: #fff;
    color: #1f3449;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.02em;
    text-align: center;
    padding: 18px 10px 20px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .kies-merk-img-wrap {
        height: 150px;
    }

    .kies-merk-label {
        font-size: 16px;
        padding: 12px 8px 14px;
    }
}

/* ============================================================
   Shop Page
   ============================================================ */
.shop-hero {
    background: linear-gradient(135deg, #0d1b2a 0%, #1a3a4a 100%);
}

/* Filter sidebar */
#filter-form .form-check-input:checked {
    background-color: #2ecc71;
    border-color: #2ecc71;
}

/* Product show page thumbnail */
.thumb-btn { transition: border-color .2s ease; }
.thumb-btn:hover { border-color: #c07a30 !important; }

/* Nav tabs on product page */
#productTabs .nav-link {
    color: #666;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 10px 20px;
    font-size: .9rem;
}
#productTabs .nav-link.active {
    color: #1a1a2e;
    border-bottom-color: #c07a30;
    background: transparent;
}
#productTabs .nav-link:hover { color: #c07a30; }

/* ============================================================
   Stats Section
   ============================================================ */
.stat-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,.12) !important;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
}

/* ============================================================
   Brand Cards — "Kies een merk"
   ============================================================ */
.brand-merk-card > div {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.brand-merk-card:hover > div {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}

.brand-merk-card:hover p {
    color: #2ecc71 !important;
}

/* ============================================================
   Testimonial Cards
   ============================================================ */
.testimonial-card {
    background-color: #f8f9fa;
    border-radius: var(--sf-card-radius);
    transition: box-shadow var(--sf-transition);
}

.testimonial-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1) !important;
}

.star-rating .bi-star-fill,
.star-rating .bi-star {
    color: #ffc107;
    font-size: 1rem;
}

/* ============================================================
   Footer
   ============================================================ */
.storefront-footer {
    background-color: #0d1b2a;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    position: relative;
}

.footer-link {
    transition: color var(--sf-transition);
    font-size: 0.9rem;
    color: #f8f9fa !important; /* Light/white color for footer text */
}

/* Keep the hover color as primary green (already set) */
.footer-link:hover {
    color: var(--sf-primary) !important;
}

/* ============================================================
   Checkout & Contact Forms
   ============================================================ */
.checkout-form-section .card,
.contact-form-section .card {
    border-radius: var(--sf-card-radius);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--sf-primary);
    box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.25);
}

/* ============================================================
   Product Gallery (show page)
   ============================================================ */
.product-thumbnail {
    transition: border-color var(--sf-transition), opacity var(--sf-transition);
    opacity: 0.75;
}

.product-thumbnail:hover,
.product-thumbnail.border-success {
    opacity: 1;
}

/* ============================================================
   Breadcrumb
   ============================================================ */
.breadcrumb-item a {
    color: var(--sf-primary);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

/* ============================================================
   Responsive Utilities
   ============================================================ */
@media (max-width: 575.98px) {
    .hero-section {
        min-height: 520px;
    }

    .hero-nav {
        width: 40px;
        height: 40px;
    }

    .hero-slide-content {
        margin-left: 14px;
        margin-right: 14px;
        width: auto;
        padding: 0;
    }

    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.3rem);
    }

    .hero-copy {
        font-size: 1rem;
    }

    .product-card-img {
        height: 160px;
    }

    .bento-tile--left,
    .bento-tile--top,
    .bento-tile--small {
        min-height: 260px;
    }

    .bento-caption--left,
    .bento-caption--top,
    .bento-caption--small {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 12px 14px;
        border-radius: 12px;
    }

    .bento-caption-text {
        font-size: 16px;
        font-weight: 400;
        line-height: 1.35;
    }
}

@media (min-width: 1400px) {
    .hero-section {
        min-height: 600px;
    }
}

/* ============================================================
   Utility
   ============================================================ */
.stretched-link-title {
    position: relative;
    z-index: 1;
}

/* ============================================================
   noUiSlider Darkened
   ============================================================ */
.noUi-target {
    background: #e0e0e0 !important;
    border-radius: 4px;
    border: 1px solid #cccccc !important;
    box-shadow: inset 0 1px 1px #f5f5f5, 0 3px 6px -5px #aaaaaa !important;
}

.noUi-connect {
    background: #27ae60 !important;
    border-radius: 3px;
}

.noUi-handle {
    border: 1px solid #cccccc !important;
    border-radius: 3px !important;
    background: #ffffff !important;
    box-shadow: inset 0 0 1px #ffffff, inset 0 1px 7px #ebebeb, 0 3px 6px -3px #bbbbbb !important;
    width: 34px !important;
    height: 28px !important;
    right: -17px !important;
    top: -6px !important;
}

.noUi-active {
    box-shadow: inset 0 0 1px #ffffff, inset 0 1px 7px #dddddd, 0 3px 6px -3px #bbbbbb !important;
}

.noUi-handle:before,
.noUi-handle:after {
    content: "";
    display: block;
    position: absolute;
    height: 14px;
    width: 1px;
    background: #e0e0e0 !important;
    left: 14px;
    top: 6px;
}

.noUi-handle:after {
    left: 17px;
}

[disabled] .noUi-connect {
    background: #b8b8b8 !important;
}

[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
    cursor: not-allowed !important;
}

/* Tooltip styling */
.noUi-tooltip {
    display: block;
    position: absolute;
    border: 1px solid #cccccc !important;
    border-radius: 3px;
    background: #ffffff !important;
    color: #333333 !important;
    padding: 5px;
    text-align: center;
    white-space: nowrap;
}

.noUi-horizontal .noUi-tooltip {
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    left: 50%;
    bottom: 120%;
}

.noUi-vertical .noUi-tooltip {
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    top: 50%;
    right: 120%;
}

.noUi-horizontal .noUi-origin > .noUi-tooltip {
    -webkit-transform: translate(50%, 0);
    transform: translate(50%, 0);
    left: auto;
    bottom: 10px;
}

.noUi-vertical .noUi-origin > .noUi-tooltip {
    -webkit-transform: translate(0, -18px);
    transform: translate(0, -18px);
    top: auto;
    right: 28px;
}

/* Pips/styling */
.noUi-pips,
.noUi-pips * {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.noUi-pips {
    position: absolute;
    color: #999999 !important;
}

.noUi-value {
    position: absolute;
    white-space: nowrap;
    text-align: center;
}

.noUi-value-sub {
    color: #cccccc !important;
    font-size: 10px;
}

.noUi-marker {
    position: absolute;
    background: #cccccc !important;
}

.noUi-marker-sub {
    background: #aaaaaa !important;
}

.noUi-marker-large {
    background: #aaaaaa !important;
}

/* Horizontal layout */
.noUi-pips-horizontal {
    padding: 10px 0;
    height: 80px;
    top: 100%;
    left: 0;
    width: 100%;
}

.noUi-value-horizontal {
    -webkit-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
}

.noUi-rtl .noUi-value-horizontal {
    -webkit-transform: translate(50%, 50%);
    transform: translate(50%, 50%);
}

.noUi-marker-horizontal.noUi-marker {
    margin-left: -1px;
    width: 2px;
    height: 5px;
}

.noUi-marker-horizontal.noUi-marker-sub {
    height: 10px;
}

.noUi-marker-horizontal.noUi-marker-large {
    height: 15px;
}

/* Vertical layout */
.noUi-pips-vertical {
    padding: 0 10px;
    height: 100%;
    top: 0;
    left: 100%;
}

.noUi-value-vertical {
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    padding-left: 25px;
}

.noUi-rtl .noUi-value-vertical {
    -webkit-transform: translate(0, 50%);
    transform: translate(0, 50%);
}

.noUi-marker-vertical.noUi-marker {
    width: 5px;
    height: 2px;
    margin-top: -1px;
}

.noUi-marker-vertical.noUi-marker-sub {
    width: 10px;
}

.noUi-marker-vertical.noUi-marker-large {
    width: 15px;
}

.text-decoration-line-through {
    text-decoration: line-through !important;
}

/* ============================================================
   Add-to-Cart Modal Polish
   ============================================================ */
.cart-added-modal .modal-backdrop.show {
    opacity: 0.62;
}

.cart-added-modal-dialog {
    max-width: 460px;
}

.cart-added-modal-content {
    border-radius: 16px;
    overflow: hidden;
    background: #f8fffe;
}

.cart-added-modal-header,
.cart-added-modal-body,
.cart-added-modal-footer {
    background: #f8fffe;
}

.cart-added-check {
    width: 38px;
    height: 38px;
    background: #d7f7e6;
}

.cart-added-check i {
    font-size: 1.1rem;
}

.cart-added-image-wrap {
    width: 84px;
    height: 84px;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e5e7eb;
}

.cart-added-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
}

.cart-added-name {
    font-size: 1.04rem;
    line-height: 1.25;
}

.cart-added-price {
    font-size: 1.72rem;
    line-height: 1;
}

.cart-added-summary {
    border-color: #d9e1e8 !important;
}

.cart-added-count,
.cart-added-total {
    font-size: 0.95rem;
}

.cart-added-ghost-btn,
.cart-added-primary-btn {
    min-width: 168px;
    border-radius: 8px;
    font-size: 0.96rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.cart-added-primary-btn {
    box-shadow: 0 6px 16px rgba(25, 135, 84, 0.25);
}

/* ============================================================
   Checkout Refresh
   ============================================================ */
.checkout-page {
    max-width: 1220px;
}

.checkout-header h1 {
    font-size: clamp(1.75rem, 2.5vw, 2.25rem);
    letter-spacing: -0.01em;
}

.checkout-card {
    border: 1px solid #e5e7eb !important;
    border-radius: 12px;
    box-shadow: none !important;
}

.checkout-card-title {
    font-size: 1.12rem;
    letter-spacing: -0.01em;
}

.checkout-page .form-label {
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 0.45rem;
}

.checkout-page .form-control,
.checkout-page .form-select {
    border-radius: 8px;
    min-height: 46px;
    border: 1px solid #d1d5db;
    background: #fff;
    box-shadow: none;
}

.checkout-page .form-control::placeholder {
    color: #9ca3af;
}

.checkout-page textarea.form-control {
    min-height: 110px;
}

.checkout-pay-option {
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 12px 14px;
    margin-bottom: 10px;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.checkout-pay-option:has(.form-check-input:checked) {
    border-color: #111827;
    box-shadow: 0 0 0 1px #111827 inset;
}

.checkout-pay-option .form-check-input {
    margin-top: 0.25rem;
}

.checkout-pay-option .form-check-label {
    font-size: 1rem;
    font-weight: 500;
    color: #111827;
}

.checkout-submit-btn {
    min-height: 54px;
    border-radius: 8px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.checkout-summary-card {
    border: 1px solid #e5e7eb !important;
    border-radius: 12px;
    box-shadow: none !important;
    background: #eefaf2;
}

.checkout-summary-table td {
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
    border-bottom: none;
    font-size: 0.96rem;
    color: #111827;
}

.checkout-total-row {
    color: #111827;
    font-size: 1.6rem !important;
}

.checkout-summary-card hr {
    border-color: #e5e7eb;
    opacity: 1;
}

.checkout-summary-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout-summary-thumb-wrap {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #dbe3dc;
    flex-shrink: 0;
}

.checkout-summary-thumb {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

.checkout-summary-name {
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.2;
    color: #111827;
}

.checkout-summary-qty {
    font-size: 0.8rem;
    color: #4b5563;
    margin-top: 2px;
}

.checkout-summary-line {
    white-space: nowrap;
    vertical-align: middle;
    font-weight: 600;
}

/* ============================================================
   Become Partner Page
   ============================================================ */
.partner-page {
    background: #f2f4f7;
}

@media (max-width: 768px) {
    :root {
        --home-section-pad: 2.5rem;
    }
}

.partner-hero h1 {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    color: #2f3c4f;
    letter-spacing: -0.02em;
}

.partner-hero p {
    max-width: 760px;
    font-size: 1.1rem;
    line-height: 1.55;
}

.partner-contact {
    padding: 10px 6px;
}

.partner-contact h2 {
    color: #2f3c4f;
}

.partner-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.2rem;
    color: #2f3c4f;
}

.partner-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e9dfd5;
    color: #b87431;
    flex-shrink: 0;
}

.partner-form-card {
    background: #ded7cd;
    border-radius: 10px;
    padding: 30px;
    border: 1px solid #d3c8b9;
}

.partner-form-card h3 {
    color: #2f3c4f;
    font-size: clamp(1.35rem, 2vw, 2rem);
}

.partner-form-card .form-label {
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 0.4rem;
    font-size: 14px;
}

.partner-form-card .form-control {
    min-height: 46px;
    border-radius: 8px;
    border: 1px solid #d2d7de;
    font-size: 14px;
}

.partner-submit-btn {
    background: #bc7a41;
    color: #fff;
    border: none;
    min-height: 50px;
    border-radius: 8px;
    font-weight: 700;
}

.partner-submit-btn:hover {
    background: #a86a36;
    color: #fff;
}

.partner-check-option .form-check-label {
    color: #2f3c4f;
    font-weight: 500;
    font-size: 14px;
}

.partner-field-note {
    color: #6b7280;
    font-size: 14px;
    margin-left: 1.7rem;
}

.partner-link {
    color: #b87431;
    text-decoration: none;
    font-weight: 600;
}

.partner-link:hover {
    color: #9f632f;
    text-decoration: underline;
}

.accordion#homeFaq .accordion-button {
    color: #000;
    font-weight: 600;
}

.promo-image-home {
    width: 100%;
    max-width: 720px;
    box-shadow: none !important;
}

/* ============================================================
   Header Nav Icons (person, heart, cart)
   ============================================================ */
.nav-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #1a1a2e;
    font-size: 1.15rem;
    text-decoration: none;
    transition: color .2s ease, background .2s ease;
    position: relative;
}

.nav-icon-btn:hover {
    color: var(--sf-primary);
    background: rgba(46,204,113,.08);
}

.nav-cart-btn {
    width: auto;
    border-radius: 8px;
    padding: 0 10px;
    gap: 6px;
    border: 0;
    height: 38px;
    background: transparent;
}

.nav-cart-btn:hover {
    border-color: transparent;
    background: rgba(46,204,113,.06);
}

.sf-lang-trigger i.bi-globe2 {
    color: #4b5563;
    font-size: 0.92rem;
}

.lang-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 26px;
    height: 20px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    border: 1px solid #d1d5db;
}

.lang-badge-nl {
    color: #1d4ed8;
    background: #eff6ff;
}

.lang-badge-en {
    color: #b91c1c;
    background: #fef2f2;
}

.product-qty-group .btn {
    min-width: 42px;
}

.product-qty-input {
    color: #111827 !important;
    background: #fff !important;
    font-weight: 700;
    border-left: 0;
    border-right: 0;
}

.product-qty-input:focus {
    box-shadow: none;
    color: #111827 !important;
}

/* ============================================================
   Shop Filters (Premium style)
   ============================================================ */
.shop-filter-card {
    background: #fff;
    border: 1px solid #e8ecf2;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(17, 24, 39, 0.05);
    padding: 0.85rem;
}

.shop-filter-head {
    padding: 0.35rem 0.35rem 0.75rem;
    border-bottom: 1px solid #edf1f6;
    margin-bottom: 0.4rem;
}

.shop-filter-head h5 {
    font-size: 0.96rem;
    font-weight: 700;
    color: #111827;
}

.shop-filter-head i {
    color: #64748b;
    font-size: 1rem;
}

.shop-filter-card .accordion-item {
    border: 0;
    border-bottom: 1px solid #edf1f6;
    border-radius: 0;
}

.shop-filter-card .accordion-item:last-child {
    border-bottom: 0;
}

.shop-filter-card .accordion-button {
    background: transparent;
    box-shadow: none;
    padding: 0.85rem 0.35rem;
    font-size: 0.86rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #334155;
}

.shop-filter-card .accordion-button:not(.collapsed) {
    color: #198754;
}

.shop-filter-card .accordion-button::after {
    transform: scale(0.9);
}

.shop-filter-card .accordion-body {
    padding: 0 0.35rem 0.9rem;
}

.shop-filter-card .form-check-input:checked {
    background-color: #198754;
    border-color: #198754;
}

.shop-filter-card .form-check-label {
    font-size: 0.92rem;
    color: #334155;
}

.shop-filter-card .form-control {
    border-color: #d7dee8;
    border-radius: 8px;
}

.shop-filter-card .form-control:focus {
    border-color: #198754;
    box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.16);
}

.price-slider {
    position: relative;
    height: 30px;
    margin-top: 10px;
}

.price-slider-track {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 6px;
    border-radius: 999px;
    background: #e5e7eb;
}

.price-slider-track span {
    position: absolute;
    height: 100%;
    border-radius: 999px;
    background: var(--sf-primary, #27ae60);
}

.price-range-input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    appearance: none;
    background: transparent;
    margin: 0;
    outline: none;
}

/* Hide native track completely but keep its height */
.price-range-input::-webkit-slider-runnable-track {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    appearance: none;
}

.price-range-input::-moz-range-track {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    appearance: none;
}

.price-range-input::-webkit-slider-thumb {
    pointer-events: auto;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 3px solid var(--sf-primary, #27ae60);
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    cursor: grab;
    transition: transform 0.15s ease;
    /* Vertically center thumb in the 30px track (30 - 22 = 8 / 2 = 4) */
    margin-top: 4px;
}

.price-range-input::-webkit-slider-thumb:active {
    cursor: grabbing;
    transform: scale(1.15);
}

.price-range-input::-moz-range-thumb {
    pointer-events: auto;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 3px solid var(--sf-primary, #27ae60);
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    cursor: grab;
    transition: transform 0.15s ease;
    margin-top: 4px;
}

.price-range-input::-moz-range-thumb:active {
    cursor: grabbing;
    transform: scale(1.15);
}

.shop-price-values {
    font-size: 0.95rem;
    color: #334155;
}

/* Mobile Sidebar Styling */
.mobile-sidebar-nav .nav-link { font-size: 1.05rem; transition: all 0.2s ease; }
.mobile-sidebar-nav .nav-link:hover { padding-left: 1.85rem !important; background: #f8fdfa; color: var(--sf-primary) !important; }
.mobile-sidebar-nav .nav-link.active { border-left: 4px solid var(--sf-primary); }
.offcanvas .accordion-button::after { width: 1rem; height: 1rem; background-size: 1rem; }
.offcanvas .accordion-button:not(.collapsed) { color: var(--sf-primary); background-color: #f8fdfa; }

/* --- STICKY FOOTER & ACCOUNT REDESIGN --- */
html, body { height: 100%; }
body { display: flex; flex-direction: column; min-height: 100vh; }
main { flex: 1 0 auto; }
footer { flex-shrink: 0; }
.account-nav .list-group-item { font-size: 0.95rem; font-weight: 500; transition: all 0.2s ease; border-left: 3px solid transparent !important; background: transparent; }
.account-nav .list-group-item:hover { background-color: #f8fdfa; color: var(--sf-primary); padding-left: 1.5rem !important; }
.account-nav .list-group-item.active { background-color: #f8fdfa !important; color: var(--sf-primary) !important; border-left-color: var(--sf-primary) !important; font-weight: 600; }
.transition-up { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.transition-up:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05) !important; }
