/* --- HTML SELECTORS (Định dạng trực tiếp bằng tên thẻ) --- */
body {
    font-family: Arial, sans-serif;
    background-color: #fcfcfc;
    margin: 0;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

img {
    width: 100%;
    max-height: 180px;
    object-fit: contain;
    margin-bottom: 15px;
}

/* --- CLASS SELECTORS (Định dạng qua tên lớp class) --- */

/* Tạo khung lưới chia thành 4 cột đều nhau */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    width: 100%;
}

/* Định dạng từng ô vuông sản phẩm */
.product-card {
    background-color: white;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 20px 15px;
    position: relative; /* Dùng để định vị đè các thẻ badge lên trên ảnh */
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
}

/* Nhãn trả góp hoặc giảm giá góc trên bên trái */
.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 10px;
    font-weight: bold;
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    text-transform: uppercase;
}

.badge.orange {
    background-color: #ff9900;
}

.badge.red {
    background-color: #ff3300;
}

/* Tiêu đề sản phẩm */
.product-title {
    font-size: 15px;
    font-weight: bold;
    color: #333;
    margin: 10px 0 5px 0;
}

/* Giá tiền */
.product-price {
    font-size: 14px;
    color: red;
    font-weight: bold;
    margin: 5px 0;
}

/* Đánh giá sao */
.product-rating {
    font-size: 13px;
    color: #ffcc00; /* Màu vàng của sao */
    margin: 5px 0;
}

.review-count {
    color: #999;
    font-size: 12px;
    margin-left: 5px;
}

/* Dòng khuyến mãi màu xám nhỏ phía dưới */
.product-promo {
    font-size: 12px;
    color: #666;
    margin-top: auto; /* Tự động đẩy dòng này xuống sát đáy khung */
    line-height: 1.4;
}

/* Định dạng liên kết trang chủ */
.navigation {
    margin-top: 40px;
}

.back-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
}

.back-link:hover {
    text-decoration: underline;
}