/* ===================================================================== */
/* CSS CHO KHU VỰC SẢN PHẨM (ĐỒNG BỘ GIAO DIỆN & TỐI ƯU HIỂN THỊ)        */
/* ===================================================================== */

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-title {
    text-transform: uppercase;
    font-size: 22px;
    color: #333;
    margin: 0;
}

.see-more {
    text-decoration: none;
    color: #2e8b57;
    font-weight: bold;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
}
.see-more:hover { color: #388e3c; }

/* Lưới sản phẩm mặc định trên PC: 5 cột */
.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* Thẻ sản phẩm */
.product-card {
    background: white;
    padding: 20px 20px 25px 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    background-color: #ffffff;
    margin-bottom: 20px;
}

.product-card h3 {
    margin-bottom: 10px; 
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 38px; 
}
.product-title-link {
    color: #334155; 
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}
.product-title-link:hover {
    color: #1a633a; 
}
.product-card .price {
    font-weight: bold;
    color: #e68a00; 
    margin-bottom: 15px; 
    font-size: 16px;
}
.btn-detail {
    display: block;
    width: 100%;
    text-align: center;
    border: 1px solid #1a633a; 
    color: #1a633a; 
    background: transparent; 
    text-decoration: none;
    padding: 10px 15px; 
    border-radius: 6px; 
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-top: auto; 
}
.btn-detail:hover {
    background: #1a633a; 
    color: #ffffff; 
    box-shadow: 0 4px 12px rgba(26, 99, 58, 0.2); 
}

/* --- BẢN VÁ BLIND SPOT: RESPONSIVE CHO ĐIỆN THOẠI & TABLET --- */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr); /* Tablet: 3 cột */
    }
}
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr); /* Mobile ngang: 2 cột */
        gap: 15px;
    }
    .product-card {
        padding: 15px; /* Giảm padding trên màn nhỏ */
    }
}
@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: repeat(1, 1fr); /* Mobile dọc: 1 cột (hoặc bạn có thể giữ 2 cột tùy ý) */
    }
}