:root {
    --donkerblauw: #0A0943;
    --felblauw: #33CBFF;
    --lichtblauw: #D3E7F6;
    --grijs: #CCCCCC;
    --donkergrijs: #9f9f9f;
    --lichtgrijs: #F9F9F9;
    --achtergrond-grijs: #F8F8F8;
    --oranje: #db8016;
    --groen: #3e8e52;
    --rood: #c61717;
}

.sw-modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
    z-index: 1100;
}

.sw-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 30px;
    width: 25rem;
    border-radius: 10px;
}

.sw-modal-content .close-button{
    position: absolute;
    right: 20px;
    top: 10px;
    cursor: pointer;
    font-size: 20px;
}

.blocked.blocked-show, .show-modal {
    visibility: visible !important;
    opacity: 1 !important;
}

.hide {
    display: none !important;
}

.blocked {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.01s, opacity 0.01s 0s, transform 0.01s;
    z-index: 1100;
}

.blocked-show {
    opacity: 1;
    visibility: visible;
    transform: scale(1.0);
    transition: visibility 0s linear 0s, opacity 0.01s 0s, transform 0.01s;
}
#sw-modal-text{
    padding-bottom: 20px;
    padding-top: 7px;
}

.shopping-cart-number {
    color: #fff;
    font-size: 10px;
    border-radius: 50px;
    width: 15px;
    display: flex;
    height: 15px;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: -7px;
    top: -6px;
}

#sw-modal-footer{
    display: flex;
    gap: 20px;
    button{
        text-transform: uppercase;
        font-size: 13px;
        padding: 0;
        width: 100%;
        &:first-child{
            text-align: justify;
        }
    }

}

#sw-modal-footer svg{
    width: 18px;
}

#sw-modal-footer button:last-child{
    background-color: var(--felblauw);
    color: var(--donkerblauw);
    padding: 10px;
    border-radius: 10px;
    &:hover{
        background-color: var(--donkerblauw);
        color: var(--felblauw);
        path{
            fill: var(--felblauw) !important;
        }
    }
}


body {
    background-color: var(--achtergrond-grijs);
    overflow-x: hidden; !important;
}

h1 {
    font-family: 'Gothic', sans-serif;
    font-weight: 700;
    font-size: clamp(1.4375rem, 0.7307rem + 1.4744vw, 2.5rem);
    color: var(--donkerblauw);
    margin-bottom: 0;
}

h2 {
    font-family: 'Gothic', sans-serif;
    font-weight: 700;
    font-size: clamp(1.4375rem, 1.0633rem + 0.7806vw, 2rem);
    color: var(--donkerblauw);
    margin-bottom: 0;
}

h3 {
    font-family: 'Gothic', sans-serif;
    font-weight: 700;
    font-size: clamp(1rem, 0.6533rem + 0.7233vw, 1.25rem);
    color: var(--donkerblauw);
    margin-bottom: 0;
}

.ondertitel {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: clamp(1rem, 0.8266rem + 0.3617vw, 1.125rem);
    color: var(--donkerblauw);
    margin: 0;
}

button {
    font-family: 'Gothic', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--donkerblauw);

    display: inline-block;
    background-color: transparent;
    border: 0px;
    font-weight: bold;
    padding: 10px;
    line-height: 1.5;
}

.btn {
    border-radius: 10px;
    padding: 14px 24px;
    font-size: 16px;
    font-family: 'Gothic', sans-serif;
    font-weight: bold;
    line-height: 19px;
    border: 1px solid var(--donkerblauw);
    text-transform: uppercase;
    transition: all 0.3s ease;

    &.btn-secondary {
        border-color: #fff;
        background-color: #fff;
        color: var(--donkerblauw) !important;

        &:hover {
            transition: all 0.3s ease;
            background-color: transparent;
            color: #fff !important;
        }
    }

    &.btn-primary {
        background-color: var(--donkerblauw);
        color: white !important;

        &:hover {
            transition: all 0.3s ease;
            background-color: var(--felblauw);
            border-color: var(--felblauw);
            color: var(--donkerblauw) !important;
        }
    }

    &.btn-tertiary {
        background-color: var(--felblauw);
        color: var(--donkerblauw);
        border-color: var(--felblauw);

        &:hover {
            transition: all 0.3s ease;
            background-color: var(--donkerblauw);
            border-color: var(--donkerblauw);
            color: white !important;
        }
    }
}

