body {
            margin: 0;
            padding: 0;
            font-family: 'Arial', sans-serif;
            background-color: #fff;
            color: #333;
            scroll-behavior: smooth;
        }

    
 
   
        /* BANNER CHÍNH (ẢNH) */
        .banner {
            width: 100%;
            height: 350px;
            background: url('https://vn.mixue.com/images/banner_about.jpg') center/cover no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            font-weight: bold;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
        }
        
        /* BANNER SỐ LIỆU */
        .stat-banner-container {
            padding: 40px 0;
            background-color: #fff;
            display: flex;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .stat-banner {
            display: flex;
            justify-content: space-around;
            align-items: center;
            width: 90%;
            max-width: 900px;
            padding: 30px 20px;
            background-color: #fff;
            border-radius: 20px;
            box-shadow: 0 5px 15px rgba(255, 0, 0, 0.1); 
            border: 1px solid rgba(255, 0, 0, 0.1);
        }
        
        .stat-item {
            text-align: center;
            padding: 0 15px;
        }
        
        .stat-item h3 {
            font-size: 1.1rem;
            color: #333;
            margin-bottom: 5px;
            font-weight: bold;
        }
        
        .stat-item p {
            font-size: 2.5rem;
            color: #e60012;
            font-weight: 800;
            margin-top: 0;
        }

        /* NỘI DUNG CHUNG & SCROLL OFFSET MỚI */
        section {
            /* Đảm bảo ID của section không bị header che khuất và có khoảng trống */
            scroll-margin-top: 100px; /* Lệnh giúp căn giữa khi cuộn đến ID */
            
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            padding: 20px; /* Thêm padding cơ bản cho section */
            padding-bottom: 20px;
            line-height: 1.6;
            box-sizing: border-box; 
        }



        .main-menu li.ve-chung-toi .menu_an {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}


        /* Tùy chỉnh cho section Story */
        section#story { 
            max-width: 800px;
            padding: 30px 20px 50px 20px;
            text-align: center;
            line-height: 1.8;
            margin-top: 10px; 
        }
        
        section#story img {
            width: 200px;
            height: auto;
            margin-bottom: 20px;
        }

        
        
        /* Cập nhật lại các section khác để áp dụng margin trên */
        section:not(#story):not(#intro) {
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            padding: 50px 20px; /* Padding tổng quát */
            line-height: 1.6;
            box-sizing: border-box; 
        }
        
        section h2 {
            color: #e60012;
            text-align: center;
            margin-bottom: 20px;
        }
        
        section#history img {
            width: 100%;
            height: auto;
            display: block;
            margin: 0 auto;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            border-radius: 10px;
        }

        /* CSS CHO KHẨU HIỆU THƯƠNG HIỆU (section#values) */
        .slogan-box {
            background-color: #fce4e4; 
            padding: 50px 20px;
            text-align: center;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            margin: 40px auto;
            max-width: 700px;
        }

        .slogan-text {
            font-size: 2.5rem;
            font-weight: 900;
            color: #e60012;
            line-height: 1.2;
            margin-bottom: 30px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }

        .slogan-text .heart {
            color: #e60012; 
            display: inline-block;
            animation: pulse 1.5s infinite;
        }
        
        /* CSS MỚI CHO BIỂU TƯỢNG CỐT LÕI (section#process) */
        .snowking-profile {
            background-color: #fff;
            border: 1px solid #eee;
            border-radius: 15px;
            margin: 40px auto;
            padding: 30px;
            max-width: 900px;
            display: flex;
            align-items: center;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }

        .king-image-container {
            width: 45%;
            position: relative;
        }

        .king-image-container img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* Chú thích "Tuyệt Vương giá đáo" */
        .king-info h3.title {
            font-size: 2.5rem;
            color: #e60012;
            margin-bottom: 20px;
            font-weight: 900;
        }

        .king-info {
            width: 55%;
            padding: 0 30px;
            line-height: 1.8;
            font-size: 1.1rem;
        }
        
        .king-info ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .king-info li {
            margin-bottom: 15px;
            border-bottom: 1px dashed #eee;
            padding-bottom: 10px;
        }

        .king-info li:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .king-info strong {
            color: #e60012;
            display: inline-block;
            min-width: 100px; /* Căn lề đều */
        }
        
        .king-info p.slogan {
            font-weight: bold;
            font-size: 1.1rem;
            color: #e60012;
            margin-top: 10px;
        }

        /* CSS MỚI CHO SẢN PHẨM LƯU NIỆM (section#souvenirs) */
        #souvenirs {
            padding: 50px 20px;
        }

        .souvenir-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 15px;
            margin-top: 30px;
        }

        .souvenir-item {
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
            background-color: #fff;
        }
        
        .souvenir-item:hover {
            transform: translateY(-8px) scale(1.05); 
            box-shadow: 0 12px 25px rgba(255, 0, 0, 0.3);
            z-index: 10;
        }

        .souvenir-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease;
        }
        
        /* CSS ĐẶT BIỆT CHO SECTION TEAM (3 CỘT ẢNH & NỘI DUNG TĨNH) */
        section#team {
            padding: 50px 20px; 
            max-width: 1200px; 
            margin: 0 auto;
            text-align: center;
            
        }

        section#team h2 {
            color: #e60012;
            margin-bottom: 40px;
        }

        .team-grid {
            display: flex;
            justify-content: space-between; 
            gap: 30px; 
            flex-wrap: wrap; 
        }

        .team-item {
            flex: 1; 
            min-width: 280px; 
            border: 1px solid #eee;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            background-color: #fff;
            text-align: left;
        }

        .team-item img {
            width: 100%;
            height: 200px; 
            object-fit: cover;
            display: block;
            
        }
       
        .content-display {
            padding: 20px;
            min-height: 180px; 
        }

        .content-display h3 {
            color: #e60012;
            font-size: 1.3rem;
            margin-top: 0;
            margin-bottom: 10px;
        }

        .content-display p {
            font-size: 1rem;
            line-height: 1.5;
        }

        /* KHÔI PHỤC CSS CỦA FOOTER GỐC */
        .mixue-footer {
            background-color: #d11e29;
            color: white;
            padding: 40px 10%;
            text-align: center;
        }
        

        
        .logo {
            display: flex;
            align-items: center;
        }

        .mixue-logo {
            width: 100px; 
            height: 50px;
            object-fit: contain;
            margin-right: 15px;
            background-color: azure;
            border-radius: 5px;
        }

        .logo-text {
            text-align: left;
            font-size: 0.8em;
            font-weight: bold;
            opacity: 0.8;
        }

        .contact-info a {
            font-size: 2em;
            font-weight: bold;
            color: white;
            text-decoration: none;
        }

        .separator {
            border: 0;
            height: 1px;
            background-color: rgba(255, 255, 255, 0.3);
            margin: 30px auto;
            width: 80%;
        }

        .working-hours, .headquarters-address {
            margin: 20px auto;
            max-width: 800px;
        }

        .working-hours p, .headquarters-address p {
            margin: 5px 0;
            line-height: 1.6;
        }

        .headquarters-address h3 {
            font-size: 1.1em;
            margin-bottom: 5px;
            font-weight: bold;
        }
        .footer {
            padding: 30px 10%;
            color: rgb(255, 245, 245);
            display: flex;
            gap: 20px;
            justify-content: space-between;
            font-size: small;
            background-color: #CC0000;
        }

        .cuoitrang {
            align-items: center;
            background-color: #CC0000;
            color: white;
            font-weight: 20;
            border: 1px solid white;
            padding: 20px;
            text-align: center;
        }
