/* Reset cơ bản */
body { font-family: Arial, Helvetica, sans-serif; margin: 0; background-color: #f4f6f9; }

/* Header */
header { background-color: #fff; padding: 15px 20px; border-bottom: 3px solid #e67e22; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 99; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
header h1 { margin: 0; font-size: 18px; color: #d35400; text-transform: uppercase; }
.cart-info { font-weight: bold; border: 1px solid #d35400; padding: 5px 15px; border-radius: 20px; background: #fff5e6; }

.container { max-width: 800px; margin: 20px auto; padding: 10px; }

/* Lưới sản phẩm */
.product-grid { display: grid; grid-template-columns: 1fr; gap: 25px; } 
/* Nếu muốn hiện 2 cột trên máy tính thì dùng dòng dưới đây, còn điện thoại tự về 1 cột */
@media (min-width: 600px) { .product-grid { grid-template-columns: 1fr 1fr; } }

.product-item { background: white; border-radius: 8px; padding: 20px; text-align: center; border: 1px solid #ddd; box-shadow: 0 2px 4px rgba(0,0,0,0.05); }

/* THỨ TỰ HIỂN THỊ: Tên -> Giới thiệu -> Ảnh */
.product-item h3 { margin-top: 0; margin-bottom: 10px; font-size: 22px; color: #2c3e50; font-weight: bold; text-transform: uppercase; border-bottom: 1px dashed #ccc; padding-bottom: 10px; }

.product-item .desc { font-size: 15px; color: #555; line-height: 1.5; margin-bottom: 15px; min-height: 60px; /* Giúp các ô đều nhau */ }

.product-item img { width: 100%; height: auto; border-radius: 5px; margin-bottom: 15px; border: 1px solid #eee; }

/* Nút bấm và ô nhập */
.buy-control { display: flex; gap: 10px; margin-top: 10px; }
.buy-control input { width: 60px; text-align: center; font-size: 16px; border: 1px solid #ccc; border-radius: 4px; padding: 5px; }
.buy-control button { flex: 1; background-color: #2980b9; color: white; border: none; padding: 10px; font-size: 16px; border-radius: 4px; cursor: pointer; font-weight: bold; }
.buy-control button:hover { background-color: #2471a3; }

/* Phần Checkout (Đặt hàng) */
.checkout-section { background: white; padding: 20px; border-radius: 8px; margin-top: 40px; border-top: 4px solid #27ae60; }
.checkout-section h2 { margin-top: 0; color: #27ae60; }

.cart-list { list-style: none; padding: 0; background: #f9f9f9; padding: 15px; border-radius: 5px; font-size: 16px; }
.cart-list li { margin-bottom: 8px; border-bottom: 1px solid #eee; padding-bottom: 5px; }

.form-group { margin-bottom: 15px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: bold; color: #333; }
.form-group input, .form-group textarea { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 4px; font-size: 16px; box-sizing: border-box; }
.form-group textarea { height: 80px; }

.btn-submit { width: 100%; padding: 15px; background: #e67e22; color: white; border: none; font-size: 18px; font-weight: bold; text-transform: uppercase; cursor: pointer; border-radius: 5px; margin-top: 10px; }
.btn-submit:hover { background: #d35400; }