
/* ==========================================================================
   ASPY MEDICARES - Product Category Page Styles
   ========================================================================== */

/*
 * Note: These styles build upon the existing .product-card styles in style.css
 * to create a dedicated, more detailed product listing page.
 */

.products-page-hero {
    padding: 140px 0 80px;
    background:
        radial-gradient(circle at 15% 20%, rgba(22, 197, 216, 0.15), transparent 30%),
        linear-gradient(135deg, #f8fcff 0%, #eaf6ff 100%);
    position: relative;
    overflow: hidden;
}

.products-page-hero .breadcrumb {
    --bs-breadcrumb-divider-color: var(--secondary-color);
    --bs-breadcrumb-active-color: var(--primary-color);
    font-family: var(--font-accent);
    font-weight: 500;
}

.products-page-hero .breadcrumb-item a {
    color: var(--primary-color);
    opacity: 0.7;
}

.products-page-hero .breadcrumb-item a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.products-page-hero h1 {
    font-size: 48px;
    font-weight: 800;
}

.products-page-hero p {
    font-size: 18px;
    color: #486581;
    max-width: 650px;
}

.product-grid-section {
    padding: 90px 0;
    background-color: var(--bg-color);
}

/* Enhancements to the existing .product-card from style.css */
.product-card {
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    height: 100%; /* Ensures cards in a row are same height */
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.product-card .product-card-img-wrapper {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    height: 300px;
}

.product-card:hover .product-card-img {
    transform: scale(1.07);
}

.product-card .product-card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Makes body take remaining space */
    padding: 25px;
}

.product-card .product-card-title {
    font-size: 20px;
    margin-bottom: 10px;
}

.product-card .product-card-desc {
    flex-grow: 1; /* Pushes the button to the bottom */
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 991.98px) {
    .products-page-hero {
        padding: 120px 0 60px;
    }
    .products-page-hero h1 {
        font-size: 40px;
    }
}