/* RESET BASIC (HTML Selector) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

img {
    max-width: 100%;
    height: auto;
}

/* CONTAINER TỔNG (Class Selector) */
.product-grid {
    display: flex;
    flex-wrap: wrap; /* Tự động xuống hàng */
    gap: 15px; /* Khoảng cách giữa các box */
    max-width: 1000px; /* Chiều rộng tối đa của grid */
    background-color: white;
    padding: 20px;
    border-radius: 5px;
}

/* CARD SẢN PHẨM (Mỗi Box) */
.product-card {
    /* 25% là 4 cột, trừ đi khoảng cách gap */
    width: calc(25% - (15px * 3 / 4));
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Box chứa ảnh và badge */
.image-box {
    position: relative;
    text-align: center;
    margin-bottom: 10px;
}

/* Căn giữa ảnh trong box */
.image-box img {
    height: 150px;
    object-fit: contain;
}

/* Badge màu */
.badge {
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 10px;
    padding: 2px 5px;
    color: white;
    border-radius: 0 5px 0 0; /* Bo góc nhẹ trên phải */
}

/* Badge màu vàng (Trả góp) */
.badge.yellow {
    background-color: #f39c12;
}

/* Badge màu đỏ (Giảm giá) */
.badge.red {
    background-color: #d32f2f;
}

/* Nội dung Text */
.product-title {
    font-size: 14px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #333;
    line-height: 1.3;
}

.price {
    color: #d32f2f; /* Màu đỏ */
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 8px;
}

.rating {
    font-size: 12px;
    color: #f1c40f; /* Màu vàng của sao */
    margin-bottom: 8px;
}

.rating span {
    color: #888; /* Màu xám cho text số đánh giá */
    margin-left: 5px;
}

.promo-text {
    font-size: 11px;
    color: #555;
    line-height: 1.4;
    margin-top: auto; /* Đẩy text promo xuống đáy box */
}

/* Responsive cho màn hình nhỏ */
@media (max-width: 768px) {
    .product-card {
        width: calc(50% - (15px * 1 / 2)); /* Chia 2 cột trên tablet */
    }
}

@media (max-width: 480px) {
    .product-card {
        width: 100%; /* Chia 1 cột trên phone */
    }
}