/* Products Page Styles */



/* Product Category Section */
.product-category {
    padding: 60px 20px 80px;
    background: #f5f5f5;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 16px;
    color: #999;
    letter-spacing: 3px;
    font-style: italic;
}

.category-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.category-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    text-align: center;
    width: 320px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.category-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.category-card:hover .category-image img {
    transform: scale(1.05);
}

.category-name {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    padding: 25px 15px 15px;
    margin: 0;
}

.category-btn {
    display: inline-block;
    background: linear-gradient(135deg, #f5a623 0%, #e8941e 100%);
    color: #fff;
    padding: 12px 35px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 30px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
}

.category-btn:hover {
    background: linear-gradient(135deg, #e8941e 0%, #d4850f 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
    .category-container {
        gap: 30px;
    }
    
    .category-card {
        width: 280px;
    }
    
    .category-image {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .page-banner {
        height: 200px;
    }
    
    .banner-content h1 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .category-container {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    
    .category-card {
        width: 90%;
        max-width: 350px;
    }
    
    .category-image {
        height: 250px;
    }
}
