﻿/* Background tổng thể */
body {
    background-color: #121212;
    color: white;
    font-family: 'Arial', sans-serif;
}

/* Tiêu đề */
h2 {
    margin-bottom: 20px;
}

/* Banner */
.banner img {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 10px;
}

/* Danh mục sản phẩm */
.category-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

    .category-menu a {
        padding: 10px 15px;
        text-decoration: none;
        color: white;
        background-color: #007bff;
        border-radius: 5px;
        transition: background-color 0.3s, transform 0.2s;
    }

        .category-menu a:hover {
            background-color: #0056b3;
            transform: scale(1.1);
        }

/* Sản phẩm */
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

    .card:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 16px rgba(255, 255, 255, 0.3);
    }

    .card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

.card-body {
    text-align: center;
}

/* Nút Xem chi tiết */
.btn-primary {
    background-color: #ff6600;
    border: none;
    transition: background-color 0.3s, transform 0.2s;
}

    .btn-primary:hover {
        background-color: #cc5200;
        transform: scale(1.05);
    }
