/**
 * Fatbikes.be Light Theme - Base Styles
 * Global styles: navbar, footer, promo banner, variables
 */

/* ========================================
   CSS CUSTOM PROPERTIES (VARIABLES)
   ======================================== */
:root {
    --fb-color-primary: #32cd33;
    --fb-color-white: #ffffff;
    --fb-color-black: #000000;
    --fb-z-header: 100;
}

.btn-primary {
    background-color: #32cd33;
}

.btn-primary:hover {
    background-color: #666666;
    color: #ffffff;
}

/* ========================================
   NAVBAR CART OVERRIDES
   Override Sylius cart styling when in navbar
   ======================================== */

/* Cart wrapper in navbar */
.fb-navbar-cart-wrapper {
    display: flex;
    align-items: center;
}

/* Hide loading spinner in navbar */
.fb-navbar-cart-wrapper [data-loading] {
    display: none !important;
}

/* Style cart button to match navbar actions */
.fb-navbar-cart-wrapper .btn {
    background: none !important;
    border: none !important;
    color: var(--fb-color-white) !important;
    padding: 8px 12px !important;
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
}

.fb-navbar-cart-wrapper .btn:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
}

/* Style cart text */
.fb-navbar-cart-wrapper .btn span {
    color: var(--fb-color-white) !important;
    font-size: 14px !important;
}

/* ========================================
   LAYOUT CONSTRAINTS
   ======================================== */

/* Main container max width */
.container {
    max-width: 1400px;
}