.org-price{
    color: var(--donkergrijs) !important;
    font-size: 16px;
}

.swiper-products {
    max-width: 100%;
}

.swiper .swiper-arrows {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 15px;

    .swiper-button-disabled svg {
        opacity: 0.3;
    }
}

.menu_customer {
    display: none;
    position: absolute;
    font-size: 20px;
    list-style-type: none;
    z-index: 2;
    background-color: #ffffff;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    margin-left: -90px;
    padding: 0px 40px 20px 20px;
    top: 1.4em;
}

.menu_customer a {
    text-decoration: none;
    color: #000;
    font-size: 15px;

}

#sw_customer_options:hover + .menu_customer {
    display: table-row-group;
}



#sw_customer_options_small:hover + .menu_customer {
    display: table-row-group;
}

.menu_customer:hover {
    display: table-row-group;
}

#cookie-message {
    visibility: hidden;
    background-color: #ddd;
    color: #000;
    min-width: 550px; /* Set a default minimum width */
    margin-left: -275px; /* Divide value of min-width by 2 */
    text-align: center;
    border-radius: 8px;
    padding: 16px;
    position: fixed;
    z-index: 99;
    left: 50%;
    bottom: 30px;
}

#shoplogo img {
    max-width: 300px;
    height: 40px;
}

p {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: clamp(0.875rem, 0.7918rem + 0.1735vw, 1rem);
    color: var(--donkerblauw);
    margin: 0;
}

a {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: clamp(0.875rem, 0.7918rem + 0.1735vw, 1rem);
    color: var(--donkerblauw) !important;
}

/* top menu */
.headertop {
    background-color: var(--lichtblauw);
    padding: 5px 0;

    * {
        font-size: 14px !important;
    }

    a {
        color: var(--donkerblauw);
    }

    p {
        margin: 5px 0
    }

    .dropdown {
        border: none;

        &:hover .dropdown-menu {
            display: block;
        }

        .dropdown-menu {
            margin-top: 0;
        }

        .dropdown-toggle::after {
            display: none !important;
        }
    }
}

/* top menu end */

/* header menu */

.desk-header {
    display: block;
}

.desk-header #sw_shoppingcart:hover path, .desk-header #sw_customer_login:hover path {
    fill: var(--felblauw);
    stroke: var(--felblauw);
}

.shopping-cart-number {
    background-color: var(--lichtblauw) !important;
    color: var(--donkerblauw) !important;
}

.middle-menu {
    padding-top: 15px;
    padding-bottom: 15px;
}

.top-border{
    border-top: 1px solid var(--grijs);
}

#render_cart_here .check-item-full:nth-of-type(2) {
    border-bottom: 1px solid #ccc;
}

.bread-in{
    color: var(--grijs) !important;
    font-size: 14px;
}
.bread-checkout{
    font-size: 14px;
    color: var(--grijs) !important;
    text-decoration: none !important;
}

.contact-image{
    height: 208px;
    width: 434px;
    border-radius: 10px;
    img{
        height: 100%;
        width: 100%;
        object-fit: cover;
        border-radius: 10px;

    }
}

.mob-title-check{
    word-wrap: break-word;
    overflow-wrap: anywhere; /* moderne optie */
    white-space: normal;     /* voorkomt één-regel gedrag */
}

#sw-form-contact{
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
    margin-top: 20px;
}

.checkout_total_line .form-control, #account_create .form-control, #alt_delivery .form-control{
    -webkit-appearance: checkbox !important;
    -moz-appearance: checkbox !important;
    width: 30px;
    margin-top: 7px;
}


input[type="checkbox"].form-control:checked {
    accent-color: var(--felblauw);
}

#sw_finish_cart{
    background-color: var(--donkerblauw);
    color: white;
    border-radius: 10px;

&:hover{
    background-color: var(--felblauw);
    color: var(--donkerblauw);
}
}

