body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 20px;
}


.container {
    display: flex;
    flex-wrap: wrap; 
    gap: 15px;     
    max-width: 1000px;
    margin: 0 auto;
}


.product-card {
    background-color: #fff;
    width: calc(25% - 15px); 
    border: 1px solid #eee;
    padding: 15px;
    box-sizing: border-box;
    border-radius: 4px;
    text-align: left;
}

/* Khung ảnh */
.img-box {
    position: relative;
    text-align: center;
}

.img-box img {
    width: 100%;
    height: auto;
}

.badge {
    position: absolute;
    bottom: 5px;
    left: 0;
    background-color: #f39c12;
    color: white;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 2px;
}

/* Tên sản phẩm */
.name {
    font-size: 14px;
    margin: 10px 0;
    height: 35px; 
    overflow: hidden;
}

/* Giá tiền */
.price {
    color: #e74c3c;
    font-weight: bold;
    font-size: 13px;
    margin-bottom: 5px;
}

/* Đánh giá sao */
.rating {
    color: #f1c40f;
    font-size: 12px;
}

.count {
    color: #999;
    font-size: 11px;
}


.note {
    font-size: 11px;
    color: #666;
    margin-top: 10px;
    line-height: 1.4;
}