@import url(animate.min.css);
@import url(normalize.css);
@import url(icomoon.css);
@import url(css/font-awesome.min.css);
@import url(meanmenu.css);
@import url(owl.carousel.min.css);
@import url(swiper.min.css);
@import url(slick.css);
@import url(jquery.fancybox.min.css);
@import url(jquery-ui.css);
@import url(nice-select.css);
/*=====================================================================
FILE: style.css - TASCUS FOOD WEBSITE
- Fonts → Imports → Global → Sections
- Đã loại bỏ code trùng lặp
- Sử dụng CSS Variables cho màu sắc
=====================================================================*/

/* ===================================================================
1. CSS VARIABLES (TIỆN LỢI & DỄ BẢO TRỒNG)
=================================================================== */

:root {
  --color-primary: #f9b116;
  --color-primary-dark: #efa425;
  --color-accent: #962b2d;
  --color-accent-dark: #8B0000;
  --color-dark: #232222;
  --color-text: #666666;
  --color-light: #f8f8f8;
  --color-white: #ffffff;
  --color-bg: #fffbf0;
  --color-border: #eee;
  
  --font-heading: 'FontCuaToi', sans-serif;
  --font-body: 'Be Vietnam', sans-serif;
  
  --radius-default: 5px;
  --radius-medium: 12px;
  --radius-large: 25px;
  
  --transition-fast: 0.3s ease;
  --transition-normal: 0.5s ease;
  --box-shadow-light: 0 4px 10px rgba(0, 0, 0, 0.1);
  --box-shadow-medium: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* ===================================================================
2. IMPORT FONTS & FILES
=================================================================== */

/* =======================================================
   LOCAL FONT IMPORT: BE VIETNAM PRO
   Path: /fonts/
   ======================================================= */


/* 1. Thin (Mỏng nhất) - Weight 100 */
@font-face {
    font-family: 'Be Vietnam';
    font-style: normal;
    font-weight: 100;
    font-display: swap;
    src: url('/fonts/BeVietnamPro-Thin.woff2') format('woff2'),
         url('/fonts/BeVietnamPro-Thin.woff') format('woff');
}

/* 2. Regular (Thường) - Weight 400 */
@font-face {
    font-family: 'Be Vietnam';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/fonts/BeVietnamPro-Regular.woff2') format('woff2'),
         url('/fonts/BeVietnamPro-Regular.woff') format('woff');
}

/* 3. Medium (Vừa) - Weight 500 */
@font-face {
    font-family: 'Be Vietnam';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('/fonts/BeVietnamPro-Medium.woff2') format('woff2'),
         url('/fonts/BeVietnamPro-Medium.woff') format('woff');
}

/* 4. SemiBold (Hơi đậm) - Weight 600 */
@font-face {
    font-family: 'Be Vietnam';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/fonts/BeVietnamPro-SemiBold.woff2') format('woff2'),
         url('/fonts/BeVietnamPro-SemiBold.woff') format('woff');
}

/* 5. Bold (Đậm) - Weight 700 */
@font-face {
    font-family: 'Be Vietnam';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/fonts/BeVietnamPro-Bold.woff2') format('woff2'),
         url('/fonts/BeVietnamPro-Bold.woff') format('woff');
}

/* 6. ExtraBold (Rất đậm) - Weight 800 */
@font-face {
    font-family: 'Be Vietnam';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('/fonts/BeVietnamPro-ExtraBold.woff2') format('woff2'),
         url('/fonts/BeVietnamPro-ExtraBold.woff') format('woff');
}

/* 7. Black (Siêu đậm) - Weight 900 */
@font-face {
    font-family: 'Be Vietnam';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('/fonts/BeVietnamPro-Black.woff2') format('woff2'),
         url('/fonts/BeVietnamPro-Black.woff') format('woff');
}

@font-face {
    font-family: 'Be Vietnam';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('/fonts/BeVietnamPro-Black.woff2') format('woff2'),
         url('/fonts/BeVietnamPro-Black.woff') format('woff');
}
@font-face {
  font-family: 'FontCuaToi';
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/KenyanCoffeeRg-Bold.woff2') format('woff2'), /* Ưu tiên 1: Nhẹ nhất */
       url('../fonts/KenyanCoffeeRg-Bold.woff') format('woff');   /* Ưu tiên 2: Hỗ trợ rộng */
  
}


/* ===================================================================
3. GLOBAL STYLES
=================================================================== */

* {
  box-sizing: border-box !important;
  transition: ease all var(--transition-normal);
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--color-text);
  font-size: 14px;
  line-height: 1.80857;
  font-weight: normal;
  overflow-x: hidden;
  font-family: var(--font-body);
  background-color: var(--color-bg);
  margin: 0;
  padding: 0;
}

a {
  color: #1f1f1f;
  text-decoration: none !important;
  outline: none !important;
  transition: all var(--transition-fast);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: 0;
  font-weight: normal;
  position: relative;
  padding: 0 0 10px 0;
  line-height: normal;
  color: var(--color-dark);
  margin: 0;
}

h1 { font-size: 32px; }
h2 { font-size: 22px; }
h3 { font-size: 18px; }
h4 { font-size: 16px; }
h5 { font-size: 14px; }
h6 { font-size: 13px; }

ul, li, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 20px;
  font-weight: 300;
  font-size: 15px;
  line-height: 24px;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  border: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

button:focus {
  outline: none;
}

.full {
  float: left;
  width: 100%;
}

.layout_padding {
  padding-top: 30px;
  padding-bottom: 29px;
}

.padding_0 {
  padding: 0;
}

/* ===================================================================
4. HEADER SECTION
=================================================================== */

.header_section {
  width: 100%;
  float: left;
  background-color: #fca930;
  height: auto;
}

.bg-light {
  background-color: transparent !important;
}

