/* ================================================================
   RESPONSIVE CSS - Nông Sản Cao Phát
   ================================================================ */

/* ================================================================
   TABLET (768px - 1023px)
   Laptop/Desktop: >= 1024px (xử lý trong style.css)
   ================================================================ */

@media screen and (min-width: 768px) and (max-width: 1023px) {
  
  /* ==================== GLOBAL COMPONENTS ==================== */
  
  /* Header - Tablet adjustments */
  .header-inner {
    padding-right: 40px;
  }
  
  .navbar a {
    font-size: 20px;
    height: auto;
    padding: 8px 0;
  }
  
  .navbar li {
    margin-right: 30px;
  }
  
  /* Footer - Tablet adjustments */
  .footer-top {
    padding: 40px 30px 30px;
  }
  
  .footer-bottom {
    padding: 16px 30px 24px;
  }
  
  .footer-columns {
    gap: 50px;
  }
  
  /* Breadcrumb - Tablet */
  .breadcrumb-inner {
    padding: 0 40px;
    margin-right: 0;
  }
  
  /* ==================== GRID STRUCTURES ==================== */
  
  /* News page cards - 2 columns on tablet */
  .news-page-cards {
    grid-template-columns: repeat(2, 1fr);
    transform: scale(1);
  }
  
  .section-news-cards {
    grid-template-columns: repeat(2, 1fr);
    transform: scale(1);
  }
  
  .blog-related-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Cooperate grid - 2 columns on tablet */
  .cooperate-grid {
    grid-template-columns: repeat(2, 1fr);
    width: 90%;
  }
  
  /* Products grid - 2 columns on tablet */
  .products-page .products-grid {
    justify-content: center;
    padding-left: 0;
  }
  
  /* About values grid - 2 columns on tablet */
  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* ==================== TYPOGRAPHY ==================== */
  
  /* Large headings reduction for tablet */
  .cooperate-title {
    font-size: 56px;
  }
  
  .section-vision-title {
    font-size: 120px;
    width: auto;
    height: auto;
  }
  
  .section-news-title {
    font-size: 56px;
  }
  
  .news-page-main-title {
    font-size: 56px;
  }
  
  .products-list-title {
    font-size: 64px;
  }
  
  .about-development-title {
    font-size: 56px;
    margin-right: 0;
  }
  
  .cooperate-connect-title {
    font-size: 36px;
  }
  
  .about-values-section-title {
    font-size: 36px;
  }
  
  .news-page-section-title {
    font-size: 36px;
  }
  
  .blog-title,
  .blog-item-title {
    font-size: 36px;
  }
  
  .blog-related-title {
    font-size: 36px;
  }
  
  /* ==================== IMAGES ==================== */
  
  .hero-bg {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  .product-card .product-thumb img {
    width: 100%;
    height: auto;
    max-width: 190.43px;
    max-height: 270.48px;
  }
  
  .news-thumb img {
    width: 100%;
    height: auto;
    max-width: 440px;
    max-height: 260px;
  }
  
  .news-page-thumb img {
    width: 100%;
    height: auto;
  }
  
  .cooperate-image {
    width: 100%;
    height: auto;
  }
}

/* ================================================================
   MOBILE (< 768px)
   ================================================================ */
/* ================================================================
   NEW MOBILE CONTROL (MAX 480PX) - CHỈ DÀNH CHO ĐIỆN THOẠI
   ================================================================ */
   @media screen and (max-width: 480px) {
  
    /* 1. LAYOUT TỔNG THỂ: Chống tràn màn hình */
    .header-inner, .breadcrumb-inner, .footer-grid, .about-new-inner,
    .about-values-inner, .about-development-inner {
      width: 100% !important;
      max-width: 100% !important;
      padding-left: 15px !important;
      padding-right: 15px !important;
      margin: 0 auto !important;
      overflow: hidden !important;
    }

    /* NỀN TRANG CHI TIẾT SẢN PHẨM: dùng màu nền sáng thay vì xanh đậm */
    .product-detail-page,
    .product-detail-page .page-wrapper {
      background: var(--color-bg-light) !important;
    }
  
    /* 2. HÌNH ẢNH & LOGO: Tự động co theo màn hình */
    img {
      max-width: 100% !important;
    height: auto !important;
    }
    .logo img {
      max-width: 120px !important; /* Thu nhỏ logo cho vừa điện thoại */
    }
    .menu-bg {
    width: 100% !important;
    object-fit: cover;
  }
  
    /* 3. XẾP CHỒNG CARD: Biến Grid thành 1 cột đứng */
    .footer-columns,
    .about-values-grid,
    .about-development-content {
      display: flex !important;
      flex-direction: column !important;
      gap: 20px !important;
    }
  
    /* 4. CHỮ (TYPOGRAPHY): Hạ size tiêu đề khổng lồ */
    .about-new-content h2 {
      font-size: 28px !important;
      line-height: 1.2 !important;
      text-align: center !important;
    }
    
    /* 5. HAMBURGER MENU: Tạo menu mobile */
    .header-inner {
    height: auto !important;
      min-height: 80px !important;
      padding: 10px 15px !important;
      flex-direction: row !important;
      align-items: center !important;
      justify-content: space-between !important;
      position: relative !important;
    }
    
    .logo {
      position: relative !important;
      top: -15px !important;
      left: 95px !important;
    }
    
    .logo img {
      max-width: 80px !important;
      height: auto !important;
    }
    
    /* Ẩn menu desktop trên mobile */
    .navbar {
      display: none !important;
    }
    
    /* Hamburger button - Box với shadow nổi bật */
    .hamburger-menu {
      display: block !important;
      position: absolute !important;
      top: 5px !important;
      right: 15px !important;
      width: 32px !important;
      height: 32px !important;
      cursor: pointer !important;
      z-index: 1000 !important;
      background: var(--color-bg-cream) !important;
      border: 2px solid var(--color-primary-dark-green) !important;
      border-radius: 5px !important;
      padding: 7px 5px !important;
      box-shadow: 0 3px 10px rgba(11, 58, 30, 0.3) !important;
      transition: all 0.3s ease !important;
      display: flex !important;
      flex-direction: column !important;
      justify-content: center !important;
      align-items: center !important;
    }
    
    .hamburger-menu:hover {
      box-shadow: 0 6px 16px rgba(11, 58, 30, 0.4) !important;
      transform: translateY(-2px) !important;
    }
    
    .hamburger-menu:active {
      transform: translateY(0) !important;
      box-shadow: 0 2px 8px rgba(11, 58, 30, 0.3) !important;
    }
    
    .hamburger-menu span {
      display: block !important;
      position: relative !important;
      height: 2px !important;
      width: 18px !important;
      background: var(--color-primary-dark-green) !important;
      border-radius: 2px !important;
      opacity: 1 !important;
      transform: rotate(0deg) !important;
      transition: 0.25s ease-in-out !important;
      margin: 1.5px 0 !important;
    }
    
    .hamburger-menu span:nth-child(1) {
    margin-top: 0 !important;
    }
    
    .hamburger-menu span:nth-child(3) {
      margin-bottom: 0 !important;
    }
    
    /* Hamburger khi mở (X shape) */
    .hamburger-menu.active span:nth-child(1) {
      position: absolute !important;
      top: 50% !important;
      left: 50% !important;
      transform: translate(-50%, -50%) rotate(135deg) !important;
      margin: 0 !important;
    }
    
    .hamburger-menu.active span:nth-child(2) {
      opacity: 0 !important;
      width: 0 !important;
    }
    
    .hamburger-menu.active span:nth-child(3) {
      position: absolute !important;
      top: 50% !important;
      left: 50% !important;
      transform: translate(-50%, -50%) rotate(-135deg) !important;
      margin: 0 !important;
    }
    
    /* Mobile menu overlay */
    .mobile-menu {
      position: fixed !important;
      top: 0 !important;
      right: -100% !important;
      width: 280px !important;
      height: 100vh !important;
      background: var(--color-bg-cream) !important;
      z-index: 999 !important;
      transition: right 0.3s ease-in-out !important;
      box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1) !important;
      padding: 80px 20px 20px !important;
      overflow-y: auto !important;
    }
    
    .mobile-menu.active {
      right: 0 !important;
    }
    
    .mobile-menu ul {
      list-style: none !important;
      margin: 0 !important;
      padding: 0 !important;
      display: flex !important;
      flex-direction: column !important;
      gap: 20px !important;
    }
    
    .mobile-menu li {
      margin: 0 !important;
    }
    
    .mobile-menu a {
      display: block !important;
      font-family: 'UTM Horizon', sans-serif !important;
      font-size: 18px !important;
      font-weight: 700 !important;
      color: var(--color-primary-dark-green) !important;
      text-decoration: none !important;
      text-transform: uppercase !important;
      padding: 12px 0 !important;
      border-bottom: 1px solid rgba(11, 58, 30, 0.1) !important;
      transition: color 0.3s !important;
    }
    
    .mobile-menu a:hover {
      color: var(--color-primary-light-green) !important;
    }
    
    /* Overlay khi menu mở */
    .mobile-menu-overlay {
      position: fixed !important;
      top: 0 !important;
      left: 0 !important;
      width: 100% !important;
      height: 100vh !important;
      background: rgba(0, 0, 0, 0.5) !important;
      z-index: 998 !important;
      opacity: 0 !important;
      visibility: hidden !important;
      transition: opacity 0.3s, visibility 0.3s !important;
    }
    
    .mobile-menu-overlay.active {
      opacity: 1 !important;
      visibility: visible !important;
    }
    
    .menu-bg {
      position: absolute !important;
      top: -2px !important;
      left: 0 !important;
      height: auto !important;
      min-height: 80px !important;
      width: 100% !important;
    }
  
    /* 6. FIX CÁC THÀNH PHẦN ABSOLUTE: Đưa về dòng chảy bình thường */
    .about-new-image, .footer-col {
      position: static !important;
      width: 100% !important;
      transform: none !important;
    }
  
    /* Ẩn các icon trang trí rác gây tràn màn hình trên mobile */
    .section-extra-pattern, .about-new-section-icon {
      display: none !important;
    }
    
    /* ==================== COOPERATE PAGE - MOBILE ==================== */
    
    /* 1. COOPERATE SECTION (Section chính với grid cards) */
    .cooperate-section {
      padding: 20px 0 !important;
      position: relative !important;
      overflow: hidden !important;
    }
    
    .cooperate-inner {
      width: 100% !important;
      max-width: 100% !important;
      padding: 0 15px !important;
      margin: 0 auto !important;
      box-sizing: border-box !important;
      position: relative !important;
    }
    
    .cooperate-title {
      font-size: 28px !important;
      line-height: 1.2 !important;
      text-align: center !important;
      margin-bottom: 20px !important;
    }
    
    .cooperate-grid {
      display: flex !important;
      flex-direction: column !important;
      gap: 20px !important;
      width: 100% !important;
      max-width: 100% !important;
    }
    
    .cooperate-card {
      position: static !important;
      width: 100% !important;
      transform: none !important;
      margin: 0 !important;
      padding: 0 !important;
    }
    
    .cooperate-image-wrapper {
      width: 100% !important;
      max-width: 100% !important;
      height: auto !important;
      margin-bottom: 12px !important;
    }
    
    .cooperate-image {
      width: 100% !important;
      height: auto !important;
      display: block !important;
    }
    
    .cooperate-card-title {
      font-size: 18px !important;
      line-height: 1.3 !important;
      text-align: center !important;
      margin-bottom: 8px !important;
    }
    
    .cooperate-card-text {
      font-size: 14px !important;
      line-height: 1.5 !important;
      text-align: center !important;
      margin: 0 !important;
      padding: 0 75px !important; 
    }
    
    .cooperate-decorative-icon {
      display: none !important;
    }
    
    /* 2. COOPERATE CONNECT SECTION (Form section) */
    .cooperate-connect-section {
      padding: 30px 0 !important;
      position: relative !important;
      overflow: hidden !important;
    }
    
    .cooperate-connect-inner {
      width: 100% !important;
      max-width: 100% !important;
      padding: 0 15px !important;
      margin: 0 auto !important;
      box-sizing: border-box !important;
      position: relative !important;
    }
    
    .cooperate-connect-title {
      font-size: 24px !important;
      line-height: 1.2 !important;
      text-align: center !important;
      margin-bottom: 12px !important;
    }
    
    .cooperate-connect-slogan {
      font-size: 14px !important;
      line-height: 1.5 !important;
      text-align: center !important;
      margin-bottom: 20px !important;
    }
    
    .cooperate-connect-form {
      width: 100% !important;
      max-width: 100% !important;
      position: relative !important;
      margin-bottom: 20px !important;
    }
    
    .cooperate-connect-form .form-field {
      width: 100% !important;
      margin-bottom: 16px !important;
    }
    
    .cooperate-connect-form label {
      display: block !important;
      font-size: 14px !important;
      margin-bottom: 6px !important;
      color: var(--color-primary-dark-green) !important;
    }
    
    .cooperate-connect-form input,
    .cooperate-connect-form textarea {
      width: 100% !important;
      padding: 10px !important;
      font-size: 14px !important;
      border: 1px solid var(--color-primary-dark-green) !important;
      border-radius: 4px !important;
      box-sizing: border-box !important;
    }
    
    .cooperate-connect-form textarea {
      min-height: 100px !important;
      resize: vertical !important;
    }
    
    .form-field-products {
      position: relative !important;
    }
    
    .cooperate-connect-image-wrapper {
      display: none !important;
    }
    
    .cooperate-connect-image {
      display: none !important;
    }
    
    .form-submit-btn {
      width: 100% !important;
      padding: 12px 24px !important;
      font-size: 16px !important;
      margin-top: 10px !important;
    }
    
    .cooperate-connect-icon {
      display: none !important;
    }
    
    .cooperate-footer-image {
      width: 100% !important;
      max-width: 100% !important;
      height: auto !important;
      display: block !important;
      margin-top: 20px !important;
      /* Dịch footer xuống một chút mà không tăng chiều cao section */
      transform: translateY(36px) !important;
    }
    
    /* ==================== NEWS PAGE - MOBILE ==================== */
    
    /* 1. NEWS PAGE MAIN SECTION */
    .news-page-main {
      padding: 20px 0 0 !important;
      margin-top: 0px !important; /* giảm khoảng trống phía trên tiêu đề ĐIỂM TIN trên mobile */
      position: relative !important;
      overflow: hidden !important;
    }
    
    .news-page-main::before {
      display: none !important;
    }
    
    /* 2. NEWS PAGE TITLE WRAPPER (Main Title) */
    .news-page-title-wrapper {
      width: 100% !important;
      max-width: 100% !important;
      padding: 0 15px !important;
      margin: 0 auto 20px !important;
      text-align: center !important;
    }
    
    .news-page-main-title {
      font-size: 32px !important;
      line-height: 1.2 !important;
      position: static !important;
      bottom: auto !important;
      display: block !important;
      margin: 0 !important;
    }
    
    .news-title-text {
      display: inline-block !important;
    }
    
    .news-title-icon {
      font-size: 20px !important;
      margin-left: 4px !important;
      top: -4px !important;
    }
    
    /* 3. NEWS TABS WRAPPER (Sub Navigation Tabs) */
    .news-tabs-wrapper {
      width: 100% !important;
      max-width: 100% !important;
      padding: 0 15px !important;
      margin: 0 auto 20px !important;
      margin-top: 0 !important;
    }
    
    .news-tabs {
      flex-direction: column !important;
      gap: 8px !important;
      border-bottom: none !important;
      padding-bottom: 0 !important;
      width: 100% !important;
      max-width: 100% !important;
    }
    
    .news-tab {
      font-size: 14px !important;
      padding: 10px 12px !important;
      width: 100% !important;
      text-align: center !important;
      border: 1px solid var(--color-primary-dark-green) !important;
      border-radius: 4px !important;
      margin-bottom: 4px !important;
    }
    
    .news-tab.active {
      background: var(--color-primary-light-green) !important;
      color: var(--color-primary-dark-green) !important;
    }
    
    .news-tab-separator {
      display: none !important;
    }
    
    /* 4. NEWS PAGE CONTENT SECTION */
    .news-page-content {
      padding: 20px 0 0 !important;
      position: relative !important;
      overflow: visible !important;
    }
    
    .news-page-subsection {
      width: 100% !important;
      margin-bottom: 30px !important;
      scroll-margin-top: 80px !important;
    }
    
    .news-page-subsection + .news-page-subsection {
      margin-top: 30px !important;
    }
    
    .news-page-subsection:last-of-type {
      margin-bottom: 20px !important;
    }
    
    .news-page-content-inner {
      width: 100% !important;
      max-width: 100% !important;
      padding: 0 15px !important;
      margin: 0 auto 30px !important;
    }
    
    .news-page-section-title {
      font-size: 24px !important;
      line-height: 1.2 !important;
      text-align: center !important;
      margin: 0 0 20px 0 !important;
    }
    
    .news-page-cards {
      display: flex !important;
      flex-direction: column !important;
      gap: 16px !important;
      transform: none !important;
      justify-content: center !important;
      width: 100% !important;
      max-width: 100% !important;
    }
    
    .news-page-card-link {
      width: 100% !important;
      display: block !important;
    }
    
    .news-page-card {
      width: 100% !important;
      max-width: 100% !important;
      border-radius: 8px !important;
      background: var(--color-white) !important;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
      transform: none !important;
      order: 0 !important;
    }
    
    .news-page-card:hover {
      transform: none !important;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    }
    
    .news-page-card-active {
      background: var(--color-card-dark) !important;
    }
    
    .news-page-thumb {
      width: 100% !important;
      height: 180px !important;
      min-height: 180px !important;
      max-height: 180px !important;
      border-radius: 8px 8px 0 0 !important;
      overflow: hidden !important;
    }
    
    .news-page-thumb img {
      width: 100% !important;
      height: 100% !important;
      object-fit: cover !important;
      transform: none !important;
    }
    
    .news-page-card:hover .news-page-thumb img {
      transform: none !important;
    }
    
    .news-page-card-monan .news-page-thumb {
      height: 180px !important;
      min-height: 180px !important;
      max-height: 180px !important;
    }
    
    .news-page-card-monan .news-page-thumb img {
      width: 100% !important;
      height: 100% !important;
      object-fit: cover !important;
    }
    
    .news-page-card-tieu .news-page-thumb img {
      width: 100% !important;
      height: 100% !important;
      object-fit: cover !important;
    }
    
    .news-page-card-bun .news-page-thumb {
      border-radius: 8px 8px 0 0 !important;
    }
    
    .news-page-card-bun .news-page-thumb img {
      width: 100% !important;
      height: 100% !important;
      object-fit: cover !important;
    }
    
    .news-page-body {
      padding: 16px !important;
      gap: 8px !important;
      background: transparent !important;
      border-radius: 0 0 8px 8px !important;
    }
    
    .news-page-card-active .news-page-body {
      background: var(--color-card-dark) !important;
    }
    
    .news-page-card-title {
      font-size: 14px !important;
      line-height: 1.4 !important;
      margin: 0 !important;
    }
    
    .news-page-card-active .news-page-card-title {
      color: var(--color-white) !important;
    }
    
    .news-page-meta {
      font-size: 11px !important;
      gap: 16px !important;
      margin-top: 8px !important;
    }
    
    .news-page-card-active .news-page-meta {
      color: var(--color-white) !important;
    }
    
    .news-page-date {
      color: inherit !important;
    }
    
    .news-page-tag {
      color: var(--color-link-blue-alt) !important;
      font-weight: 600 !important;
    }
    
    .news-page-card-active .news-page-tag {
      color: var(--color-primary-light-green) !important;
    }
    
    .news-page-dots {
      margin-top: 20px !important;
      gap: 8px !important;
    }
    
    .news-page-dot {
      width: 8px !important;
      height: 8px !important;
    }
    
    .news-page-footer {
      width: 100% !important;
      max-width: 100% !important;
      height: auto !important;
      min-height: 100px !important;
      display: block !important;
      margin-top: 20px !important;
    }
    
    /* ==================== PRODUCTS PAGE - MOBILE ==================== */
    
    /* 1. HERO SECTION */
    .products-page .hero {
      width: 100% !important;
      max-width: 100% !important;
      margin: 30px 0 0 0 !important;
      height: auto !important;
      min-height: 250px !important;
      overflow: hidden !important;
      position: relative !important;
    }
    
    .products-page .hero-bg {
      position: relative !important;
      transform: none !important;
      object-fit: cover !important;
      width: 100% !important;
      height: auto !important;
      min-height: 250px !important;
    }
    
    .products-page .hero-content {
      position: relative !important;
      width: 100% !important;
      padding: 10px 10px 20px 0px !important; /* ít padding trên hơn để xích lên, giảm padding trái để xích qua trái */
      text-align: left !important; /* đẩy chữ KHÁM PHÁ về bên trái trên mobile */
    }
    
    .products-page .hero-cta {
      font-size: 14px !important;
      padding: 10px 20px !important;
      display: inline-block !important;
    }
    
    .products-page .hero-footer {
      width: 100% !important;
      max-width: 100% !important;
      height: auto !important;
      display: block !important;
      margin-top: -2px !important;
    }
    
    /* 2. PRODUCTS SECTION EXTRA (Main Section) */
    .products-page .products-section-extra {
      width: 100% !important;
      max-width: 100% !important;
      height: auto !important;
      min-height: auto !important;
      margin-top: 0 !important;
      padding: 20px 0 !important;
      position: relative !important;
      overflow: hidden !important;
    }
    
    .products-page .products-section-extra-inner {
      width: 100% !important;
      max-width: 100% !important;
      padding: 20px 15px !important;
      margin: 0 auto !important;
      box-sizing: border-box !important;
    }
    
    /* 3. PRODUCTS LIST HEADER */
    .products-page .products-list-header {
      display: flex !important;
      flex-direction: column !important;
      gap: 16px !important;
      align-items: flex-start !important;
      margin-bottom: 20px !important;
    }
    
    .products-page .products-list-title {
      font-size: 28px !important;
      line-height: 1.2 !important;
      margin: 0 !important;
      margin-left: 0 !important;
      text-align: center !important;
      width: 100% !important;
    }
    
    /* 4. PRODUCTS FILTER */
    .products-page .products-filter {
      display: flex !important;
      flex-direction: column !important;
      gap: 12px !important;
      width: 100% !important;
      margin: 0 !important;
      margin-left: 0 !important;
      margin-top: 0 !important;
      align-items: flex-start !important;
    }
    
    .products-page .filter-label {
      font-size: 14px !important;
      margin: 0 0 8px 0 !important;
      margin-right: 0 !important;
      margin-top: 0 !important;
    }
    
    .products-page .filter-selects {
      width: 100% !important;
      display: flex !important;
      flex-direction: column !important;
      gap: 10px !important;
    }
    
    .products-page .filter-selects select {
      width: 100% !important;
      min-width: auto !important;
      font-size: 14px !important;
      padding: 10px 14px !important;
      padding-right: 28px !important;
    }
    
    /* 5. PRODUCTS GRID */
    .products-page .products-grid {
      display: flex !important;
      flex-wrap: wrap !important;
      gap: 6px !important;
      margin-top: 20px !important;
      padding-left: 0 !important;
      width: 100% !important;
      max-width: 100% !important;
      justify-content: center !important;
      align-items: flex-start !important;
    }
    
    .products-page .products-grid .product-card-link {
      width: auto !important;
      max-width: none !important;
      display: block !important;
    }
    
    /* Cho card trong trang products giống card ở section 2 trang index */
    .products-page .products-grid .product-card {
      width: 110px !important;
      min-width: 110px !important;
      max-width: 110px !important;
      height: 165px !important;
      min-height: 165px !important;
      max-height: 165px !important;
      padding: 6px 4px 4px !important;
      border-radius: 10px !important;
      transform: scale(1) !important;
      overflow: hidden !important;
      box-sizing: border-box !important;
      margin: 0 !important;
    }
    
    .products-page .products-grid .product-card .product-thumb {
      width: 100px !important;
      height: 100px !important;
      min-height: 100px !important;
      max-height: 100px !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
    }
    
    .products-page .products-grid .product-card .product-thumb img {
      width: 60px !important;
      height: 85px !important;
      max-width: 60px !important;
      max-height: 85px !important;
      margin: 0 auto !important;
      margin-left: 10px !important;
      object-fit: contain !important;
    }
    
    .products-page .products-grid .product-card .product-info {
      padding: 6px 4px !important;
      gap: 2px !important;
    }
    
    .products-page .products-grid .product-card .product-title {
      font-size: 7px !important;
      line-height: 1.1 !important;
    }
    
    .products-page .products-grid .product-card .product-price {
      font-size: 7px !important;
      line-height: 1.1 !important;
    }
    
    .products-page .products-grid .product-card .product-meta {
      padding: 0 4px 4px !important;
      gap: 3px !important;
    }
    
    .products-page .products-grid .product-card .pill {
      font-size: 5px !important;
      padding: 1px 3px !important;
    }
    
    .products-page .products-grid .product-card .link {
      font-size: 6px !important;
    }
    
    /* 6. PRODUCTS SECTION FOOTER */
    .products-page .products-section-footer {
      position: relative !important;
      width: 100vw !important;        /* phủ full 2 bên màn hình */
      max-width: none !important;
      min-width: 100vw !important;
      height: auto !important;
      display: block !important;
      left: 50% !important;
      margin-top: 0 !important;       /* không tăng chiều cao section */
      margin-left: 0 !important;
      margin-right: 0 !important;
      transform: translateX(-50%) translateY(44px) !important; /* xích footer xuống nhẹ bằng transform */
    }
    
    /* ==================== PRODUCT DETAIL PAGE - MOBILE ==================== */
    
    /* 1. PRODUCT DETAIL SECTION (Main Section) */
    .product-detail-section {
      padding: 20px 15px 0 !important;
      min-height: auto !important;
      position: relative !important;
      overflow: hidden !important;
    }
    
    .product-detail-container {
      width: 100% !important;
      max-width: 100% !important;
      padding: 0 !important;
      margin: 0 auto !important;
    }
    
    .loading-message,
    .error-message {
      font-size: 14px !important;
      padding: 20px !important;
    }
    
    .product-detail-wrapper {
      display: flex !important;
      flex-direction: column !important;
      gap: 20px !important;
      width: 100% !important;
      max-width: 100% !important;
    }
    
    /* 2. PRODUCT DETAIL LEFT (Image Panel) */
    .product-detail-left {
      width: 100% !important;
      order: 1 !important;
    }
    
    .product-image-panel {
      width: 100% !important;
      min-height: 250px !important;
      padding: 20px !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
    }
    
    .product-main-image {
      width: 100% !important;
      max-width: 200px !important;
      height: auto !important;
    }
    
    .product-thumbnails {
      display: flex !important;
      gap: 10px !important;
      justify-content: center !important;
      flex-wrap: wrap !important;
    }
    
    .product-thumb-item {
      width: 70px !important;
      height: 70px !important;
      border-width: 2px !important;
      padding: 3px !important;
    }
    
    .product-thumb-item img {
      width: 100% !important;
      height: 100% !important;
    }
    
    /* 3. PRODUCT DETAIL RIGHT (Info Panel) */
    .product-detail-right {
      width: 100% !important;
      order: 2 !important;
      padding: 16px !important;
      gap: 12px !important;
    }
    
    .product-detail-title {
      font-size: 24px !important;
      margin: 0 0 12px 0 !important;
      line-height: 1.2 !important;
      text-align: center !important;
    }
    
    .product-rating {
      margin: 0 0 12px 0 !important;
      justify-content: center !important;
      gap: 3px !important;
    }
    
    .star {
      font-size: 18px !important;      /* nhỏ hơn desktop một chút nhưng giữ tỉ lệ */
      color: #ddd !important;          /* màu sao trống giống desktop */
    }
    
    .star.filled {
      color: #FFD700 !important;       /* sao vàng gold như desktop */
    }
    
    .star.half {
      background: linear-gradient(90deg, #FFD700 50%, #ddd 50%) !important;
      background-clip: text !important;
      -webkit-background-clip: text !important;
      -webkit-text-fill-color: transparent !important;
    }
    
    .product-description-list {
      margin: 0 0 12px 0 !important;
    }
    
    .product-desc-item {
      font-size: 13px !important;
      gap: 8px !important;
      margin-bottom: 8px !important;
    }
    
    .product-desc-item .bullet {
      font-size: 14px !important;
    }
    
    .product-price-section {
      margin: 0 0 16px 0 !important;
      justify-content: center !important;
      gap: 8px !important;
    }
    
    .price-label {
      font-size: 13px !important;
    }
    
    .price-value {
      font-size: 20px !important;
    }
    
    .product-info-table {
      width: 100% !important;
      margin: 0 0 16px 0 !important;
      font-size: 11px !important;
      border-collapse: collapse !important;
      border-top: 2px solid #0b3a1e !important;
      border-bottom: 2px solid #0b3a1e !important;
      border-left: none !important;
      border-right: none !important;
    }
    
    .product-info-table th {
      padding: 8px 10px !important;
      font-size: 10px !important;
      border: none !important;
    }
    
    .product-info-table td {
      padding: 8px 10px !important;
      border: none !important;
    }

    /* Kẻ cột dọc giống desktop: cột Size và Quy cách có đường kẻ bên phải */
    .product-info-table th:first-child,
    .product-info-table td:first-child {
      border-right: 2px solid #0b3a1e !important;
    }

    .product-info-table th:nth-child(2),
    .product-info-table td:nth-child(2) {
      border-right: 2px solid #0b3a1e !important;
    }
    
    .info-box {
      padding: 8px 10px !important;
      font-size: 10px !important;
    }
    
    .product-social-card {
      margin: 0 0 16px 0 !important;
    }
    
    .product-social-icons {
      display: flex !important;
      justify-content: space-around !important; /* tản đều các icon ra 2 bên */
      align-items: center !important;
      gap: 0 !important; /* bỏ gap vì đã dùng space-around */
      width: 100% !important;
      max-width: 100% !important;
    }
    
    .social-icon img {
      max-width: 40px !important;
      max-height: 40px !important;
    }
    
    .product-contact-card {
      margin: 0 !important;
      text-align: center !important;
    }
    
    .product-contact-section {
      text-align: center !important;
    }
    
    .contact-header {
      font-size: 14px !important;
      padding: 10px 16px !important;
      text-align: center !important;
      justify-content: center !important;
    }
    
    .contact-content {
      font-size: 13px !important;
      text-align: center !important;
    }
    
    .contact-content.expanded {
      max-height: 200px !important;
      padding: 12px 0 !important;
    }
    
    .contact-content p {
      text-align: center !important;
    }
    
    .btn-contact-now {
      font-size: 13px !important;
      padding: 10px 20px !important;
      margin-top: 12px !important;
      display: inline-block !important;
    }
    
    .footer-product-detail {
      width: 100% !important;
      max-width: 100% !important;
      height: auto !important;
      display: block !important;
      margin-top: 20px !important;
    }
    
    /* 4. PRODUCT DETAIL INFO SECTION */
    .product-detail-info-section {
      padding: 30px 0 0 !important;
      margin-top: 0 !important;
      position: relative !important;
    }
    
    .product-detail-info-section-wrapper {
      width: 100% !important;
      max-width: 100% !important;
      padding: 0 15px !important;
      margin: 0 auto !important;
    }
    
    .product-detail-info-header {
      width: 100% !important;
      padding: 0 !important;
      margin-bottom: 20px !important;
    }
    
    .product-detail-info-header-bg {
      width: 100% !important;
      max-width: 100% !important;
      opacity: 0 !important;
    }
    
    .product-detail-info-header-text {
      position: relative !important;
      font-size: 20px !important;
      padding: 10px 20px !important;
      left: auto !important;
      top: auto !important;
      transform: none !important;
      white-space: normal !important;
      border-radius: 8px !important;
      margin: 0 auto !important;
      display: block !important;
      width: fit-content !important;
    }
    
    .product-detail-info-container {
      width: 100% !important;
      max-width: 100% !important;
      margin-top: 0 !important;
    }
    
    .product-detail-info-wrapper {
      display: flex !important;
      flex-direction: column !important;
      gap: 20px !important;
      width: 100% !important;
    }
    
    .product-info-card {
      width: 100% !important;
      margin: 0 !important;
      padding: 16px !important;
      box-sizing: border-box !important;
    }
    
    .product-info-card-1,
    .product-info-card-2,
    .product-info-card-3,
    .product-info-card-4 {
      top: 0 !important;
      left: 0 !important;
      margin-bottom: 0 !important;
    }
    
    .product-detail-info-title {
      font-size: 20px !important;
      margin: 0 0 12px 0 !important;
      text-align: center !important;
      padding: 0 12px !important;
    }
    
    .product-detail-info-description {
      font-size: 13px !important;
      line-height: 1.6 !important;
    }
    
    .product-detail-info-desc-item {
      font-size: 13px !important;
      margin-bottom: 8px !important;
    }
    
    .product-info-section-title,
    .quality-commitment-title,
    .manufacturing-title {
      font-size: 18px !important;
      margin: 4px 0 12px 0 !important;
      text-align: center !important;
      padding: 0 10px !important;
    }
    
    .product-info-list,
    .quality-commitment-list,
    .manufacturing-info {
      font-size: 13px !important;
      line-height: 1.6 !important;
    }
    
    .product-info-item,
    .quality-commitment-item {
      margin-bottom: 10px !important;
      display: flex !important;
      flex-direction: column !important;
      gap: 4px !important;
    }
    
    .info-label {
      font-weight: 700 !important;
      margin-bottom: 4px !important;
    }
    
    .info-value {
      margin-left: 0 !important;
    }
    
    .manufacturing-info p {
      margin-bottom: 8px !important;
      font-size: 13px !important;
    }
    
    /* 5. RELATED PRODUCTS SECTION - Giống section 2 trong index.html */
    .related-products-section {
      padding: 20px 8px 12px 8px !important;
      margin-bottom: 0 !important;
      position: relative !important;
    }
    
    .related-products-inner {
      width: 100% !important;
      max-width: 100% !important;
      padding: 0 !important;
    }
    
    .related-products-title {
      font-size: 16px !important;
      line-height: 1.2 !important;
      margin-bottom: 10px !important;
      text-align: center !important;
    }
    
    .related-products-slider-wrapper {
      margin-top: 12px !important;
      gap: 5px !important;
      max-width: 100% !important;
      width: 100% !important;
      padding: 0 !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
    }
    
    .related-slider-arrow {
      width: 18px !important;
      height: 18px !important;
      font-size: 11px !important;
      flex-shrink: 0 !important;
    }
    
    .related-products-slider {
      display: flex !important;
      flex-direction: row !important;
      gap: 6px !important;
      width: 100% !important;
      overflow: visible !important;
      justify-content: center !important;
      align-items: flex-start !important;
    }
    
    .related-products-slider .product-card-link {
      width: auto !important;
      max-width: none !important;
      display: block !important;
    }
    
    .related-products-slider .product-card {
      width: 110px !important;
      min-width: 110px !important;
      max-width: 110px !important;
      height: 165px !important;
      min-height: 165px !important;
      max-height: 165px !important;
      padding: 6px 4px 4px !important;
      border-radius: 10px !important;
      transform: scale(1) !important;
      overflow: hidden !important;
      box-sizing: border-box !important;
      margin: 0 !important;
    }
    
    .related-products-slider .product-card .product-thumb {
      width: 100px !important;
      height: 100px !important;
      min-height: 100px !important;
      max-height: 100px !important;
      left: 0 !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
    }
    
    .related-products-slider .product-card .product-thumb img {
      width: 60px !important;
      height: 85px !important;
      max-width: 60px !important;
      max-height: 85px !important;
      margin: 0 auto !important;
      margin-left: 10px !important;
      display: block !important;
      object-fit: contain !important;
    }
    
    .related-products-slider .product-card .product-info {
      margin-top: 3px !important;
      gap: 2px !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding: 0 !important;
    }
    
    .related-products-slider .product-card .product-title {
      font-size: 7px !important;
      line-height: 1.1 !important;
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
      max-width: 100% !important;
    }
    
    .related-products-slider .product-card .product-price {
      font-size: 7px !important;
      line-height: 1.1 !important;
      white-space: nowrap !important;
    }
    
    .related-products-slider .product-card .product-meta {
      margin-top: 3px !important;
      gap: 3px !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding: 0 4px 4px !important;
    }
    
    .related-products-slider .product-card .pill {
      font-size: 5px !important;
      padding: 1px 3px !important;
      line-height: 1.2 !important;
      white-space: nowrap !important;
    }
    
    .related-products-slider .product-card .link {
      font-size: 6px !important;
      line-height: 1.2 !important;
      white-space: nowrap !important;
    }
    
    .related-products-dots {
      margin-top: 15px !important;
      gap: 6px !important;
    }
    
    .related-products-dots .dot {
      width: 6px !important;
      height: 6px !important;
    }
    
    .related-products-footer {
      position: relative !important;
      width: 100vw !important;
      max-width: none !important;
      min-width: 100vw !important;
      height: auto !important;
      display: block !important;
      left: 50% !important;
      margin-top: 0 !important;
      margin-left: 0 !important;
      margin-right: 0 !important;
      transform: translateX(-50%) translateY(20px) !important; /* fill đầy 2 bên và dịch xuống 20px */
    }
    
    /* 6. SCALE SECTION PRODUCTS CHO MOBILE */
    .section-products {
      padding: 20px 8px 12px 8px !important;
    }
    
    .section-products-title-card {
      top: 0 !important;
      position: relative !important;
      transform: none !important;
      left: auto !important;
      margin-bottom: 10px !important;
    }
    
    .section-products h2 {
      font-size: 16px !important;
      line-height: 1.2 !important;
    }
    
    .product-slider-wrapper {
      margin-top: 12px !important;
      gap: 5px !important;
      max-width: 100% !important;
    }
    
  .product-card {
      width: 110px !important;
      min-width: 110px !important;
      max-width: 110px !important;
      height: 165px !important;
      min-height: 165px !important;
      max-height: 165px !important;
      padding: 6px 4px 4px !important;
      border-radius: 10px !important;
      transform: scale(1) !important;
      overflow: hidden !important;
      box-sizing: border-box !important;
  }
  
  .product-card .product-thumb {
      width: 100px !important;
      height: 100px !important;
      min-height: 100px !important;
      max-height: 100px !important;
      left: 0 !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
  }
  
  .product-card .product-thumb img {
      width: 60px !important;
      height: 85px !important;
      max-width: 60px !important;
      max-height: 85px !important;
      margin: 0 auto !important;
      margin-left: 10px !important;
      display: block !important;
    }
    
    .product-info {
      margin-top: 3px !important;
      gap: 2px !important;
    width: 100% !important;
      box-sizing: border-box !important;
    }
    
    .product-title {
      font-size: 7px !important;
      line-height: 1.1 !important;
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
      max-width: 100% !important;
    }
    
    .product-price {
      font-size: 7px !important;
      line-height: 1.1 !important;
      white-space: nowrap !important;
    }
    
    .product-meta {
      margin-top: 3px !important;
      gap: 3px !important;
      width: 100% !important;
      box-sizing: border-box !important;
    }
    
    .pill {
      font-size: 5px !important;
      padding: 1px 3px !important;
      line-height: 1.2 !important;
      white-space: nowrap !important;
    }
    
    .product-meta .link {
      font-size: 6px !important;
      line-height: 1.2 !important;
      white-space: nowrap !important;
    }
    
    .slider-arrow {
      width: 18px !important;
      height: 18px !important;
      font-size: 11px !important;
    }
    
    .product-slider {
      gap: 6px !important;
    }
    
    /* SECTION ABOUT (HOME) - MOBILE */
    .section-about-text {
      margin-top: 480px !important; /* đẩy tiêu đề, nội dung và nút xuống thấp hơn trên mobile */
    }
    
    /* 7. SCALE SECTION VISION CHO MOBILE */
    .section-vision {
      min-height: auto !important;
      margin-top: -50px !important;
      padding: 20px 0 !important;
    }
    
    .section-vision-grid {
      display: flex !important;
      flex-direction: column !important;
      gap: 20px !important;
      padding: 20px 15px !important;
    }
    
    .section-vision-left {
      width: 100% !important;
      grid-column: auto !important;
      padding-top: 0 !important;
      order: 2 !important;
    }
    
    .section-vision-right {
    width: 100% !important;
      grid-column: auto !important;
      order: 1 !important;
    }
    
    .section-vision-title {
      font-size: 32px !important;
      line-height: 1.2 !important;
      margin-top: 0 !important;
      max-width: 100% !important;
    }
    
    .section-vision-subtitle {
      font-size: 18px !important;
    }
    
    .section-vision-desc {
      font-size: 14px !important;
      line-height: 1.5 !important;
    }
    
    .section-vision-quote {
      font-size: 20px !important;
      max-width: 100% !important;
    }
    
    .section-vision-img {
      max-width: 100% !important;
      width: 100% !important;
    }
    
    .section-vision-cta {
      font-size: 14px !important;
      padding: 8px 16px !important;
      margin-top: 10px !important;
    }
    
    .section-vision-text {
      gap: 12px !important;
    }
    
    /* 8. SCALE SECTION NEWS CHO MOBILE */
  .section-news {
      min-height: auto !important;
      padding: 15px 0 !important;
  }
  
  .section-news-inner {
      top: 0 !important;
      padding: 0 !important;
      width: 100% !important;
      max-width: 100% !important;
    }
    
    .section-news-header {
      padding-left: 0 !important;
      text-align: center !important;
      width: 100% !important;
    }
    
    .section-news-title {
      font-size: 24px !important;
      line-height: 1.2 !important;
      margin-left: 0 !important;
      margin-top: 0 !important;
    }
    
    .section-news-subtitle {
      font-size: 12px !important;
      margin-left: 0 !important;
      margin-top: 6px !important;
      padding: 0 10px !important;
    }
    
    .section-news-cards-wrapper {
      margin-top: 15px !important;
      width: 100% !important;
      overflow: visible !important;
      display: flex !important;
      justify-content: center !important;
      align-items: center !important;
    }
    
    .section-news-cards {
      display: flex !important;
      flex-direction: column !important;
      gap: 12px !important;
      max-width: 100% !important;
      width: 100% !important;
      align-items: center !important;
    }
    
    .news-card-link {
      width: 85% !important;
      max-width: 85% !important;
      display: flex !important;
      justify-content: center !important;
      margin: 0 auto !important;
    }
    
    .news-card {
      grid-column: auto !important;
      width: 100% !important;
      max-width: 100% !important;
      border-radius: 8px !important;
      margin: 0 auto !important;
      border: none !important;
      background: var(--color-white) !important;
    }
    
    .news-card-2 {
      border: none !important;
      background: var(--color-white) !important;
    }
    
    .news-thumb {
      width: 100% !important;
      height: 120px !important;
      min-height: 120px !important;
      max-height: 120px !important;
      background: var(--color-bg-cream) !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
    }
    
    .news-thumb img {
      width: 100% !important;
      height: 100% !important;
      object-fit: cover !important;
      display: block !important;
    }
    
    .news-card-3 .news-thumb {
      height: 120px !important;
      min-height: 120px !important;
      max-height: 120px !important;
      background: var(--color-bg-cream) !important;
    }
    
    .news-card-3 .news-thumb img {
      width: 100% !important;
      height: 100% !important;
      object-fit: cover !important;
    }
    
    .news-body {
      padding: 10px !important;
      gap: 6px !important;
      background: var(--color-white) !important;
    }
    
    .news-card-2 .news-body {
      background: var(--color-white) !important;
    }
    
    .news-title {
      font-size: 12px !important;
      line-height: 1.3 !important;
      margin: 0 !important;
      color: var(--color-primary-dark-green) !important;
    }
    
    .news-card-2 .news-title {
      color: var(--color-primary-dark-green) !important;
    }
    
    .news-meta {
      font-size: 9px !important;
      margin-top: 6px !important;
      gap: 6px !important;
      color: var(--color-primary-dark-green) !important;
    }
    
    .news-card-2 .news-meta {
      color: var(--color-primary-dark-green) !important;
    }
    
    .news-date,
    .news-tag {
      font-size: 9px !important;
      color: var(--color-primary-dark-green) !important;
    }
    
    .section-news-dots {
      margin-top: 15px !important;
      gap: 6px !important;
    }
    
    .section-news-dots .dot {
      width: 6px !important;
      height: 6px !important;
    }
    
    .section-news-bg-right {
      display: none !important;
    }
    
    .section-news {
      display: flex !important;
      flex-direction: column !important;
    }
    
    .section-news-inner {
      display: flex !important;
      flex-direction: column !important;
      flex: 1 !important;
    }
    
    .section-news-footer {
      position: relative !important;
      width: 100% !important;
      max-width: 100% !important;
      margin-top: 0px !important;
      margin-left: 0 !important;
      margin-right: 0 !important;
      margin-bottom: -20px;
      padding: 0 !important;
      order: 999 !important;
      display: block !important;
      align-self: stretch !important;
      left: 0 !important;
      right: 0 !important;
    }
    
    .section-news-footer img {
      width: 100% !important;
      max-width: 100% !important;
      height: auto !important;
      display: block !important;
    }

    /* 9. SCALE SECTION EXTRA (FOOTER) CHO MOBILE */
    .section-extra {
      padding: 20px 0 0 0 !important;
      margin-top: 0 !important;
    }

    .footer-grid {
      display: flex !important;
      flex-direction: column !important;
      padding: 20px 16px 10px 16px !important;
      gap: 16px !important;
    }

    .footer-top {
      display: flex !important;
      flex-direction: column !important;
      padding-bottom: 12px !important;
    }

    .footer-top::before,
    .footer-top::after {
      display: none !important;
    }

    .footer-logo-col,
    .footer-company-col,
    .footer-social {
      grid-column: auto !important;
      width: 100% !important;
      align-items: flex-start !important;
    }

    .footer-logo {
      width: 160px !important;
      margin-top: 0 !important;
    }

    .footer-company-name {
      font-size: 16px !important;
    }

    .footer-contact p,
    .footer-sub,
    .footer-bottom p {
      font-size: 11px !important;
      line-height: 1.5 !important;
    }

    .footer-icons {
      margin-top: 8px !important;
    }

    .footer-bottom {
      grid-column: auto !important;
      padding-top: 12px !important;
      gap: 4px !important;
    }

    .section-extra-pattern {
      display: none !important;
    }

    /* 10. SCALE ABOUT PAGE CHO MOBILE */
    
    /* Hero Section About */
    .about-page .hero.hero-about {
      width: 100% !important;
      max-width: 100% !important;
      margin: 80px 0 0 0 !important;
      height: auto !important;
      min-height: 300px !important;
      aspect-ratio: auto !important;
      overflow: hidden !important;
      padding-bottom: 20px !important;
    }

    .about-page .hero-bg {
      position: relative !important;
      transform: none !important;
      object-fit: cover !important;
      width: 100% !important;
      height: auto !important;
      min-height: 250px !important;
    }

    .about-page .hero-content-about {
      position: relative !important;
      width: 100% !important;
      height: auto !important;
      padding: 0 !important;
    }

    .about-page .hero-about-inner {
      position: relative !important;
      padding: 16px 15px 20px !important;
      display: flex !important;
      flex-direction: column !important;
      align-items: flex-start !important;
      gap: 8px !important;
      width: 100% !important;
    }

    .about-page .hero-title-main,
    .about-page .hero-title-sub,
    .about-page .hero-description {
      position: static !important;
      left: auto !important;
      top: auto !important;
      margin: 0 !important;
      max-width: 100% !important;
    }

    .about-page .hero-title-main {
      font-size: 32px !important;
      line-height: 1.2 !important;
    }

    .about-page .hero-title-sub {
      font-size: 24px !important;
      line-height: 1.2 !important;
    }

    .about-page .hero-description {
      max-width: 100% !important;
      margin-top: 8px !important;
    }

    .about-page .hero-description p {
      font-size: 14px !important;
      line-height: 1.5 !important;
      margin-right: 0 !important;
      margin-bottom: 8px !important;
    }

    .about-page .hero-description p:first-child {
      font-size: 12px !important;
      font-weight: 600 !important;
      margin-bottom: 4px !important;
    }

    .about-page .hero-footer {
      position: relative !important;
      left: 0 !important;
      transform: none !important;
      margin-top: 12px !important;
      width: 100% !important;
      max-width: 100% !important;
      height: auto !important;
    }

    /* About New Section (Story) */
    .about-new-section {
      padding: 30px 0 !important;
      position: relative !important;
    }

    .about-new-section-content {
      display: flex !important;
      flex-direction: column !important;
      gap: 20px !important;
      grid-template-columns: none !important;
    }

    .about-new-section-heading {
      text-align: center !important;
      gap: 8px !important;
    }

    .about-new-section-heading span:first-child {
      font-size: 20px !important;
    }

    .about-new-section-heading span:nth-child(2) {
      font-size: 28px !important;
    }

    .about-new-section-quote {
      font-size: 18px !important;
      line-height: 1.4 !important;
      text-align: center !important;
      margin-bottom: 12px !important;
    }

    .about-new-section-body p {
      font-size: 14px !important;
      line-height: 1.6 !important;
      margin-bottom: 12px !important;
    }

    .about-new-section-signature {
      font-size: 18px !important;
      line-height: 1.4 !important;
      text-align: center !important;
      margin-top: 8px !important;
    }

    /* About Values Section */
    .about-values-section {
      padding: 30px 0 40px !important;
      position: relative !important;
    }

    .about-values-section-title {
      font-size: 24px !important;
      text-align: center !important;
      margin-bottom: 20px !important;
    }

    .about-values-item {
      margin-bottom: 20px !important;
    }

    .about-values-heading {
      font-size: 18px !important;
      margin-bottom: 8px !important;
      text-align: center !important;
    }

    .about-values-text {
      font-size: 14px !important;
      line-height: 1.6 !important;
      text-align: center !important;
    }

    .about-values-section-footer {
      position: relative !important;
      bottom: auto !important;
      margin-top: 20px !important;       /* khoảng cách chuẩn */
      width: 100% !important;
      max-width: 100% !important;
      height: auto !important;
      transform: translateY(20px);       /* dịch hình xuống dưới */
      margin-bottom: -20px !important;   /* bù lại để không tăng chiều cao tổng */
    }

    /* About Development Section */
    .about-development-section {
      padding: 30px 0 30px !important;
      position: relative !important;
      overflow: hidden !important;
    }

    .about-development-inner {
      width: 100% !important;
      max-width: 100% !important;
      padding: 0 15px !important;
      margin: 0 auto !important;
      box-sizing: border-box !important;
      position: relative !important;
    }

    .about-development-icon-top,
    .about-development-icon-center {
      display: none !important;
    }

    .about-development-title {
      font-size: 22px !important;
      text-align: center !important;
      margin: 0 0 24px 0 !important;
      padding: 0 !important;
      display: flex !important;
      flex-direction: column !important;
      gap: 2px !important;
      line-height: 1.2 !important;
      position: relative !important;
      top: 0 !important;
      left: 0 !important;
      transform: none !important;
    }

    .about-development-title span {
      display: block !important;
      font-size: 22px !important;
    }

    .about-development-content {
      display: flex !important;
      flex-direction: column !important;
      gap: 28px !important;
      width: 100% !important;
      margin: 0 !important;
      margin-top: 0 !important;
      padding: 0 !important;
      position: relative !important;
      top: 0 !important;
      left: 0 !important;
      transform: none !important;
      z-index: 1 !important;
    }

    .about-dev-item {
      display: flex !important;
      flex-direction: column !important;
      gap: 16px !important;
      margin: 0 !important;
      margin-bottom: 0 !important;
      margin-top: 0 !important;
      margin-left: 0 !important;
      margin-right: 0 !important;
      grid-template-columns: none !important;
      grid-column: auto !important;
      width: 100% !important;
      padding: 0 !important;
      position: relative !important;
      top: 0 !important;
      left: 0 !important;
      transform: none !important;
      align-items: stretch !important;
    }

    .about-dev-item:last-child {
      margin-bottom: 0 !important;
    }

    /* Reset tất cả các class specific về 0 */
    .about-dev-item-vision,
    .about-dev-item-mission,
    .about-dev-item-core {
      display: flex !important;
      flex-direction: column !important;
      gap: 16px !important;
      margin: 0 !important;
      grid-template-columns: none !important;
    }

    .about-dev-image {
      width: 100% !important;
      order: 1 !important;
      margin: 0 !important;
      margin-left: 0 !important;
      margin-right: 0 !important;
      margin-top: 0 !important;
      margin-bottom: 0 !important;
      padding: 0 !important;
      display: block !important;
      position: relative !important;
      top: 0 !important;
      left: 0 !important;
      transform: none !important;
      box-sizing: border-box !important;
    }

    /* Reset tất cả image variants */
    .about-dev-image-vision,
    .about-dev-image-mission,
    .about-dev-image-core {
      width: 100% !important;
      order: 1 !important;
      margin: 0 !important;
      margin-left: 0 !important;
      margin-top: 0 !important;
      margin-bottom: 0 !important;
      padding: 0 !important;
      position: relative !important;
      top: 0 !important;
      left: 0 !important;
      transform: none !important;
    }

    .about-dev-image img,
    .about-dev-image-vision img,
    .about-dev-image-mission img,
    .about-dev-image-core img {
      width: 100% !important;
      max-width: 100% !important;
      height: auto !important;
      object-fit: cover !important;
      border-radius: 8px !important;
      display: block !important;
      margin: 0 !important;
      margin-left: 0 !important;
      margin-right: 0 !important;
      margin-top: 0 !important;
      margin-bottom: 0 !important;
      padding: 0 !important;
      position: relative !important;
      top: 0 !important;
      left: 0 !important;
      transform: none !important;
    }

    .about-dev-text {
      width: 100% !important;
      order: 2 !important;
      margin: 0 !important;
      margin-left: 0 !important;
      margin-right: 0 !important;
      margin-top: 0 !important;
      margin-bottom: 0 !important;
      padding: 0 !important;
      display: flex !important;
      flex-direction: column !important;
      gap: 8px !important;
      position: relative !important;
      top: 0 !important;
      left: 0 !important;
      transform: none !important;
      box-sizing: border-box !important;
    }

    /* Reset tất cả text variants */
    .about-dev-text-vision,
    .about-dev-text-mission,
    .about-dev-text-core {
      width: 100% !important;
      order: 2 !important;
      margin: 0 !important;
      margin-left: 0 !important;
      margin-right: 0 !important;
      margin-top: 0 !important;
      margin-bottom: 0 !important;
      padding: 0 !important;
      position: relative !important;
      top: 0 !important;
      left: 0 !important;
      transform: none !important;
      display: flex !important;
      flex-direction: column !important;
      gap: 8px !important;
    }

    .about-dev-subtitle,
    .about-dev-subtitle-vision,
    .about-dev-subtitle-mission,
    .about-dev-subtitle-core {
      font-size: 16px !important;
      margin: 0 0 8px 0 !important;
      margin-top: 0 !important;
      margin-left: 0 !important;
      padding: 0 !important;
      text-align: center !important;
      font-weight: 700 !important;
      color: var(--color-white) !important;
      position: relative !important;
      top: 0 !important;
      left: 0 !important;
      transform: none !important;
    }

    .about-dev-text p,
    .about-dev-text-vision p,
    .about-dev-text-mission p,
    .about-dev-text-core p {
      font-size: 13px !important;
      line-height: 1.6 !important;
      text-align: center !important;
      margin: 0 !important;
      margin-left: 0 !important;
      margin-top: 0 !important;
      margin-bottom: 8px !important;
      padding: 0 !important;
      color: var(--color-white) !important;
      position: relative !important;
      top: 0 !important;
      left: 0 !important;
      transform: none !important;
    }

    .about-dev-text p:last-child,
    .about-dev-text-vision p:last-child,
    .about-dev-text-mission p:last-child,
    .about-dev-text-core p:last-child {
      margin-bottom: 0 !important;
    }

    .about-dev-values {
      display: flex !important;
      flex-direction: column !important;
      gap: 10px !important;
      margin: 0 !important;
      margin-top: 0 !important;
      padding: 0 !important;
    }

    .about-dev-values p {
      font-size: 13px !important;
      line-height: 1.6 !important;
      text-align: left !important;
      margin: 0 !important;
      margin-left: 0 !important;
      margin-top: 0 !important;
      margin-bottom: 0 !important;
      padding: 0 !important;
      color: var(--color-white) !important;
    }

    .about-dev-values p:not(:last-child) {
      margin-bottom: 10px !important;
    }

    .about-dev-values p strong {
      font-weight: 700 !important;
      display: inline-block !important;
      margin-right: 4px !important;
    }

    .about-development-footer {
      position: relative !important;
      width: 100% !important;
      max-width: 100% !important;
      height: auto !important;
      margin: 24px 0 0 0 !important;
      margin-top: 24px !important;
      margin-bottom: 0 !important;
      padding: 0 !important;
      display: block !important;
      top: 0 !important;
      left: 0 !important;
      transform: none !important;
    }

    .about-development-footer img {
      width: 100% !important;
      max-width: 100% !important;
      height: auto !important;
      display: block !important;
      margin: 0 !important;
    }
    
    /* LANGUAGE SWITCHER - Fix icon translate hiển thị trên mobile */
    .language-switcher {
      position: fixed !important;
      bottom: 20px !important;
      right: 15px !important;
      width: 44px !important;
      height: 44px !important;
      background: var(--color-white) !important;
      border: 2px solid #000000 !important; /* giảm border từ 25px xuống 2px */
      border-radius: 10px !important;
      padding: 0 !important;
      z-index: 10000 !important;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    }
    
    .language-switcher img {
      width: 100% !important;
      height: 100% !important;
      object-fit: contain !important;
      display: block !important;
      border: none !important; /* bỏ border đen của img */
      border-radius: 8px !important;
      opacity: 1 !important; /* đảm bảo hiển thị */
      visibility: visible !important;
    }
    
    /* LANGUAGE SWITCHER BUBBLE - Hiển thị đầy đủ text trên mobile */
    .language-switcher-bubble {
      max-width: 260px !important;
      min-width: 200px !important;
      white-space: normal !important;
      padding: 12px 14px !important;
      font-size: 12px !important;
      line-height: 1.5 !important;
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
    }
}