.form-control, #sw-form-invoice_address input, #sw-form-invoice_address select{
    border: 1px solid var(--grijs);
    padding: 15px 20px;

    &::placeholder{
        color: var(--donkergrijs);
    }
}

#send_methods_webshop .webshop_select_option, #payment_methods_webshop .webshop_select_option{
    border: 1px solid var(--donkerblauw);
    box-shadow: none !important;
    font-weight: 500;
    font-size: 17px;
    font-family: 'Lato', sans-serif;
    pointer-events: auto;
    border-radius: 10px !important;
    padding: 10px;
    margin-bottom: 15px !important;
}

.alert-success{
    background-color: var(--donkerblauw) !important;
    color: white !important;

}

.bread-contact, .bread span{
    color: var(--grijs) !important;
    font-size: 14px !important;
}

textarea.form-control{
    min-height: 250px;
}

.con-bread{
    color: var(--grijs) !important;
}

.sw-form-submit{
    text-transform: uppercase;
    background-color: var(--donkerblauw);
    color: white ;
    font-weight: 600;
    padding: 15px 45px;
    border-radius: 10px;
    margin-top: 20px;

    &:hover{
        background-color: var(--felblauw);
        color: var(--donkerblauw);
    }
}

.footer-services li, .footer-services a, .footer-services p, .footer-services p{
    font-weight: 400 !important;
    font-size: 15px !important;
}

.knoppen-checkout{
    margin-top: 10px;
    div{
        font-family: 'Gothic', sans-serif;
        text-transform: uppercase;
        font-size: 14px;
        font-weight: 600;
        background-color: var(--donkerblauw);
        color: white;
        text-align: center;
        width: 100%;
        border-radius: 10px;
        padding: 10px 0;
        &:hover{
            background-color: var(--felblauw);
            color: var(--donkerblauw);
        }
    }
}

.desk-header .logo img {
    width: 200px !important;
    height: 67px !important;
}

.desk-header .searchbar {
    padding: 10px 0;
}

.desk-header .searchbar select {
    height: 53px;
    padding: 10px 0 10px 10px;
    color: var(--donkergrijs);
    border-color: var(--grijs);
    border-radius: 5px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
}

.desk-header .searchbar input[type="search"] {
    height: 53px;
    padding: 10px 10px 10px 20px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid var(--grijs);

    &::placeholder{
        color: var(--donkergrijs);
    }
}

.desk-header .searchbar #search-input::placeholder {
    color: var(--donkergrijs);
    font-family: 'Lato', sans-serif;
    font-size: 14px;
}

.desk-header .bottom-menu {
    background-color: var(--donkerblauw);
    padding: 20px 0;
}

.bottom-menu .menu-item a {
    color: white !important;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    font-weight: 500;
}

.bottom-menu .menu-item a:hover {
    text-decoration: underline;
    text-underline-offset: 5px;
}

.desk-header .menu-level-0 {
    margin-bottom: 0 !important;
    display: flex;
    justify-content: space-between;
    padding: 0 !important;
}

.desk-header .menu-level-0 li {
    padding-right: 0 !important;
}

.menu-level-1 {
    display: none !important;
}

.mobile-header {
    display: none;
}

.content-chevron img{
    width: 12px;
    height: auto;
}