.social-qr-footer {
    background-color: #CC0000; /* Màu đỏ nổi bật */
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex; /* Sử dụng Flexbox để chia cột */
    justify-content: space-around; /* Căn đều các item */
    gap: 20px;
}

.qr-item {
    text-align: center;
    width: 25%; /* Mỗi item chiếm khoảng 1/4 */
}

.social-qr-footer {
    background-color: #CC0000; /* Màu đỏ nổi bật */
    padding: 30px 15px; /* Giảm padding tổng thể */
    font-family: Arial, sans-serif;
}

.footer-container {
    max-width: 800px; /* Thu hẹp độ rộng tối đa của container (Làm mọi thứ nhỏ lại) */
    margin: 0 auto;
    display: flex; 
    justify-content: space-between; /* Giữ khoảng cách giữa các item */
    gap: 15px; /* Giảm khoảng cách giữa các item */
}

.qr-item {
    text-align: center;
    width: 25%; 
    padding: 0 5px; /* Thêm padding ngang nhẹ cho item */
}

/* 2. Định dạng Hộp QR Code */
.qr-box {
    background-color: white;
    padding: 5px; /* Giảm padding (khoảng đệm trắng) bên trong */
    border-radius: 12px; /* Bo góc nhỏ hơn */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Giảm bóng đổ cho nhẹ nhàng */
    display: inline-block;
    position: relative;
    overflow: hidden; 
}

