/* Reset CSS cơ bản */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f9f9f9;
}

/* --- Header --- */
.header {
    background-color: #3b3b3b;
    color: white;
    text-align: center;
    padding: 25px 0;
}

.header h1 {
    font-size: 28px;
    margin-bottom: 5px;
}

.header p {
    font-size: 14px;
    color: #cccccc;
}

/* --- Navbar & Dropdown --- */
.navbar {
    background-color: #4a4a4a;
}

.navbar ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
}

.navbar li {
    position: relative; /* Để định vị dropdown-content */
}

.navbar a {
    display: block;
    color: #e6c300; /* Màu chữ vàng như trong hình */
    text-align: center;
    padding: 14px 30px;
    text-decoration: none;
    font-size: 15px;
}

.navbar a:hover {
    background-color: #333;
}

/* Ẩn menu con mặc định */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #555;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    top: 100%;
    left: 0;
}

/* Các link trong menu con */
.dropdown-content a {
    color: #e6c300;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    border-bottom: 1px dotted #777;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: #444;
}

/* Hiển thị menu con khi hover vào thẻ li.dropdown */
.dropdown:hover .dropdown-content {
    display: block;
}

/* --- Lưới Sản Phẩm --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 cột bằng nhau */
    gap: 20px;
    padding: 30px;
    max-width: 1100px;
    margin: 0 auto; /* Căn giữa khung chứa */
}

.product-card {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.product-card img {
    max-width: 100%;
    height: 150px;
    object-fit: contain; /* Giữ tỷ lệ hình ảnh */
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 15px;
    color: #333;
    margin-bottom: 10px;
}

.product-card .price {
    color: #888;
    font-size: 14px;
    margin-bottom: 15px;
}

.btn-add {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 13px;
}

.btn-add:hover {
    background-color: #218838;
}