.search-icon {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

/* homepage blok 1 */
.homepage-banner {
    position: relative;
    padding: 135px 0 235px 0; /* normaal voor desktop */
    background: linear-gradient(251deg, #0A094300 0%, #0A0943 100%),
    url(/webshop_1/images/homepage-banner.png) center/cover no-repeat;
    overflow: visible; /* laat de golf zichtbaar buiten de banner */
}

.homepage .generic-header .col-12 > p {
    margin: 0;
}

.wave-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    overflow: hidden;
}

.wave-bottom svg {
    width: 100%;
    height: auto;
}

.banner-image {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end !important;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border-radius: 10px;
    padding: 30px;
    height: 330px !important;

    h3, p {
        color: #fff;
        margin: 0 0 5px
    }
}

/* Desktop standaard */
.wave-desktop {
    display: block;
}

.wave-mobile {
    display: none;
}

.homepage-banner + * {
    margin-top: -5px; /* optioneel, om de overgang glad te maken */
}

.homepage-banner .titles h1 {
    color: white;
    font-size: clamp(1.5625rem, 0.2736rem + 2.6886vw, 3.5rem);
    margin-bottom: 0 !important;
    line-height: 60px;
}

.homepage-banner .titles .ondertitel {
    color: white;
    font-size: clamp(1rem, 0.8337rem + 0.3469vw, 1.25rem);
}



.banner-input-links {
    .banner-input {
        width: 50%;

        .input-banner {
            width: 100%;
            padding: 12px 20px;
            border-radius: 5px;
            border: 1px solid var(--lichtgrijs);

            &::placeholder {
                color: var(--donkergrijs);
            }
        }

        .input-icon {
            position: absolute;
            height: 100%;
            width: 60px;
            top: 0;
            right: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--felblauw);
            border-bottom-right-radius: 5px;
            border-top-right-radius: 5px;
            transition: background-color 0.3s ease;

            &:hover {
                background-color: var(--donkerblauw);
            }
        }
    }


    .banner-links {
        width: 50%;

        a {
            color: white !important;
        }

        .reviews {
            align-items: center
        }
    }
}

.item-card {
    padding: 12px;
    border-bottom: 1px solid gainsboro;
    display: flex;
    gap: 10px;

    &:last-child {
        border-bottom: none;
    }

    .thumb {
        width: 45px;
        height: 45px;
        object-fit: contain;
        border: 1px solid #f0f0f0;
        border-radius: 8px;
        background: #fff;
    }

    .title {
        margin: 0 0 6px;
        font-size: 16px;

        a {
            text-decoration: unset;
            font-weight: bold;
        }
    }

    .meta {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        margin: 6px 0 0;

        .badge {
            font-size: 12px;
            padding: 2px 6px;
            border: 1px solid #ddd;
            border-radius: 999px;
            color: gray;

            &:last-child {
                color: black;
                font-weight: 900;
            }
        }
    }

    .stats {
        font-size: 12px;
        color: #666;
        margin: 6px 0 10px;
    }
}

#results, #banner-results, #mobile-results {
    border-radius: 10px;
    position: absolute;
    background: #f9f9f9;
    max-height: 250px;
    overflow-y: auto;
    z-index: 1;
    margin-top: 5px;
    box-shadow: #00000042 0px 0px 8px 0px;
}

#banner-results::-webkit-scrollbar-track {
    border-radius: 10px;
}



.new-products-section h2 span, .over-ons h2 span, .sale-products-section h2 span{
    font-family: 'Gothic', sans-serif;
}

.over-ons p{
    font-size: 18px;
}



.article_item {

    .article-title {
        font-size: 16px;
        font-weight: bold;
        font-family: 'Gothic', sans-serif;
        line-height: 20px;
        min-height: 42px;
        color: var(--donkerblauw);
        text-transform: uppercase;
        display: -webkit-box;
        -webkit-line-clamp: 2;    /* maximaal 2 regels */
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    img {
        height: 195px;
        width: 100%;
        object-fit: contain;
        margin-bottom: 30px;
    }

    .price-regular {
        font-size: 16px;
        font-weight: bold;
        font-family: 'Lato', sans-serif;
        color: var(--donkerblauw);
    }


    .article_info {
        border: 1px solid #E8E8E8;
        border-radius: 10px 10px 0 0;
        padding: 20px;
        background: #fff;
    }

    .btn-tertiary {
        width: 100%;
        border-radius: 0 0 10px 10px !important;
    }

    .stock {
        line-height: 1;
        margin-bottom: 5px;

        .stockstatus {
            display: inline-block;
            background: #3e8e52;
            vertical-align: middle;
            width: 17px;
            height: 17px;
            border-radius: 20px;
            border: 4px solid #cee2d3;
            margin-left: 5px;
            margin: 0;
            width: 12px;
            height: 12px;
            border-width: 3px
        }

        .almost-out-of-stock {
            background-color: orange;
            border-color: #ffc107;

            & ~ .stocktext {
                color: #3e8e52;
            }
        }

        .out-of-stock {
            background-color: #ff4136;
            border-color: #ff8577;

            & ~ .stocktext {
                color: #c61717;
            }
        }

        .stocktext {
            font-size: 14px;
            font-weight: normal;
            color: #008824;
            font-family: Lato, sans-serif
        }
    }

}

.img-side {
    border-radius: 10px !important;
    max-height: 480px;
    object-fit: cover;
}

.about-section * {
    color: var(--donkerblauw);
}

.betaal-met{
    img{
      width: 45px;
        height: 45px;
    }
}

#catL1{
    -webkit-appearance: none;
    -moz-appearance:    none;
    appearance:         none;
    background-image: url(/webshop_1/images/chevron-down-gray.svg) !important;
    background-position: right 20px center;
    background-repeat: no-repeat;
    background-size: 8px;
    min-width: 155px;
}



