/* All your CSS styles remain here */
body {
    font-family: 'Manrope', sans-serif;
}

.content-max-width {
    margin: 0 auto;
    max-width: 1600px;
    padding: 0 1rem;
    /* Standaard 1rem (16px) aan de zijkanten */
}

@media (min-width: 1024px) {
    /* Op large screens (lg) en groter geen horizontale padding */
    .content-max-width {
        padding: 0;
    }
}

.label-text {
    font-family: Manrope;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    color: #FFFFFF;
}

.product-title {
    font-family: Manrope;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #292929;
    max-height: 48px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.current-price {
    font-family: Manrope;
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
    color: #0072CE;
}

.original-price {
    font-family: Manrope;
    font-weight: 500;
    font-size: 12px;
    line-height: 24px;
    color: #A5A5A5;
    text-decoration: line-through;
}

.compare-button {
    width: 100%;
    height: 46px;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #003B73;
    background: #fff;
    font-family: Manrope;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    color: #003B73;
    cursor: pointer;
    transition: all .2s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: auto; /* Added to push the button to the bottom */
}

/* AANGEPASTE COMPARE BUTTON HOVER STYLING */
.compare-button:hover {
    background-color: rgba(0, 114, 206, 0.08);
    /* #0072CE met 8% opaciteit */
    color: #003B73;
    /* Tekstkleur blijft dezelfde blauwe kleur */
}

/* EINDE AANGEPASTE COMPARE BUTTON HOVER STYLING */

.carousel-container {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.product-label {
    background: #F5A623;
    border-radius: 16px;
    padding: 4px 8px;
    gap: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 24px;
}

.loading-skeleton {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: .5;
    }
}

.carousel-nav-btn {
    width: 48px;
    height: 48px;
    background-color: #003B73;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.carousel-nav-btn:hover {
    background-color: #002a52;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.carousel-nav-btn:disabled {
    background-color: #9CA3AF;
    cursor: not-allowed;
    opacity: 0.7;
}

.carousel-nav-btn svg {
    stroke: white;
}

.product-card {
    flex-shrink: 0;
    width: calc((100% - (4 * 1.5rem)) / 5);
    /* height: 372px; Removed fixed height */
    border-radius: 8px;
    background-color: white;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    isolation: isolate;
    /* Removed border to remove the border around cards */
}

.product-card-image-wrapper {
    width: 100%;
    height: 190px;
    background: #F9FAFB;
    border-radius: 8px 8px 0px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.product-card-content {
    padding: 16px;
    gap: 8px;
    background: #FFFFFF;
    border-radius: 0px 0px 16px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between; /* Added to push button to the bottom */
}

@media (max-width: 1280px) {
    .product-card {
        width: calc((100% - (3 * 1.5rem)) / 4);
    }
}

@media (max-width: 1023px) {
    .product-card {
        width: calc((100% - (2 * 1.5rem)) / 3);
    }
}

@media (max-width: 767px) {
    .product-card {
        width: calc((100% - (1 * 1.5rem)) / 2);
    }
}

@media (max-width: 639px) {
    .product-card {
        width: 100%;
    }
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}