/* Tiêu đề danh sách sản phẩm */
.products-list-title {
    font-size: 18px; 
    font-weight: bold; 
    color: #333; 
    margin-bottom: 15px;
}

/* Lưới hiển thị danh sách sản phẩm */
.products-grid {
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); 
    gap: 20px;
}

/* Thẻ bọc sản phẩm (Card) */
.product-card {
    border: 1px solid #cfd8dc; 
    padding: 20px; 
    border-radius: 6px; 
    background: #fff; 
    display: flex; 
    flex-direction: column; 
    justify-content: space-between; 
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

/* Hiệu ứng nổi lên khi di chuột vào sản phẩm */
.product-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

/* Khối nội dung phía trên card */
.product-card-top {
    /* Giữ bố cục phân tách nội dung */
}

/* Nhãn nền tảng (Platform) */
.product-platform {
    font-size: 11px; 
    background: #eceff1; 
    padding: 2px 6px; 
    border-radius: 4px; 
    font-weight: bold; 
    color: #546e7a; 
    text-transform: uppercase;
}

/* Tên sản phẩm */
.product-name {
    margin: 8px 0; 
    font-size: 16px; 
    font-weight: bold; 
    color: #2c3e50; 
    line-height: 1.4;
}

/* Mô tả ngắn sản phẩm */
.product-desc {
    font-size: 13px; 
    color: #7f8c8d; 
    margin: 0 0 15px 0; 
    line-height: 1.4;
}

/* Khối hành động và giá phía dưới card */
.product-card-bottom {
    /* Đảm bảo khối giá và nút luôn nằm ở đáy */
}

/* Hiển thị giá tiền */
.product-price {
    font-size: 16px; 
    color: #e53935; 
    font-weight: bold; 
    margin-bottom: 12px;
}

/* Nút xem chi tiết */
.btn-view-detail {
    display: block; 
    text-align: center; 
    background: #007bff; 
    color: white; 
    text-decoration: none; 
    padding: 8px 12px; 
    border-radius: 4px; 
    font-size: 14px; 
    font-weight: bold;
    transition: background-color 0.2s ease;
}

/* Hiệu ứng đổi màu nút khi hovers */
.btn-view-detail:hover {
    background: #0056b3;
}

/* Giao diện thông báo khi không có sản phẩm nào */
.products-empty {
    background: #fff; 
    padding: 30px; 
    text-align: center; 
    border-radius: 6px; 
    border: 1px dashed #cfd8dc; 
    color: #7f8c8d;
}