.footer {
    margin-top: 53px;
    background-color: var(--donkerblauw);
    color: white;
    padding-top: 100px;

    img {
        margin-top: 10px;
    }

    .waves {
        position: absolute;
        top: -1px;
        left: 0;
        width: 100%;
        line-height: 0;
        overflow: hidden;
    }

    * {
        color: white !important;
        text-decoration: none !important;
    }

    h3 {
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    ul {
        padding: 0;
        list-style: none;
    }

    svg {
        width: 100%;
        height: auto;
    }

    .collapseble {
        padding: 0px 35px;

        h3 {
            display: none;
        }
    }

    .mobile-footer-toggle {
        width: 100%;
        text-align: left;
        padding: 16px 35px;
        border-top: 1px solid #F8F8F8;
        text-transform: uppercase;
        display: flex;
        justify-content: space-between;
        align-items: center;

        &:after {
            content: '';
            background: url('/webshop_1/images/chevron-down.svg');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            width: 12px;
            height: 12px;
            display: inline-block;
        }

        &:not(.collapsed):after {
            transform: rotate(180deg);
        }
    }
}

.footer-bottom {
    background-color: var(--lichtblauw);
    color: var(--donkerblauw);
    font-size: 14px;
    padding: 14px 0;
    line-height: 17px;

    a {
        text-decoration: unset !important;
    }

    .container {
        display: flex;
        justify-content: space-between;
    }
}

.product-listing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 15px;
}

.pager {
    padding: 0;
    list-style-type: none;
    display: flex;
    gap: 7px;
    margin: 0;

    * {
        text-decoration: none !important;
    }

    .pager-link-selected {
        font-weight: bold;
    }
}

.mobile-only{display: none}
.desktop-only{display: block}

.openingstijden{
    color: var(--donkerblauw);
}

#results{
    z-index: 9999999;
}

#sw_customer_login_back button{
    padding-left: 0;
}

#customer_login_form #customer_login_mailaddress{
    margin-bottom: 15px;
}


.menu-level-0 .menu-item:last-child{
    display: none;
}

.banner-image h3{
    text-transform: uppercase;
}

input[type="search"]::-webkit-search-cancel-button {
    transform: translateX(-15px); /* klein beetje verplaatsing */
}

