/* ============================
   GLOBAL LAYOUT
============================ */

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f8f8f8;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* nette spacing links/rechts */
}


/* ============================
   HEADER + LOGO
============================ */

.tb-header {
    background: #ffffff;
    border-bottom: 1px solid #eee;
}

.tb-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.tb-logo img {
    max-height: 95px;
    display: block;
    padding: 5px 0;
}


/* ============================
   NAVIGATION
============================ */

.tb-nav {
    display: flex;
    gap: 25px;
    align-items: center;
    position: relative;
}

.tb-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
}

.tb-nav a.sale {
    color: #d60000;
    font-weight: 700;
}

.tb-dropdown {
    position: relative;
}

.tb-dropdown-menu {
    display: none;
    position: absolute;
    top: 25px;
    left: 0;
    background: #fff;
    border: 1px solid #eee;
    padding: 10px 0;
    min-width: 180px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.tb-dropdown:hover .tb-dropdown-menu {
    display: block;
}

.tb-dropdown-menu a {
    display: block;
    padding: 6px 15px;
}


/* ============================
   SEARCH
============================ */

.tb-search input {
    border: 1px solid #ccc;
    padding: 8px 10px;
    border-radius: 4px;
}


/* ===========================
   HERO BANNER
   =========================== */

.tb-hero-banner {
    position: relative;
    min-height: 550px;
    background-image: url("/img/hero.jpg"); /* jouw 21:9 hero */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
}

/* Donkere overlay met mooie gradient */
.tb-hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.45) 40%,
        rgba(0, 0, 0, 0.0) 100%
    );
}

/* Zorg dat de content boven de overlay ligt */
.tb-hero-banner .hero-overlay {
    position: relative;
    z-index: 1;
    padding: 4rem 0 4.5rem;
}

.hero-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.tb-hero-banner .hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.tb-hero-banner .hero-lead {
    font-size: 1.05rem;
    max-width: 32rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.tb-hero-banner .hero-actions .btn {
    padding-inline: 1.7rem;
}



/* Iets hogere hero op desktop */
@media (min-width: 992px) {
    .tb-hero-banner {
        min-height: 480px;
    }

    .tb-hero-banner .hero-title {
        font-size: 2.6rem;
    }
}


/* -------------------------
   CONTAINER (zoals navbar)
-------------------------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* -------------------------
   CATEGORY SECTION
-------------------------- */
.tb-categories {
    margin: 60px auto;
}

.tb-categories h2 {
    font-size: 26px;
    margin-bottom: 25px;
}

/* Grid van 3 nette kaarten */
.tb-cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* Card styling */
.tb-cat {
    display: block;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    transition: transform .2s ease, box-shadow .2s ease;
}

.tb-cat:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

/* Afbeeldingen */
.tb-cat-img {
    height: 470px;
    overflow: hidden;
}

.tb-cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    /* laat bovenkant mooi zien */
}

/* Tekst */
.tb-cat span {
    display: block;
    padding: 15px 20px;
    font-size: 1.0em;
    font-weight: 600;
    color: #222;
}

.product-price {
    color: #c90000;          /* Mooie webshop-rood tint */
    font-weight: 700;
    font-size: 1.4rem;
    text-align: right;
    margin: 0 15px 10px 0;
}
/* ============================
   FOOTER
============================ */

.tb-footer {
    background: #222;
    color: #bbb !important;;
    padding: 25px 0;
    margin-top: 40px;
    text-align: center;
}

/* Zorg dat header echt boven alles ligt */
.tb-header {
    position: relative !important;
    z-index: 1000 !important;
}

/* Zorg dat het dropdown-menu zeker boven hero en overlay staat */
.tb-dropdown-menu {
    z-index: 2000 !important;
}

/* Hero banner mag nooit boven header komen */
.tb-hero-banner {
    position: relative;
    z-index: 1;
}

/* Overlay absoluut onder alles in hero */
.tb-hero-banner::before {
    position: absolute;
    z-index: 0 !important;
}

/* ============================
   USP BAR
============================ */
.top-usp-bar {
    background: #F9E076 !important;
    /* Topbags blauw */
    color: #4c3228 !important;
    font-size: 1.0rem;
    padding: 8px 0;
}

