/* ================= 1. CÀI ĐẶT CHUNG (RESET) ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================= 2. HEADER & BANNER ================= */
header {
    background-color: #d32f2f; /* Màu đỏ chủ đạo */
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.cart-btn {
    background: white;
    color: #d32f2f;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
}

.hero {
    background-color: #333;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('Images/Cover-image.jpg');
    background-size: cover;
    background-position: center;
}

.hero h1 { font-size: 36px; margin-bottom: 10px; }

/* ================= 3. THANH ĐIỀU KHIỂN & BỘ LỌC ================= */
.filter-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    background: white;
    padding: 15px;
    border-radius: 10px;
}

.menu-tabs { display: flex; gap: 10px; }

.tab-btn {
    padding: 10px 20px;
    border: 2px solid #d32f2f;
    background: white;
    color: #d32f2f;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    border-radius: 20px;
    transition: 0.3s;
}

.tab-btn.active, .tab-btn:hover {
    background: #d32f2f;
    color: white;
}

.search-box input {
    padding: 10px 20px;
    border-radius: 20px;
    border: 2px solid #555;
    outline: none;
    font-size: 15px;
    width: 200px;
}

.price-select {
    padding: 10px 15px;
    border-radius: 20px;
    border: 2px solid #555;
    outline: none;
    font-weight: bold;
    cursor: pointer;
}

/* ================= 4. DANH SÁCH SẢN PHẨM ================= */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.product-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.product-card:hover { transform: translateY(-5px); }

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 15px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.price {
    color: #d32f2f;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
}

.btn-add {
    width: 100%;
    padding: 10px;
    background: #d32f2f;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}
.btn-add:disabled { background: #ccc; cursor: not-allowed; }

/* ================= 5. TRANG CHI TIẾT (ĐÃ SỬA LỖI XUỐNG DÒNG) ================= */
.detail-container {
    margin-top: 40px;
    background: white;
    padding: 30px;
    border-radius: 10px;
}

.detail-wrapper { display: flex; gap: 40px; }
.detail-img { flex: 1; }
.detail-img img { width: 100%; border-radius: 10px; }
.detail-info { flex: 1; }

/* ✅ KHUNG MÔ TẢ THÀNH PHẦN (QUAN TRỌNG) */
.detail-desc {
    line-height: 1.8;
    background: #fff5f5;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 5px solid #d32f2f;
    font-size: 16px;
    color: #444;
    
    /* Lệnh này giúp trình duyệt hiểu ký tự xuống dòng */
    white-space: pre-line; 
}

/* ================= 6. NÚT CHAT NỔI (ĐÃ SỬA LỖI VIỀN TRẮNG) ================= */
.floating-contact {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    
    /* Để nền trong suốt để không lộ viền trắng của icon Zalo/Mess */
    background: transparent !important; 
    
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: 0.3s;
    padding: 0;
    border: none;
}

.contact-icon:hover { transform: scale(1.1); }

.contact-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ảnh phủ kín */
    display: block;    /* Xóa khoảng trắng gầm ảnh */
}

/* Riêng nút Gọi điện thì cần nền đỏ */
.phone-btn {
    background-color: #d32f2f !important;
    color: white;
    font-size: 24px;
    animation: shake 2s infinite;
}

@keyframes shake {
    0% { transform: rotate(0deg); }
    10% { transform: rotate(15deg); }
    20% { transform: rotate(-15deg); }
    30% { transform: rotate(15deg); }
    40% { transform: rotate(-15deg); }
    100% { transform: rotate(0deg); }
}

/* ================= 7. MODAL GIỎ HÀNG & CHỌN SIZE ================= */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    overflow: auto;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 600px;
    border-radius: 10px;
    position: relative;
}

.option-content {
    max-width: 400px;
    text-align: center;
}

.close {
    float: right;
    font-size: 28px;
    cursor: pointer;
}

.option-item {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 10px;
}

