/* ========================================
   EXPLORE PRODUCTS SECTION
   ======================================== */

/* Section container */
.container-fluid.py-5.bg-light {
    background: #f8f9fa !important;
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

/* Main heading */
.container-fluid.py-5.bg-light h1 {
    font-family: 'Inter', 'Roboto', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 60px;
    text-align: left;
}

/* Grid layout */
.container-fluid.py-5.bg-light .row.g-4 {
    margin: 0 -12px;
}

.container-fluid.py-5.bg-light .row.g-4>[class*="col-"] {
    padding: 0 12px;
}

/* Product cards */
.explore-product-item {
    transition: all 0.3s ease;
    border: none;
    background: #fff;
    cursor: pointer;
    padding: 25px 15px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 230px;
}

.explore-product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

/* Image container */
.explore-product-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 120px;
    margin-bottom: 15px;
    flex-shrink: 0;
}

.explore-product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Product titles */
.explore-product-item h5 {
    font-family: 'Inter', 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #2c2c2c;
    transition: color 0.3s ease;
    margin-bottom: 0;
    text-align: center;
    min-height: 2.6em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.explore-product-item:hover h5 {
    color: #30385f;
}

/* Ensure links don't change text color */
a.text-decoration-none .explore-product-item h5 {
    color: #2c2c2c;
}

a.text-decoration-none .explore-product-item:hover h5 {
    color: #30385f;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .container-fluid.py-5.bg-light h1 {
        font-size: 42px;
    }

    .explore-product-item {
        min-height: 220px;
    }

    .explore-product-img {
        height: 110px;
    }
}

@media (max-width: 992px) {
    .container-fluid.py-5.bg-light h1 {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .explore-product-item h5 {
        font-size: 13px;
    }

    .explore-product-img {
        height: 100px;
    }

    .explore-product-item {
        padding: 20px 12px !important;
        min-height: 210px;
    }
}

@media (max-width: 768px) {
    .container-fluid.py-5.bg-light {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .container-fluid.py-5.bg-light h1 {
        font-size: 32px;
        text-align: center;
    }

    .explore-product-item {
        padding: 18px 10px !important;
        min-height: 195px;
    }

    .explore-product-img {
        height: 90px;
    }

    .explore-product-item h5 {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .container-fluid.py-5.bg-light h1 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .explore-product-item {
        padding: 15px 10px !important;
        min-height: 175px;
    }

    .explore-product-img {
        height: 80px;
        margin-bottom: 12px;
    }

    .explore-product-item h5 {
        font-size: 11px;
    }
}