.top-usp-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.top-usp-item {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.top-usp-item i {
    font-size: 1.2rem !important;
}

.top-usp-bar span {
    margin-right: 20px;
}

/* ----- MID NAV ----- */
.nav-icon {
    text-align: center;
    color: #4c3228;
    text-decoration: none;
}

.nav-icon:hover { color: #0070c9; }

/* Winkelwagen telling */
.cart-count-badge {
    position: absolute;
    top: -3px;
    right: -10px;
    background: #dc3545;
    color: #fff;
    font-size: 12px;
    padding: 1px 6px;
    border-radius: 50%;
}

/* Zoekveld mooi als travelbags */
/* Zoekveld placeholder lichter grijs */
.search-input::placeholder {
    color: #b4b4b4 !important;
    opacity: 1; /* nodig voor consistentie tussen browsers */
}

/* Input en icon strak tegen elkaar */
.search-bar .input-group-text {
    border-color: #ced4da;
}

.search-bar .form-control {
    border-left: none;
}

/* Hover/focus subtiel */
.search-input:focus {
    box-shadow: none !important;
    border-color: #999;
}

/* Hoogte perfect afstemmen zoals travelbags */
.search-bar .form-control,
.search-bar .input-group-text {
    height: 46px;
}

/* PRODUCT MENU */
.product-nav .nav-link {
    color: #333;
    font-weight: 500;
    padding: 8px 16px;
}

.product-nav .nav-link:hover {
    color: #0070c9;
}

/* SALE rood */
.sale-link {
    color: #d80000 !important;
    font-weight: 600;
}

/* Hover net even zwaarder rood */
.sale-link:hover {
    color: #b50000 !important;
}

.nav-icon {
    position: relative;
    text-align: center;
}

/* Winkelwagen met teller*/
.cart-count-badge {
    position: absolute;
    top: -2px;       /* iets hoger */
    right: 12px;     /* dichter tegen het icoon */
    background: #000; /* je gebruikte zwart */
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    min-width: 20px;
    text-align: center;
}
.product-nav .nav-link {
    padding: 0.75rem 1.2rem;
    font-weight: 500;
    color: #333;
}

.product-nav .nav-link:hover {
    color: #000;
}

/* Responsive: bij small screens stacking */
@media (max-width: 768px) {
    .tb-usp-inner {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
}

/* ============================
   Detail pagina 
============================ */

.tb-stock {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 10px 0 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Voorraad */
.tb-stock {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 10px 0 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tb-stock.in-stock {
    color: #2e7d32; /* groen */
}

.tb-stock.low-stock {
    color: #f9a825; /* geel */
}

.tb-stock.backorder {
    color: #0277bd; /* blauw */
}

.tb-stock.out-of-stock {
    color: #c62828; /* rood */
}

.tb-stock i {
    font-size: 1.3rem !important;
}


/* PRODUCT TITLE */
.tb-product-title {
    font-size: 30px;            
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 6px;
}

/* SUBTITLE / BRAND */
.tb-product-subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 15px;
}

/* Detail page, prijs, producttitle */

/* PRICE BLOCK */
.tb-price {
    font-weight: 700;
    color: #b12704; /* Travelbags donkerrood */
    display: inline-flex;
    align-items: flex-start;
}
.tb-price .euros {
    font-size: 2.4rem;      /* grote hoofdprijs */
    line-height: 1;         /* compacter */
    margin-right: 0rem;     /* geen ruimte naar komma */
}

.tb-price .currency {
    font-size: 1.8rem;      /* grote hoofdprijs */
    line-height: 1;         /* compacter */
    margin-right: 0rem;     /* geen ruimte naar komma */
}

.tb-price .comma {
    font-size: 1.4rem;
    line-height: 1;
    margin-left: 0px;       /* super dicht tegen de euro's */
    margin-right: 0px;
   transform: translateY(12px); /* mini naar beneden */
}

.tb-price .decimals {
    font-size: 1.2rem;
    line-height: 1;
    margin-right: -5px;
    margin-left: 0px;
    transform: translateY(-2px); /* hoger voor Travelbags effect */
    letter-spacing: -0.5px;      /* compacter */
}

/* EXTRA INFO BELOW PRICE */
.tb-price-sub {
    font-size: 14px;
    color: #777;
    margin-top: 4px;
}

/* ============================
   footer +  
============================ */

/* INFO BAR – GELE ACHTERGROND + DONKERBRUIN */
.tb-info-bar {
    background: #ffe9a8 !important;          /* warme zichtbare geel */
    border-top: 1px solid #e0c980 !important;
    border-bottom: 1px solid #e0c980!important;
}

.tb-info-item {
    flex: 1;
    min-width: 160px;
    padding: 10px 15px;
}

.tb-info-item i {
    font-size: 2rem;
    color: #5a3e18 !important;               /* donkerbruin met hoog contrast */
}

.tb-info-item h4 {
    margin-top: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #5a3e18;               /* donkerbruin */
}

.tb-info-item p {
    margin: 0;
    font-size: 0.95rem;
    color: #5a3e18;               /* donkerbruin */
}

.tb-info-item a {
    color: #4f3314;               /* iets donkerder bruin voor links */
    text-decoration: none;
}

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

/* Verwijder alle marge onder de info-bar */
.tb-info-bar {
    margin-bottom: 0 !important;
    padding-bottom: 0;
}

/* Verwijder marge boven footer */
footer {
    margin-top: 0 !important;
    padding-top: 20px; /* mag je aanpassen, dit is de vaste binnenruimte */
}

/* Container van info-bar strak aansluiten */
.tb-info-bar .container {
    padding-bottom: 0;
}

/* ============================
   nav usp bovenaan 
============================ */

/* Gele achtergrond zoals info bar */
.tb-usp-bar {
    background-color: #fff6d6;     /* zachte lichte geel */
    border-bottom: 1px solid #e6d8a8;
    color: #7a5c00;                /* donkerder geel/bruin voor goede leesbaarheid */
}

/* Icoon + tekst kleur */
.tb-usp-bar i {
    color: #7a5c00;
    margin-right: 4px;
}

/* Kleine tekst zoals Travelbags */
.tb-usp-bar {
    font-size: 0.87rem;
    font-weight: 500;
}

/* Bovenaan: alle marge verwijderen voor strakke aansluiting */
.tb-usp-bar {
    margin: 0 !important;
    padding-top: 6px;
    padding-bottom: 6px;
}

/* Container strak gecentreerd */
.tb-usp-bar .container {
    padding-top: 0;
    padding-bottom: 0;
}

/* ============================
   Tekst blok homepage 
============================ */

.tb-highlight-card {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

.tb-highlight-card h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.9rem;   /* moderne strakke heading */
    margin-bottom: 1.2rem;
    letter-spacing: -0.5px;
}

.tb-highlight-card p {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 1rem;
    color: #444;
}

.description {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.65;
    margin-bottom: 1rem;
    color: #444;
}

/* ============================
   Betaalmogelijkheden 
============================ */

/* -------- PAYMENT ICON FIX -------- */

.payment-icons__list {
    display: flex;
    flex-wrap: wrap;            /* MAG WRAPPEN → voorkomt uitlopen */
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.payment-icons__list li {
    display: flex;
}

.payment-icons__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
}

.payment-icons__link svg {
    height: 28px;       /* uniforme hoogte */
    width: auto;
    display: block;
}

/* ============================
   Checkout
============================ */
.checkout-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    margin-top: 10px;
}

.checkout-step {
    text-align: center;
    flex: 1;
    position: relative;
}

.checkout-step .circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 5px auto;
    font-size: 14px;
    font-weight: 600;
}

.step-completed .circle {
    background: #2ecc71; /* groen */
    color: #fff;
}

.step-active .circle {
    background: #0d6efd; /* blauw */
    color: #fff;
}

.step-upcoming .circle {
    background: #e5e5e5;
    color: #999;
}

/* Lijnen tussen stappen */
.checkout-step::after {
    content: "";
    position: absolute;
    top: 14px;
    right: -50%;
    width: 100%;
    height: 3px;
    background: #e5e5e5;
    z-index: -1;
}

.checkout-step:last-child::after {
    display: none;
}

.step-completed::after {
    background: #2ecc71; /* groene lijn */
}

.step-active::after {
    background: #0d6efd; /* blauwe lijn */
}

.card-body {
    display: flex;
    flex-direction: column;
}

.card-body .btn {
    margin-top: auto; /* Duwt de button naar de onderkant */
}

/* ============================
   Brands
============================ */
.brand-card {
    transition: transform .2s ease, box-shadow .2s ease;
    background: #fff;
}

.brand-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,.12);
}

