/* =========================
   LOCAL FONTS
========================= */
/* ========== ROBOTO VIETNAMESE ========== */
/* Roboto Regular */
@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto-v50-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Roboto Bold 700 */
@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto-v50-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ========== CÁC FONT KHÁC GIỮ NGUYÊN TÊN ========== */
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/noto-sans-jp-v56-japanese_latin-regular.woff2") format("woff2");
  font-weight: 400; font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair-display-v40-latin-700.woff2") format("woff2");
  font-weight: 700; font-display: swap;
}

:root {
    --primary-red: #A31F24;
    --primary-green: #0F5535;
    --text-black: #333333;
    --text-white: #ffffff;
    --bg-dark: #1a1a1a;
    --font-jp: 'Noto Sans JP', sans-serif;
    --font-en: 'Playfair Display', serif;
    --header-height: 80px;
    --transition: all 0.3s ease;
}

/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: "Roboto", var(--font-jp), sans-serif;
    color: var(--text-black);
    line-height: 1.6;
    overflow-x: hidden;
}

/* FIX LỖI CHỮ "TIẾT" - Ép dùng Roboto vì Playfair không hỗ trợ dấu Tiếng Việt */
.main-title {
    font-family: "Roboto", sans-serif !important;
    letter-spacing: 0px !important;
    font-weight: 700;
    text-transform: uppercase;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* Thêm các đoạn code layout còn lại từ HTML của bạn vào đây để file HTML gọn hơn */

/* SEO H1 Hidden */
.seo-h1 {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* HEADER */
.header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    text-transform: uppercase;
}
.logo img { width: 180px; height: 71px; }

h1.logo-wrapper {
    margin: 0;
    padding: 0;
    line-height: 0;
    display: inline-block;
}

/* Desktop Nav */
.desktop-nav { display: none; } /* Mobile first, ẩn ở mobile */

/* Header Right */
.header-right { display: flex; align-items: center; gap: 15px; }

/* Language Switch */
.lang-switch { position: relative; cursor: pointer; display: flex; align-items: center; gap: 5px; }
.lang-dropdown {
    position: absolute; top: 100%; right: 0;
    background: #fff; box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: none; flex-direction: column; min-width: 60px;
    padding: 5px 0; border-radius: 4px;
}
.lang-dropdown.show { display: flex; }
.lang-dropdown a { padding: 5px 15px; font-size: 14px; text-align: center; color: #444444;}
.lang-dropdown a:hover, .lang-dropdown a.active { color: #911C20 !important;
    font-weight: 700; /* Tăng độ đậm để dễ đọc hơn */border-bottom: 2px solid #911C20; }
/* Chỉ áp dụng cho phần ngôn ngữ khi hiển thị trên Mobile */

/* Chỉ áp dụng cho mục ngôn ngữ đang chọn trên giao diện Mobile */
@media (max-width: 768px) {
    .mobile-lang-select a.active {
        color: #FFD700 !important; /* Màu vàng Gold chuẩn để đạt điểm tương phản tối đa */
        font-weight: 700;
        /* Nếu bạn có gạch chân dưới chữ VI, hãy đổi màu nó luôn */
        border-bottom: 2px solid #FFD700;
    }

    /* Đảm bảo các ngôn ngữ còn lại (không active) có màu trắng để dễ đọc trên nền tối */
    .mobile-lang-select a {
        color: #FFFFFF !important;
        margin: 0 5px;
    }
}

/* Booking Button (Desktop) */
.btn-booking {
    background: var(--primary-red);
    color: #fff;
    padding: 10px 20px;
    border-radius: 2px;
    display: none; /* Ẩn ở mobile, hiện ở desktop */
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
    transition: var(--transition);
}
.btn-booking:hover { opacity: 0.9; transform: translateY(-2px); }
.btn-booking .jp-text { font-size: 14px; }
.btn-booking .en-text { font-size: 12px; font-weight: 300; }

/* Hamburger Icon */
.hamburger {
    width: 30px; height: 24px;
    position: relative;
    background: none; border: none; cursor: pointer;
    z-index: 1001;
}
.hamburger span {
    display: block; position: absolute;
    height: 2px; width: 100%;
    background: #333; border-radius: 2px;
    transition: var(--transition);
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 11px; }
.hamburger span:nth-child(3) { top: 22px; }

/* Hamburger Active State */
.hamburger.active span:nth-child(1) { transform: rotate(45deg); top: 11px; }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg); top: 11px; }

/* MOBILE MENU OVERLAY */
.mobile-menu-overlay {
    position: fixed; top: var(--header-height); left: 0;
    width: 100%; height: calc(100vh - var(--header-height));
    background: #161616;
    color: #fff;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 999;
    overflow-y: auto;
}
.mobile-menu-overlay.open { transform: translateX(0); }
.mobile-menu-inner { padding: 20px; }

.mobile-lang-select {
    display: flex; gap: 15px; margin-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 15px; font-size: 14px;
}
.mobile-lang-select a.active { color: var(--primary-red); font-weight: bold; border-bottom: 1px solid #FFD700 !important; }

.mobile-nav-list li { border-bottom: 1px solid rgba(255,255,255,0.1); }
.mobile-nav-list a, .submenu-header {
    display: block; padding: 15px 0; font-size: 16px; font-weight: 500;
    display: flex; justify-content: space-between; align-items: center;
    cursor: pointer; text-transform: uppercase;
}
.mobile-submenu {
    background: #2a2a2a; max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out;
}
.mobile-submenu li { border-bottom: none; }
.mobile-submenu a { padding: 12px 20px; font-size: 14px; color: #ccc; }
.submenu-open .mobile-submenu { max-height: 200px; /* Ước lượng chiều cao */ }
.submenu-open .fa-chevron-down { transform: rotate(180deg); transition: 0.3s; }

.mobile-btn-booking {
    display: block; width: 100%;
    background: var(--primary-red); color: #fff;
    text-align: center; padding: 15px;
    margin-top: 30px; font-size: 16px; font-weight: bold;
}

.mobile-socials { margin-top: 40px; }
.mobile-socials p { font-size: 12px; margin-bottom: 10px; color: #aaa; letter-spacing: 1px; }
.social-icons { display: flex; gap: 15px; }
.social-icons a { width: 40px; height: 40px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 20px; color: #fff; transition: 0.3s; }
.sc-insta { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.sc-yt { background: #FF0000; }
.sc-fb { background: #1877F2; }
.sc-line { background: #06C152; }
.sc-tripadvisor {background: #00AA83;}

/* HERO VIDEO */
.hero-video {
    position: relative; width: 100%; height: 80vh; /* Chiều cao video */
    overflow: hidden; margin-top: var(--header-height);
}
@media (max-width: 767px) {
    .hero-video{height: 50vh;}
}
#bgVideo {
    position: absolute; top: 50%; left: 50%;
    min-width: 100%; min-height: 100%;
    width: auto; height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover; z-index: 1;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-content {
    text-align: center;
    color: #fff;
    padding: 0 20px;
    background: #333333;
}

.hero-main-title {
    font-size: 30px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 18px;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .hero-main-title { font-size: 28px; }
    .hero-subtitle { font-size: 14px; }
}

/* SERVICE BANNER - GIAO DIỆN CHÍNH XÁC THEO ẢNH */
.service-banner-section {
    width: 100%;
    background-color: #fff;
    overflow: hidden; /* Che phần thừa khi slide trên mobile */
}

.service-container {
    width: 100%;
    margin: 0 auto;
}

/* Track chứa các item */
.service-track {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease-in-out; /* Hiệu ứng trượt mượt mà */
}

/* Style chung cho từng khối Item */
.service-item {
    display: flex;
    align-items: center;
    padding: 15px 10px;
    color: #fff;
    flex-shrink: 0; /* Không cho co lại */
    height: 140px; /* Chiều cao cố định cho đồng đều */
}

/* Màu nền xen kẽ */
.bg-green { background-color: #115e38; } /* Màu xanh lá đậm từ ảnh */
.bg-red { background-color: #9e1b23; }   /* Màu đỏ đô từ ảnh */

/* Layout ảnh bên trái */
.svc-img {
    width: 110px;
    height: 110px;
    flex-shrink: 0;
    margin-right: 15px;
    border: 2px solid rgba(255,255,255,0.2); /* Viền mờ nhẹ như ảnh */
}
.svc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Layout nội dung bên phải */
.svc-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.svc-content h3 {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 5px;
    white-space: nowrap; /* Giữ tiêu đề 1 dòng */
}

/* Đường gạch ngang mờ bên dưới tiêu đề */
.svc-line {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.3);
    margin-bottom: 8px;
}

.svc-content p {
    font-size: 14px; /* Chữ nhỏ mịn */
    line-height: 1.4;
    margin: 0;
    font-weight: 300;
}

/* --- RESPONSIVE --- */

/* DESKTOP (Màn hình lớn >= 992px) */
@media (min-width: 992px) {
    .service-track {
        transform: none !important; /* Tắt slide trên desktop */
        width: 100%; /* Chiếm full màn hình */
    }
    .service-item {
        width: 25%; /* Chia đều 4 cột */
        justify-content: center;
    }
    .svc-content {
        text-align: center; /* Canh giữa nội dung trên desktop cho đẹp */
        align-items: center;
    }
    .svc-line { width: 50%; } /* Gạch ngang ngắn lại khi canh giữa */

    /* Trên desktop layout có thể cần chỉnh ảnh và chữ stack hoặc ngang tùy ý thích */
    /* Nhưng theo ảnh mẫu của bạn là Ngang (Ảnh trái - Chữ phải). Code trên đã đúng. */
}

/* MOBILE & TABLET (Màn hình nhỏ < 992px) */
@media (max-width: 991px) {
    .service-track {
        /* Mobile cần width rộng để chứa các item trượt ngang */
        /* JS sẽ tính toán lại width, nhưng mặc định để fit content */
    }
    .service-item {
        width: 100vw; /* Mỗi item chiếm trọn chiều rộng màn hình điện thoại */
        justify-content: flex-start; /* Canh trái như ảnh mobile */
    }
    .svc-content {
        text-align: left;
        align-items: flex-start;
        padding-right: 10px;
    }
}

/* RESPONSIVE DESKTOP (PC) */
@media (min-width: 992px) {
    .hamburger { display: none; }
    .desktop-nav { display: block; }
    .btn-booking { display: flex; }
    .mobile-menu-overlay { display: none; }

    .menu-list { display: flex; gap: 30px; font-size: 14px; font-weight: 600; }
    .has-submenu { position: relative; }
    .submenu {
        position: absolute; top: 100%; left: 0;
        background: #fff; width: 200px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        opacity: 0; visibility: hidden; transition: var(--transition);
        transform: translateY(10px);
    }
    .has-submenu:hover .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
    .submenu a { font-weight: 700; display: block; padding: 12px 20px; border-bottom: 1px solid #f0f0f0; transition: 0.2s; }
    .submenu a:hover { background: #f9f9f9; color: var(--primary-red); }

    .slider-wrapper { width: 100%; } /* Desktop có thể hiển thị dạng lưới thay vì slide */
    .slide-item { width: 33.333%; float: left; } /* Hiển thị 3 cột trên desktop */
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}


/* --- POPULAR DISHES SECTION --- */
.popular-dishes-section {
    padding: 60px 20px;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

/* Header Section */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #333;
    letter-spacing: 1px;
}

.section-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Grid System */
.dish-grid {
    display: grid;
    /* Mặc định Desktop: 4 cột đều nhau */
    grid-template-columns: repeat(4, 1fr);
    gap: 15px; /* Khoảng cách giữa các ảnh */
    margin-bottom: 40px;
}

/* Từng ô món ăn */
.dish-item {
    position: relative;
    overflow: hidden;
    border-radius: 2px; /* Bo góc rất nhẹ */
    aspect-ratio: 1 / 1; /* Tỉ lệ khung hình vuông (hoặc chỉnh 4/3 tùy ảnh gốc) */
    cursor: pointer;
}

.dish-img {
    width: 100%;
    height: 100%;
}

.dish-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Hiệu ứng zoom nhẹ khi di chuột */
.dish-item:hover .dish-img img {
    transform: scale(1.05);
}

/* Tên món ăn đè lên ảnh (Overlay) */
.dish-name {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 10px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); /* Gradient đen mờ */
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
    font-family: 'Noto Sans JP', sans-serif;
}

/* Nút Xem Thêm */
.view-more-container {
    text-align: center;
}

.btn-view-more {
    display: inline-block;
    padding: 12px 50px;
    background-color: #9e1b23; /* Màu đỏ BTheme */
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    border: 1px solid #9e1b23;
    transition: all 0.3s ease;
}

.btn-view-more:hover {
    background-color: #fff;
    color: #9e1b23;
    border-color: #9e1b23;
}

/* --- RESPONSIVE --- */

/* Tablet & Mobile */
@media (max-width: 991px) {
    .section-title {
        font-size: 22px;
    }
    .section-desc {
        font-size: 13px;
        padding: 0 10px;
    }
    .dish-grid {
        gap: 10px; /* Mobile thu hẹp khoảng cách */
    }
    .dish-name {
        font-size: 12px;
        padding: 10px 5px;
    }
}

/* Mobile Only (< 768px) - Yêu cầu chia 2 cột */
@media (max-width: 767px) {
    .dish-grid {
        /* Chia thành 2 cột trên điện thoại */
        grid-template-columns: repeat(2, 1fr);
    }

    .popular-dishes-section {
        padding: 40px 15px;
    }
}



/* ==========================================
   EVENT & BENTO SECTION
   ========================================== */
.event-bento-section {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Tạo hiệu ứng parallax nhẹ */
    color: #fff;
}

.section-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Phủ mờ background để dễ đọc chữ */
    z-index: 1;
}

.relative-content {
    position: relative;
    z-index: 2;
}

.light-text .section-title {
    color: #fff;
}

.light-text .section-desc {
    color: #eee;
}

/* Grid layout */
.event-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.event-card {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255,255,255,0.3);
    overflow: hidden;
}

/* Hiệu ứng Zoom ảnh */
.event-img {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.event-card:hover .event-img img {
    transform: scale(1.1);
}

/* Phần nội dung bên dưới ảnh */
.event-info {
    padding: 30px;
    text-align: center;
    flex-grow: 1;
}

.event-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.event-info p {
    font-size: 14px;
    line-height: 1.6;
}

/* Màu sắc theo thiết kế */
.bg-red-dark {
    background-color: #8B1A1A; /* Màu đỏ đô tiệp với logo */
}

.bg-green-dark {
    background-color: #14522D; /* Màu xanh lá đậm */
}

/* Responsive cho Mobile */
@media (max-width: 768px) {
    .event-grid {
        grid-template-columns: 1fr; /* Chia 1 cột trên mobile */
    }

    .event-img {
        height: 250px;
    }

    .event-bento-section {
        padding: 60px 0;
    }
}


/* --- TESTIMONIALS SECTION --- */
.testimonials-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

/* Review Widget Header */
.google-review-widget {
    background: #fff;
    border-radius: 50px;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 50px;
}

.review-score {
    display: flex;
    align-items: center;
    gap: 10px;
}

.google-logo-img {
    height: 24px;
}

.score-text {
    font-size: 20px;
    font-weight: 700;
}

.stars i {
    color: #fbbc05; /* Màu vàng Google */
    font-size: 14px;
}

.btn-review-google {
    background-color: var(--primary-red);
    color: #fff;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 500;
    font-size: 14px;
}

/* Grid Layout */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 cột desktop */
    gap: 25px;
}

.review-bubble {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    margin-bottom: 15px;
}

/* Tam giác nhỏ dưới bubble */
.review-bubble::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 30px;
    border-width: 10px 10px 0 10px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
}

.stars-small i {
    color: #ff4b4b;
    font-size: 11px;
    margin-right: 2px;
}

.review-bubble p {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    margin: 10px 0;
}

.read-more {
    font-size: 12px;
    color: #4d4d4d;
    cursor: pointer;
}

/* User Info */
.review-user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 10px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    background: #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #666;
}

.user-info h4 {
    font-size: 14px;
    margin: 0;
}

.user-info span {
    font-size: 11px;
    color: #4d4d4d;
}

/* Load more */
.load-more-container {
    text-align: center;
    margin-top: 40px;
}

.btn-load-more {
    display: inline-block; /* Quan trọng để thẻ a nhận diện diện tích */
    background: #eee;
    color: #333; /* Thêm màu chữ nếu cần */
    text-decoration: none; /* Bỏ gạch chân của link */
    border: none;
    padding: 15px 30px; /* Tổng chiều cao ~ 48px trở lên */
    border-radius: 4px;
    font-size: 16px; /* Tăng nhẹ font-size để dễ đọc hơn trên mobile */
    cursor: pointer;
    min-width: 48px;
    min-height: 48px;
    line-height: 1.2;
    transition: background 0.3s;
}

.btn-load-more:hover {
    background: #ddd;
}

/* Responsive */
@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 cột tablet */
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr; /* 1 cột mobile */
    }
    .google-review-widget {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        border-radius: 20px;
    }
}



/* --- GALLERY SECTION --- */
.gallery-section { padding: 80px 0; background: #fff; }

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr; /* Chia tỉ lệ 2 phần trái, 1 phần phải */
    gap: 15px;
}

/* Cụm 4 ảnh bên trái chia 2x2 */
.gallery-left-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    display: block;
    height: 250px; /* Độ cao cố định cho các ảnh nhỏ */
}

/* Ảnh to bên phải cao bằng cả cụm 4 ảnh trái */
.item-big-right {
    height: 515px; /* (250px * 2) + 15px gap */
}

.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Hiệu ứng Zoom nhẹ khi hover */
.gallery-item:hover img {
    transform: scale(1.1);
}

.overlay-icon {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.3);
    display: flex; justify-content: center; align-items: center;
    opacity: 0; transition: 0.3s;
}

.gallery-item:hover .overlay-icon { opacity: 1; }
.overlay-icon i { color: #fff; font-size: 30px; }

/* Mobile: Chuyển thành 1 cột đứng */
@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-left-group { grid-template-columns: 1fr; }
    .gallery-item, .item-big-right { height: 250px; }
}


/* --- MAIN FOOTER --- */
.main-footer {
    position: relative;
    color: #ffffff;
    overflow: hidden;
}

.footer-top-bg {
    position: relative;
    padding: 120px 0;
    /* Nhúng ảnh nền footer.jpg */
    background: url('../img/footer.webp') no-repeat center center;
    background-size: cover;
}

/* Lớp phủ đen nhẹ (Overlay) để nổi bật chữ trắng */
.footer-top-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* Độ mờ 70% đen */
    z-index: 1;
}

.footer-content {
    position: relative;
    z-index: 2; /* Đẩy nội dung lên trên lớp phủ đen */
    text-align: center;
}

.footer-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.footer-info-list p {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
}

/* Khu vực Social Icons */
.footer-social {
    margin-top: 40px;
}

.social-label {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.social-icons-wrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icons-wrapper img {
    width: 45px;
    height: 45px;
    border-radius: 8px; /* Bo góc nhẹ cho icon giống thiết kế */
    transition: 0.3s transform;
}

.social-icons-wrapper a:hover img {
    transform: scale(1.1);
}

/* Copyright Bar */
.footer-copyright {
    background-color: #ffffff;
    color: #333333;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}

/* Responsive cho Mobile */
@media (max-width: 768px) {
    .footer-top-bg {
        padding: 50px 20px;
    }
    .footer-title {
        font-size: 18px;
    }
    .social-icons-wrapper img {
        width: 40px;
        height: 40px;
    }
}


/* ==========================================
   PAGE BANNER (ABOUT PAGE)
   ========================================== */
.page-banner {
    position: relative;
    height: 400px; /* Chiều cao banner */
    margin-top: var(--header-height); /* Tránh bị che bởi header fixed */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.banner-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Lớp phủ làm tối ảnh nền */
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-content .sub-title {
    font-family: var(--font-en);
    font-size: 18px;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.banner-content .main-title {
    font-size: 42px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 2px;
    font-family: var(--font-jp);
}

/* Responsive cho banner */
@media (max-width: 768px) {
    .page-banner {
        height: 250px;
    }
    .banner-content .main-title {
        font-size: 30px;
    }
}
/* ==========================================
   ABOUT PAGE CONTENT
   ========================================== */
.about-page {
    padding-top: var(--header-height);
}

.about-intro-section {
    padding-bottom: 50px;
}

.about-main-title {
    font-family: var(--font-jp);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    letter-spacing: 2px;
    text-align: center;
}

.about-flex-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 30px;
}

.about-image {
    flex: 0 0 45%;
}

.about-image img {
    width: 100%;
    height: auto;
    box-shadow: 10px 10px 0px #eee; /* Tạo điểm nhấn nhẹ */
}

.about-text-top, .about-text-bottom {
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
    text-align: justify;
}

.about-text-top p, .about-text-bottom p {
    margin-bottom: 20px;
}

/* Responsive cho trang About */
@media (max-width: 991px) {
    .about-flex-content {
        flex-direction: column;
    }
    .about-image {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
    .about-main-title {
        font-size: 26px;
        margin-bottom: 30px;
    }
}



/* ==========================================
   FAQS PAGE - SMOOTH ANIMATION
   ========================================== */
.faqs-page {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.small-container {
    max-width: 1000px; /* Độ rộng vừa phải dễ đọc */
    margin: 0 auto;
    padding: 0 15px;
}

.faq-group {
    margin-bottom: 40px;
}

.faq-group-title {
    font-family: var(--font-en);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* KHUNG BAO NGOÀI */
.faq-item {
    background: #fff;
    border: 1px solid #eee;
    margin-bottom: 10px;
    border-radius: 6px;
    overflow: hidden; /* Bo tròn góc */
    transition: all 0.3s ease;
}

/* PHẦN CÂU HỎI (Click vào đây) */
.faq-question {
    padding: 18px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-black);
    transition: background 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background-color: #f8f8f8;
    color: var(--primary-red);
}

.faq-question i {
    font-size: 14px;
    color: #4d4d4d;
    transition: transform 0.4s ease;
}

/* PHẦN TRẢ LỜI - QUAN TRỌNG NHẤT */
.faq-answer {
    height: 0;
    overflow: hidden;
    /* Sử dụng Cubic Bezier để tạo độ mượt tự nhiên */
    transition: height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: height; /* Tối ưu hóa GPU */
}

/* NỘI DUNG BÊN TRONG (Chứa Padding) */
.faq-content {
    padding: 20px 25px 25px 25px;
    border-top: 1px solid #f0f0f0;
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

.faq-content p {
    margin: 0; /* Xóa margin mặc định để tránh giật */
}

/* TRẠNG THÁI ACTIVE */
.faq-item.active {
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-color: #e0e0e0;
}

.faq-item.active .faq-question {
    background-color: #fff;
    color: var(--primary-red);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg); /* Xoay dấu cộng thành nhân */
    color: var(--primary-red);
}



/* Food Grid Layout */
/* Food Grid Layout */
.food-grid-section {
    padding: 60px 0;
}

.food-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 cột trên PC */
    gap: 25px;
}

/* CHỈ THÊM PHẦN NÀY ĐỂ SỬA LỖI MOBILE */
@media (max-width: 576px) {
    .food-grid {
        grid-template-columns: 1fr; /* Đổi về 1 cột trên Mobile */
    }
}

.food-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.food-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.food-image {
    position: relative;
    aspect-ratio: 1/1; /* Ảnh vuông đồng nhất */
    overflow: hidden;
}

.food-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mã số món ăn ở góc trên bên phải */
.food-code {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--primary-red);
    color: #fff;
    padding: 4px 10px;
    font-size: 13px;
    font-weight: 700;
    z-index: 5;
    border-radius: 2px;
}

.food-info {
    padding: 15px;
    text-align: center;
}

.food-name {
    font-size: 18px;
    color: var(--primary-green);
    margin-bottom: 5px;
}

.food-desc {
    font-size: 13px;
    color: #444;
    line-height: 1.4;
}

/* Phần giới thiệu văn hóa ẩm thực */
.food-culture-intro {
    padding: 50px 0px 50px 0px;
    background-color: #fdfdfd;
}

.culture-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 2px solid var(--primary-red);
    padding-top: 40px;
}

/* dish-block.css — Dùng chung cho toàn site, nhúng 1 lần trong <head> */

.dish-block {
  max-width: 1200px;
  margin: 0 auto;
  padding: 52px 5px;
  font-family: inherit;
  color: #1a1a1a;
}

.dish-title {
  font-size: 26px;
  font-weight: 700;
  color: #8B1A1A;
  text-align: center;
  letter-spacing: 0.3px;
  line-height: 1.3;
  margin: 0;
}

.dish-divider {
  width: 48px;
  height: 3px;
  background: #8B1A1A;
  margin: 14px auto 28px;
  border-radius: 2px;
}

.dish-desc {
  line-height: 1.85;
  color: #1a1a1a;
  margin: 0;
}

.dish-toggle-wrap {
  display: flex;
  justify-content: center;
  margin: 32px 0 0;
}

.dish-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 36px;
  border: 1.5px solid #8B1A1A;
  border-radius: 3px;
  background: white;
  color: #8B1A1A;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease;
  letter-spacing: 0.3px;
}

.dish-toggle-btn:hover {
  background: #8B1A1A;
  color: white;
}

.dish-toggle-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.35s ease;
}

.dish-toggle-btn.open svg {
  transform: rotate(180deg);
}

.dish-expand-wrap {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}

.dish-expand-wrap.open {
  max-height: 800px;
  opacity: 1;
}

.dish-expand-inner {
  padding-top: 36px;
}

.dish-ing-title {
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px;
}

.dish-ing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.dish-ing-list li {
  color: #1a1a1a;
  line-height: 1.85;
}

.dish-note {
  border-left: 3px solid #8B1A1A;
  padding: 12px 16px;
  background: #fdf3e7;
  border-radius: 0 3px 3px 0;
  line-height: 1.7;
  color: #1a1a1a;
}

.dish-note strong {
  font-weight: 700;
  color: #8B1A1A;
}


/* ==========================================
   DRINK PAGE SPECIAL LAYOUT (3 COLUMNS)
   ========================================== */

/* Chỉ áp dụng 3 cột cho màn hình Desktop từ 992px trở lên */
@media (min-width: 992px) {
    .drink-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 40px;
    }
}

/* Trên Tablet giữ 2 cột hoặc tùy biến */
@media (max-width: 991px) and (min-width: 577px) {
    .drink-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Trên Mobile giữ 1 cột */
@media (max-width: 576px) {
    .drink-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Tùy chỉnh ảnh cho trang drink nếu muốn cao hơn món ăn */
.drink-grid .food-image {
    aspect-ratio: 4/5;
}

/* ==========================================
   DRINK PAGE SPECIAL LAYOUT (3 COLUMNS)
   ========================================== */

@media (min-width: 992px) {
    .drink-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 40px;
    }
}

@media (max-width: 991px) and (min-width: 577px) {
    .drink-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 576px) {
    .drink-grid {
        grid-template-columns: 1fr !important; /* Đồ uống 1 cột trên mobile cho sang trọng */
    }
}

.drink-grid .food-image {
    aspect-ratio: 4/5;
}

/* ==========================================
   CSS BỔ SUNG RIÊNG CHO TRANG DRINK
   (Kế thừa từ trang Food nhưng điều chỉnh layout)
   ========================================== */

/* 1. Ép lưới hiển thị 3 cột trên Desktop (từ 992px trở lên) */
@media (min-width: 992px) {
    .drink-grid-custom {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important; /* 3 cột */
        gap: 35px; /* Khoảng cách rộng rãi cho trang đồ uống */
    }

    /* Đảm bảo các card đồ uống đều tắp */
    .drink-grid-custom .food-card {
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    /* Chỉnh chiều cao ảnh đồ uống cao hơn một chút so với món ăn */
    .drink-grid-custom .food-image {
        height: 280px;
    }
}

/* 2. Style riêng cho Box "Đồ uống khác" có icon */
.drink-other-card {
    background-color: #fcfaf7 !important; /* Màu nền hơi kem nhẹ */
    border: 2px dashed var(--primary-green) !important; /* Viền nét đứt màu xanh */
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 280px; /* Bằng chiều cao ảnh của các card khác */
    transition: var(--transition);
}

.drink-other-card:hover {
    background-color: #fff !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-style: solid !important; /* Khi hover thì viền thành nét liền */
}

.drink-other-inner {
    padding: 20px;
}

.other-icon img {
    width: 70px; /* Kích thước icon douongkhac.png */
    height: auto;
    margin: 0 auto 15px;
    opacity: 0.8;
}

.other-content h3 {
    font-family: var(--font-en);
    font-size: 22px;
    color: var(--primary-red); /* Màu đỏ đô thương hiệu */
    margin-bottom: 8px;
}

.other-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

/* 3. Tùy chỉnh trên Mobile (Giữ 2 cột hoặc 1 cột tùy màn hình) */
@media (max-width: 768px) {
    .drink-grid-custom {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
    }
    .drink-other-card {
        min-height: 220px;
    }
}

@media (max-width: 480px) {
    .drink-grid-custom {
        grid-template-columns: 1fr !important;
    }
}


/* ==========================================
   CSS TRANG DRINK - SECTION 2 (BOX 2 CỘT)
   ========================================== */

/* Tiêu đề nhóm đồ uống */
.drink-group-title {
    text-align: center;
    font-size: 28px;
    color: #000;
    margin-bottom: 30px;
    font-family: var(--font-en);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Box thông tin chiếm 2 cột trên Desktop */
@media (min-width: 992px) {
    .drink-info-box-2col {
        grid-column: span 2; /* Chiếm 2 ô trong lưới 3 cột */
    }
}

.drink-info-box-2col {
    background-color: #fcfaf7;
    border: 2px dashed  var(--primary-green) !important;
    padding: 40px;
    display: flex;
    align-items: center;
}

.drink-info-box-2col:hover {
    background-color: #ffffff;
    border: 2px solid var(--primary-green) !important;
    transition: all 0.3s ease; /* Thêm dòng này để hiệu ứng mượt mà hơn */
}

.info-box-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
}

/* Icon bên trái */
.info-icon {
    flex: 0 0 120px; /* Độ rộng của icon */
    text-align: center;
}

.info-icon img {
    width: 100%;
    height: auto;
}

/* Nội dung bên phải */
.info-text {

    font-size: 22px;
    color: var(--primary-red);
    margin-bottom: 8px;
}

.info-text h3 {
    flex: 1;
}

.info-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.info-divider {
    border-top: 1px dashed var(--primary-green);
    margin: 15px 0;
    width: 100%;
}

/* Responsive cho Mobile */
@media (max-width: 991px) {
    .drink-info-box-2col {
        grid-column: span 1; /* Trở về 1 cột trên mobile */
        padding: 20px;
    }
    .info-box-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .info-icon {
        flex: 0 0 80px;
    }
}


/* ==========================================
   CSS CHO SECTION CÀ PHÊ (FULL WIDTH BOX)
   ========================================== */

.drink-info-fullwidth {
    background-color: #fcfaf7;
    border: 2px dashed var(--primary-green);
    padding: 30px;
    margin-bottom: 35px; /* Khoảng cách với các món bên dưới */
    transition: all 0.3s ease;
}

/* Hiệu ứng Hover cho khung tiêu đề */
.drink-info-fullwidth:hover {
    background-color: #ffffff;
    border: 2px solid var(--primary-green);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.drink-info-fullwidth .info-box-inner {
    display: flex;
    align-items: center;
    gap: 30px;
}

.drink-info-fullwidth .info-icon {
    flex: 0 0 100px; /* Độ rộng icon cà phê */
    text-align: center;
}

.drink-info-fullwidth .info-icon img {
    width: 100%;
    height: auto;
}

.drink-info-fullwidth .info-text {
    flex: 1;
}

.drink-info-fullwidth .info-text h3 {
    font-family: var(--font-en);
    font-size: 22px;
    color: var(--primary-red);
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
}

/* Đường gạch chân trang trí dưới tiêu đề */
.drink-info-fullwidth .info-text h3::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--primary-green);
}

.drink-info-fullwidth .info-text p {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    margin: 0;
    text-align: justify;
}

/* Responsive cho Mobile */
@media (max-width: 768px) {
    .drink-info-fullwidth .info-box-inner {
        flex-direction: column;
        text-align: center;
    }
    .drink-info-fullwidth .info-text h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .drink-info-fullwidth .info-icon {
        flex: 0 0 80px;
    }
}


/* ==========================================
   EVENT FOOD PAGE STYLES (BTheme Optimized)
   ========================================== */

.event-food-page {
    padding: 60px 0;
    background-color: #fff;
}

/* 1. Reset các thẻ HTML mới bổ sung */
figure {
    margin: 0;
    padding: 0;
}

figcaption {
    display: none; /* SEO vẫn đọc được nhưng không hiện lên giao diện */
}

/* 2. Breadcrumb */
.breadcrumb {
    font-size: 14px;
    margin-bottom: 20px;
    color: #333333; /* Chuyển sang màu đen xám đậm */
}

.breadcrumb a {
    color: #0F5535; /* Dùng màu xanh lá đậm của BTheme cho link để tăng tương phản */
    text-decoration: underline; /* Thêm gạch chân để rõ là link */
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* 3. Layout Ảnh & Hiệu ứng */
.event-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 50px;
}

.event-grid-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Gom nhóm các class giống nhau để rút gọn code */
.event-img-small,
.event-img-large {
    overflow: hidden;
    border-radius: 4px;
}

.event-img-small img,
.event-img-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.event-img-small:hover img,
.event-img-large:hover img {
    transform: scale(1.03);
}

/* 4. Nội dung văn bản */
.event-text-wrapper {
    max-width: 1000px; /* Sửa lỗi: Trước đó bạn để 12000px là quá rộng */
    margin: 0 auto 50px;
}

.event-text-wrapper p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
    text-align: justify;
}

/* 5. Nút liên hệ (CTA) - Đã rút gọn các thuộc tính trùng */
.event-cta {
    text-align: center;
}

.cta-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background-color: #8B1A1A;
    color: #fff !important; /* Đảm bảo không bị màu xanh của thẻ a mặc định */
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background-color: var(--primary-red, #d32f2f);
}

.cta-label {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 5px;
}

.cta-phone {
    font-size: 24px; /* Tăng cỡ chữ số điện thoại cho nổi bật */
    letter-spacing: 1px;
    font-weight: bold;
}

.cta-button i {
    margin-right: 8px;
}

/* 6. Responsive */
@media (max-width: 768px) {
    .event-grid {
        grid-template-columns: 1fr;
    }

    .event-img-large {
        order: -1; /* Ảnh lớn lên đầu */
    }

    .event-text-wrapper {
        padding: 0 15px;
    }
}
/* ==========================================
    BENTO PAGE STYLES (Optimized & Clean)
   ========================================== */

.bento-page {
    padding: 60px 0;
    background-color: #fff;
}

/* 1. Tiêu đề chính */
.bento-main-title {
    text-align: center;
    font-family: var(--font-en);
    font-size: 28px;
    color: #000;
    margin-bottom: 35px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 2. Banner Image - Gộp và tối ưu */
.bento-banner {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 40px;
    overflow: hidden;
    border-radius: 8px; /* Bo góc đồng bộ */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.bento-banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bento-banner:hover img {
    transform: scale(1.02);
}

/* 3. Nội dung văn bản - Đồng bộ với trang Event */
.bento-text-wrapper {
    max-width: 1000px;
    margin: 0 auto 40px;
    padding: 0 15px;
}

.bento-text-wrapper p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
    text-align: justify;
}

/* 4. Nút liên hệ (CTA) - Kế thừa style chung */
.bento-cta {
    text-align: center;
    margin-top: 20px;
}

.bento-cta .cta-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background-color: #8B1A1A;
    color: #fff !important;
    padding: 15px 50px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.bento-cta .cta-button:hover {
    background-color: var(--primary-red, #d32f2f);
    box-shadow: 0 5px 15px rgba(139, 26, 26, 0.3);
}

.bento-cta .cta-label {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 4px;
}

.bento-cta .cta-phone {
    font-size: 24px; /* Tăng lên đồng bộ với trang Event cho nổi bật */
    letter-spacing: 1px;
    font-weight: bold;
}

/* 5. Responsive */
@media (max-width: 768px) {
    .bento-main-title {
        font-size: 22px;
        line-height: 1.4;
    }

    .bento-text-wrapper p {
        font-size: 15px;
    }

    .bento-cta .cta-button {
        width: 90%;
        padding: 15px 20px;
    }
}

/* ==========================================
   COFFEE BEAN PAGE STYLES (BTheme Optimized)
   ========================================== */

.coffee-bean-page {
    padding: 60px 0 80px;
}

/* 1. Văn bản giới thiệu */
.coffee-intro-text {
    max-width: 1000px; /* Đồng bộ với các trang khác */
    margin: 0 auto 40px;
    padding: 0 15px;
}

.coffee-intro-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
    text-align: justify;
}

/* 2. Grid ảnh (3 cột) */
.coffee-image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0 50px;
}

.coffee-img-item {
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 4/3;
}

.coffee-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.coffee-img-item:hover img {
    transform: scale(1.05);
}

/* 3. Mức độ rang (Roast Levels) */
.section-subtitle {
    text-align: center;
    font-size: 24px;
    color: #0F5535; /* Màu xanh */
    font-weight: 700;
    margin: 0 0 30px;
}

.roast-box-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 50px;
}

.roast-box {
    background: #fdfdfd;
    padding: 30px;
    border: 1px solid #eee;
    border-left: 5px solid #8B1A1A; /* Điểm nhấn đỏ đô */
}

.roast-box h3 {
    font-size: 19px;
    color: #333;
    margin-bottom: 15px;
}

.roast-box ul {
    list-style: none;
    padding: 0;
}

.roast-box ul li {
    margin-bottom: 8px;
    color: #444;
}

.roast-box ul li::before {
    content: "✓";
    margin-right: 10px;
    color: #8B1A1A;
    font-weight: bold;
}

.roast-note {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin-top: 10px;
}

/* 4. Tùy chọn đặt mua */
.purchase-options {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
}

.bean-types {
    list-style: none;
    padding: 10px 0;
}

.bean-types li {
    margin-bottom: 10px;
    font-size: 16px;
}

/* 5. Nút CTA (Dùng chung style hệ thống) */
.coffee-cta {
    text-align: center;
    margin-top: 10px;
}

.coffee-cta .cta-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background-color: #8B1A1A;
    color: #fff !important;
    padding: 15px 50px;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
}