.navbar {
  padding: 10px 0;
}

.navbar-brand {
  width: auto;
  padding: 5px 0;
  transition: all var(--transition-fast);
}

.navbar-brand img {
  max-height: 50px;
  width: auto;
  transition: max-height var(--transition-fast);
}

.ml-auto, .mx-auto {
  margin: 0 auto !important;
}

.navbar-expand-lg .navbar-nav .nav-link {
  font-family: var(--font-heading);
  padding: 3px 20px;
  font-size: 25px;
  color: #fefefd;
  border-radius: var(--radius-default);
  text-transform: uppercase;
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--color-accent);
}

.btn-tu-van {
  font-family: var(--font-heading);
  background-color: var(--color-accent-dark);
  color: var(--color-white);
  border-radius: var(--radius-large);
  padding: 8px 20px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 22px;
  margin-left: 20px;
  transition: all var(--transition-fast);
}

.btn-tu-van:hover {
  background-color: var(--color-white);
  color: var(--color-accent-dark);
}

/* ===================================================================
5. BANNER SLIDER
=================================================================== */

#tascus-banner-widget.tascus-fullbleed {
  position: relative;
  width: 100%;
  background: transparent;
  overflow: hidden;
}

#tascus-banner-widget .tascus-inner {
  width: 100%;
  display: block;
  position: relative;
}

#tascus-banner-widget .tascus-slide {
  display: none;
  width: 100%;
  position: relative;
}

#tascus-banner-widget .tascus-slide.tascus-active {
  display: block;
  width: 100%;
}

#tascus-banner-widget .tascus-slide picture {
  display: block;
  width: 100%;
}

#tascus-banner-widget .tascus-img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}

/* Banner Arrows & Dots */
#tascus-banner-widget .tascus-arrow,
#tascus-banner-widget .tascus-dot {
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: all var(--transition-fast);
}

#tascus-banner-widget .tascus-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 60;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: var(--box-shadow-medium);
}

#tascus-banner-widget .tascus-arrow:hover {
  background: rgba(249, 177, 22, 0.95);
  border-color: rgba(249, 177, 22, 0.9);
  transform: translateY(-50%) scale(1.1);
}

#tascus-banner-widget .tascus-prev { left: 12px; }
#tascus-banner-widget .tascus-next { right: 12px; }

/* Banner Dots */
#tascus-banner-widget .tascus-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  z-index: 70;
  display: flex;
  gap: 10px;
}

#tascus-banner-widget .tascus-dot {
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, 0.85);
}

#tascus-banner-widget .tascus-dot:hover {
  background: rgba(249, 177, 22, 0.7);
  transform: scale(1.2);
}

#tascus-banner-widget .tascus-dot.tascus-active {
  background: #ff9f1c;
  border-color: #ff9f1c;
  transform: scale(1.3);
}

/* ===================================================================
6. GALLERY SECTION
=================================================================== */

.gallery-container {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  margin: 0;
  padding: 0;
}

.gallery-item {
  flex: 1 1 33.3333%;
  min-width: 0;
  margin: 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .gallery-container {
    flex-direction: column;
  }

  .gallery-item {
    flex-basis: 100%;
    width: 100%;
  }
}

/* ===================================================================
7. ABOUT SECTION
=================================================================== */

.about_section {
  width: 100%;
  float: left;
  clear: both;
}

.about_taital {
  width: 100%;
  float: left;
  font-size: 45px;
  color: var(--color-dark);
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  font-family: var(--font-heading) !important;
  position: relative;
  margin-top: 24px;
  margin-bottom: 18px;
  padding-bottom: 15px;
}

.about_taital span {
  font-family: var(--font-heading) !important;
}

.about_taital::after {
  display: none;
}

.about_section_2 {
  width: 100%;
  float: left;
  height: auto;
  padding-bottom: 0;
}