@media only screen and (max-width: 767px) {


    #sw_custom_login{
        margin-bottom: 15px;
    }

    .menu-level-0 .menu-item:last-child{
        display: block;
    }

    .banner-image{
        padding: 30px 30px 15px 15px;
    }

    #sw-form-contact textarea{
        min-height: 155px;
        max-height: 175px;
    }

    .sw-form-submit{
        width: 100%;
    }


    body #cookie-message {
        width: 90% !important
    }

    .adres-info p, .adres-info svg{
        color: var(--donkerblauw) !important;
    }

    #sw-modal-footer{
        gap: 10px;
    }

    .sw-modal-content{
        max-width: calc(100% - 80px); /* 20px links + 20px rechts */
        padding: 17px;
    }
    .winkelwagen-knop{
        font-size: 16px;
        padding: 15px 10px !important;
    }

    .ondertitel{
        line-height: 20px;
    }

    .filter-block-options.filter-open{
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    /*.swiper-products {*/
    /*    .article_item{*/
    /*        width: 47% !important;*/
    /*    }*/
    /*}*/
    .article-btn{
        font-size: 14px;
    }
    .article_info{
        img {
            height: 120px;
            width: 100%;
            object-fit: contain;
            margin-bottom: 15px;
        }


    }

.btn-slider{
    width: 100%;
}

    .contact-image{
        height: 150px;
        width: 100%;
        margin-bottom: 30px;
    }

    .maat-detail{
        position: relative;
        width: 100% !important;
    }

    .winkelwagen-knop{
        width: 100%;
    }

    .swiper-thumbs .swiper-slide.swiper-slide{

            width: 100px !important;
            height: 100px !important;
            flex: 0 0 100px !important; /* ← belangrijkste regel */


    }

    .swiper.product-detail.main .swiper-slide img{
        height: 400px !important;
    }

    .product-detail.main .swiper-slide{
        height: 400px !important;
    }


    #render_article_detail_here{
        .stock{padding-top: 15px !important}
        .prijs{font-size: 20px;}
        #original-cart-button{margin-bottom: 1rem;}
    }

    .more-info {
        width: 101vw;
        margin-left: 50%;
        transform: translateX(-50%);
        border-radius: 0 !important;

        p{font-size: 16px}
    }

    .article_item{
        .article_info{
            padding: 10px !important;
        }
    }

    .upsell-row {
        .btn{
            font-size: 14px;
            padding: 8px 0;
        }

        .img-fluid{
            margin-bottom: 0!important;
        }


    }


    .check p{font-size: 16px !important}

    .article_item{
        height: unset !important;
    }

    .container{padding-right: 35px !important;
    padding-left: 35px !important}

    .desktop-only{display: none}

    .mobile-only{
        display: block;
    }
    .product-listing {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        padding: 10px 0;
    }

    .banner-image {
        height: 180px !important;
    }

    .input-banner {
        padding: 9px 20px !important;
    }

    .input-icon {
        width: 45px !important;
    }

    .search-icon {
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .ping {
        width: 25px;
        height: auto;
    }

    .bottom-menu-mob {
        background-color: var(--donkerblauw);
        padding-top: 15px;
        padding-bottom: 15px;

    }

    .input-mobile {
        width: 100%;
        padding: 6px 20px;
        border-radius: 5px;
        border: 1px solid var(--grijs);
    }

    .adres-info {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        margin-bottom: 15px;
    }

    .input-mobile::placeholder {
        font-size: 14px;
        color: var(--donkergrijs);

    }

    .mobile-header {
        display: block;
    }

    .navigationbar .main-navigation {
        right: -310px !important;
    }

    .navigationbar .main-navigation.active {
        right: 0 !important;
    }

    .desk-header {
        display: none
    }



    .wave-desktop {
        display: none;
    }

    .wave-mobile {
        display: block;
    }

    .reviews {
        align-items: flex-start !important;
    }

    .banner-links {
        width: 100% !important;
        align-items: flex-start;
    }

    .homepage-banner {
        padding: 60px 0 160px 0;
    }

    .homepage-banner .titles h1 {
        line-height: 27px;
        margin-bottom: 10px !important;
    }

    .banner-input {
        width: 100% !important;
    }

    .footer-bottom .container {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    #block_id_2571{
        padding-top: 1rem !important;
    }

}

@media only screen and (min-width: 1024px) {

    .contact-bold{
        font-weight: bold !important;
    }


    #results{
        right: 0;
        width: 80%;
    }

    .slider-titles{
        line-height: 29px;
    }

    .headertop .desktop {
        display: block
    }

    .headertop .mobiel {
        display: none
    }
}

input[type="search"]::-webkit-search-cancel-button {
    transform: translateX(-10px); /* klein beetje verplaatsing */
}

.searchbar-input:focus ~ .search-icon {
    opacity: 0;
    pointer-events: none;
}



@media only screen and (max-width: 1024px) {


    .headertop .desktop {
        display: none
    }

    .headertop .mobiel {
        display: flex;
        justify-content: center;
        width: 200%;
        text-align: center;
    }

    .headertop .top-social {
        display: none !important
    }

    #sw_shoppingcart_count {
        left: 15px !important
    }

    .middle-menu-mob {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .logo-uitklap-menu {
        margin-top: 15px;
    }

    .navigationbar {
        .menu-level-0 {
            padding-left: 15px !important;

            li:after {
                display: none !important;
            }

            li a {
                text-decoration: none !important;
                font-size: 16px !important;
            }
        }

        .menu-level-1 {
            display: none !important;
        }
    }


}