.coffee-cta .cta-label { font-weight: 700; font-size: 18px; }
.coffee-cta .cta-phone { font-size: 24px; font-weight: bold; }

/* 6. Responsive */
@media (max-width: 991px) {
    .roast-box-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .coffee-image-grid {
        grid-template-columns: 1fr;
    }

    .purchase-options {
        padding: 20px;
    }
}
/* ==========================================
   CONTACT PAGE STYLES
   ========================================== */

.contact-page {
    padding: 60px 0;
    background-color: #fff;
}

.contact-main-title {
    text-align: center;
    font-size: 28px;
    color: #000;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-top-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    margin-bottom: 80px;
}

/* Info Column */
.contact-info-content {
    flex: 1;
}

.info-group {
    margin-bottom: 30px;
}

.info-group h3 {
    font-size: 20px;
    color: #000;
    margin-bottom: 8px;
    font-weight: 700;
}

.info-group p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.info-group a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.info-group a:hover {
    color: var(--primary-red);
}

/* SNS Icons */
.sns-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 15px;
}

.sns-icons img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: transform 0.3s;
}

.sns-icons a:hover img {
    transform: translateY(-3px);
}

/* Image Column */
.contact-image-side {
    flex: 1;
    overflow: hidden;
    border-radius: 4px;
}