h1.about_taital + .layout_padding,
h1.about_taital + .about_section_2,
h1.about_taital + .pricing-container,
h1.about_taital + .content-wrapper,
h1.about_taital + p {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.about_taital_main {
  width: 100%;
  float: left;
}

.slightly_text {
  width: 100%;
  float: left;
  font-size: 30px;
  color: var(--color-dark);
  font-weight: bold;
  margin-top: 25px;
}

.lorem_text {
  width: 100%;
  float: left;
  font-size: 19px;
  font-weight: 300;
  color: var(--color-dark);
  margin: 30px 0;
  text-align: justify;
  text-align-last: left;
}

.readmore_btn {
  width: 170px;
  float: left;
  padding-top: 30px;
}

.readmore_btn a {
  font-family: var(--font-heading);
  width: 100%;
  float: left;
  font-size: 22px;
  color: #fcfcfd;
  background-color: var(--color-primary);
  text-align: center;
  padding: 12px 0;
  border-radius: var(--radius-default);
  font-weight: bold;
  transition: all var(--transition-fast);
}

.readmore_btn a:hover {
  color: var(--color-white);
  background-color: var(--color-accent);
}

.about_img img {
  width: 100%;
  float: left;
}

:root {
            --primary-color: #962b2d;
            --accent-color: #f9b116;
            --text-color: #333;
            --body-font: 'Be Vietnam Pro', sans-serif;
            --heading-font: 'FontCuaToi', sans-serif; 
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: var(--body-font);
            line-height: 1.2;
            color: var(--text-color);
            font-size: 18px;
        }

        .pricing-section {
            padding: 60px 20px;
            background-color: #fff4dc;
            display: flex;
            justify-content: center;
        }

        .pricing-wrapper {
            display: flex;
            flex-wrap: wrap; 
            max-width: 1150px;
            width: 100%;
            background: #fff;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            border-radius: 25px;
            overflow: hidden; 
        }

        /* --- Cột bên trái: Nội dung Text --- */
        .content-side {
            flex: 1; 
            min-width: 0; /* Quan trọng để flex-item co giãn được */
            padding: 50px 40px; 
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .model-tag {
            background-color: var(--primary-color);
            color: #fff;
            padding: 6px 16px;
            text-transform: uppercase;
            font-weight: 700;
            font-size: 16px;
            display: inline-block;
            border-radius: 4px;
            margin-bottom: 15px;
            width: fit-content;
        }

        /* --- XỬ LÝ TIÊU ĐỀ KHÔNG BỊ CẮT --- */
        h2.title {
            font-family: var(--heading-font);
            color: var(--primary-color);
            margin-bottom: 5px;
            text-transform: uppercase;
            line-height: 0.9;
            letter-spacing: 0.5px;
            white-space: nowrap; /* Giữ 1 dòng nếu muốn, hoặc bỏ dòng này để tự xuống dòng */
            
            /* CÔNG THỨC QUAN TRỌNG: 
               Dùng 3.2rem làm chuẩn. 
               Nếu màn hình nhỏ, dùng 9% chiều rộng màn hình (9vw).
               Hàm min sẽ chọn cái nào NHỎ HƠN => Không bao giờ bị tràn.
            */
            font-size: min(3.2rem, 9vw); 
        }

        .subtitle {
            font-style: bold;
            color: #666;
            margin-bottom: 30px;
            margin-left: 0px;
            font-weight: 800;
            font-size: 20px;
        }

        .price-box {
            margin-bottom: 35px;
            border-bottom: 2px dashed #e0e0e0;
            padding-bottom: 25px;
            width: 100%; 
        }

        .price-label {
            font-size: 1.1rem;
            color: #555;
            font-weight: 600;
            display: block;
            margin-bottom: 5px;
        }

        /* --- XỬ LÝ GIÁ TIỀN KHÔNG BỊ KHUYẾT --- */
        .price-number {
            font-family: var(--heading-font);
            color: var(--accent-color);
            line-height: 1;
            display: block;
            white-space: nowrap; /* Bắt buộc 1 dòng */
            
            /* CÔNG THỨC QUAN TRỌNG:
               - Desktop: 3.8rem (khoảng 60px).
               - Mobile: 10vw (10% chiều rộng màn hình).
               => Khi màn hình 320px, font sẽ tự giảm xuống còn 32px để vừa khít.
            */
            font-size: min(3.8rem, 10vw);
        }

        .specs-list {
            list-style: none;
        }

        .specs-list li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .specs-list li .icon {
            color: var(--primary-color);
            font-size: 22px;
            margin-right: 18px;
            min-width: 25px;
            padding-top: 3px;
        }

        .specs-list li .text strong {
            color: var(--primary-color);
            display: block;
            font-weight: 700;
            margin-bottom: 4px;
            font-size: 1.05rem;
        }


        .cta-btn {
            margin-top: 30px;
            font-family: var(--font-heading);
            background-color: var(--primary-color);
            color: #fff;
            padding: 18px 36px;
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase;
            text-align: center;
            border-radius: 6px;
            transition: all 0.3s ease;
            font-size: 20px;
            display: inline-block;
            width: 100%;

        }

        .cta-btn:hover {
            background-color: #efa425;
            color: var(--primary-color);
        }

        /* --- Cột bên phải: Hình ảnh --- */
        .image-side {
            flex: 1; 
            min-width: 350px; 
            position: relative;
        }

        .image-side img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* --- RESPONSIVE --- */
        
        /* Breakpoint tại 1024px để chuyển layout sớm */
        @media (max-width: 1024px) {
            .pricing-wrapper {
                flex-direction: column-reverse; /* Ảnh trên, Chữ dưới */
            }

            .content-side {
                /* Giảm padding trên mobile để có nhiều đất cho chữ hơn */
                padding: 40px 20px; 
                width: 100%; 
            }
             
            
            .image-side {
                width: 100%;
                height: 350px; 
                max-height: 300px;
                min-width: unset;
            
            }
            
        }

        @media (max-width: 480px) {
            .image-side {
                height: 250px;
            }
            /* Ở màn hình rất nhỏ, ta cho phép font nhỏ hơn nữa nếu cần */
            h2.title {
                font-size: min(3.2rem, 11vw);
            }
            .price-number {
                /* 11vw có thể hơi to với màn hình bé xíu, giảm xuống 10vw để an toàn */
                font-size: min(3.8rem, 10vw);
            }
            .specs-list li .text {
            font-size: 16px;            
        }
         }
/* ===================================================================
9. NEWS CARD SECTION
=================================================================== */

.content-wrapper {
  margin: 0 auto;
  max-width: 1200px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  padding: 0.5rem;
  gap: 1rem;
  clear: both;
  padding-bottom: 90px;
}

.news-card {
  margin: 0;
  position: relative;
  width: calc(50% - 0.5rem);
  aspect-ratio: 4.5 / 5;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: var(--box-shadow-medium);
}

.news-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.7) 80%);
  z-index: 0;
}

.news-card__card-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.news-card__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 3s ease;
  position: relative;
  z-index: -1;
}

.news-card__text-wrapper {
  position: absolute;
  bottom: 0;
  padding: 1rem;
  color: var(--color-white);
  transition: background-color 1.5s ease;
}

.news-card__title {
  font-family: var(--font-heading);
  transition: color 1s ease;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.3;
}

.news-card__post-date {
  font-family: var(--font-body);
  font-size: 0.65rem;
  margin-bottom: 0.5rem;
  color: #CCC;
}

.news-card__details-wrapper {
  max-height: 0;
  opacity: 0;
  transition: max-height 1.5s ease, opacity 1s ease;
}

.news-card__excerpt {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.5;
}

