/* =========================
   RESET CLEARFIX (lege ruimte fix)
   ========================= */
.products::before,
.products::after,
.row::before,
.row::after {
    content: none !important;
    display: none !important;
}

/* =========================
   GRID
   ========================= */
.products {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)) !important;
    gap: 20px !important;
}

/* =========================
   PLUGIN FIX (NIET VERBERGEN!)
   ========================= */
.products > .berocket_lgv_additional_data,
.products > .berocket_lgv_after_additional {
    display: none !important;
}

/* =========================
   RESET BOOTSTRAP
   ========================= */
.products .product {
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
}

/* =========================
   CARD
   ========================= */
.products .product {
    background: #fff !important;
    border: 1px solid #eee !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    padding-bottom: 15px !important;
    display: flex !important;
    flex-direction: column !important;
    transition: all 0.2s ease !important;
}

.products .product:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.08) !important;
    transform: translateY(-2px) !important;
}

/* =========================
   IMAGE
   ========================= */
.products .product a:first-child {
    display: block !important;
}

.products .product img {
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    object-fit: cover !important;
    display: block !important;
}

/* =========================
   TITLE (FIXED)
   ========================= */
.products .product h4 {
    display: block !important;
    font-size: 16px !important;
    margin: 12px 15px 5px !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
}

.products .product h4 a {
    display: block !important;
    color: #222 !important;
    text-decoration: none !important;
}

.products .product h4 a:hover {
    color: #e30613 !important;
}

/* =========================
   PRICE (FIXED)
   ========================= */
.products .product .price {
    display: block !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #e30613 !important;
    margin: 0 15px 10px !important;
}

/* =========================
   BUTTON
   ========================= */
.products .product .button {
    display: block !important;
    margin: auto 15px 0 15px !important;
    padding: 10px !important;
    text-align: center !important;
    background: #e30613 !important;
    color: #fff !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: background 0.2s ease !important;
}

.products .product .button:hover {
    background: #b8000f !important;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 768px) {
    .products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 480px) {
    .products {
        grid-template-columns: 1fr !important;
    }
}