.contact-image-side img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Map Section */
.contact-map-section {
    margin-top: 50px;
}

.map-wrapper {
    width: 100%;
    background-color: #f0f0f0;
    border: 1px solid #ddd;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-top-wrapper {
        flex-direction: column;
    }

    .contact-image-side {
        order: -1; /* Đưa ảnh lên đầu trên mobile */
        width: 100%;
    }

    .contact-info-content {
        width: 100%;
        text-align: center;
    }

    .sns-icons {
        justify-content: center;
    }
}


/* ==========================================
   RESERVATION PAGE STYLES
   ========================================== */

.reservation-page {
    padding: 60px 0;
    background-color: #fff;

}

.reservation-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.reservation-note {
    text-align: center;
    font-size: 15px;
    color: #333;
    margin-bottom: 40px;
    font-style: normal;
}

/* Form Container */
.reservation-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid #777; /* Đường viền bao quanh form như trong ảnh */
    padding: 40px;
    border-radius: 2px;
}

/* Layout Grid cho Form */
.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 25px; /* Khoảng cách giữa các hàng */
}

.form-row {
    display: flex;
    gap: 30px;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.full-width {
    width: 100%;
}

.half-width {
    width: 50%;
}

/* Label Styling */
.form-group label {
    font-size: 12px;
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Input Styling */
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 2px;
    background-color: #fff;
    color: #333;
    outline: none;
    transition: border-color 0.3s;
    box-sizing: border-box; /* Đảm bảo padding không làm vỡ layout */
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #000;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

/* Button Styling */
.form-submit {
    margin-top: 10px;
}

.btn-submit {
    width: 100%;
    padding: 15px 0;
    background-color: #8B1A1A;
    color: #ffffff;
    border: 1px solid var(--primary-red);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
   background-color: var(--primary-red);
   box-shadow: 0 5px 15px rgba(139, 26, 26, 0.3);
}

/* Responsive Styles (Mobile) */
@media (max-width: 768px) {
    .reservation-form-wrapper {
        padding: 20px;
        border: none; /* Bỏ viền bao ngoài trên mobile cho đỡ chật */
    }

    .form-row {
        flex-direction: column; /* Chuyển thành 1 cột trên mobile */
        gap: 20px;
    }

    .half-width {
        width: 100%;
    }
}




/*****BLOG******/
.blog-page { padding: 40px 0; font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif; }

/* Layout chia 2 cột */
.blog-layout { display: flex; gap: 40px; margin-top: 20px; }
.blog-content { flex: 3; }
.sidebar { flex: 1; min-width: 280px; }

/* Breadcrumb */
.breadcrumb { font-size: 14px; color: #666; margin-bottom: 20px; }

/* Tiêu đề danh mục */
.blog-title { font-size: 24px; border-bottom: 1px solid #eee; padding-bottom: 10px; margin-bottom: 30px; font-style: uppercase; }
.blog-title .sub-title { font-size: 14px; color: #999; font-weight: normal; margin-left: 10px; }

/* Grid bài viết */
.post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; }
.post-item { background: #fff; transition: transform 0.3s; }
.post-item:hover { transform: translateY(-5px); }

.post-thumb { position: relative; overflow: hidden; height: 180px; }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-category { position: absolute; top: 0; right: 0; padding: 4px 12px; color: #fff; font-size: 11px; font-weight: bold; background: #A31F24;; }

.post-info h2 { font-size: 16px; margin: 15px 0 10px; line-height: 1.5; }
.post-info p {  line-height: 1.6; height: 4em; overflow: hidden; }
.post-info time { font-size: 11px; color: #bbb; display: block; margin-top: 10px; }

/* Sidebar */
.widget { margin-bottom: 40px; }
.widget-title { background: #A31F24;; color: #fff; padding: 10px 15px; font-size: 16px; margin-bottom: 15px; }

.category-list { list-style: none; padding: 0; }
.category-list li { border-bottom: 1px solid #eee; }
.category-list a { display: block; padding: 10px 0; color: #333; text-decoration: none; font-size: 14px; }
.category-list a:hover { background: #f9f9f9; }

.search-box { display: flex; border: 1px solid #ddd; }
.search-box input { flex: 1; border: none; padding: 10px; outline: none; }
.search-box button { background: #A31F24;; color: #fff; border: none; padding: 0 15px; cursor: pointer; }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 10px; margin-top: 50px; }
.page-numbers { display: inline-block; padding: 8px 15px; border: 1px solid #A31F24;; color: #A31F24;; text-decoration: none; }
.page-numbers.current { background: #A31F24;; color: #fff; }

/* Responsive */
@media (max-width: 991px) {
    .blog-layout { flex-direction: column; }
    .sidebar { width: 100%; }
}

/* Style cho danh sách bài viết phổ biến trong Sidebar */
.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popular-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.popular-thumb {
    position: relative;
    width: 100px;
    flex-shrink: 0;
}

.popular-thumb img {
    width: 100%;
    height: 60px;
    object-fit: cover;
}

/* Hiệu ứng số thứ tự 1, 2, 3 đè lên ảnh */
.rank {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(163, 31, 36, 0.8); /* Màu đỏ đô trùng màu chủ đạo */
    color: #fff;
    font-size: 11px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.popular-item p {
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Giới hạn 2 dòng tiêu đề */
    -webkit-box-orient: vertical;
    overflow: hidden;
}



/* ==========================================
   BLOG POST GRID - RE-STYLING (BTheme)
   ========================================== */

/* 1. Đảm bảo Grid chia cột chuẩn */
.post-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
    align-items: start;
}

/* 2. Thẻ bài viết */
.post-item a {
    text-decoration: none;
    display: block;
}

/* 3. Ảnh bài viết - FULL WIDTH & FIXED RATIO */
.post-thumb {
    position: relative;
    width: 100%; /* Ép ảnh luôn full 100% chiều ngang của cột */
    aspect-ratio: 16/9; /* Tỉ lệ vàng cho ảnh thumbnail blog */
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 15px;
}

.post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Đảm bảo ảnh không bị méo */
    transition: transform 0.5s ease;
}

/* 4. Nhãn danh mục - GÓC PHẢI & NGẮN GỌN */
.post-category {
    position: absolute;
    top: 10px;
    right: 10px; /* Chuyển hẳn sang góc phải */
    left: auto;
    background: rgba(139, 26, 26, 0.9); /* Màu đỏ đô BTheme có chút trong suốt cho sang */
    color: #fff;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 2px;
    z-index: 2;
    pointer-events: none; /* Không cản trở việc click vào ảnh */
}

/* 5. Nội dung text bên dưới */
.post-info h2 {
    font-size: 18px;
    line-height: 1.4;
    color: #222;
    margin-bottom: 10px;
    font-weight: 700;
    /* Giới hạn tiêu đề 2 dòng để grid đều */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
    /* Giới hạn mô tả 2 dòng */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-info time {
    font-size: 12px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* 6. Sidebar Popular Posts (Sửa lỗi hình ảnh sidebar nhỏ bị lệch) */
.popular-item a {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 12px;
    align-items: center;
    margin-bottom: 15px;
}

.popular-thumb {
    width: 80px;
    height: 55px;
    border-radius: 3px;
    overflow: hidden;
}

/* Responsive */
@media (max-width: 768px) {
    .post-grid {
        grid-template-columns: 1fr; /* Mobile về 1 cột */
    }
}
/* =====================================================
   SINGLE POST PAGE - BTHEME (LE PHUONG)
   Layout: Content 70% | Sidebar 30%
===================================================== */

/* 1. Layout tổng thể */
.single-post-page {
    margin-top: var(--header-height);
    padding: 0px 0px 80px 0px;
    background-color: #fff;
}

/* Breadcrumb mỏng */
.breadcrumb-wrapper {
    background: #f8f8f8;
    padding: 8px 0;
    margin-bottom: 50px;
    border-bottom: 1px solid #eee;
}

.breadcrumb {
    font-size: 14px;
    color: #333333;
}
.breadcrumb span{
    color: #0f5535;
}
.breadcrumb a { color: #2b2c32; transition: 0.3s; }
.breadcrumb a:hover { color: var(--primary-red); }

/* Bố cục 2 cột: 70% - 30% */
.blog-layout {
    display: flex;
    gap: 50px;
    margin-top: 20px;
    align-items: flex-start;
}

.blog-content {
    flex: 0 0 70%; /* Cố định 70% */
    min-width: 0;
}

.sidebar {
    flex: 1; /* Tự chiếm 30% còn lại */
}

/* 2. Tiêu đề & Meta bài viết */
.post-header {
    margin-bottom: 30px;
}

.lp-cat-tag {
    background: var(--primary-red);
    color: #fff;
    font-size: 11px;
    padding: 4px 12px;
    font-weight: bold;
    display: inline-block;
    border-radius: 2px;
}

.post-full-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    color: #111;
    margin: 15px 0;
}

/* 3. Nội dung bài viết chi tiết */
.single-post-content {
    font-size: 16px;
    line-height: 1.9;
    color: #333;
}

.single-post-content p {
    margin-bottom: 25px;
}

.single-post-content .lp-h2,
.single-post-content h2 {
    font-size: 22px;
    padding: 15px 20px;
    background: #f9f9f9;
    border-left: 5px solid var(--primary-red);
    margin: 45px 0 25px;
    color: #111;
    font-weight: 700;
}

.lp-quote {
    background: #fdfdfd;
    padding: 25px;
    margin: 35px 0;
    border: 1px dashed #ccc;
    font-style: italic;
    color: #555;
}

/* 4. Social Share (Màu chuẩn Logo) */
.lp-social-share {
    margin: 50px 0 30px;
    text-align: center;
}

.share-label {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
}

.share-buttons {
    display: flex;
    justify-content: center;
    border-radius: 4px;
    overflow: hidden;
}

.share-btn {
    flex: 1;
    max-width: 80px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
}

.share-btn.facebook { background-color: #3b5998; }
/* Ép hiển thị icon X */
.share-btn.x-twitter i {
    font-family: "Font Awesome 6 Brands" !important;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

.share-btn.x-twitter {
    background-color: #000000 !important; /* Đảm bảo luôn là màu đen */
}
.share-btn.hatebu { background-color: #00a4de; font-weight: bold; font-size: 15px; }
.share-btn.pocket { background-color: #ee4056; }
.share-btn.copy { background-color: #777777; }
.share-btn.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    border-left: 1px solid rgba(255,255,255,0.2);
}

.share-btn:hover {
    opacity: 0.8;
    filter: brightness(1.1);
}

/* ==========================================
   5. Post Navigation (QUAY LẠI / TIẾP THEO)
   ========================================== */
.post-navigation {
    margin: 50px 0;
    padding: 30px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee; /* Kẻ thêm đường dưới cho giống BTheme */
}

.nav-links {
    display: flex;
    justify-content: space-between; /* Đẩy 2 mục về 2 phía */
    gap: 20px;
}

.nav-item {
    flex: 1; /* Chia đều 50% cho mỗi bên */
    display: flex;
    align-items: center;
    text-decoration: none;
    max-width: 50%;
    transition: 0.3s;
}

/* Hiệu ứng khi di chuột vào cả cụm */
.nav-item:hover .nav-title {
    color: var(--primary-red);
}

.nav-box {
    background: #777777; /* Xám */
    color: #ffffff;
    padding: 10px;
    min-width: 85px;
    height: 65px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 11px;
    font-weight: bold;
    line-height: 1.3;
    flex-shrink: 0;
    border-radius: 2px;
}

.nav-box i {
    font-size: 10px;
    margin: 2px 0;
}

.nav-text {
    padding: 0 15px;
    overflow: hidden;
}

.nav-title {
    font-size: 13px;
    color: #333;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
    /* Giới hạn tiêu đề trong 2 dòng */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Tùy chỉnh riêng cho bên phải (TIẾP THEO) */
.nav-next {
    text-align: right;
    justify-content: flex-end;
}

/* Responsive cho điện thoại */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column; /* Chồng lên nhau trên mobile */
        gap: 20px;
    }
    .nav-item {
        max-width: 100%;
    }
    .nav-next {
        flex-direction: row; /* Giữ box TIẾP THEO bên phải tiêu đề trên mobile */
    }
}



/* 6. Related Posts (3 cột) */
.related-posts {
    margin-top: 60px;
}

.related-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 25px;
    border-left: 4px solid var(--primary-red);
    padding-left: 15px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-thumb {
    position: relative;
    height: 140px;
    overflow: hidden;
    border-radius: 4px;
}

.related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.related-item:hover img { transform: scale(1.1); }

.related-cat {
    position: absolute;
    top: 0; left: 0;
    background: var(--primary-red);
    color: #fff;
    font-size: 10px;
    padding: 3px 8px;
    font-weight: bold;
    z-index: 2;
}

.related-info h4 {
    font-size: 14px;
    margin: 12px 0 5px;
    line-height: 1.5;
    color: #222;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

time {
    FONT-SIZE: 13px;
}
/* Responsive cho Mobile */
@media (max-width: 991px) {
    .blog-layout { flex-direction: column; }
    .blog-content { flex: 0 0 100%; }
    .post-full-title { font-size: 26px; }
    .related-grid { grid-template-columns: 1fr; }
}



/* =====================================================
   CHI TIẾT MÓN ĂN - SECTION 1 (BTheme Optimized)
   ===================================================== */

.dish-detail-intro {
    padding: 10px 0;
    background: #fff;
}

/* Tiêu đề chính căn giữa - Sang trọng */
.dish-main-title {
    width: 100%;
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 50px;
    letter-spacing: 2px;
    color: #111;
    text-transform: uppercase;
    position: relative;
}

/* Layout 2 cột */
.dish-detail-intro .container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

/* Cột bên trái: Hình ảnh (Chiếm 40% trên Desktop) */
.dish-hero-column {
    flex: 0 0 calc(40% - 20px);
    min-width: 320px;
}

/* Cột bên phải: Thông tin (Chiếm 60% trên Desktop) */
.dish-info-column {
    flex: 1;
    min-width: 320px;
    display: flex;
    flex-direction: column;
}

/* Style Hình ảnh & Badge ID */
.dish-main-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.dish-main-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dish-main-image:hover img {
    transform: scale(1.05);
}

.dish-id-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #A31F24;
    color: #fff;
    padding: 6px 15px;
    font-weight: 700;
    font-size: 16px;
    border-radius: 4px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(163, 31, 36, 0.3);
}

/* Thông tin chi tiết */
.info-group {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f5f5f5;
}

.info-group:last-of-type {
    border-bottom: none;
}

.info-group h3 {
    font-size: 15px;
    color: #1D5D3B; /* Xanh thương hiệu */
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-group p {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    margin: 0;
}

/* Giá tiền - Nổi bật */
.dish-price-tag {
    margin-top: auto;
    padding: 20px;
    background: #fcfcfc;
    border-left: 4px solid #A31F24;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price-label {
    font-size: 14px;
    color: #888;
    font-weight: 600;
}

.price-value {
    font-size: 32px;
    font-weight: 800;
    color: #A31F24;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 991px) {
    .dish-hero-column,
    .dish-info-column {
        flex: 0 0 100%;
    }
    .dish-main-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    .dish-detail-intro {
        padding: 40px 0;
    }
}

/* ============================================================
   5. PHẦN SETTO & TAKEOUT (FIXED MOBILE)
   ============================================================ */
.dish-setto-section {
    width: 100%;
    margin-top: 50px;
}

.setto-title {
    font-size: 24px;
    font-weight: bold;
    text-align: left;
    color: #333;
    border-bottom: 2px solid #A31F24;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

.setto-grid {
    display: flex;
    padding-bottom: 30px;
    gap: 25px;
    width: 100%;
    align-items: stretch;
    flex-wrap: wrap; /* Tự động xuống hàng trên mobile */
}

.setto-table-wrapper {
    flex: 1;
    min-width: 300px;
    max-width: 100%;
    overflow-x: auto;
}

.setto-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    /* Không dùng table-layout: fixed nữa để các cột tự co giãn theo nội dung */
}

.set-content {
    width: 100%; /* Ép cột chữ lấy tối đa không gian có thể */
    text-align: left;
}

.set-content span{
    color: #a31f24;
}

.setto-table td {
    border: 1px solid #eee;
    padding: 12px 10px;
    vertical-align: middle;
}

.set-no {
    background: #1D5D3B;
    color: #fff;
    Padding: 0 15px;
    text-align: center;
    font-weight: bold;
    border-bottom: 1px solid #999;
}

.set-images {
    width: 1%; /* Mẹo: Để 1% nhưng có nội dung bên trong, nó sẽ tự nở ra vừa đủ chứa ảnh */
    white-space: nowrap; /* Giữ các ảnh luôn nằm trên một đường thẳng */
    text-align: right;
    padding-left: 20px; /* Tạo khoảng cách an toàn với cột chữ */
}

.img-group {
    display: flex;
    gap: 5px;
    justify-content: flex-end;
    min-width: max-content; /* Luôn nở rộng theo tổng chiều ngang của các ảnh */
}

.img-group img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}

/* Box Takeout tổng thể */
.takeout-status-box {
    background: #1D5D3B;
    color: #fff;
    padding: 25px 15px;
    text-align: center;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

/* Icon đã được khống chế kích thước */
.takeout-icon img {
    width: 100px !important; /* Ép kích thước nhỏ xuống */
    height: auto;
    margin-bottom: 5px;
    opacity: 0.9;
    padding-top: 20px;
}

/* Khung bao quanh dòng chữ Nhật/Anh */
.status-badge-wrapper {
    margin-bottom: 5px;
}

.status-jp {
    font-size: 13px;
    font-weight: bold;
    color: #ffca00; /* Màu vàng nổi bật */
    border: 1.5px solid #ffca00; /* Khung vàng bao quanh */
    padding: 4px 12px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Dòng chữ tiếng Việt bên dưới */
.status-vi {
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Media Query cho Mobile */
@media (max-width: 768px) {
    .setto-grid {
        gap: 15px; /* Giảm khoảng cách giữa table và box trên mobile */
    }

    .setto-table-wrapper,
    .takeout-status-box {
        flex: 0 0 100%; /* Ép cả 2 phần tử chiếm full 100% chiều ngang */
        max-width: 100%;
        width: 100%;
    }

    .takeout-status-box {
        margin-top: 10px; /* Tạo khoảng cách nhẹ với bảng phía trên */
    }
}

/* ============================================================
   SECTION: GIỚI THIỆU MÓN ĂN (CULTURE INTRO)
   ============================================================ */
.food-culture-intro {
    padding: 40px 15px;
    background-color: #fff;
}

.culture-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.culture-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 60px; height: 3px;
    background: #A31F24;
}

.content-collapsed {
    max-height: 0;
    overflow: hidden;
    /* Chuyển transition sang chỉ focus vào max-height và opacity để mượt hơn */
    transition: max-height 0.5s ease-in-out, opacity 0.4s ease, visibility 0.4s;
    opacity: 0;
    visibility: hidden;
}

.content-collapsed.is-expanded {
    /* Thay vì 2500px, dùng 1000px là đủ cho các bài giới thiệu văn hóa */
    max-height: 1000px !important;
    opacity: 1 !important;
    visibility: visible !important;
    margin-top: 20px;
    /* Đảm bảo nội dung không bị cắt khi bung ra */
    overflow: visible;
}

/* --- DESIGN NÚT XEM THÊM CHUẨN --- */
.btn-readmore {
    background-color: transparent;
    border: 1px solid #A31F24;
    color: #A31F24;
    padding: 10px 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-readmore:hover {
    background-color: #A31F24;
    color: #fff;
}

.btn-readmore i {
    transition: transform 0.4s ease;
}

.btn-readmore.active i {
    transform: rotate(180deg);
}


/* Container bọc ngoài nút */
.readmore-btn-container {
    display: flex;
    justify-content: center; /* Căn giữa theo chiều ngang */
    align-items: center;     /* Căn giữa theo chiều dọc nếu có chiều cao */
    width: 100%;             /* Đảm bảo chiếm hết chiều ngang để nút nằm chính giữa trang */
    margin: 40px 0;          /* Tạo khoảng cách trên dưới cho thoáng món ăn */
}

/* Tinh chỉnh lại nút để design luôn đẹp */
.btn-readmore {
    display: inline-flex;    /* Giúp chữ và icon nằm thẳng hàng */
    align-items: center;
    justify-content: center;
    gap: 12px;               /* Khoảng cách giữa chữ và icon */
    min-width: 220px;        /* Độ dài tối thiểu để nút trông sang trọng */
    height: 48px;            /* Chiều cao tiêu chuẩn cho nút bấm */
}

/* Hiệu ứng xoay icon khi click (Đã đồng bộ với JS của bạn) */
.btn-readmore.active i {
    transform: rotate(180deg);
}


@media (min-width: 992px) {
    .setto-table-wrapper { flex: 0 0 calc(100% - 350px); }
    .takeout-status-box { flex: 0 0 320px; }
}
}


/* ============================================
   FLOATING ACTION BUTTONS (FAB) - FIXED VERSION
   Đã sửa lỗi menu tràn màn hình trên mobile
   ============================================ */

/* Backdrop overlay - giúp đóng menu dễ hơn trên mobile */
.fab-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9998;
    backdrop-filter: blur(2px);
}

.fab-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Container chính */
.fab-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 12px;
    max-height: calc(100vh - 100px); /* Giới hạn chiều cao */
}

/* Nút toggle chính (nút +) */
.fab-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #A31F24 0%, #d32f2f 100%);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(163, 31, 36, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.fab-toggle i {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Khi menu mở */
.fab-container.active .fab-toggle {
    background: linear-gradient(135deg, #333 0%, #555 100%);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.fab-container.active .fab-toggle i {
    transform: rotate(45deg);
}

/* Hover effect cho nút toggle */
.fab-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(163, 31, 36, 0.5);
}

.fab-container.active .fab-toggle:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* Container các nút hành động */
.fab-actions {
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: calc(100vh - 180px); /* Giới hạn chiều cao menu */
    overflow-y: auto; /* Scroll nếu quá dài */
    padding: 5px 0;
}

/* Custom scrollbar cho menu */
.fab-actions::-webkit-scrollbar {
    width: 4px;
}

.fab-actions::-webkit-scrollbar-track {
    background: transparent;
}

.fab-actions::-webkit-scrollbar-thumb {
    background: rgba(163, 31, 36, 0.3);
    border-radius: 2px;
}

.fab-container.active .fab-actions {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mỗi nút hành động */
.fab-action {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px 12px 16px;
    background: white;
    border-radius: 28px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    transform: scale(0.8);
    opacity: 0;
    flex-shrink: 0; /* Không co lại */
}

/* Animation cascade khi mở */
.fab-container.active .fab-action {
    animation: fabSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.fab-container.active .fab-action:nth-child(1) { animation-delay: 0.05s; }
.fab-container.active .fab-action:nth-child(2) { animation-delay: 0.1s; }
.fab-container.active .fab-action:nth-child(3) { animation-delay: 0.15s; }
.fab-container.active .fab-action:nth-child(4) { animation-delay: 0.2s; }

@keyframes fabSlideIn {
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Icon trong mỗi nút */
.fab-action i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

/* Màu sắc riêng cho từng nút */
.fab-action:nth-child(1) i { background: #00713d; } /* Gọi điện - xanh lá */
.fab-action:nth-child(2) i { background: #5b7297; } /* Chỉ đường - xanh dương */
.fab-action:nth-child(3) i { background: #A31F24; } /* Đặt bàn - đỏ */
.fab-action:nth-child(4) i { background: #ff890b; }    /* Lên đầu - xám */

/* Label text */
.fab-label {
    margin-right: 4px;
    font-size: 14px;
    font-weight: 600;
}

/* Hover effect */
.fab-action:hover {
    transform: translateX(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.fab-action:hover i {
    transform: scale(1.1);
}

/* Active effect */
.fab-action:active {
    transform: translateX(-5px) scale(0.95);
}

/* Ẩn nút scroll top khi chưa scroll xuống */
.fab-scroll-top {
    display: none;
}

.fab-scroll-top.visible {
    display: flex;
}

/* ============================================
   RESPONSIVE - MOBILE (ĐÃ SỬA LỖI)
   ============================================ */

@media (max-width: 768px) {
    .fab-container {
        bottom: 15px;
        right: 15px;
        max-height: calc(100vh - 80px); /* Tăng không gian trên mobile */
    }

    /* Giảm kích thước nút toggle trên mobile */
    .fab-toggle {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    /* Compact mode cho mobile - chỉ hiện icon */
    .fab-action {
        padding: 0;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        justify-content: center;
        gap: 0;
        min-width: 50px; /* Đảm bảo không bị co lại */
    }

    .fab-label {
        display: none; /* Ẩn text trên mobile */
    }

    .fab-action i {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin: 0;
    }

    /* Giảm gap giữa các nút trên mobile */
    .fab-actions {
        gap: 8px;
        max-height: calc(100vh - 140px);
        padding: 3px 0;
    }

    /* Tooltip thay cho label */
    .fab-action::before {
        content: attr(data-tooltip);
        position: absolute;
        right: calc(100% + 12px); /* Dịch sang trái */
        top: 50%;
        transform: translateY(-50%);
        padding: 6px 12px;
        background: rgba(0, 0, 0, 0.85);
        color: white;
        border-radius: 6px;
        font-size: 13px;
        white-space: nowrap;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        pointer-events: none;
        z-index: 10;
    }

    /* Mũi tên tooltip */
    .fab-action::after {
        content: '';
        position: absolute;
        right: calc(100% + 6px);
        top: 50%;
        transform: translateY(-50%);
        border: 5px solid transparent;
        border-left-color: rgba(0, 0, 0, 0.85);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 10;
    }

    .fab-action:hover::before,
    .fab-action:hover::after {
        opacity: 1;
        visibility: visible;
    }

    /* Đảm bảo menu không tràn */
    .fab-container.active .fab-actions {
        display: flex;
        flex-direction: column-reverse;
    }
}

/* Tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .fab-container {
        bottom: 20px;
        right: 20px;
    }

    .fab-toggle {
        width: 54px;
        height: 54px;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

/* Focus states */
.fab-toggle:focus,
.fab-action:focus {
    outline: 3px solid rgba(163, 31, 36, 0.5);
    outline-offset: 2px;
}

.fab-toggle:focus:not(:focus-visible),
.fab-action:focus:not(:focus-visible) {
    outline: none;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .fab-toggle,
    .fab-toggle i,
    .fab-actions,
    .fab-action,
    .fab-action i {
        transition: none;
        animation: none;
    }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    .fab-action {
        background: #2c2c2c;
        color: #ffffff;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    }

    .fab-action:hover {
        background: #3c3c3c;
    }
}

/* ============================================
   ANIMATION KHI SCROLL (ẨN/HIỆN)
   ============================================ */

.fab-container.hidden {
    transform: translateY(150px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}

/* Print - ẩn hoàn toàn khi in */
@media print {
    .fab-container {
        display: none !important;
    }
}

/* ============================================
   FIX ĐẶC BIỆT CHO MOBILE NHỎ
   ============================================ */

@media (max-width: 480px) {
    .fab-container {
        bottom: 12px;
        right: 12px;
    }

    .fab-toggle {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .fab-action {
        width: 48px;
        height: 48px;
    }

    .fab-action i {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .fab-actions {
        gap: 6px;
    }
}

/* ============================================
   FIX CHO LANDSCAPE MODE TRÊN MOBILE
   ============================================ */

@media (max-width: 768px) and (orientation: landscape) {
    .fab-container {
        max-height: calc(100vh - 60px);
        bottom: 10px;
        right: 10px;
    }

    .fab-actions {
        max-height: calc(100vh - 100px);
        gap: 6px;
    }

    .fab-toggle,
    .fab-action {
        width: 44px;
        height: 44px;
    }

    .fab-action i {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
}