.news-card__read-more {
  font-family: var(--font-body);
  background: black;
  color: #bbb;
  display: block;
  padding: 0.4rem 0.6rem;
  border-radius: 0.3rem;
  margin-top: 1rem;
  border: 1px solid #444;
  font-size: 0.75rem;
  text-decoration: none;
  width: 6rem;
  margin-left: auto;
  position: relative;
  z-index: 5;
  text-align: center;
}

.news-card__read-more i {
  position: relative;
  left: 0.2rem;
  color: #888;
  transition: left var(--transition-fast), color 0.6s ease;
}

.news-card__read-more:hover i {
  left: 0.5rem;
  color: var(--color-primary);
}

/* Responsive News Cards */
@media (max-width: 479px) {
  .news-card {
    width: calc(50% - 0.5rem);
  }
  .news-card__title {
    font-size: 1rem;
  }
  .news-card__text-wrapper {
    padding: 0.75rem;
  }
}

@media (min-width: 480px) and (max-width: 599px) {
  .news-card {
    width: calc(50% - 0.5rem);
  }
  .news-card__title {
    font-size: 1.1rem;
  }
}

@media (min-width: 600px) and (max-width: 899px) {
  .news-card {
    width: calc(33.333% - 0.67rem);
  }
  .news-card__title {
    font-size: 1.3rem;
  }
}

@media (min-width: 900px) {
  .news-card {
    width: calc(25% - 0.75rem);
  }
  .news-card__title {
    font-size: 1.4rem;
  }
  .news-card:hover .news-card__details-wrapper {
    max-height: 500px;
    opacity: 1;
  }
  .news-card:hover .news-card__text-wrapper {
    background-color: rgba(0, 0, 0, 0.6);
  }
  .news-card:hover .news-card__title {
    color: var(--color-primary);
  }
  .news-card:hover .news-card__image {
    transform: scale(1.2);
  }
}

/* ===================================================================
10. MARQUEE SECTION
=================================================================== */

.marquee-container-v2 {
  width: 100%;
  background-color: var(--color-primary);
  overflow: hidden;
  position: relative;
  padding: 15px 0;
  box-shadow: var(--box-shadow-light);
}

.marquee-track {
  display: flex;
  width: 200%;
  animation: scroll-left 15s linear infinite;
}

.marquee-item {
  flex: 0 0 50%;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: bold;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-container-v2:hover .marquee-track {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .marquee-item {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .marquee-item {
    font-size: 16px;
  }
  .marquee-container-v2 {
    padding: 8px 0;
  }
}

/* ===================================================================
11. CONTACT SECTION
=================================================================== */

.tascus-contact-section {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding: 90px 0 !important;
  position: relative;
  overflow: hidden;
  clear: both;
  min-height: 700px;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  isolation: isolate;
  box-sizing: border-box;
}

.tascus-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.tascus-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 56.25vw;
  min-width: 177.78vh;
  min-height: 100vh;
  pointer-events: none;
  border: none;
}

.tascus-contact-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}

.tascus-contact-info {
  color: var(--color-white);
  box-sizing: border-box;
}

.tascus-contact-h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1.2;
  color: var(--color-white);
  box-sizing: border-box;
}

.tascus-contact-p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  margin: -20px 0 30px 0;
  padding: 0;
  font-weight: 200;
  color: var(--color-white);
  box-sizing: border-box;
}

.tascus-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  box-sizing: border-box;
}

.tascus-info-icon {
  font-size: 1.5rem;
  margin-right: 15px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-sizing: border-box;
}

.tascus-info-icon i {
  color: var(--color-white);
}

.tascus-info-text {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.tascus-info-text strong {
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  margin: 0 0 5px 0;
  color: var(--color-primary);
  font-weight: bold;
  box-sizing: border-box;
}

.tascus-info-text span {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-white);
  box-sizing: border-box;
}

/* Form */
.tascus-form-container {
  background: rgba(255, 255, 255, 0.98);
  padding: 40px;
  border-radius: var(--radius-medium);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
  box-sizing: border-box;
}

.tascus-form-h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 0 25px 0;
  padding: 0;
  color: var(--color-accent);
  text-align: left;
  box-sizing: border-box;
}

.tascus-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
  box-sizing: border-box;
}

.tascus-input {
  width: 100%;
  padding: 12px 15px;
  background-color: #f8f8f8;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-default);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #333;
  outline: none;
  transition: all var(--transition-fast);
  box-sizing: border-box;
}

.tascus-input:focus {
  border-color: var(--color-primary);
  background-color: var(--color-white);
}

.tascus-input::placeholder {
  color: #999;
}

.tascus-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

.tascus-textarea {
  min-height: 120px;
  resize: vertical;
  margin-bottom: 15px;
}

.tascus-submit-btn {
  width: 100%;
  padding: 15px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-default);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color var(--transition-fast);
  box-sizing: border-box;
}

.tascus-submit-btn:hover {
  background-color: var(--color-primary-dark);
}

.tascus-form-status {
  display: none;
  margin-top: 15px;
  padding: 15px;
  border-radius: 0.5rem;
  text-align: center;
  font-family: var(--font-body);
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .tascus-video-wrapper {
    display: none !important;
  }

  .tascus-contact-section {
    padding: 60px 0 !important;
  }

  .tascus-contact-container {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }

  .tascus-form-grid {
    grid-template-columns: 1fr;
  }

  .tascus-contact-h2 {
    font-size: 2rem;
  }

  .tascus-form-container {
    padding: 30px 25px;
  }
}

/* ===================================================================
12. PROCESS SECTION
=================================================================== */

.tascus-process-section {
  width: 100%;
  float: left;
  padding: 90px 20px;
  background-color: var(--color-bg);
  clear: both;
}

.tascus-process-title {
  font-family: var(--font-heading);
  font-size: 50px;
  color: var(--color-accent);
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  margin: 0 0 20px 0;
  padding: 0;
}

