/*.webshop-listing{
    position: relative;
}*/

.webshop-listing-item{
    position: relative;
    display: block;
    background-color: var(--ltc-blue);
    border-radius: 10px;
    color: white;
    padding: 20px;
}

.webshop-listing-item-link{
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Zorgt ervoor dat de hele kaart klikbaar blijft, terwijl de "toevoegen aan winkelwagen"-knop erboven blijft liggen */
.webshop-listing-item-link::after{
    content: "";
    position: absolute;
    inset: 0;
}

.webshop-listing-item-actions{
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

/* Puur decoratief: laat kliks doorvallen naar de onderliggende kaart-link */
.webshop-listing-item-chevron{
    pointer-events: none;
}

.webshop-listing-item-cart-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--ltc-yellow);
    color: var(--ltc-blue);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.webshop-listing-item-cart-btn:hover{
    background-color: var(--ltc-yellow-hover);
}

.webshop-listing-item-cart-btn.in-cart{
    background-color: var(--ltc-grey);
}

.webshop-listing-item-cart-btn .icon-remove{
    display: none;
}

.webshop-listing-item-cart-btn.in-cart .icon-add{
    display: none;
}

.webshop-listing-item-cart-btn.in-cart .icon-remove{
    display: inline-block;
}

.webshop-listing-item-title{
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}

.webshop-listing-item:hover .webshop-listing-item-title{
    color: var(--ltc-yellow);
}

.webshop-product-price{
    font-size: clamp(32px, 30.2px + 0.48vw, 40px);
    font-weight: 600;
    color: var(--ltc-blue);
}

/* Knop staat grijs wanneer het product al in de winkelwagen zit */
.add-product-to-cart.in-cart {
    background-color: var(--ltc-grey);
}

/* Teller met aantal producten in de winkelwagen */
.cart-count-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 50%;
    background-color: var(--ltc-yellow);
    color: var(--ltc-blue);
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1;
}

.add-product-to-cart.in-cart:hover {
    background-color: var(--ltc-grey);
}

/* Mobiele winkelwagenknop: geen mandje-icoon, enkel een cijfer naast de titel */
.mobile-menu-secondary .cart-nav-link .cart-count {
    display: none;
    margin-left: 6px;
    font-weight: bold;
    color: var(--ltc-blue);
}

.mobile-menu-secondary .cart-nav-link.has-cart-items .cart-count {
    display: inline;
}

/* ==========================================================================
   WINKELWAGEN-PAGINA - RESPONSIVE TABEL
   ========================================================================== */

.webshop-cart-table {
    width: 100%;
    border-collapse: collapse;
}

.webshop-cart-table thead th {
    text-align: left;
    padding-top: 12px;
    color: var(--ltc-blue);
    font-weight: 600;
    border-bottom: 2px solid var(--ltc-grey);
}

.webshop-cart-table tbody td {
    padding-top: 12px;
    border-bottom: 1px solid var(--ltc-grey);
    vertical-align: middle;
}

.webshop-cart-item-price {
    white-space: nowrap;
}

.webshop-cart-item-actions {
    width: 1%;
    text-align: right;
}

.webshop-cart-item-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: transparent;
    color: var(--ltc-blue);
    border: 1px solid var(--ltc-grey);
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.webshop-cart-item-remove:hover {
    background-color: var(--ltc-yellow);
    color: var(--ltc-blue);
    border-color: var(--ltc-yellow);
}

.webshop-cart-empty {
    padding: 16px 0;
}

/* Op smalle schermen: tabel-koppen verbergen en elke rij als kaart tonen */
@media (max-width: 768px) {
    .webshop-cart-table thead {
        display: none;
    }

    .webshop-cart-table,
    .webshop-cart-table tbody,
    .webshop-cart-table tr,
    .webshop-cart-table td {
        display: block;
        width: 100%;
    }

    .webshop-cart-table tr.webshop-cart-item {
        position: relative;
        padding: 12px 60px 12px 16px;
        margin-bottom: 12px;
        border: 1px solid var(--ltc-grey);
        border-radius: 10px;
    }

    .webshop-cart-table tbody td {
        padding: 6px 0;
        border-bottom: none;
    }

    .webshop-cart-table td[data-label]::before {
        content: attr(data-label);
        display: block;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.03em;
        color: var(--ltc-blue);
        margin-bottom: 2px;
    }

    .webshop-cart-item-actions {
        position: absolute;
        top: 12px;
        right: 12px;
        width: auto;
        padding: 0;
    }
}



/* *********************************************************
**
**
** BANNER
**
**
********************************************************* */

.blue-banner-yellow {
	background-color: var(--ltc-yellow);
	color: var(--ltc-blue);
	padding: 60px 40px;
	border-radius: 12px;
}

.blue-banner-yellow .blue-banner-yellow-title {
    font-size: clamp(24px, 22.1px + 0.48vw, 32px);
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 20px;
}

.blue-banner-yellow .blue-banner-yellow-body {
    font-size: clamp(16px, 15.1px + 0.24vw, 20px);
    line-height: 1.6;
    font-weight: 300;
}




/* ==========================================================================
   MENU / HEADER STYLING - WINKELWAGEN-KNOP
   ========================================================================== */

/* Container voor de winkelwagenknop in het menu */
.cart-button-container {
    position: relative;
    display: inline-block;
}

/* De knop zelf in de menubalk */
/* Extra oplopende specificiteit (.cart-button-container .cart-button) is nodig
   om de regel ".site-nav a { display: inline-block; }" uit top.css te overstemmen,
   anders wordt deze knop nooit echt een flex-container en blijft het icoon
   op de tekst-baseline hangen in plaats van verticaal gecentreerd. */
.cart-button-container .cart-button {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--ltc-blue);
    padding: 10px;
}

/* Het winkelmandje vóór de tekst in het menu */
.cart-button .cart-icon {
    display: inline-flex;
    align-items: center;
    margin-right: 8px;
    color: var(--ltc-blue); /* Standaard blauw */
    transition: color 0.2s ease;
}

/* Voorkom dat de SVG als inline-element op de tekst-baseline blijft "hangen" */
.cart-button .cart-icon svg {
    display: block;
}

.site-nav-white .cart-button .cart-icon {
    color: white;
}

/* Als er producten in de winkelwagen zitten: maak het menu-mandje diepgeel */
.cart-button.has-cart-items .cart-icon {
    color: var(--ltc-yellow);
}

/* Het cijfer-bolletje rechtsboven de menuknop */
.cart-button .cart-count-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 18px;
    width: 18px;
    height: 18px;
    padding: 0;
    font-size: 11px;
}


.checkout-link {
    color: var(--ltc-blue);
    text-decoration: underline;
}

.checkout-total-price-panel {
    background-color: var(--ltc-blue);
    border-radius: 10px;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.checkout-total-price-panel .total-price-panel-amount{
    font-size: clamp(32px, 30.2px + 0.48vw, 40px);
    font-weight: 600;
}

.payment-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
    margin: 0 auto;
    max-width: 360px;
    border: 1px solid var(--ltc-grey);
}

.payment-icons img {
	max-height: 36px;
	height: 36px;
	width: auto;
}

.icon-payment {
    text-align: center;
	height: 36px;
}
/*
.icon-payment:first-child {
    text-align: left;
}

.icon-payment:last-child {
    text-align: right;
}
    */