.qr-box img {
    width: 100%;
    max-width: 120px; /* **GIẢM KÍCH THƯỚC TỐI ĐA CỦA QR CODE** */
    height: auto;
    display: block;
    border-radius: 6px; 
}

/* 3. Định dạng Tên Mạng Xã Hội */
.social-label {
    color: white; 
    font-size: 1em; /* Giảm kích thước font */
    font-weight: 500; /* Giảm độ đậm của font */
    margin-top: 8px; /* Giảm khoảng cách */
}

.social-label i {
    margin-right: 4px;
    font-size: 1.1em;
}

/* 4. Tùy chỉnh cho mobile */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column; 
    }
    .qr-item {
        width: 100%;
        margin-bottom: 15px;
    }
}
/* ===== RESET / BASE ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: Arial, sans-serif; }

/* ===== HEADER LAYOUT ===== */
.site-header { background:whitesmoke; border-bottom: 1px solid rgba(0,0,0,0.06); }
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 20px;
}

/* logo trái */
.logo img { width: 120px; height: auto; display: block; }

/* nav ở giữa */
.main-menu { flex: 1; }
.main-menu ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 36px;
  align-items: center;
}

.main-menu li { position: relative; }
.main-menu a {
  text-decoration: none;
  color: #111;
  font-weight: 600;
  padding: 8px 12px;
  display: inline-block;
  border-radius: 6px;
  transition: background .15s, color .15s;
}
.main-menu a:hover { background: rgba(216,27,36,0.08); color:#d81b24; }

/* ===== SUBMENU ===== */
.menu_an {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 230px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
  z-index: 999;
}

.main-menu li.has-sub:hover > .menu_an {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}


.menu_an li { display: block; }
.menu_an li a {
  display: block;
  padding: 10px 16px;
  color: #222;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  border-bottom: 1px solid #f4f4f4;
}
.menu_an li:last-child a { border-bottom: none; }
.menu_an li a:hover { background: #d81b24; color: #fff; }

/* ===== HIỆU ỨNG HIỆN MENU CON ===== */
.main-menu li.has-sub:hover > .menu_an,
.main-menu li.has-sub:focus-within > .menu_an {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ===== HOTLINE ===== */
.hotline {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 6px 12px;
  border-radius: 40px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}
.hotline .icon {
  background: #d81b24;
  color:#fff;
  width:36px;
  height:36px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
}
.hotline .phone { font-weight:700; color:#222; }
.hotline .text  { font-size:12px; color:#666; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .main-menu ul { gap: 18px; }
  .logo img { width: 100px; }
}
@media (max-width: 600px) {
  .header-inner { flex-wrap: wrap; gap: 12px; }
  .main-menu { order: 3; width: 100%; }
  .main-menu ul { justify-content: space-around; }
  .hotline { order: 2; }
}