/* Banner Danh Mục */
.category-banner {
    /* Đẩy nội dung xuống dưới Header (giả định header cao khoảng 90px) */
    padding-top: var(--header-height, 90px); 
    min-height: 400px; /* Tăng chiều cao tối thiểu để banner trông thoáng hơn */
    background: url('../images/factory-bg.jpg') no-repeat center center/cover;
    background-attachment: fixed; /* Tạo hiệu ứng Parallax nhẹ nếu muốn */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.category-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, #000000, rgba(234, 219, 7, 0.4));
    z-index: 1;
}

.category-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.category-content h1 {
    font-size: 3rem; /* Tăng kích thước trên Desktop */
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 900;
    letter-spacing: 1px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.category-content p {
    font-size: 1rem;
    font-weight: 400;
}

.category-content p a {
    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
}

.category-content p a:hover {
    color: var(--accent-color);
}

/* --- Responsive cho Banner --- */

/* Tablet */
@media (max-width: 1024px) {
    .category-banner {
        min-height: 300px;
    }
    .category-content h1 {
        font-size: 2.2rem;
    }
}

/* Grid Sản Phẩm */
.product-grid-container {
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.product-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Desktop: 3 cột */
    gap: 30px;
}

/* HIỆU ỨNG ZOOM-IN */
.img-zoom-container {
    width: 100%;
    height: 250px;
    overflow: hidden; /* Quan trọng: Cắt phần ảnh tràn ra khi zoom */
    border-radius: 8px;
    background: #fff;
}

.zoom-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease; /* Chuyển động mượt */
}

.product-item:hover .zoom-img {
    transform: scale(1.2); /* Phóng to 20% khi hover */
}

.product-detail {
    padding: 15px 0;
}

.product-detail h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 10px;
}

.view-more {
    display: inline-block;
    color: #ed1c24;
    font-weight: 600;
    margin-top: 10px;
    border-bottom: 1px solid transparent;
}

.view-more:hover {
    border-bottom: 1px solid #ed1c24;
}

/* Responsive */
/* Mobile Devices */
@media (max-width: 768px) {
    .category-banner {
        height: 180px; /* Nhỏ lại cho đỡ chiếm chỗ */
    }

    .category-content h1 {
        font-size: 1.5rem;
    }

    .product-list {
        grid-template-columns: repeat(1, 1fr); /* 1 cột duy nhất */
        padding: 0 20px;
    }

    .img-zoom-container {
        height: 220px;
    }

    /* Tắt zoom-in trên mobile để tránh gây rối mắt khi lướt */
    .product-item:hover .zoom-img {
        transform: none;
    }
    
    .product-detail {
        text-align: center; /* Căn giữa cho đẹp trên mobile */
    }
}