.price-crossed{
    text-decoration: line-through;
    color: #555555
}

.article_search_results .cms_content > .col-12.opener.open {
    height: unset !important;
}

.article_search_results .cms_content > .col-12.opener {
    height: 115px;
    overflow-y: hidden;
    padding-right: 33px;
}

.content-chevron{
    width: 100%;
    border-bottom: var(--grijs) 1px solid;
    text-align: right;
}

.filter-block-header {
    list-style: none;
}

.check-title, .maten{
    color: var(--donkerblauw) !important;
}

.products-row {
    display: grid;
    grid-template-columns: repeat(3, calc(33.33% - 19px));
    gap: 25px;
    align-items: stretch;
}

.onze-winkel, .onze-winkel span{
    font-family: 'Gothic', sans-serif !important;
}

@media only screen and (max-width: 1400px) {
    .article_search_results .cms_content > .col-12.opener {
        height: 93px;
        padding-right: 0;
    }
    .products-row{
        display: grid;
        grid-template-columns: repeat(2, calc(54%));
        gap: 15px;
        justify-content: center;
        padding-left: 20px;
        padding-right: 20px;
    }
}

.filter-block-header{
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--donkerblauw);
}

.filter-block-header {
    display: inline-flex;
    align-items: center;

    &::after {
        content: '';
        background: url('/webshop_1/images/chevron-blauw-down.svg');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        width: 12px;
        height: 12px;
        display: inline-block;
        margin-left: 8px;
    }
}

.filter-block li.filter-open::after{
    content: '';
    background: url('/webshop_1/images/chevron-blauw-up.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 12px;
    height: 12px;
    display: inline-block;
    margin-left: 8px;
}

.filter-block {
    margin-bottom: 15px; /* Pas deze waarde aan naar wens */
}

.filter-block-item label{
    color: var(--donkerblauw);
}

.article_item {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.article_info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;       /* Laat dit blok zoveel mogelijk groeien binnen .article_item */
}

.article_info > button {
    margin-top: auto;   /* Duwt de knop naar beneden */
}

.breadcrumbs *{
    font-size: 14px !important;
    color: var(--grijs) !important;
    text-decoration: none !important;
}

.hidden{
    display: none !important;
}

.filter-block-item input[type="checkbox"] {
    accent-color: var(--felblauw) !important;
    color: white !important;
    margin-right: 5px;
}

.article_image_detail{
    img{
        width: 100%;
    }
}

.stock {
    line-height: 1;
    margin-bottom: 5px;

    .stockstatus {
        display: inline-block;
        background: #3e8e52;
        vertical-align: middle;
        width: 17px;
        height: 17px;
        border-radius: 20px;
        border: 4px solid #cee2d3;
        margin-left: 5px;
        margin: 0;
        width: 12px;
        height: 12px;
        border-width: 3px
    }

    .almost-out-of-stock {
        background-color: orange;
        border-color: #ffc107;

        & ~ .stocktext {
            color: #b36b00;
        }
    }

    .out-of-stock {
        background-color: #ff4136;
        border-color: #ff8577;

        & ~ .stocktext {
            color: #c61717;
        }
    }

    .stocktext {
        font-size: 14px;
        font-weight: normal;
        color: #008824;
        font-family: Lato, sans-serif
    }
}

.maat-detail{
    position: relative;
    width: 330px;
    select{
        width: 100%;
        padding: 10px 40px 10px 15px;
        border: 1px solid var(--grijs);
        border-radius: 10px;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        background-color: white;
        color: var(--grijs);
        font-size: 16px;
        background-image: url(/webshop_1/images/chlg.svg) !important;
        background-repeat: no-repeat;
        background-position: right 10px center;
        background-size: 12px;
    }
}

.winkelwagen-knop{
    background-color: var(--felblauw);
    color: var(--donkerblauw);
    border: none;
    padding: 15px 45px;

    &:hover{
        background-color: var(--donkerblauw);
        color: white;
    }
}

.info-title{
    font-family: 'Gothic', sans-serif !important;

}

.text-end{
    color: var(--donkerblauw);
}
#swiper-wrapper{margin-bottom: 20px !important}
.swiper.product-detail.main .swiper-slide img{
    width: 100%;
    height: 500px;
    object-fit: contain;
    display: block;
    border-radius: 10px;

}

.swiper.product-detail.main{
    max-height: 500px;
    position: relative;
    margin-bottom: 20px;

    .swiper-nav{
        position: absolute;
        z-index: 999;
        top: 50%;
        transform: translate(-50%);
    }

    .main-nav-prev{
        left: 2%;
        background-color: rgba(255, 255, 255, 0.8);;
        margin-left: 12px;
        border-radius: 5px;
        padding: 4px 10px 6px 7px;
        svg{
            width: 15px;
            height: 15px;
        }
    }
    .main-nav-next{
        right: 0;
        background-color: rgba(255, 255, 255, 0.8);;
        border-radius: 5px;
        padding: 4px 7px 6px 10px;
        svg{
            width: 15px;
            height: 15px;
        }
    }
}

.swiper-thumbs{
    .swiper-slide{
        width: 150px !important;
        height: 150px !important;
        flex: 0 0 150px !important; /* ← belangrijkste regel */
        img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            border-radius: 10px;
        }
    }

}

