/* ============================================
   PRODUCTS PAGE SPECIFIC STYLES
   ============================================ */

.page-header {
    background: url(banners/banner_blog.png);
    color: var(--bg-white);
    padding: 49px 0;
    text-align: center;
}

.page-header h1 {
    color: #032074;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    color: #032074;
    font-size: 1.2rem;
}

.products-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.products-section.esofman-section {
    background: var(--bg-light);
}

.product-category {
    margin-bottom: 60px;
}

.product-category h3 {
    font-size: 1.75rem;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-blue);
    color: var(--primary-blue);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--bg-light);
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--primary-blue);
}

.product-info p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
    flex-grow: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header {
        padding: 50px 0;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .product-category {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

