.products-page {
    background: var(--eco-page-bg);
}

.products-hero {
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(13, 110, 253, 0.08), transparent 30%),
        radial-gradient(circle at bottom left, rgba(25, 135, 84, 0.08), transparent 30%),
        #ffffff;
    border-radius: var(--eco-radius-lg);
}

.products-hero-kicker {
    display: inline-block;
    margin-bottom: 0.75rem;
    color: #198754;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
}

.products-hero-stats {
    display: flex;
    justify-content: flex-end;
}

.products-hero-stat-card {
    min-width: 180px;
    border-radius: var(--eco-radius);
    background: #0d6efd;
    color: #fff;
    padding: 1.25rem 1rem;
    text-align: center;
    box-shadow: 0 0.75rem 1.75rem rgba(13, 110, 253, 0.18);
}

.products-hero-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.products-hero-stat-label {
    display: block;
    margin-top: 0.45rem;
    font-size: 0.95rem;
    opacity: 0.92;
}

.filter-sidebar-card {
    border-radius: var(--eco-radius);
    top: 1rem;
}

.category-filter-list .list-group-item {
    border-left: 0;
    border-right: 0;
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
    font-weight: 500;
}

.category-filter-list .list-group-item:first-child {
    border-top: 0;
}

.category-filter-list .list-group-item:last-child {
    border-bottom: 0;
}

.category-filter-list .list-group-item.active {
    background: rgba(13, 110, 253, 0.08);
    border-color: rgba(13, 110, 253, 0.15);
    color: #0d6efd;
}

.product-card {
    border-radius: var(--eco-radius-lg);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--eco-shadow-hover) !important;
}

.product-card-image-wrap {
    background: #f5f7fa;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.product-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-card-title {
    line-height: 1.35;
}

.product-card-title-link {
    color: #152238;
}

.product-card-title-link:hover {
    color: #0d6efd;
}

.product-card-text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 4.5rem;
}

.product-card-badge {
    font-weight: 600;
}

.pagination .page-link {
    border-radius: 0.6rem;
    border: 1px solid #dfe5ec;
    min-width: 2.75rem;
    text-align: center;
}

.pagination .page-item.active .page-link {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

@media (max-width: 991.98px) {
    .products-hero-stats {
        justify-content: flex-start;
    }
}