.prijs{
    font-size: 20px;
}



#sticky-cart-button{
    background-color: var(--donkerblauw);

    .sticky-prijs{
        color: white;
        font-size: 20px;
        font-family: 'Gothic', sans-serif;
        font-weight: 600;
    }

    button{
        background-color: var(--felblauw);
        color: var(--donkerblauw);
    }
}

.more-info{
    background-color: var(--donkerblauw);
    padding: 30px;
    border-radius: 10px;
 *{
     color: white !important;
 }
}

.product-detail.main{
    background-color: white;
    border-radius: 10px;
}
@media (min-width: 992px) {
    .custom-col {
        flex: 0 0 50%;
        max-width: 50%;
    }
}


/*.article-item-overlayer {*/
/*    position: relative;*/
/*    overflow: visible; !* Belangrijk! Anders wordt label afgekapt *!*/
/*}*/

/*.korting {*/
/*    position: absolute;*/
/*    top: 10px;        !* Iets naar binnen vanaf boven *!*/
/*    right: -30px;     !* Schuif naar rechts zodat rotatie in beeld blijft *!*/
/*    background-color: #ffd700;*/
/*    color: #000;*/
/*    font-weight: bold;*/
/*    padding: 5px 40px;*/
/*    transform: rotate(45deg);*/
/*    transform-origin: top right;*/
/*    z-index: 10;*/
/*    font-size: 14px;*/
/*    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);*/
/*}*/






.con-korting {
    position: absolute;
    top: 0;
    right: -22px;
    width: 150px;          /* afhankelijk van jouw SVG */
    height: 60px;
    pointer-events: none;
}

.korting {
    width: 100%;
    height: 100%;
    background-image: url(/webshop_1/images/geel2.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(45deg);  /* maakt 'm schuin */

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 16px;
    font-weight: 700;
    color: #000;  /* of #fff, afhankelijk van jouw SVG */
    padding-bottom: 30px;
    padding-left: 30px;
}


/*cookies*/
#cookie-message {
    background-color: #fff !important;
    color: #333 !important;
    padding: 25px !important;
    z-index: 9999 !important;
    box-shadow: 0 -1px 10px 0 #00000066;
    width: 26% !important;
    left: 15px !important;
    bottom: 15px !important;
    border-radius: 10px;
    text-align: left !important;
    margin: 0 !important;
    min-width: unset !important;
}

#cookie-message-text p {
    font-size: 15px !important;
    line-height: 20px;
}

body #cookie-message button:hover, body #cookie-message a:hover {
    background-color: var(--felblauw) !important;
    color: var(--donkerblauw) !important;
}

body #cookie-message button, body #cookie-message a {
    font-weight: 400 !important;
    line-height: 1;
    margin: 10px 10px 0 0;
    color: #fff !important;
    display: inline-block;
    padding: 9px 12px;
    font-size: 15px;
    background-color: var(--donkerblauw);
    border: none;
    border-radius: 10px;
}

.opener{
    overflow-x: hidden;
}