.tascus-process-desc {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--color-dark);
  text-align: center;
  text-align-last: left;
  margin: 0 0 50px 0;
  line-height: 1.6;
}

.tascus-step-card {
  background-color: var(--color-white);
  padding: 40px 30px;
  border-radius: var(--radius-medium);
  text-align: center;
  height: 100%;
  transition: all var(--transition-fast);
  border: 2px solid transparent;
}

.tascus-step-card:hover {
  transform: translateY(-10px);
  border-color: var(--color-primary);
}

.tascus-arch-line {
  position: absolute;
  top: 30px;
  right: -75px;
  width: 150px;
  height: 50px;
  z-index: -1;
}

.tascus-arch-line.reverse {
  top: 35px;
}

@media (max-width: 991px) {
  .tascus-arch-line {
    display: none;
  }
}

.tascus-step-number {
  width: 70px;
  height: 70px;
  line-height: 70px;
  display: inline-block;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 25px;
}

.tascus-step-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--color-accent);
  margin: 0 0 15px 0;
  font-weight: bold;
}

.tascus-step-card p {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .tascus-process-section {
    padding: 60px 15px;
  }

  .tascus-process-title {
    font-size: 36px;
  }

  .tascus-process-desc {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .tascus-process-section .row .col-md-6 {
    margin-bottom: 30px;
  }

  .tascus-process-section .row .col-md-6:last-child {
    margin-bottom: 0;
  }

  .tascus-step-card {
    padding: 30px 20px;
  }

  .tascus-step-number {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 28px;
  }

  .tascus-step-card h3 {
    font-size: 20px;
  }
}

/* ===================================================================
13. PRICING TABLE SECTION
=================================================================== */

.tascus-pricing-table-section {
  width: 100%;
  padding: 25px 20px;
  background-color: var(--color-bg);
  clear: both;
}

.tascus-pricing-title {
  font-family: var(--font-heading);
  font-size: 40px;
  color: var(--color-accent);
  text-align: center;
  text-transform: uppercase;
  margin: 0 0 40px 0;
  font-weight: bold;
}

.tascus-table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.tascus-pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  font-family: var(--font-body);
  min-width: 1200px;
}

.tascus-pricing-table thead th {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  padding: 15px 10px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  border: 1px solid var(--color-white);
}

.tascus-th-main {
  background: var(--color-accent) !important;
}

.tascus-th-note {
  background: var(--color-primary-dark) !important;
}

.tascus-th-sub {
  background: var(--color-primary) !important;
  font-size: 12px;
}

.tascus-pricing-table tbody td {
  padding: 12px 10px;
  text-align: center;
  font-size: 13px;
  border: 1px solid #e0e0e0;
  color: #333;
}

.tascus-td-label {
  text-align: left !important;
  font-weight: 600;
  background: #fff8e6;
  color: var(--color-accent);
}

.tascus-td-note {
  text-align: left !important;
  font-size: 12px;
  color: #666;
  padding-left: 15px !important;
}

.tascus-tr-highlight {
  background: #fff4d9;
}

.tascus-tr-highlight .tascus-td-label {
  background: #ffe8a3;
  font-weight: bold;
}

.tascus-tr-indent .tascus-td-label {
  padding-left: 30px !important;
  background: #fffef9;
}

.tascus-tr-total {
  background: #f9e8cc;
  font-weight: bold;
}

.tascus-tr-total td {
  font-weight: bold;
  color: var(--color-accent);
}

.tascus-tr-final {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
}

.tascus-tr-final td {
  color: var(--color-white) !important;
  font-weight: bold;
  font-size: 14px;
}

@media (max-width: 768px) {
  .tascus-pricing-title {
    font-size: 28px;
  }

  .tascus-pricing-table {
    font-size: 11px;
  }

  .tascus-pricing-table thead th {
    padding: 10px 5px;
    font-size: 11px;
  }

  .tascus-pricing-table tbody td {
    padding: 8px 5px;
    font-size: 11px;
  }
}

/* ===================================================================
14. FOOTER SECTION
=================================================================== */

.footer_section {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  float: left;
  background-color: #962b2d;
  height: auto;
  padding: 90px calc(50vw - 50%) !important;
  clear: both;
}

.useful_text {
  width: 100%;
  font-size: 26px;
  color: var(--color-white);
  margin-bottom: 10px;
  font-weight: bold;
}

.footer_text,
.footer_menu li,
.footer_menu li a {
  color: var(--color-light);
  line-height: 1.6;
}

.footer_menu li a:hover {
  color: var(--color-primary);
}

.footer_text {
  width: 68%;
  float: left;
  font-size: 16px;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 350;
  text-wrap: pretty;
   padding-top: 10px;
   
}

.footer_menu {
  width: 100%;
  float: left;
}

.footer_menu ul {
  margin: 0;
  padding: 0;
}

.footer_menu li {
  font-size: 16px;
}

.Enter_text {
  width: 100%;
  float: left;
  font-size: 18px;
  color: var(--color-light);
  background-color: transparent;
  padding: 8px 15px;
  margin-top: 10px;
  border: 1px solid var(--color-light);
  box-sizing: border-box;
}

input.Enter_text::placeholder {
  color: var(--color-light);
}

.subscribe_bt {
  width: 190px;
  float: left;
  margin-top: 20px;
}

.subscribe_bt a {
  width: 100%;
  float: left;
  font-size: 18px;
  color: var(--color-accent);
  background-color: var(--color-primary);
  text-align: center;
  padding: 12px 0;
  text-transform: uppercase;
  border-radius: var(--radius-default);
  transition: all var(--transition-fast);
  display: block;
}

.subscribe_bt a:hover {
  color: var(--color-accent);
  background-color: var(--color-white);
}

.social_icon {
  width: 100%;
  float: left;
}

