body {
    overflow: hidden;
}

.sidebar {
    padding: 0 !important;
    overflow-y: auto;
    height: 100vh;
    scrollbar-width: none; /* Firefox */
}

.category-list {
    list-style-type: none;
    padding: 0;
    overflow: auto;
}

.category-list-item {
    border-top: 1px solid var(--grey);
    border-left: 1px solid var(--grey);
    border-right: 1px solid var(--grey);
    padding: 5px;
}

.category-img {
    height: 130px;
    margin: 12px;
    object-fit: contain;
}

.category-header {
    padding: 10px;
    position: sticky;
    top: 0;
    z-index: 9;
    background-color: white;
    border-bottom: 1px solid var(--grey);
    box-shadow: 0px 0px 11px -5px rgba(0, 0, 0, 0.75);
}

.filter-bar {
    padding: 15px;
    background-color: rgba(253, 186, 94, 0.35);
}

.btn-filter {
    border-radius: 40px !important;
    margin-left: 15px;
}

.btn-filter .active{
     background-color: black !important;
     color: white !important;
 }

.btn-filter:not(.active) svg {
    display: none !important;
}

.btn-filter:hover {
    background-color: transparent !important;
    color: black !important;
}

.btn-add {
    font-size: 17pt !important;
}

/* PRODUCTEN */
.product-list {
    /*list-style-type: none;*/
    /*padding: 0 12px 12px 12px;*/
    /*scrollbar-width: none; !* Firefox *!*/
    /*margin-bottom: 150px;*/

    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(30%, 1fr)); /* Elk li neemt een derde van de breedte */
    padding: 0;
    list-style: none; /* Verwijdert de standaard list-style */
}

.product-list-item {
    /*padding: 0 !important;*/

    /*background-color: #f5f5f5;*/
    /*border: 1px solid #ddd;*/
    /*padding: 20px;*/
    box-sizing: border-box; /* Zorgt ervoor dat padding en border worden meegerekend in de breedte */
}

.main-content {
    overflow-y: auto;
    height: 100vh;
    padding: 0 !important;
    scrollbar-width: none; /* Firefox */
}

.product-card {
    border-right: 1px solid var(--grey);
    border-bottom: 1px solid var(--grey);
    padding: 15px;
    /*font-family: Heebo-Regular, sans-serif;*/
    position: relative;
}

.product-card-img {
    margin: auto;
    display: block;
}

.product-card-title {
    font-size: 17pt;
    font-weight: bold;
    height: 50px;
}

.product-card-price {
    font-size: 15pt;
    vertical-align: middle;
    /*font-family: Archivo-Regular, sans-serif;*/
}

.product-card-origin {
    border-radius: 5px;
    position: absolute;
    top: 15px;
    left: 15px;
}

.product-card-badge {
    position: absolute;
    right: 10px;
    font-size: 12pt !important;
}

.in-shoppingcart {
    /*background-color: var(--pink) !important;*/
    color: fuchsia;
}

.icon-add {
    font-size: 24pt;
}

/* Correctie van de typefout */
button {
    transition: background-color 0.1s ease;
}

/* Roze achtergrond en pulsatie-animatie */
.pulse {
    /*background-color: var(--pink) !important; !* Je hebt geen !important nodig hier *!*/
    animation: pulsate 1s ease; /* Infinite wordt toegevoegd om de animatie te herhalen */
}

/* Pulsatie-animatie */
@keyframes pulsate {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes shrinkAndHide {
    0% {
        transform: scale(1); /* Start op normale grootte */
    }
    20% {
        transform: scale(0.9); /* Lichtjes krimpen */
    }
    40% {
        transform: scale(0.7); /* Verder krimpen */
    }
    60% {
        transform: scale(0.5); /* Halve grootte */
    }
    80% {
        transform: scale(0.3); /* Bijna weg */
    }
    100% {
        /*opacity: 0; !* Volledig onzichtbaar *!*/
        transform: scale(0); /* Volledig krimpen */
        /*height: 0; !* Hoogte naar 0 *!*/
        /*margin: 0; !* Verwijder marge *!*/
        /*padding: 0; !* Verwijder padding *!*/
    }
}

.filter-hide {
    animation: shrinkAndHide 0.3s forwards; /* 0.5s is the duration of the animation */
}