/* Main content wrapper for sticky footer */
.main-content {
    flex: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Sidebar width constraint */
.col-lg-3 {
    flex: 0 0 260px;
    max-width: 260px;
}

/* ========================================
   BREADCRUMBS
   Global breadcrumb styles for all pages
   ======================================== */
.contact-breadcrumb {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.contact-breadcrumb-item {
    display: inline-block;
}

.contact-breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin: 0 0.5rem;
    color: #999;
}

.contact-breadcrumb-item a {
    color: #32cd33;
    text-decoration: none;
}

.contact-breadcrumb-item a:hover {
    color: #333;
}

.contact-breadcrumb-item.active {
    color: #333;
}

/* Main content area when sidebar is present */
@media (min-width: 992px) {
    .col-lg-9 {
        flex: 0 0 calc(100% - 280px); /* 260px sidebar + 20px gap */
        max-width: calc(100% - 280px);
    }
}


/* Style cart badge to match navbar */
.fb-navbar-cart-wrapper .badge {
    background-color: var(--fb-color-primary) !important;
    color: var(--fb-color-black) !important;
    font-size: 12px !important;
    min-width: 18px !important;
    height: 18px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* ========================================
   PRODUCT FILTERS SIDEBAR
   Styling for dynamic attribute filters
   ======================================== */

.fatbikes-filters {
    background: var(--fb-color-white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.fatbikes-filters__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--fb-color-black);
    border-bottom: 2px solid var(--fb-color-primary);
    padding-bottom: 10px;
}

.fatbikes-filters__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fatbikes-filters__group {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.fatbikes-filters__group:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.fatbikes-filters__group-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--fb-color-black);
}

.fatbikes-filters__options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fatbikes-filters__option {
    display: flex;
    align-items: center;
}

.fatbikes-filters__checkbox,
.fatbikes-filters__radio {
    margin-right: 8px;
    accent-color: var(--fb-color-primary);
}

.fatbikes-filters__label {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    flex-grow: 1;
}

.fatbikes-filters__label:hover {
    color: var(--fb-color-primary);
}

.fatbikes-filters__color-swatch {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin-right: 8px;
    border: 1px solid #ddd;
}

.fatbikes-filters__stars {
    color: #ffc107;
    margin-left: 4px;
}

.fatbikes-filters__toggle {
    position: relative;
    width: 44px;
    height: 24px;
    background-color: #ccc;
    border-radius: 12px;
    border: none;
    outline: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.fatbikes-filters__toggle:checked {
    background-color: var(--fb-color-primary);
}

.fatbikes-filters__toggle::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.3s;
}

.fatbikes-filters__toggle:checked::before {
    transform: translateX(20px);
}

.fatbikes-filters__toggle-label {
    margin-left: 8px;
    font-size: 14px;
}

.fatbikes-filters__actions {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.fatbikes-filters__clear-btn {
    display: inline-block;
    padding: 8px 16px;
    background-color: #f8f9fa;
    color: #6c757d;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.fatbikes-filters__clear-btn:hover {
    background-color: #e9ecef;
    color: #495057;
    text-decoration: none;
}

/* ========================================
   PROMO BANNER MODULE
   Prefix: fb-promo-banner
   ======================================== */

.fb-promo-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: url("/media/promo/achter.jpg") center/cover no-repeat;
    color: white;
    z-index: 9999;
}

.fb-promo-banner__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.fb-promo-banner__content {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 16px;
}

.fb-promo-banner__countdown {
    background-color: rgba(20, 180, 115, 0.9);
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.fb-promo-banner__expired {
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fb-promo-banner__text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.fb-promo-banner__icon {
    font-size: 22px;
    animation: fb-pulse 2s infinite;
}

@keyframes fb-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.fb-promo-banner__highlight {
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.fb-promo-banner__secondary {
    color: #a8e6cf;
    font-weight: 400;
}

.fb-promo-banner__code {
    background: linear-gradient(135deg, #14b473 0%, #0d8a54 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(20, 180, 115, 0.3);
    transition: transform 0.2s;
}

.fb-promo-banner__code:hover {
    transform: scale(1.05);
}

.fb-promo-banner__code-label {
    font-size: 11px;
    opacity: 0.9;
}

.fb-promo-banner__code-value {
    font-size: 16px;
    font-weight: 900;
}

.fb-promo-banner__close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    cursor: pointer;
    padding: 8px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    outline: none;
}

.fb-promo-banner__close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

/* Promo Banner - Tablet */
@media (max-width: 768px) {
    .fb-promo-banner__container {
        padding: 10px 15px;
    }

    .fb-promo-banner__content {
        font-size: 14px;
        gap: 10px;
    }

    .fb-promo-banner__countdown {
        padding: 4px 10px;
        font-size: 12px;
    }

    .fb-promo-banner__icon {
        display: none;
    }

    .fb-promo-banner__code {
        padding: 5px 12px;
    }

    .fb-promo-banner__code-label {
        font-size: 9px;
    }

    .fb-promo-banner__code-value {
        font-size: 14px;
    }

    .fb-promo-banner__close {
        right: 10px;
        width: 28px;
        height: 28px;
        padding: 6px;
    }

    .fb-promo-banner__close svg {
        width: 12px;
        height: 12px;
    }
}

/* Promo Banner - Mobile */
@media (max-width: 480px) {
    .fb-promo-banner__content {
        font-size: 13px;
        gap: 8px;
    }

    .fb-promo-banner__countdown {
        display: none;
    }

    .fb-promo-banner__highlight {
        display: inline;
    }

    .fb-promo-banner__text {
        flex: 1;
    }
}

/* Body adjustment for promo banner */
body.fb-has-promo-banner {
    padding-top: 50px;
}

@media (max-width: 768px) {
    body.fb-has-promo-banner {
        padding-top: 44px;
    }
}

/* ========================================
   GLOBAL STYLES
   ======================================== */

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background-color: #f6f6f6;
    color: #000000;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Sticky footer layout - CSS Grid solution */
body {
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

body > div:first-child {
    display: contents;
}

@media (max-width: 768px) {
    body {
        padding: 0 15px;
    }

    .fatbikes-filters__form {
        flex-direction: row;
    }
}

@media (max-width: 480px) {
    body {
        padding: 0 10px;
    }
}

/* ========================================
   NAVBAR MODULE
   Prefix: fb-navbar
   ======================================== */

.fb-navbar {
    background-color: #000000;
    border-bottom: 1px solid #333;
    position: relative;
    z-index: var(--fb-z-header);
}

.fb-navbar__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    height: 70px;
    position: relative;
}

/* Logo */
.fb-navbar__logo {
    float: left;
    margin-right: 80px;
}

.fb-navbar__logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s;
}

.fb-navbar__logo-link:hover {
    opacity: 0.8;
}

.fb-navbar__logo-image {
    width: auto;
    max-width: 240px;
}

/* Main Menu */
.fb-navbar__menu {
    display: flex;
    justify-content: flex-start;
    margin-left: 0;
}

.fb-navbar__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.fb-navbar__item {
    position: relative;
}

.fb-navbar__link {
    display: flex;
    align-items: center;
    gap: 3px;
    color: var(--fb-color-white);
    text-decoration: none;
    font-weight: 200;
    font-size: 16px;
    padding: 20px 0;
    transition: color 0.3s;
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

.fb-navbar__link:hover {
    color: var(--fb-color-primary);
}

.fb-navbar__dropdown-icon {
    transition: transform 0.3s;
}

.fb-navbar__item--has-dropdown:hover .fb-navbar__dropdown-icon {
    transform: rotate(180deg);
}

/* Mobile sidebar menu - FAQ-style + icon */
@media (max-width: 768px) {
    .fb-navbar__menu--open .fb-navbar__dropdown-icon {
        font-family: Arial, sans-serif;
        font-weight: normal;
        font-size: 18px;
        line-height: 1;
        color: #14B473;
    }

    .fb-navbar__menu--open .fb-navbar__dropdown-icon svg {
        display: none;
    }

    .fb-navbar__menu--open .fb-navbar__sidebar .fb-navbar__dropdown-icon::after {
        content: '+';
    }

    .fb-navbar__menu--open .fb-navbar__sidebar .fb-navbar__item--active .fb-navbar__dropdown-icon {
        transform: rotate(45deg);
    }

    .fb-navbar__menu--open .fb-navbar__item--has-dropdown:hover .fb-navbar__dropdown-icon {
        transform: none;
    }
}

/* Dropdown Menu */
.fb-navbar__dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    border: none;
    border-radius: 8px;
    min-width: 250px;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    z-index: 9999;
    margin-top: 10px;
}

.fb-navbar__item--has-dropdown:hover .fb-navbar__dropdown {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.fb-navbar__dropdown-list {
    list-style: none;
    margin: 0;
    padding: 12px 0;
}

.fb-navbar__dropdown-item {
    margin: 0;
}

.fb-navbar__dropdown-link {
    display: block;
    padding: 6px 20px;
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.fb-navbar__dropdown-link:hover {
    color: #32cd33;
}

/* MEGA DROPDOWN - TOP DEALS MASTERPIECE */
.fb-navbar__dropdown--wide {
    position: absolute;
    width: 100vw;
    left: calc(50% - 272px);
    overflow: visible;
    background: transparent !important;
}


.top-deals-mega {
    display: grid;
    grid-template-columns: 260px 320px 1fr;
    max-width: 1402px;
    margin: 22px auto 0 auto;
    background: #ffffff;
    min-height: 380px;
    border-radius: 20px;
}

/* HERO FEATURED PRODUCT */
.top-deals-mega__hero {
    background: linear-gradient(135deg, #32cd33 0%, #28a428 100%);
    padding: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 20px 0 0 20px;
}

.top-deals-mega__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.top-deals-mega__featured {
    position: relative;
    z-index: 2;
}

.top-deals-mega__featured-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ff4444;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    transform: rotate(15deg);
    animation: bounce 2s infinite;
    z-index: 3;
}

@keyframes bounce {
    0%, 100% { transform: rotate(15deg) scale(1); }
    50% { transform: rotate(15deg) scale(1.1); }
}

.top-deals-mega__featured-image {
    width: 100%;
    height: 160px;
    object-fit: contain;
    background: white;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.top-deals-mega__featured:hover .top-deals-mega__featured-image {
    transform: translateY(-5px) scale(1.02);
}

.top-deals-mega__featured-info {
    color: white;
    text-align: center;
    padding-top: 20px;
    line-height: 50px;
}

.top-deals-mega__featured-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.top-deals-mega__featured-price-current {
    font-size: 32px;
    font-weight: 800;
    display: block;
    margin-bottom: 20px;
}

.top-deals-mega__featured-button {
    display: inline-block;
    background: white;
    color: #32cd33;
    padding: 0px 30px;
    border-radius: 25px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.top-deals-mega__featured-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(50, 205, 51, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.top-deals-mega__featured-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.top-deals-mega__featured-button:hover::before {
    width: 300px;
    height: 300px;
}

/* CATEGORIES SECTION */
.top-deals-mega__categories {
    background: #f8f9fa;
    padding: 20px 15px;
    border-right: 1px solid #e9ecef;
}

.top-deals-mega__section-title {
    font-size: 11px;
    letter-spacing: 2px;
    color: #6c757d;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.top-deals-mega__section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: #32cd33;
}

.top-deals-mega__category-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.top-deals-mega__category-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.top-deals-mega__category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(50,205,51,0.1), transparent);
    transition: left 0.5s;
}

.top-deals-mega__category-card:hover::before {
    left: 100%;
}

.top-deals-mega__category-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(50,205,51,0.2);
}

.top-deals-mega__category-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.top-deals-mega__category-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top-deals-mega__category-name {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    color: #212529;
}

.top-deals-mega__category-arrow {
    font-size: 18px;
    color: #32cd33;
    transition: transform 0.3s;
}

.top-deals-mega__category-card:hover .top-deals-mega__category-arrow {
    transform: translateX(5px);
}

/* PRODUCTS GRID */
.top-deals-mega__products {
    padding: 20px;
}

.top-deals-mega__product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 25px;
}

.top-deals-mega__product-card {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
    border-radius: 10px;
    padding: 10px;
    border: 1px solid #e9ecef;
}

.top-deals-mega__product-card:hover {
    transform: translateX(5px);
    border-color: #32cd33;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.top-deals-mega__product-image {
    width: 100px;
    height: 100px;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.top-deals-mega__product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

.top-deals-mega__product-card:hover img {
    transform: scale(1.1);
}

.top-deals-mega__product-overlay {
    display: none;
}

.top-deals-mega__product-info {
    flex: 1;
    padding: 0;
}

.top-deals-mega__product-title {
    font-size: 13px;
    color: #495057;
    margin-bottom: 8px;
    line-height: 1.4;
}

.top-deals-mega__product-price {
    font-size: 16px;
    font-weight: 700;
    color: #32cd33;
}

/* Top Deals Close Button - Hidden on desktop */
.top-deals-mega__close {
    display: none;
}

/* Top Deals adjustments for tablet */
@media (max-width: 1024px) {
    .top-deals-mega__hero {
        display: none;
    }

    .top-deals-mega {
        grid-template-columns: 30% 70%;
        position: relative;
    }

    .top-deals-mega__close {
        display: block;
        position: absolute;
        top: 15px;
        right: 15px;
        background: none;
        border: none;
        font-size: 18px;
        color: #666;
        cursor: pointer;
        z-index: 10;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .top-deals-mega__close:hover {
        background: #f0f0f0;
        color: #000;
    }
}

/* Hide Top Deals on mobile - no hover support */
@media (max-width: 768px) {
    .fb-navbar__item:has(.top-deals__container) {
        display: none;
    }
}

/* Right Actions */
.fb-navbar__actions {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 0px;
}

.fb-navbar__action {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--fb-color-white);
    text-decoration: none;
    border: none;
    background: none;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s;
    position: relative;
}

.fb-navbar__action:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--fb-color-primary);
}

.fb-navbar__cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--fb-color-primary);
    color: var(--fb-color-white);
    font-size: 11px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Mobile Toggle */
.fb-navbar__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #ffffff;
    font-size: 18px;
    transition: all 0.3s;
}

.fb-navbar__toggle:hover {
    color: var(--fb-color-primary);
}

/* Hide mobile sidebar elements on desktop */
.fb-navbar__menu-header,
.fb-navbar__close {
    display: none;
}

/* Navbar - Tablet/Small Desktop */
@media (max-width: 1024px) and (min-width: 769px) {
    .fb-navbar__container {
        padding: 0 15px;
    }

    .fb-navbar__logo {
        margin-right: 10px;
    }

    .fb-navbar__logo-image {
        max-width: 150px;
    }

    .fb-navbar__list {
        gap: 25px;
    }

    .fb-navbar__link {
        font-size: 14px;
    }

    .fb-navbar__action {
        width: 36px;
        height: 36px;
    }

    .fb-navbar__actions {
        gap: 15px;
    }
}

/* Navbar - Mobile/Tablet */
@media (max-width: 768px) {
    .fb-navbar__container {
        padding: 0 15px;
        height: 60px;
        position: relative;
        justify-content: space-between;
    }

    .fb-navbar__logo {
        margin-left: 0;
        margin-right: 0;
        order: 2;
        flex: 1;
        text-align: center;
    }

    .fb-navbar__toggle {
        display: flex;
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        z-index: 1001;
        width: 40px;
        height: 40px;
        justify-content: center;
        align-items: center;
        order: 1;
    }

    .fb-navbar__actions {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        order: 3;
    }

    .fb-navbar__menu {
        position: fixed;
        top: 0;
        left: -300px;
        width: 300px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-right: 1px solid rgba(255, 255, 255, 0.3);
        padding-top: 20px;
        padding-bottom: 20px;
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1002;
        overflow-y: auto;
        box-shadow:
            0 0 40px rgba(0, 0, 0, 0.08),
            0 2px 20px rgba(0, 0, 0, 0.12),
            inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    }

    .fb-navbar__menu-header {
        display: block;
        position: absolute;
        top: 15px;
        right: 15px;
        z-index: 10;
    }

    .fb-navbar__close {
        display: flex;
        background: rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.4);
        cursor: pointer;
        padding: 0;
        color: #333;
        font-size: 18px;
        transition: all 0.3s;
        border-radius: 50%;
        width: 36px;
        height: 36px;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .fb-navbar__close:hover {
        background: rgba(255, 255, 255, 0.9);
        color: var(--fb-color-primary);
        transform: rotate(90deg) scale(1.1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .fb-navbar__menu--open {
        left: 0;
    }

    .fb-navbar__list {
        flex-direction: column;
        gap: 0;
        padding: 30px 0 20px 0;
    }

    .fb-navbar__item {
        border-bottom: 1px solid #eee;
    }

    .fb-navbar__link {
        padding: 15px 20px;
        justify-content: space-between;
        color: #333;
    }

    .fb-navbar__link:hover {
        background: #f8f8f8;
        color: var(--fb-color-primary);
    }

    .fb-navbar__dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        margin: 0;
        border: none;
        border-radius: 0;
        background: #f8f8f8;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .fb-navbar__item--active .fb-navbar__dropdown {
        max-height: 500px;
    }

    .fb-navbar__dropdown-link {
        padding: 12px 20px 12px 40px;
        background: #f8f8f8;
        color: #666;
        border-bottom: 1px solid #eee;
        display: block;
    }

    .fb-navbar__dropdown-link:hover {
        background: #efefef;
        color: var(--fb-color-primary);
    }

    .fb-navbar__actions {
        gap: 15px;
    }

    .fb-navbar__action {
        width: 35px;
        height: 35px;
    }

    .fb-navbar__menu--open::after {
        content: '';
        position: fixed;
        top: 0;
        left: 300px;
        width: calc(100vw - 300px);
        height: 100vh;
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        z-index: -1;
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
}

/* Navbar - Mobile */
@media (max-width: 480px) {
    .fb-navbar__container {
        padding: 0 10px;
        height: 55px;
    }

    .fb-navbar__logo-image {
        max-width: 140px;
    }

    .fb-navbar__toggle {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .fb-navbar__actions {
        gap: 8px;
    }

    .fb-navbar__action {
        width: 32px;
        height: 32px;
    }

    .fb-navbar__cart-count {
        font-size: 10px;
        min-width: 16px;
        height: 16px;
    }

    .fb-navbar__menu {
        width: 280px;
        left: -280px;
        padding-top: 65px;
    }

    .fb-navbar__menu--open {
        left: 0;
    }

    .fb-navbar__menu--open::after {
        left: 280px;
        width: calc(100vw - 280px);
    }
}

/* ========================================
   FOOTER SECTION MODULE
   Prefix: fb-footer
   ======================================== */

footer {
    background: #000000;
    color: #ffffff;
    padding: 30px 0;
}

.fb-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

.fb-footer__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.fb-footer__section {
    /* Section styling */
}

.fb-footer__content {
    /* Content wrapper */
}

.fb-footer__title {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #32cd33;
    min-height: 22px;
    display: flex;
    align-items: center;
}

.fb-footer__text {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.5;
    margin: 5px 0;
}

.fb-footer__text--spacing {
    margin-top: 15px;
    margin-bottom: 5px;
}

.fb-footer__nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fb-footer__link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.fb-footer__link:hover {
    color: #32cd33;
}

.fb-footer__newsletter {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.fb-footer__input {
    background: #333333;
    border: 1px solid #555555;
    color: #ffffff;
    padding: 10px;
    border-radius: 4px;
    font-size: 14px;
}

.fb-footer__input::placeholder {
    color: #aaaaaa;
}

.fb-footer__button {
    background: #32cd33;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.fb-footer__button:hover {
    background: #e55a00;
}

.fb-footer__bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333333;
}

.fb-footer__bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fb-footer__copyright {
    color: #aaaaaa;
    font-size: 14px;
}

.fb-footer__social {
    display: flex;
    gap: 15px;
}

.fb-footer__social-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.fb-footer__social-link:hover {
    transform: scale(1.2);
}

.fb-footer__webwinkelkeur {
    display: block;
    margin-top: 20px;
}

.fb-footer__webwinkelkeur-img {
    max-width: 150px;
    height: auto;
    border-radius: 4px;
    filter: grayscale(100%);
}

@media (max-width: 1024px) {
    footer {
        padding: 30px 20px;
    }

    .fb-footer__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 30px;
    }

    .fb-footer__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 45px;
    }
}

@media (max-width: 480px) {
    .fb-footer__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

    .fb-footer__bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .fb-footer__newsletter {
        gap: 12px;
    }

/* Locale Switcher dropdown width fix */
.flag-holder {
   min-width: auto;
   width: auto;
   margin-left: -55px;
}

/* Locale Switcher hover behavior */
.dropdown-hover:hover .dropdown-menu {
   display: block;
}