.brand-logo {
    max-height: 120px;        /* nooit hoger */
    max-width: 250px;         /* nooit breder */
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;

    margin: 0 0 12px 0;       /* ruimte ONDER het logo */
    text-align: left;         /* werkt i.c.m. parent */
}

.brand-logo-wrapper {
    text-align: left;       /* logo links uitlijnen */
}

/* ============================
   LOGO RESPONSIVE
============================ */

.tb-logo-img {
    max-height: 90px;
    height: auto;
}

@media (max-width: 576px) {
    .tb-logo-img {
        max-height: 60px; /* kleiner logo op iPhone */
    }
}

/* Icons rij */
.tb-top-icons .nav-icon i {
    color: #4c3228;
}

/* ============================
   CATEGORY NAV (KOPPEN)
============================ */

.tb-category-nav .tb-cat-link {
    position: relative;
    padding: 0.7rem 1.4rem;
    font-weight: 700;              /* veel vetter */
    color: #4c3228;                /* donkerbruin */
    text-transform: none;
    border-bottom: 3px solid transparent;
}

.tb-category-nav .tb-cat-link:hover,
.tb-category-nav .tb-cat-link:focus {
    color: #4c3228;
    border-bottom-color: #4c3228;  /* bruine streep bij hover */
}

.tb-category-nav .tb-cat-link.active {
    color: #4c3228;
    border-bottom-color: #4c3228;  /* bruine streep bij actieve pagina */
}