.social_icon ul {
  margin: 0;
  padding: 0;
}

.social_icon li {
  float: left;
}

.social_icon li a {
  float: left;
  padding: 10px 30px 0 0;
  color: var(--color-light);
  font-size: 40px;
  transition: color var(--transition-fast);
}

.social_icon li a:hover {
  color: var(--color-primary);
}

/* ===================================================================
15. COPYRIGHT SECTION
=================================================================== */

.copyright_section {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  float: left;
  background-color: #efa425;
  height: auto;
  padding: 20px calc(50vw - 50%) !important;
}

.copyright_text {
  width: 100%;
  color: var(--color-light);
  text-align: center;
  font-size: 16px;
  margin: 20px 0;
  font-weight: 600;
}

.copyright_text a {
  color: var(--color-light);
  transition: color var(--transition-fast);
}

.copyright_text a:hover {
  color: var(--color-primary);
}

/* ===================================================================
16. CALL BUTTON
=================================================================== */

.tascus-call-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(249, 177, 22, 0.4);
  z-index: 9999;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  animation: tascus-bounce 2s infinite;
}

.tascus-call-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(249, 177, 22, 0.6);
}

.tascus-call-btn i {
  font-size: 28px;
  color: var(--color-white);
  animation: tascus-ring 1.5s infinite;
}

.tascus-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(249, 177, 22, 0.6);
  animation: tascus-pulse 2s infinite;
  z-index: -1;
}

@keyframes tascus-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes tascus-ring {
  0%, 100% { transform: rotate(0deg); }
  10%, 30% { transform: rotate(-15deg); }
  20%, 40% { transform: rotate(15deg); }
}

@keyframes tascus-pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.4;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .tascus-call-btn {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
  }

  .tascus-call-btn i {
    font-size: 24px;
  }
}
/* ===================================================================
   MESSENGER BUTTON STYLES
=================================================================== */

.tascus-mess-btn {
  position: fixed;
  bottom: 105px; /* Nằm phía trên nút gọi (30px + 60px size + 15px gap) */
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0084FF 0%, #006bcf 100%); /* Màu xanh Messenger */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 132, 255, 0.4);
  z-index: 9999;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none !important;
  animation: tascus-bounce 2s infinite;
  animation-delay: 1s; /* Nhảy chậm hơn nút gọi 1 chút */
}

.tascus-mess-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(0, 132, 255, 0.6);
}

.tascus-mess-btn i {
  font-size: 28px;
  color: #ffffff;
}

/* Cập nhật vị trí nút Scroll Top để không bị đè lên nút Messenger */
.scroll-to-top-btn {
   bottom: 180px !important; /* Đẩy lên cao hơn (105px + 60px + gap) */
}

/* Responsive cho Mobile */
@media (max-width: 768px) {
  .tascus-mess-btn {
    bottom: 90px;
    right: 20px;
    width: 55px;
    height: 55px;
  }

  .tascus-mess-btn i {
    font-size: 24px;
  }
  
  .scroll-to-top-btn {
     bottom: 160px !important;
  }
}
/* ===================================================================
17. ADDITIONAL SECTIONS
=================================================================== */

/* Banner Section */
ul#artist-banner {
  font-family: var(--font-body);
  color: var(--color-white);
  line-height: 16px;
  font-size: 18px;
  display: flex;
  min-height: 700px;
  height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
  list-style: none;
  width: 100%;
  flex-direction: column; 
}

ul#artist-banner .bio p  {
  display: grid;
  grid-auto-flow: row;
  grid-template-rows: min-content;
  grid-gap: 14px;
  fonT-family: var(--font-body);
  font-size: 16PX;
  font-weight: 400;
  padding-top: 13px;
  margin-bottom: -10px;
}


@media (min-width: 1280px) {
  ul#artist-banner {
    flex-direction: row;
  }
  
}

ul#artist-banner li {
  flex: 1;
  display: flex;
  align-items: stretch;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  overflow: hidden;
}

ul#artist-banner li:before {
  content: "";
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(226, 146, 8, 0.826);
}

ul#artist-banner li.active {
  flex: 6;
  cursor: default;
}

ul#artist-banner li.active:before {
  background: linear-gradient(180deg, rgba(50, 50, 0, 0) 70%, var(--color-accent) 0%);
}

ul#artist-banner h2 {
  font-size: 20px;
  line-height: 36px;
  font-weight: 700;
  margin-bottom: -40px;
  padding: 20px;
  text-transform: uppercase;
  color: #ffffff;
}

@media (min-width: 768px) {
  ul#artist-banner h2 {
    font-size: 36px;
    line-height: 38px;
  }
  ul#artist-banner {
    min-height: 800px;
  }
}

@media (min-width: 1280px) {
  ul#artist-banner h2 {
    font-size: 64px;
    line-height: 64px;
  }

}

ul#artist-banner h3 {
  font-weight: bold;
  white-space: nowrap;
  position: absolute;
  z-index: 30;
  opacity: 1;
  top: 50%;
  left: 50%;
  transition: top var(--transition-fast), opacity 0.15s;
  transform-origin: 0 0;
  font-size: 24px;
  text-transform: uppercase;
  transform: translate(-50%, -50%) rotate(0deg);
  color: var(--color-white);
}

@media (min-width: 1280px) {
  ul#artist-banner h3 {
    top: 100%;
    left: 50%;
    font-size: 32px;
    transform: translate(-20px, -50%) rotate(-90deg);
  }
}

ul#artist-banner li.active h3 {
  opacity: 0;
  top: 200%;
}

ul#artist-banner .section-content {
  position: relative;
  z-index: 30;
  opacity: 0;
  align-self: flex-end;
  width: 100%;
  transition: all var(--transition-fast);
}

ul#artist-banner li.active .section-content {
  opacity: 1;
  
}