.option-item.selected {
    border-color: #d32f2f;
    background: #ffebee;
    color: #d32f2f;
    font-weight: bold;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

.btn-qty {
    width: 30px;
    height: 30px;
    background: #ddd;
    border: none;
    cursor: pointer;
    border-radius: 50%;
}

.checkout-form {
    margin-top: 15px;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.checkout-form input, .checkout-form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.checkout-btn {
    width: 100%;
    padding: 12px;
    background: #2e7d32;
    color: white;
    border: none;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

/* ================= FOOTER (CHÂN TRANG) ================= */
footer {
    background-color: #222; /* Màu đen xám sang trọng */
    color: white;
    padding-top: 40px;
    margin-top: 50px;
    border-top: 4px solid #d32f2f; /* Viền đỏ trên cùng tạo điểm nhấn */
}

/* Bố cục bên trong footer */
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 30px;
}

/* Các cột thông tin */
.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h3 {
    color: #ffc107; /* Tên quán màu vàng */
    margin-bottom: 15px;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col h4 {
    margin-bottom: 15px;
    font-size: 18px;
    border-bottom: 1px solid #555;
    padding-bottom: 8px;
    display: inline-block;
}

/* Link liên hệ (SĐT, Email, FB) */
.contact-info a {
    display: flex;
    align-items: center;
    color: #ddd;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 15px;
    transition: 0.3s;
}

.contact-info a i {
    width: 25px; /* Để icon thẳng hàng */
    color: #d32f2f; /* Icon màu đỏ */
    font-size: 18px;
}

.contact-info a:hover {
    color: #fff;
    padding-left: 5px; /* Hiệu ứng đẩy sang phải khi di chuột */
}

/* Dòng bản quyền cuối cùng */
.footer-bottom {
    background-color: #111;
    text-align: center;
    padding: 15px 0;
    font-size: 13px;
    color: #777;
    border-top: 1px solid #333;
}

/* Mobile: Căn giữa cho đẹp */
@media (max-width: 768px) {
    .footer-content {
        text-align: center;
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-info a {
        justify-content: center; /* Căn giữa link liên hệ */
    }
}

/* ================= 8. MOBILE RESPONSIVE (ĐIỆN THOẠI) ================= */
@media (max-width: 768px) {
    .filter-bar { flex-direction: column; gap: 10px; }
    .search-box input { width: 100%; }
    
    .detail-wrapper { flex-direction: column; }
    
    /* Chia 2 cột sản phẩm trên điện thoại */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .product-card img { height: 120px; }
    .card-body { padding: 10px; }
    .card-body h3 { font-size: 14px; min-height: 40px; }
    .price { font-size: 15px; margin-bottom: 8px; }
    .btn-add { padding: 8px; font-size: 13px; }
}
/* --- 1. CHỈNH LẠI NÚT +/- CHO THẲNG HÀNG --- */
.cart-item-controls {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    margin-left: auto; /* Đẩy sang phải */
}

.btn-qty {
    width: 30px; height: 30px;
    background: #f9f9f9; border: none;
    cursor: pointer; font-weight: bold;
    display: flex; align-items: center; justify-content: center;
}
.btn-qty:hover { background: #e0e0e0; }

/* Số lượng nằm giữa */
.cart-item-controls span {
    width: 35px; height: 30px;
    display: flex; align-items: center; justify-content: center;
    border-left: 1px solid #ddd; border-right: 1px solid #ddd;
    font-size: 14px; font-weight: bold; background: white;
}

/* --- 1. SỬA LẠI TOAST VỀ GIỮA MÀN HÌNH (SHOPEE STYLE) --- */
#toast {
    visibility: hidden;
    min-width: 250px;
    background-color: rgba(0, 0, 0, 0.75); /* Đen mờ */
    color: #fff;
    text-align: center;
    border-radius: 8px; /* Bo góc nhẹ */
    padding: 30px 20px; /* To hơn chút */
    
    position: fixed;
    z-index: 9999;
    
    /* Căn chính giữa màn hình tuyệt đối */
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.toast-icon { font-size: 50px; margin-bottom: 15px; color: #fff; }
.toast-msg { font-size: 16px; }
#toast.show { visibility: visible; opacity: 1; }


/* --- 2. BẢNG ĐẶT HÀNG THÀNH CÔNG (HIỆN ĐẠI) --- */
.success-content {
    max-width: 400px;
    text-align: center;
    padding: 0; /* Xóa padding mặc định để căn chỉnh footer */
    border-radius: 12px;
    overflow: hidden; /* Để bo góc footer */
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.success-icon-box {
    margin-top: 30px;
    font-size: 60px;
    color: #2ecc71; /* Màu xanh lá tươi */
    animation: popUp 0.5s ease;
}

.success-content h3 {
    margin: 15px 0 10px 0;
    font-size: 22px;
    color: #333;
}

.success-content p {
    color: #666;
    margin-bottom: 30px;
    padding: 0 20px;
    line-height: 1.5;
}

/* Phần chân trang chứa nút OK (Góc dưới phải) */
.success-footer {
    background: #f9f9f9;
    padding: 15px 20px;
    display: flex;
    justify-content: flex-end; /* Đẩy nút sang phải */
    border-top: 1px solid #eee;
}

.success-footer button {
    background-color: #d32f2f;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: 0.2s;
}

.success-footer button:hover {
    background-color: #b71c1c;
}

/* Hiệu ứng nảy icon */
@keyframes popUp {
    0% { transform: scale(0); }
    80% { transform: scale(1.2); }
    100% { transform: scale(1); }
}
}/* --- CSS CHO THANH TÌM KIẾM TRÊN HEADER (TRANG CHI TIẾT) --- */
.header-search {
    flex: 1; /* Tự động giãn rộng chiếm chỗ trống */
    display: flex;
    justify-content: center;
    margin: 0 15px; /* Cách logo và giỏ hàng ra một chút */
}

.header-search input {
    width: 100%;
    max-width: 300px; /* Độ rộng tối đa */
    padding: 8px 15px;
    border-radius: 20px;
    border: none;
    outline: none;
    font-size: 14px;
    background-color: rgba(255, 255, 255, 0.9); /* Màu trắng hơi trong suốt */
    color: #333;
}

.header-search input:focus {
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

/* RESPONSIVE: Trên điện thoại thì ẩn bớt chữ "Quay lại menu" để có chỗ cho ô tìm kiếm */
@media (max-width: 600px) {
    .logo a { font-size: 0; } /* Ẩn chữ */
    .logo a i { font-size: 20px; display: block; } /* Chỉ hiện mũi tên quay lại */
    
    .header-search input {
        max-width: 150px; /* Thu nhỏ ô tìm kiếm trên điện thoại */
    }
}

/* --- CSS CHO THANH TÌM KIẾM TRÊN HEADER --- */
.header-search {
    flex: 1; /* Tự động giãn rộng chiếm chỗ trống ở giữa */
    margin: 0 20px; /* Tạo khoảng cách với Logo và Giỏ hàng */
    display: flex;
    justify-content: center;
}

.header-search input {
    width: 100%;
    max-width: 500px; /* Độ dài tối đa */
    padding: 10px 20px;
    border-radius: 30px; /* Bo tròn */
    border: none;
    outline: none;
    font-size: 14px;
    background-color: rgba(255, 255, 255, 0.95); /* Màu trắng */
    color: #333;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-search input:focus {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Tối ưu cho điện thoại: Thu nhỏ logo để nhường chỗ cho ô tìm kiếm */
@media (max-width: 768px) {
    .header-content { gap: 10px; }
    .logo { font-size: 0; } /* Ẩn chữ Logo */
    .logo:before { content: '🔥'; font-size: 24px; } /* Chỉ hiện icon lửa */
    .header-search { margin: 0; }
}
/* --- SỬA LỖI NÚT QUAY LẠI TRÊN ĐIỆN THOẠI --- */
@media (max-width: 768px) {
    /* Tắt icon lửa ở trang chi tiết */
    .detail-nav:before { 
        content: none !important; 
    }
    
    /* Hiện icon mũi tên to lên */
    .detail-nav a i { 
        font-size: 24px !important; 
        display: block !important; 
    }
    
    /* Ẩn chữ "Quay lại Menu" để đỡ chật */
    .detail-nav a {
        font-size: 0;
    }
}
/* --- PHẦN GIỚI THIỆU (INTRO SECTION) --- */
.intro-section {
    margin-top: 30px;
    margin-bottom: 10px;
}

.intro-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); /* Bóng mờ nhẹ */
    color: #333;
    line-height: 1.6;
}

.intro-box h2 {
    font-size: 24px;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 15px;
    border-bottom: 2px solid #eee; /* Gạch chân mờ */
    padding-bottom: 10px;
}

.intro-box p {
    margin-bottom: 10px;
    font-size: 15px;
}

/* Danh sách món ăn (Gạch đầu dòng) */
.intro-list {
    list-style: none; /* Bỏ chấm tròn mặc định */
    padding: 0;
    margin: 10px 0 20px 0;
}

.intro-list li {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 5px;
    color: #444;
}

/* Khung liên hệ nổi bật */
.intro-contact {
    background-color: #fff8e1; /* Màu vàng nhạt làm nền */
    padding: 15px;
    border-radius: 8px;
    border-left: 5px solid #ff9800; /* Viền cam bên trái */
    font-size: 16px;
}

/* RESPONSIVE TRÊN ĐIỆN THOẠI */
@media (max-width: 768px) {
    .intro-box { padding: 20px; }
    .intro-box h2 { font-size: 20px; }
    .intro-list li { font-size: 15px; }
}
/* --- CSS CHO SỐ ĐIỆN THOẠI VÀ APP --- */

/* Link số điện thoại to đẹp */
.hotline-link {
    display: inline-block;
    font-size: 24px;
    font-weight: bold;
    color: #d32f2f;
    text-decoration: none;
    background: white;
    padding: 5px 15px;
    border-radius: 30px;
    border: 2px solid #d32f2f;
    transition: 0.3s;
}

.hotline-link:hover {
    background: #d32f2f;
    color: white;
}

/* Khu vực nút App */
.app-buttons {
    margin-top: 15px;
    border-top: 1px dashed #ccc;
    padding-top: 10px;
}

.app-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 8px;
    color: white;
    font-weight: bold;
    text-decoration: none;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: 0.3s;
    min-width: 140px;
}

.app-btn:hover { opacity: 0.9; transform: translateY(-2px); }

.app-btn img {
    height: 20px;
    width: auto;
    margin-right: 8px;
    filter: brightness(0) invert(1); /* Làm trắng icon */
}

/* Màu cam Shopee */
.app-btn.shopee {
    background-color: #ee4d2d;
    box-shadow: 0 4px 10px rgba(238, 77, 45, 0.3);
}

/* Màu xanh Xanh SM (Cyan) */
.app-btn.xanhsm {
    background-color: #00bfa5; 
    box-shadow: 0 4px 10px rgba(0, 191, 165, 0.3);
}

/* Điện thoại thì xếp dọc cho dễ bấm */
@media (max-width: 768px) {
    .app-btn {
        width: 100%; /* Full màn hình */
        margin-right: 0;
    }
}

/* --- PHẦN GHI CHÚ DƯỚI NÚT MUA --- */
.product-note {
    margin-top: 25px;       /* Cách nút mua ra một đoạn */
    font-size: 15px;        /* Cỡ chữ vừa phải */
    color: #555;            /* Màu chữ xám đen nhẹ nhàng */
    line-height: 1.6;       /* Giãn dòng cho dễ đọc */
    font-style: italic;     /* In nghiêng nhẹ (tùy chọn, nhìn sẽ giống ghi chú hơn) */
    
    /* Đảm bảo không có khung viền */
    background: transparent; 
    border: none;
    padding: 0;
}
/* ================= PHẦN GỢI Ý (RELATED SECTION) ================= */

/* 1. Khung bao ngoài */
.related-section {
    margin-top: 60px;        /* Cách xa phần thông tin món ăn ở trên */
    padding-top: 30px;       /* Khoảng đệm bên trong */
    border-top: 8px solid #f0f0f0; /* Đường kẻ xám dày ngăn cách 2 phần */
}

/* 2. Tiêu đề "Gợi ý mua thêm..." */
.related-section h2 {
    margin-bottom: 25px;     /* Cách danh sách món ăn ra 25px */
    font-size: 20px;
    color: #333;
    text-transform: uppercase;
    border-left: 5px solid #d32f2f; /* Viền đỏ bên trái tạo điểm nhấn */
    padding-left: 15px;      /* Cách viền đỏ ra */
    line-height: 1.2;
}

/* 3. Lưới sản phẩm gợi ý */
.related-section .product-grid {
    display: grid;
    /* Tự động chia cột: Tối thiểu 170px một ô */
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); 
    gap: 20px;               /* 🔥 QUAN TRỌNG: Khoảng cách giữa các ô là 20px */
}

/* 4. Chỉnh riêng cho điện thoại */
@media (max-width: 768px) {
    .related-section {
        margin-top: 40px;
    }
    
    .related-section h2 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .related-section .product-grid {
        grid-template-columns: repeat(2, 1fr); /* Ép buộc chia 2 cột */
        gap: 12px; /* Khoảng cách giữa 2 ô là 12px (đủ thoáng mà không tốn chỗ) */
        row-gap: 20px; /* Khoảng cách giữa hàng trên và hàng dưới */
    }
}

/* --- MENU 3 GẠCH (HAMBURGER) --- */
.menu-wrapper {
    position: relative; /* Để menu con bám theo */
}

.menu-btn {
    background: none;
    border: none;
    color: white;
    font-size: 28px; /* To rõ như ngọn lửa cũ */
    cursor: pointer;
    padding: 5px 10px;
}

/* Menu xổ xuống */
.nav-dropdown {
    display: none; /* Mặc định ẩn */
    position: absolute;
    top: 50px;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-radius: 8px;
    z-index: 2000;
    overflow: hidden;
}

.nav-dropdown.open { display: block; animation: slideDown 0.3s ease; }

.nav-dropdown ul { list-style: none; padding: 0; margin: 0; }

.nav-dropdown li a, .nav-dropdown li {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.nav-dropdown li:hover { background-color: #f9f9f9; color: #d32f2f; }

.nav-dropdown .nav-header {
    background-color: #eee;
    font-weight: bold;
    font-size: 14px;
    color: #666;
    padding: 8px 20px;
    pointer-events: none; /* Không bấm được */
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
/* --- MENU CON (SUBMENU) --- */
.submenu-list {
    display: none; /* Mặc định ẩn */
    background-color: #f8f8f8; /* Màu nền hơi xám để phân biệt */
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

/* Khi có class open thì hiện ra */
.submenu-list.open {
    display: block;
    animation: fadeIn 0.3s;
}

/* Định dạng các mục con (Thụt vào trong) */
.submenu-list li a {
    padding-left: 40px !important; /* 🔥 Thụt lùi vào 40px so với menu chính */
    font-size: 15px; /* Chữ nhỏ hơn xíu */
    color: #555;
}

.submenu-list li:hover {
    background-color: #ffebee;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}
/* --- Ô NHẬP GHI CHÚ --- */
.checkout-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
    font-family: inherit;
    resize: vertical; /* Cho phép kéo giãn chiều cao */
    min-height: 60px;
}