/* Mobile: categorieën onder elkaar, net als Travelbags */
@media (max-width: 991.98px) {
    .tb-category-nav .tb-cat-link {
        padding: 0.65rem 0.5rem;
        border-bottom-width: 1px;
        border-bottom-style: solid;
        border-bottom-color: #f0e4d4;
        text-align: left;
    }

    .tb-category-nav .nav-item:last-child .tb-cat-link {
        border-bottom-color: transparent;
    }
}

/* ============================
   HAMBURGER BUTTON
============================ */

.tb-menu-toggle {
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 0.9rem;
}

/* ============================
   PRODUCT NAV OVERRIDES
============================ */

.product-nav {
    z-index: 900;
}

.product-nav .nav {
    margin-bottom: 0;
}

/* ============================
   USP bar – 2 items per rij op mobiel
============================ */

/* Desktop: naast elkaar */
.top-usp-bar .container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}

/* Mobiel: 2 items per rij */
@media (max-width: 576px) {
    .top-usp-bar .container {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        text-align: left;
        row-gap: 6px;
    }

    .top-usp-bar span {
        font-size: 0.85rem;
    }
}

/* ============================
   Zoekveld smaller op grote schermen
============================ */

/* Large desktops */
@media (min-width: 992px) {
    .search-bar {
        max-width: 600px;  /* kies zelf 400 / 500 / 600 */
        flex-grow: 0 !important;   /* niet meer volledig uitrekken */
        flex-shrink: 0;
    }
}

/* Extra grote schermen */
@media (min-width: 1400px) {
    .search-bar {
        max-width: 520px; /* iets ruimer voor XL schermen */
    }
}

/* ============================
   Mobile menu styling pijltjes
============================ */

.mobile-nav-item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
}

.mobile-nav-item a i {
    font-size: 1.1rem;
    color: #999;
}

/* MOBILE MENU WRAPPER */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background: #fff;
    box-shadow: 2px 0 10px rgba(0,0,0,0.15);
    transition: 0.3s ease;
    z-index: 9999;
}

.mobile-menu.open {
    left: 0;
}

.mobile-menu-inner {
    padding: 20px;
}

.mobile-menu-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.mobile-menu-title {
    font-size: 1.4rem;
    font-weight: 700;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    border-bottom: 1px solid #eee;
    text-decoration: none;
}

.mobile-nav-item a i {
    font-size: 1.2rem;
    color: #999;
}




/* ============================
   MOBILE MENU ICONS + ARROWS
============================ */

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #4c3228;
    text-decoration: none;
    border-bottom: 1px solid #e5d4bd;
}

/* linkerkant (icon + tekst) */
.mobile-left {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* linkse iconen */
.mobile-icon {
    font-size: 1.3rem;
    color: #4c3228;
}

/* chevron rechts */
.mobile-arrow {
    font-size: 1.3rem;
    color: #4c3228;
    flex-shrink: 0;     /* nooit kleiner drukken */
}

/* kleine hover */
.mobile-nav-item a:hover {
    background: #fff8ee;
}

/* ============================
   BRAND TILES (Merken A–Z)
============================ */

/* -------------------------------
   BRAND CARDS
-------------------------------- */

.brand-card {
    border-radius: 10px;
    transition: transform .2s ease, box-shadow .2s ease;
    background: #fff;
}

.brand-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,.12);
}

/* Logo wrapper */
.brand-logo-wrapper {
    height: 120px; /* max hoogte van het logo-gebied */
    width: 100%;
}

/* Logo zelf */
.brand-logo {
    max-height: 120px;
    max-width: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Merknaam onderaan */
.brand-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: #000 !important;
    text-align: center;
}

/* Link nooit onderstreept */
a.text-decoration-none {
    text-decoration: none !important;
}