ul#artist-banner .section-content .inner {
  position: absolute;
  display: grid;
  grid-auto-flow: row;
  grid-template-columns: 1fr;
  grid-column-gap: 0px;
  align-items: flex-end;
  left: 0;
  bottom: 0;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.25s ease-out;
}

@media (min-width: 768px) {
  ul#artist-banner .section-content .inner {
    grid-auto-flow: column;
    grid-template-columns: calc(100% - 340px) 300px;
    grid-column-gap: 40px;
    padding: 40px;
  }
  

}
@media (min-width: 1280px) {
  ul#artist-banner .section-content .inner {
    grid-auto-flow: column;
    grid-template-columns: 460px 200px;
    grid-column-gap: 40px;
    padding: 40px;
  }
}

ul#artist-banner li.active .section-content .inner {
  opacity: 1;
}


/* Menu Section */
.wrapping {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.hhgrip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.hcol {
  flex: 1 1 400px;
  max-width: 500px;
}

.itccinfohh {
  position: relative;
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: var(--box-shadow-light);
  width: 100%;
}

.itccinfohh .thumb {
  width: 100%;
}

.itccinfohh .thumb img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.itccinfohh .decss {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}

.itccinfohh .dstitle h3 {
  margin: 0;
  text-align: center;
}

.itccinfohh .dstitle h3 a {
  font-weight: bold;
  font-size: 1.25rem;
  text-decoration: none;
  text-transform: uppercase;
}

.hcol:nth-child(1) .itccinfohh .decss {
  background-color: #8c532b;
}

.hcol:nth-child(1) .itccinfohh .dstitle h3 a {
  color: var(--color-white);
}

.hcol:nth-child(2) .itccinfohh .decss {
  background-color: #F9F4E9;
}

.hcol:nth-child(2) .itccinfohh .dstitle h3 a {
  color: #333333;
}

/* Menu Freeze Section */
.menu-section-freeze {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background-color: var(--color-white);
}

.menu-header-freeze {
  text-align: center;
  margin-bottom: 40px;
}

.menu-header-freeze h2 {
  font-size: 2.5rem;
  color: #6B4F4B;
  font-weight: 800;
  margin: 0 0 5px 0;
  text-transform: uppercase;
  line-height: 1.2;
}


.menu-header-freeze p {
  font-size: 1rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.product-list-freeze {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.product-item-freeze {
  text-align: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-default);
  padding: 20px;
  transition: box-shadow var(--transition-fast);
}

.product-item-freeze:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}

.product-item-freeze img {
  max-width: 100%;
  height: 250px;
  object-fit: contain;
  margin-bottom: 15px;
}

.product-item-freeze h3 {
  font-size: 1.25rem;
  color: #333;
  margin: 10px 0;
}

.product-item-freeze .product-price-freeze {
  font-size: 1.1rem;
  color: #555;
  font-weight: 600;
  margin: 0;
}

/* Image Section */
.tascus-image-section {
  width: 100%;
  padding: 5px 20px;
  clear: both;
  box-sizing: border-box;
}

.image-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
}

/* ===================================================================
18. RESPONSIVE MOBILE FIXES
=================================================================== */

@media (max-width: 768px) {
  h1, h2, h3, h4, h5, h6 {
    line-height: 1.3 !important;
    padding-bottom: 5px !important;
  }

  .about_taital,
  .tascus-process-title {
    line-height: 1.2 !important;
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }

  p {
    line-height: 1.5 !important;
    margin-bottom: 12px !important;
  }

  #tascus-banner-widget .tascus-arrow {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  #tascus-banner-widget .tascus-prev { left: 8px; }
  #tascus-banner-widget .tascus-next { right: 8px; }

  .about_taital {
    margin-top: 10px;
    margin-bottom: 15px;
    font-size: 45px;
  }

  .about_section_2,
  .pricing-container,
  .content-wrapper {
    padding-bottom: 30px;
  }

  .product-item-freeze img {
    margin-bottom: 8px;
    height: 180px;
  }

  .product-item-freeze h3 {
    margin-top: 5px;
    margin-bottom: 2px;
    font-size: 1.1rem;
  }

  .product-item-freeze .product-price-freeze {
    font-size: 1rem;
    white-space: nowrap;
    margin-top: 2px;
  }

  .menu-header-freeze h2 {
    font-size: 2rem;
  }

  .menu-section-freeze {
    padding: 10px;
  }

  .product-list-freeze {
    gap: 15px;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 991px) {
  .header_section .form-inline {
    width: 100%;
    padding-top: 15px;
    padding-bottom: 10px;
  }

  .btn-tu-van {
    width: 100%;
    text-align: center;
    margin-left: 0;
    padding: 12px 20px;
  }

  .navbar-brand img {
    max-height: 40px;
  }

  .header_section .navbar-nav {
    margin-left: 0 !important;
    align-items: flex-start;
    width: 100%;
  }

  .header_section .navbar-nav .nav-item {
    width: 100%;
  }

  .header_section .navbar-nav .nav-link {
    padding: 10px 0;
  }
}


/* ===================================================================
20. UTILITIES
=================================================================== */

@media (min-width: 768px) {
  .md\:hidden {
    display: none;
  }
}

         /* CSS cho Food App Buttons - ĐÃ SỬA FIX LỖI XUỐNG DÒNG */
         .food-app-buttons {
            display: flex;
            gap: 8px !important;
            justify-content: flex-start;
            align-items: center;
            margin-top: 20px;
            flex-wrap: nowrap !important;
         }

         .food-app-btn {
            display: inline-block;
            width: 65px;
            height: 65px;
            background-color: #fff;
            border-radius: 8px;
            padding: 5px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            flex-shrink: 0;
         }

         .food-app-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
         }

         .food-app-btn img {
            width: 100%;
            height: 100%;
            object-fit: contain;
         }

         /* Màn hình tablet/trung bình */
         @media (max-width: 991px) and (min-width: 768px) {
            .food-app-buttons {
               gap: 6px;
               flex-wrap: nowrap !important;
            }
            
            .food-app-btn {
               width: 50px;
               height: 50px;
               padding: 5px;
            }
         }

         /* Mobile */
         @media (max-width: 767px) {
            .food-app-buttons {
               gap: 5px;  
               flex-wrap: nowrap !important;
            }
            
            .food-app-btn {
               width: 60px;
               height: 60px;
               padding: 5px;
               body {
        overflow-x: hidden !important; /* Ngăn trang cuộn ngang */
    }

    /* FIX LỆCH PHẢI (Mặc dù do overflow, nhưng vẫn cần phòng thủ) */
    /* Nhắm vào cột thứ 3 chứa "ĐẶT MÓN ONLINE" */
    .footer_section .row .col-md-4:nth-child(3) {
        text-align: left !important; 
    }
            }
         }

         @media (max-width: 480px) {
            .food-app-buttons {
               gap: 5px;
               flex-wrap: nowrap !important;
            }
            
            .food-app-btn {
               width: 45px;
               height: 45px;
               padding: 5px;
            }
         }

         /* Màn hình rất nhỏ */
         @media (max-width: 360px) {
            .food-app-buttons {
               gap: 3px;
            }
            
            .food-app-btn {
               width: 55px;
               height: 55px;
               padding: 4px;
            }
         }
         /* Nút Scroll to Top */
