
.sidebar-filters .search-filters {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    overflow-x: visible; /* no horizontal scroll */
    white-space: normal;
    gap: 0.5rem; /* vertical spacing between checkboxes */
    padding-bottom: 0;
    align-items: flex-start;
}

.product-image-container {
    width: 100% !important; /* full width of the card */
}

.product-image-container img {
    width: 100%;
    aspect-ratio: 4/3;      /* ensures mobile height is proportional */
    border-radius: 0.5rem 0.5rem 0 0; /* optional if rounded top corners */
}

/* Scroll animations */
[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hover-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.bg-gradient-brand {
    background: 
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        linear-gradient(90deg, #223E0E, #66BC29);
}

.bg-button-brand {
    background: #223E0E;
}