.scroll-to-top-btn {
   position: fixed;
   bottom: 150px; /* TĂNG TỪ 80px LÊN 150px */
   right: 30px;
   width: 60px;
   height: 60px;
   background-color: #962c2ead;
   color: #fff;
   border: none;
   border-radius: 50%;
   font-size: 20px;
   cursor: pointer;
   opacity: 0;
   visibility: hidden;
   transition: all 0.3s ease;
   z-index: 999;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.scroll-to-top-btn:hover {
   background-color: #f9b116;
   transform: translateY(-5px);
   box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.scroll-to-top-btn.show {
   opacity: 1;
   visibility: visible;
}

/* Responsive - Điều chỉnh cho mobile */
@media (max-width: 768px) {
   .scroll-to-top-btn {
      bottom: 130px; /* TĂNG TỪ 70px LÊN 130px */
      right: 15px;
      width: 45px;
      height: 45px;
      font-size: 18px;
   }
}
/* === MỤC LỤC THÔNG MINH (SMART TOC) === */

/* === MỤC LỤC THÔNG MINH (PHIÊN BẢN 2.0) === */

/* 1. NÚT BẤM (Mặc định ẩn) */
#toc-toggle-btn {
    position: fixed;
    top: 50%;
    left: 0;
    width: 30px;
    transform: translateY(-50%);
    background: #962c2eb8;
    color: #fff;
    border: none;
    padding: 15px 10px;
    border-radius:  0;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    cursor: pointer;
    z-index: 10000;
    font-weight: bold;
    font-size: 12px;
    
    
    /* Chữ chạy dọc */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    writing-mode: vertical-rl;
    text-orientation: mixed;

    /* --- HIỆU ỨNG ẨN/HIỆN --- */
    opacity: 0;              /* Mờ đi */
    visibility: hidden;      /* Ẩn hẳn khỏi DOM ảo */
    transform: translate(-100%, -50%); /* Thụt hẳn vào trong lề trái */
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55); /* Hiệu ứng nảy */
}

/* Class này được JS thêm vào khi cuộn qua Banner */
#toc-toggle-btn.show-on-scroll {
    opacity: 1;
    visibility: visible;
    transform: translate(0, -50%); /* Trượt ra */
}

/* Class này được JS thêm vào khi Menu đang MỞ (để ẩn nút đi) */
#toc-toggle-btn.hidden-by-active {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translate(-100%, -50%) !important;
}

#toc-toggle-btn:hover {
    background: #f9b116;
    padding-left: 20px;
}

/* 2. KHUNG MỤC LỤC */
#floating-toc-container {
    position: fixed;
    top: 50%;
    left: -350px; /* Giấu sang trái */
    transform: translateY(-50%);
    width: 300px;
    max-height: 80vh;
    background: #fff;
    box-shadow: 5px 0 25px rgba(0,0,0,0.2);
    border-radius: 0 15px 15px 0;
    z-index: 9999;
    transition: left 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    border-left: 5px solid #962c2d;
    display: flex;
    flex-direction: column;
}

/* Khi active thì trượt ra */
#floating-toc-container.active {
    left: 0;
}

/* Header */
.toc-header {
    background: #f9b116;
    color: #fff;
    padding: 15px 20px;
    font-weight: bold;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'FontCuaToi', sans-serif;
}

#toc-close {
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
    transition: 0.2s;
}
#toc-close:hover { color: #962c2d; transform: rotate(90deg); }

/* List Links */
#table-of-contents {
    padding: 10px 20px 20px;
    overflow-y: auto;
}
#table-of-contents a {
    display: block;
    padding: 12px 0;
    color: #555;
    text-decoration: none;
    border-bottom: 1px dashed #eee;
    font-size: 15px;
    transition: 0.2s;
}
#table-of-contents a:hover {
    color: #962c2d;
    padding-left: 10px;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    #toc-toggle-btn {
        writing-mode: horizontal-tb; /* Nằm ngang trên mobile */
        bottom: 100px;
        top: auto;
        left: 0;
        border-radius: 0 20px 20px 0;
        transform: translate(-100%, 0);
    }
    
    #toc-toggle-btn.show-on-scroll {
        transform: translate(0, 0);
    }
    
    #toc-toggle-btn.hidden-by-active {
        transform: translate(-100%, 0) !important;
    }

}







