@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* GLOBAL UNIVERSAL FONT OVERRIDE FOR PERFECT VIETNAMESE RENDERING */
html, body, button, input, select, textarea, h1, h2, h3, h4, h5, h6, p, label, td, th, li, span, a, div {
  font-family: 'Be Vietnam Pro', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* PROTECT FONT AWESOME AND ICON FONTS FROM BEING OVERRIDDEN */
.fa-solid, .fas {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
}
.fa-regular, .far {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 400 !important;
}
.fa-brands, .fab {
  font-family: "Font Awesome 6 Brands" !important;
  font-weight: 400 !important;
}



@keyframes tigerToastSlideIn {
  0% { opacity: 0; transform: translateX(60px) scale(0.95); }
  100% { opacity: 1; transform: translateX(0) scale(1); }
}

/* ==========================================================================
   TIGER HUMIC VIỆT NAM - TTP GLOBAL EXACT STYLE & LAYOUT DESIGN SYSTEM
   Primary Green: #1a622b | Dark Green: #075f33 | Accent Green: #06ae5a
   Gold: #f59e0b | Yellow Gold: #ffd700 | Neutral Dark: #0f172a | Light BG: #f8fafc
   ========================================================================== */

:root {
  --primary: #ea580c;
  --primary-dark: #7c2d12;
  --accent-green: #ea580c;
  --light-green-bg: #fff7ed;
  
  --gold-amber: #f59e0b;
  --gold-yellow: #f59e0b;
  
  --text-main: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  
  --bg-body: #f8fafc;
  --bg-card: #ffffff;
  --bg-dark: #c2410c;

  --border-light: #e2e8f0;
  --border-green: rgba(234, 88, 12, 0.25);

  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif !important;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 10px 25px -5px rgba(234, 88, 12, 0.15);
  --shadow-lg: 0 20px 35px -10px rgba(0, 0, 0, 0.2);
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  --transition: all 0.3s ease;
}

/* RESET & CORE TYPOGRAPHY */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

/* TTP GLOBAL SEARCH FORM */
.header-search-form {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
  max-width: 480px !important;
  overflow: visible !important;
  z-index: 99999 !important;
}

.header-search-form input {
  width: 100% !important;
  padding: 0.65rem 1rem !important;
  border: 1.5px solid #fed7aa !important;
  border-right: none !important;
  border-radius: 8px 0 0 8px !important;
  outline: none !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  font-size: 0.9rem !important;
  background: #ffffff !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.header-search-form input:focus {
  border-color: #ea580c !important;
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.15) !important;
}

.header-search-form button {
  background: linear-gradient(135deg, #ea580c, #c2410c) !important;
  color: #ffffff !important;
  border: 1.5px solid #ea580c !important;
  border-radius: 0 8px 8px 0 !important;
  padding: 0.65rem 1.25rem !important;
  cursor: pointer !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  white-space: nowrap !important;
  transition: all 0.2s ease !important;
}

.header-search-form button:hover {
  background: #9a3412 !important;
  border-color: #9a3412 !important;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  background-color: var(--bg-body);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  color: var(--primary-dark);
  font-weight: 700;
  line-height: 1.3;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* LOGO SHEEN SHINE ANIMATION (EXACT TTP GLOBAL EFFECT) */
.logo-sheen {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.logo-sheen::before, .logo-sheen::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  transform: skewX(-25deg) translateY(-50%);
  z-index: 2;
  pointer-events: none;
}

.logo-sheen::before {
  left: 0%;
  animation: light-left 5s infinite alternate linear;
}

.logo-sheen::after {
  right: -5%;
  animation: light-right 5s infinite alternate linear;
}

@keyframes light-left {
  0% { left: -10%; opacity: 0; }
  50% { left: 50%; opacity: 1; }
  100% { left: 110%; opacity: 0; }
}

@keyframes light-right {
  0% { right: -10%; opacity: 0; }
  50% { right: 50%; opacity: 1; }
  100% { right: 110%; opacity: 0; }
}

/* TOP HEADER ANNOUNCEMENT BAR */
.top-header,
.top-bar-notice {
  background: linear-gradient(135deg, #9a3412 0%, #7c2d12 100%);
  color: #ffffff;
  font-size: 0.85rem;
  padding: 0.5rem 0;
  border-bottom: 2px solid var(--gold-yellow);
  width: 100%;
}

.top-header .container,
.top-bar-notice .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 15px;
}

.top-bar-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top-bar-left a,
.top-bar-left span {
  color: #ffedd5;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.top-bar-left a:hover {
  color: var(--gold-yellow);
}

.top-bar-divider {
  color: rgba(255,255,255,0.3);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fed7aa;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.top-info a {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: #e2e8f0;
}

.top-info a:hover {
  color: var(--gold-yellow);
}

.social-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.social-top a {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #ffffff;
}

.social-top a:hover {
  background: var(--gold-yellow);
  color: var(--primary-dark);
}

/* MAIN HEADER LOGO & SEARCH BAR */
.header-main-area {
  position: relative !important;
  z-index: 100001 !important;
  background: #ffffff;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border-light);
}

.header-main-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo-img {
  width: 55px;
  height: 55px;
  border-radius: var(--radius-md);
  object-fit: cover;
  border: 1.5px solid var(--primary);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.brand-title-group {
  display: flex;
  flex-direction: column;
}

.brand-name-text {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary-dark);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.brand-sub-text {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-amber);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* TTP GLOBAL SEARCH FORM */
.header-search-form {
  position: relative !important;
  z-index: 100002 !important;
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
  max-width: 480px !important;
  overflow: visible !important;
}

.header-search-form input {
  width: 100%;
  padding: 0.65rem 1rem;
  border: none;
  outline: none;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  font-size: 0.9rem;
}

.header-search-form button {
  background: var(--primary);
  color: #ffffff;
  border: none;
  padding: 0.65rem 1.25rem;
  cursor: pointer;
  font-size: 0.9rem;
  transition: var(--transition);
}

.header-search-form button:hover {
  background: var(--primary-dark);
}

.header-hotline-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--light-green-bg);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-green);
}

.header-hotline-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.header-hotline-text label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 700;
  display: block;
}

.header-hotline-text a {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--primary-dark);
}

/* STICKY NAVIGATION MENU BAR */
.nav-bottom-bar {
  background: var(--primary-dark, #9a3412) !important;
  background-color: #9a3412 !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 99999 !important;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.22) !important;
  width: 100% !important;
}

.menu-nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  flex-wrap: wrap;
}

.menu-nav-item > a {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 0.85rem 1.25rem !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 0.925rem !important;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1) !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  border-radius: 6px !important;
  background: transparent;
  cursor: pointer !important;
  position: relative !important;
  z-index: 1005 !important;
}

/* NỀN NÂU ĐẬM/ĐEN ĐỒNG BỘ CHO TẤT CẢ MỤC MENU KHI HOVER, ACTIVE, CLICK HOẶC FOCUS */
.menu-nav-item:hover > a, 
.menu-nav-item.active > a,
.menu-nav-item > a:hover,
.menu-nav-item > a:active,
.menu-nav-item > a.active,
.menu-nav-item:focus-within > a,
.menu-nav-item.has-dropdown:hover > a,
.menu-nav-item.has-dropdown.active > a,
.menu-nav-list .has-dropdown:hover > a {
  background: var(--primary-dark, #7c2d12) !important;
  color: #fef08a !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25), inset 0 -3px 0 #f59e0b !important;
}

.menu-nav-item.has-dropdown:hover > a img,
.menu-nav-item.has-dropdown:hover > a .nav-dropdown-icon {
  transform: rotate(180deg) !important;
}

.nav-dropdown-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  font-size: 10.5px;
  opacity: 0.85;
  transition: transform 0.25s ease;
}

/* HERO SLIDER BANNER */
.hero-banner-section {
  position: relative;
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 50%, #9a3412 100%);
  color: #ffffff;
  padding: 4.5rem 0;
  overflow: hidden;
  border-bottom: 4px solid #f59e0b;
}

.hero-banner-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero_bg.jpg') center/cover no-repeat;
  opacity: 0.18;
  mix-blend-mode: overlay;
}

.hero-banner-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-banner-text h1 {
  font-size: 3rem;
  color: #ffffff;
  line-height: 1.15;
  margin: 0.75rem 0 1rem 0;
  font-weight: 900;
}

.text-gold {
  color: var(--gold-yellow);
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hero-banner-desc {
  font-size: 1.1rem;
  color: #e2e8f0;
  margin-bottom: 2rem;
}

.hero-pills-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.hero-pill {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  padding: 0.65rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
}

.hero-pill i {
  color: #fef08a;
}

.btn-primary-green {
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
  color: #ffffff;
  font-weight: 700;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.35);
  border: none;
  cursor: pointer;
}

.btn-primary-green:hover {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(234, 88, 12, 0.5);
}

.btn-outline-gold {
  border: 2px solid var(--gold-yellow);
  color: var(--gold-yellow);
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-outline-gold:hover {
  background: var(--gold-yellow);
  color: var(--primary-dark);
}

.hero-card-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  color: var(--text-main);
}

.hero-card-box img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
}

/* SECTION TITLES */
.section-header-center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem auto;
}

.badge-sub {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  background: rgba(234, 88, 12, 0.12);
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.25rem;
  color: var(--primary-dark);
  font-weight: 900;
  margin-bottom: 0.75rem;
}

.section-desc {
  font-size: 1.025rem;
  color: var(--text-muted);
}

/* CORE BENEFITS (4 LỢI ÍCH PHÂN BÓN) */
.benefits-section {
  padding: 5rem 0;
  background: #ffffff;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.benefit-box {
  background: #ffffff;
  border: 2px solid rgba(234, 88, 12, 0.15);
  border-radius: var(--radius-lg);
  padding: 2rem 1.25rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(234, 88, 12, 0.06);
}

.benefit-box:hover {
  transform: translateY(-6px);
  border-color: #ea580c;
  box-shadow: 0 12px 28px rgba(234, 88, 12, 0.2);
  background: #fff7ed;
}

.benefit-num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #ffffff;
  font-weight: 900;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem auto;
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.4);
  border: 2px solid #ffffff;
}

.benefit-box h3 {
  font-size: 1.15rem;
  color: #c2410c;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.benefit-box p {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* PRODUCT SHOWCASE GRID (TTP GLOBAL CARD FORMAT) */
.products-section {
  padding: 5rem 0;
  background: var(--light-green-bg);
}

.tab-filter-row {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.75rem;
  position: relative !important;
  z-index: 99 !important;
  pointer-events: auto !important;
}

.tab-filter-btn {
  background: #ffffff;
  border: 1.5px solid #fed7aa;
  color: #9a3412;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.925rem;
  cursor: pointer !important;
  position: relative !important;
  z-index: 100 !important;
  pointer-events: auto !important;
  user-select: none !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 2px 6px rgba(234, 88, 12, 0.06);
}

/* HEADER SUB-DROPDOWN MENU FOR PRODUCT LINES */
.menu-nav-list .has-dropdown {
  position: relative;
}

.menu-nav-list .has-dropdown > a {
  padding: 0.85rem 1.4rem !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
}

@media (min-width: 992px) {
  .menu-nav-list .has-dropdown:hover .nav-dropdown-menu,
  .menu-nav-item.has-dropdown:hover .nav-dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
  }

  .nav-dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 340px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
    border: 1.5px solid #fed7aa;
    padding: 0.75rem 0.5rem;
    margin: 0;
    list-style: none;
    z-index: 99999;
    transition: all 0.25s ease-in-out;
    transform: translateY(10px);
  }

  .nav-dropdown-menu li {
    margin: 2px 0;
    padding: 0;
  }

  .nav-dropdown-menu li a {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 0.75rem 1.25rem !important;
    color: #1e293b !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    text-decoration: none !important;
    border-radius: 10px;
    transition: all 0.2s ease;
  }

  .nav-dropdown-menu li a:hover {
    background: #fff7ed !important;
    color: #ea580c !important;
    padding-left: 1.5rem !important;
  }

  .nav-dropdown-menu li a img {
    width: 22px;
    height: 22px;
    object-fit: contain;
  }

  .nav-dropdown-menu li a i {
    color: #ea580c;
    font-size: 1.05rem;
    width: 20px;
    text-align: center;
  }
}

.tab-filter-btn.active, .tab-filter-btn:hover {
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%) !important;
  color: #ffffff !important;
  border-color: #ea580c !important;
  box-shadow: 0 6px 18px rgba(234, 88, 12, 0.35) !important;
  transform: translateY(-2px);
}

/* ELITE PREMIUM PRODUCT CARDS DESIGN (4-COLUMN RESPONSIVE GRID) */
.products-grid,
.products-grid-catalog,
.catalog-grid,
#indexProductGrid,
#productGridContainer {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 24px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

@media (max-width: 1200px) {
  .products-grid,
  .products-grid-catalog,
  .catalog-grid,
  #indexProductGrid,
  #productGridContainer {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 20px !important;
  }
}

@media (max-width: 868px) {
  .products-grid,
  .products-grid-catalog,
  .catalog-grid,
  #indexProductGrid,
  #productGridContainer {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
  }
}

@media (max-width: 520px) {
  .products-grid,
  .products-grid-catalog,
  .catalog-grid,
  #indexProductGrid,
  #productGridContainer {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }
}

.product-card-item {
  background: #ffffff;
  border: 1.5px solid #fed7aa;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(234, 88, 12, 0.06);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex !important;
  flex-direction: column !important;
  position: relative;
  width: 100% !important;
  box-sizing: border-box !important;
}

.product-card-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(234, 88, 12, 0.16);
  border-color: #ea580c;
}

.product-img-holder {
  height: 260px;
  background: linear-gradient(180deg, #fff7ed 0%, #ffffff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  position: relative;
  border-bottom: 1px solid #ffedd5;
  overflow: hidden;
}

.product-img-link {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  cursor: pointer;
}

.product-img-holder img {
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  margin: 0 auto !important;
  display: block !important;
  transition: transform 0.4s ease !important;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.08));
}

.product-card-item:hover .product-img-holder img {
  transform: scale(1.08);
}

.product-badge-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 0.35rem 0.8rem;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(234, 88, 12, 0.25);
  z-index: 5;
  letter-spacing: 0.3px;
}

.product-card-body {
  padding: 1.35rem 1.35rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 0.45rem;
  line-height: 1.35;
}

.product-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

.product-card-title a:hover {
  color: #ea580c !important;
}

.product-card-formula {
  font-size: 0.82rem;
  color: #ea580c;
  font-weight: 700;
  background: #fff7ed;
  padding: 0.3rem 0.75rem;
  border-radius: 8px;
  border: 1px solid #fed7aa;
  margin-bottom: 0.75rem;
  display: inline-block;
  align-self: flex-start;
}

.product-card-desc {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1.5px solid #f1f5f9;
  padding-top: 1rem;
  margin-top: auto;
}

.btn-view-detail {
  background: #ffffff !important;
  color: #ea580c !important;
  border: 1.5px solid #fed7aa !important;
  padding: 0.55rem 0.9rem !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  transition: all 0.25s ease !important;
}

.btn-view-detail:hover {
  background: #fff7ed !important;
  border-color: #ea580c !important;
  transform: translateY(-2px);
}

.btn-primary-green {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%) !important;
  color: #ffffff !important;
  padding: 0.55rem 1rem !important;
  border-radius: 10px !important;
  font-weight: 800 !important;
  font-size: 0.85rem !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.25) !important;
  transition: all 0.25s ease !important;
  border: none !important;
}

.btn-primary-green:hover {
  background: linear-gradient(135deg, #15803d 0%, #166534 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(22, 163, 74, 0.35) !important;
}

.btn-link-detail {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
}

.btn-link-detail:hover {
  color: var(--accent-green);
}

/* FARMER VIDEO REVIEWS SECTION */
.videos-section {
  padding: 5rem 0;
  background: #ffffff;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.video-box-item {
  background: var(--bg-body);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.video-player-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-player-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-meta {
  padding: 1.25rem;
}

.video-meta h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.video-meta p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* CROP DOSAGE CALCULATOR WIDGET */
.calculator-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 50%, #9a3412 100%);
  color: #ffffff;
  border-top: 4px solid #f59e0b;
  border-bottom: 4px solid #f59e0b;
}

.calc-card-container {
  background: #ffffff;
  color: var(--text-main);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(234, 88, 12, 0.2);
  max-width: 900px;
  margin: 0 auto;
  border: 2px solid rgba(234, 88, 12, 0.2);
}

.calc-form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.calc-form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  color: #ea580c;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.calc-select-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(234, 88, 12, 0.3);
  border-radius: var(--radius-md);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  font-size: 0.925rem;
  outline: none;
  transition: var(--transition);
}

.calc-select-input:focus {
  border-color: #ea580c;
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.2);
}

.calc-result-box {
  background: #fff7ed;
  border: 2px solid #ea580c;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
  font-size: 1.1rem;
  color: #1e1e1e;
}

.calc-result-box strong {
  color: #ea580c;
  font-size: 1.35rem;
  font-weight: 900;
}

/* CONTACT & QUOTE FORM PANEL */
.contact-section {
  padding: 5rem 0;
  background: var(--bg-body);
}

.contact-layout-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
}

.contact-info-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.contact-item-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-item-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: rgba(26, 98, 43, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.contact-form-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

/* FOOTER */
.footer-area {
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 50%, #9a3412 100%);
  color: #ffedd5;
  padding: 4rem 0 2rem 0;
  font-size: 0.9rem;
  border-top: 4px solid #f59e0b;
}

.footer-grid-layout {
  display: grid;
  grid-template-columns: 1.3fr 1.25fr 1fr 1.05fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

@media (max-width: 1100px) {
  .footer-grid-layout {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem !important;
  }
}

@media (max-width: 640px) {
  .footer-grid-layout {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
}

.footer-col-title {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin: 0;
  padding: 0;
}

.footer-links-list li a {
  display: inline-flex !important;
  align-items: center !important;
  color: #ffedd5 !important;
  text-decoration: none !important;
  font-size: 0.93rem !important;
  transition: all 0.25s ease !important;
}

.footer-links-list li a:hover {
  color: #fef08a !important;
  transform: translateX(4px);
}

.footer-thumb-box {
  width: 38px !important;
  min-width: 38px !important;
  max-width: 38px !important;
  height: 38px !important;
  min-height: 38px !important;
  max-height: 38px !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  padding: 2px !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  overflow: hidden !important;
  border: 1px solid rgba(254, 215, 170, 0.5) !important;
}

.footer-thumb-box img {
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  display: block !important;
}

.footer-article-thumb {
  width: 38px !important;
  min-width: 38px !important;
  max-width: 38px !important;
  height: 38px !important;
  min-height: 38px !important;
  max-height: 38px !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  overflow: hidden !important;
  border: 1.5px solid rgba(254, 215, 170, 0.6) !important;
}

.footer-article-thumb img {
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  max-height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* MYSTICKYELEMENTS SINGLE CONSOLIDATED PANEL (EXACT TTP GLOBAL 3D ICONS) */
.mystickyelements-fixed.mystickyelements-position-right {
  position: fixed !important;
  right: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  bottom: auto !important;
  left: auto !important;
  z-index: 999999 !important;
}

.mystickyelement-lists-wrap {
  border-radius: 10px !important;
  background: #F5F5F5 !important;
  margin: 5px !important;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15) !important;
  overflow: hidden !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.mystickyelements-lists {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
}

.mystickyelements-social-icon-li {
  position: relative !important;
  margin: 0 !important;
  padding: 0 !important;
  border-bottom: 1px solid #e5e5e5 !important;
}

.mystickyelements-social-icon-li:last-child {
  border-bottom: none !important;
}

.mystickyelements-social-icon-li a {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  width: 80px !important;
  min-height: 72px !important;
  padding: 8px 4px !important;
  background: #F5F5F5 !important;
  text-decoration: none !important;
  transition: all 0.25s ease-in-out !important;
  cursor: pointer !important;
  pointer-events: auto !important;
}

.mystickyelements-social-icon-li.item-livechat,
.mystickyelements-social-icon-li.item-livechat a {
  cursor: pointer !important;
  pointer-events: auto !important;
}

.mystickyelements-social-icon-li a:hover {
  background: #ea580c !important;
}

.mystickyelements-social-icon-li a:hover .mystickyelements-icon-below-text {
  color: #ffffff !important;
}

.mystickyelements-img-icon {
  width: 45px !important;
  height: 45px !important;
  object-fit: contain !important;
  display: block !important;
  margin-bottom: 4px !important;
  transition: transform 0.25s ease !important;
  pointer-events: auto !important;
}

.mystickyelements-social-icon-li a:hover .mystickyelements-img-icon {
  transform: scale(1.15) !important;
}

.mystickyelements-icon-below-text {
  font-size: 12px !important;
  font-weight: 600 !important;
  color: #000000 !important;
  text-align: center !important;
  line-height: 1.15 !important;
  white-space: nowrap !important;
  pointer-events: auto !important;
}

.ttp-phone-pulse {
  animation: pulse-phone-img 2s infinite !important;
}

@keyframes pulse-phone-img {
  0% { transform: scale(1); }
  50% { transform: scale(1.12); }
  100% { transform: scale(1); }
}

@media (max-width: 991px) {
  .mystickyelements-fixed.mystickyelements-position-right {
    top: auto !important;
    bottom: 0 !important;
    right: 0 !important;
    left: 0 !important;
    transform: none !important;
    z-index: 999999 !important;
    background: #ffffff !important;
  }

  .mystickyelement-lists-wrap {
    border-radius: 0 !important;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12) !important;
    border: none !important;
    border-top: 2.5px solid #ea580c !important;
    background: #ffffff !important;
  }

  .mystickyelements-lists {
    flex-direction: row !important;
    justify-content: space-around !important;
    align-items: center !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #ffffff !important;
  }

  .mystickyelements-social-icon-li {
    border-bottom: none !important;
    border-right: 1px solid #f1f5f9 !important;
    flex: 1 !important;
    text-align: center !important;
    background: #ffffff !important;
  }

  .mystickyelements-social-icon-li:last-child {
    border-right: none !important;
  }

  .mystickyelements-social-icon-li a {
    width: 100% !important;
    min-height: auto !important;
    padding: 6px 2px 5px 2px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
  }

  .mystickyelements-img-icon {
    width: 32px !important;
    height: 32px !important;
    margin-bottom: 2px !important;
    object-fit: contain !important;
  }

  .mystickyelements-icon-below-text {
    font-size: 0.68rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-width: 95% !important;
    display: block !important;
    text-align: center !important;
  }
}

/* TIGER HUMIC LIVE CHAT STYLING (EXACT TTP GLOBAL 3D LIVECHAT ICON ONLY) */
#tigerhumicAiBtn {
  position: fixed !important;
  bottom: 25px;
  right: 25px;
  left: auto;
  z-index: 1000000 !important;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #fed7aa;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(234, 88, 12, 0.35);
  cursor: pointer !important;
  pointer-events: auto !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#tigerhumicAiBtn:hover {
  transform: scale(1.12);
  border-color: #ea580c;
  box-shadow: 0 12px 32px rgba(234, 88, 12, 0.55);
}

.ai-btn-pulse {
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 2px solid #ea580c;
  animation: aiPulse 2s infinite;
  pointer-events: none !important;
}

@keyframes aiPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.18); opacity: 0; }
}

#tigerhumicAiModal {
  position: fixed !important;
  bottom: 25px !important;
  right: 95px !important;
  left: auto !important;
  width: 380px !important;
  max-width: calc(100vw - 30px) !important;
  height: 560px !important;
  max-height: calc(100vh - 40px) !important;
  background: #ffffff !important;
  border-radius: 20px !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35) !important;
  border: 2px solid #ea580c !important;
  display: flex !important;
  flex-direction: column !important;
  z-index: 999999999 !important;
  overflow: hidden !important;
  pointer-events: auto !important;
}

#tigerhumicAiModal.is-hidden {
  display: none !important;
  pointer-events: none !important;
}

#tigerhumicAiModal * {
  pointer-events: auto !important;
}

#aiChatInputText {
  cursor: text !important;
  pointer-events: auto !important;
  user-select: text !important;
  -webkit-user-select: text !important;
  background: #ffffff !important;
  color: #0f172a !important;
}

/* =========================================================================
   RESPONSIVE AI MODAL TRÊN ĐIỆN THOẠI (GỌN GÀNG, NHỎ XINH, KHÔNG CHIẾM HẾT MÀN HÌNH)
   ========================================================================= */
@media (max-width: 991px) {
  #tigerhumicAiBtn {
    bottom: 95px !important;
    right: 14px !important;
    width: 48px !important;
    height: 48px !important;
    z-index: 1000000 !important;
  }
  #tigerhumicAiBtn img {
    width: 34px !important;
    height: 34px !important;
  }

  /* KHUNG AI CHAT NHỎ GỌN TRÊN ĐIỆN THOẠI - XÍCH LÊN CAO THOÁNG ĐÃNG */
  #tigerhumicAiModal {
    bottom: 90px !important;
    right: 12px !important;
    left: auto !important;
    width: 320px !important;
    max-width: calc(100vw - 24px) !important;
    height: 410px !important;
    max-height: min(430px, 62vh) !important;
    border-radius: 16px !important;
    border: 1.8px solid #ea580c !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3) !important;
    z-index: 1000005 !important;
  }

  /* Header AI nhỏ gọn */
  #tigerhumicAiModal > div:first-child,
  #tigerhumicAiModal .ai-header {
    padding: 8px 12px !important;
  }
  #tigerhumicAiModal > div:first-child > div > div:first-child,
  #tigerhumicAiModal .ai-avatar {
    width: 32px !important;
    height: 32px !important;
  }
  #tigerhumicAiModal > div:first-child > div > div:last-child > div:first-child,
  #tigerhumicAiModal .ai-header h3 {
    font-size: 0.9rem !important;
    font-weight: 800 !important;
  }
  #tigerhumicAiModal > div:first-child > div > div:last-child > div:last-child,
  #tigerhumicAiModal .ai-status {
    font-size: 0.68rem !important;
  }
  #tigerhumicAiModal > div:first-child button,
  #tigerhumicAiClose {
    width: 26px !important;
    height: 26px !important;
    font-size: 1.15rem !important;
  }

  /* Thanh gợi ý câu hỏi nhanh nhỏ gọn */
  #tigerhumicAiModal > div:nth-child(2),
  #tigerhumicAiModal .ai-quick-suggestions {
    padding: 4px 8px !important;
    gap: 4px !important;
  }
  #tigerhumicAiModal > div:nth-child(2) button,
  #tigerhumicAiModal .ai-chip {
    padding: 3px 8px !important;
    font-size: 10.5px !important;
    border-radius: 14px !important;
  }

  /* Khung tin nhắn nhỏ gọn */
  #aiChatMsgList,
  #tigerhumicAiModal .ai-body {
    padding: 10px !important;
    gap: 8px !important;
    font-size: 12.5px !important;
  }
  #aiChatMsgList > div > div:first-child {
    width: 26px !important;
    height: 26px !important;
  }
  #aiChatMsgList > div > div:last-child,
  #tigerhumicAiModal .msg-bubble {
    padding: 7px 11px !important;
    font-size: 12px !important;
    line-height: 1.4 !important;
    border-radius: 12px 12px 12px 2px !important;
  }

  /* Thanh nhập tin nhắn nhỏ gọn */
  #aiChatForm {
    padding: 6px 8px 5px 8px !important;
    gap: 6px !important;
  }
  #aiChatInputWrapper {
    padding: 2px 6px 2px 8px !important;
    border-radius: 20px !important;
  }
  #aiChatInputText {
    padding: 4px 6px !important;
    font-size: 12px !important;
  }
  #aiVoiceMicBtn {
    padding: 2px !important;
  }
  #aiVoiceMicBtn svg {
    width: 15px !important;
    height: 15px !important;
  }
  #aiChatInputWrapper button svg {
    width: 15px !important;
    height: 15px !important;
  }
  #aiChatForm button[type="submit"] {
    width: 34px !important;
    height: 34px !important;
  }
  #aiChatForm button[type="submit"] svg {
    width: 16px !important;
    height: 16px !important;
  }
  #aiChatAskLabel {
    font-size: 7.5px !important;
    padding: 1px 4px !important;
    top: -7px !important;
  }
}

.ai-header {
  background: linear-gradient(135deg, #ea580c 0%, #9a3412 100%);
  color: #ffffff;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ai-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ai-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1.5px solid #fef08a;
}

.ai-header h3 {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  margin: 0;
}

.ai-status {
  font-size: 0.75rem;
  color: #ffedd5;
  display: flex;
  align-items: center;
  gap: 5px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  display: inline-block;
}

#tigerhumicAiClose {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
}

.ai-body {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
  background: #fff7ed;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ai-msg {
  display: flex;
  max-width: 85%;
}

.ai-msg-bot {
  align-self: flex-start;
}

.ai-msg-user {
  align-self: flex-end;
}

.msg-bubble {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.88rem;
  line-height: 1.5;
}

.ai-msg-bot .msg-bubble {
  background: #ffffff;
  color: #334155;
  border: 1px solid #fed7aa;
  border-top-left-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.ai-msg-user .msg-bubble {
  background: #ea580c;
  color: #ffffff;
  border-top-right-radius: 4px;
}

.ai-quick-suggestions {
  padding: 8px 12px;
  background: #ffffff;
  border-top: 1px solid #fed7aa;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  white-space: nowrap;
}

.ai-chip {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #ea580c;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

.ai-chip:hover {
  background: #ea580c;
  color: #ffffff;
}

.ai-footer {
  padding: 10px;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  display: flex;
  gap: 8px;
}

.ai-footer input {
  flex: 1;
  border: 1px solid #fed7aa;
  padding: 8px 12px;
  border-radius: 20px;
  outline: none;
  font-size: 0.88rem;
}

.ai-footer button {
  background: #ea580c;
  color: #ffffff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* FEATURED PRODUCT GROUPS - HORIZONTAL SLIDE CAROUSEL (3 IMAGES / 3 SECONDS) */
.featured-img-carousel {
  position: relative;
  width: 100%;
  height: 235px;
  background: #ffffff;
  border-radius: 14px;
  padding: 10px;
  text-align: center;
  margin-bottom: 15px;
  border: 1px solid #ffedd5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  user-select: none;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  pointer-events: none;
  z-index: 1;
}

.carousel-slide img {
  max-width: 100%;
  max-height: 170px;
  object-fit: contain;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.cert-card-box:hover .carousel-slide img {
  transform: scale(1.04);
}

.carousel-slide-title {
  font-size: 0.76rem;
  font-weight: 800;
  margin-top: 6px;
  padding: 3px 10px;
  border-radius: 12px;
  display: inline-block;
  letter-spacing: 0.2px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.carousel-dots {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  z-index: 5;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.45);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-timer-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 0.68rem;
  font-weight: 800;
  background: rgba(15, 23, 42, 0.75);
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
}

.ai-body {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
  background: #fff7ed;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ai-msg {
  display: flex;
  max-width: 85%;
}

.ai-msg-bot {
  align-self: flex-start;
}

.ai-msg-user {
  align-self: flex-end;
}

.msg-bubble {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.88rem;
  line-height: 1.5;
}

.ai-msg-bot .msg-bubble {
  background: #ffffff;
  color: #334155;
  border: 1px solid #fed7aa;
  border-top-left-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.ai-msg-user .msg-bubble {
  background: #ea580c;
  color: #ffffff;
  border-top-right-radius: 4px;
}

.ai-quick-suggestions {
  padding: 8px 12px;
  background: #ffffff;
  border-top: 1px solid #fed7aa;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  white-space: nowrap;
}

.ai-chip {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #ea580c;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

.ai-chip:hover {
  background: #ea580c;
  color: #ffffff;
}

.ai-footer {
  padding: 10px;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  display: flex;
  gap: 8px;
}

.ai-footer input {
  flex: 1;
  border: 1px solid #fed7aa;
  padding: 8px 12px;
  border-radius: 20px;
  outline: none;
  font-size: 0.88rem;
}

.ai-footer button {
  background: #ea580c;
  color: #ffffff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* FEATURED PRODUCT GROUPS - HORIZONTAL SLIDE CAROUSEL (3 IMAGES / 3 SECONDS) */
.featured-img-carousel {
  position: relative;
  width: 100%;
  height: 235px;
  background: #ffffff;
  border-radius: 14px;
  padding: 10px;
  text-align: center;
  margin-bottom: 15px;
  border: 1px solid #ffedd5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  user-select: none;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  pointer-events: none;
  z-index: 1;
}

.carousel-slide img {
  max-width: 100%;
  max-height: 170px;
  object-fit: contain;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.cert-card-box:hover .carousel-slide img {
  transform: scale(1.04);
}

.carousel-slide-title {
  font-size: 0.76rem;
  font-weight: 800;
  margin-top: 6px;
  padding: 3px 10px;
  border-radius: 12px;
  display: inline-block;
  letter-spacing: 0.2px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.carousel-dots {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  z-index: 5;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.45);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-timer-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 0.68rem;
  font-weight: 800;
  background: rgba(15, 23, 42, 0.75);
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 10px;
  z-index: 6;
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  gap: 4px;
}

.carousel-slide.active,
.carousel-slide.slide-active {
  opacity: 1;
  transform: translateX(0%);
  z-index: 3;
  pointer-events: auto;
}

/* GLOBAL FONT OVERRIDE FOR TEXT (EXCLUDING ICONS) */
html, body, h1, h2, h3, h4, h5, h6, p, a, span:not([class*="fa-"]):not([class*="bi-"]):not([class*="icon-"]):not(.fa):not(.fas):not(.far):not(.fab), div:not([class*="fa-"]):not(.fa):not(.fas):not(.far):not(.fab), li, ul, ol, button, input, select, textarea, table, td, th, form, label, header, footer, section, nav, article, main, aside {
  font-family: 'Be Vietnam Pro', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ROBUST FONT AWESOME & ICON DEFINITIONS & PROTECTION */
.fa, .fas, .far, .fal, .fad, .fab, .fa-solid, .fa-regular, .fa-brands, .fa-duotone, .fa-thin, .fa-light,
.fa::before, .fas::before, .far::before, .fal::before, .fad::before, .fab::before,
.fa-solid::before, .fa-regular::before, .fa-brands::before,
[class*="fa-"]::before, [class*="fa-"]::after {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "FontAwesome" !important;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.fa-brands, .fa-brands::before, .fab, .fab::before {
  font-family: "Font Awesome 6 Brands" !important;
  font-weight: 400 !important;
}

.fa-regular, .fa-regular::before, .far, .far::before {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 400 !important;
}

.fa-solid, .fa-solid::before, .fas, .fas::before {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
}

/* News & Article Icon Helper Classes */
.icon-calendar-svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  width: 15px;
  height: 15px;
  margin-right: 5px;
  flex-shrink: 0;
}
.icon-arrow-svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  width: 15px;
  height: 15px;
  margin-left: 4px;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
a:hover .icon-arrow-svg {
  transform: translateX(4px);
}

  /* UNIFORM CENTERED GRID CARD SYSTEM */
  .products-grid-row,
  .catalog-grid,
  .products-grid,
  .products-grid-catalog,
  #productGridContainer,
  #indexProductGrid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 24px 20px !important;
    width: 100% !important;
    margin: 0 auto !important;
  }
  @media (max-width: 1100px) {
    .products-grid-row, .catalog-grid, .products-grid, .products-grid-catalog, #productGridContainer, #indexProductGrid {
      grid-template-columns: repeat(3, 1fr) !important;
      gap: 18px !important;
    }
  }
  @media (max-width: 768px) {
    .products-grid-row, .catalog-grid, .products-grid, .products-grid-catalog, #productGridContainer, #indexProductGrid {
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 14px !important;
    }
  }
  @media (max-width: 480px) {
    .products-grid-row, .catalog-grid, .products-grid, .products-grid-catalog, #productGridContainer, #indexProductGrid {
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 10px !important;
    }
  }

  /* CARD ITEM */
  .product-card-item,
  .product-small {
    background: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    align-items: center !important;
    text-align: center !important;
    padding: 16px 14px 18px 14px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04) !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    height: 100% !important;
    position: relative !important;
  }
  .product-card-item:hover,
  .product-small:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 12px 28px rgba(0,0,0,0.1) !important;
    border-color: #1a622b !important;
  }

  /* IMAGE BOX 1:1 SQUARE CENTERED */
  .product-img-box,
  .box-image {
    width: 100% !important;
    height: 210px !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 12px !important;
    background: #ffffff !important;
    overflow: hidden !important;
  }
  .product-img-box a,
  .box-image a {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
  }
  .product-img-box img.main-img,
  .box-image img.main-img {
    max-width: 100% !important;
    max-height: 190px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
    transition: opacity 0.35s ease, transform 0.35s ease !important;
  }
  .product-img-box img.back-image,
  .box-image img.back-image {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    max-width: 100% !important;
    max-height: 190px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    opacity: 0 !important;
    transition: opacity 0.35s ease, transform 0.35s ease !important;
  }
  .product-card-item:hover img.main-img,
  .product-small:hover img.main-img {
    opacity: 0 !important;
    transform: scale(1.05) !important;
  }
  .product-card-item:hover img.back-image,
  .product-small:hover img.back-image {
    opacity: 1 !important;
    transform: translate(-50%, -50%) scale(1.05) !important;
  }
  .product-img-box.no-hover img.main-img,
  .box-image.no-hover img.main-img {
    opacity: 1 !important;
  }
  .product-card-item:hover .product-img-box.no-hover img.main-img,
  .product-small:hover .box-image.no-hover img.main-img {
    transform: scale(1.08) !important;
  }

  /* CARD CONTENT WRAPPER */
  .product-info-wrap,
  .box-text {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex: 1 !important;
    text-align: center !important;
    padding: 0 !important;
  }

  /* TITLE CENTERED WITH EQUAL HEIGHT */
  .product-card-title,
  .product-title {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    line-height: 1.45 !important;
    margin-bottom: 14px !important;
    min-height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
  }
  .product-card-title a,
  .product-title a {
    color: inherit !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
  }
  .product-card-title a:hover,
  .product-title a:hover {
    color: #ea580c !important;
  }

  /* UNIFORM XEM CHI TIẾT BUTTON (CAM TIGER) */
  .btn-uniform-detail,
  .button.primary.btn-detail {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 160px !important;
    height: 38px !important;
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%) !important;
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    transition: all 0.25s ease !important;
    border: none !important;
    cursor: pointer !important;
    margin: 0 auto !important;
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.25) !important;
  }
  .btn-uniform-detail:hover,
  .button.primary.btn-detail:hover {
    background: linear-gradient(135deg, #c2410c 0%, #9a3412 100%) !important;
    box-shadow: 0 6px 16px rgba(234, 88, 12, 0.45) !important;
    transform: translateY(-2px) !important;
    color: #ffffff !important;
  }



/* ==========================================================================
   UNIVERSAL 4-COLUMN RESPONSIVE GRID CARD SYSTEM (CENTERED + UNIFORM BUTTON)
   ========================================================================== */
.products-grid-row,
.catalog-grid,
.products-grid,
.products-grid-catalog,
.products.row,
.products.large-columns-4,
.row.products,
#productGridContainer,
#indexProductGrid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 24px 20px !important;
  width: 100% !important;
  max-width: 1240px !important;
  margin: 0 auto 40px auto !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  float: none !important;
}

@media (max-width: 1100px) {
  .products-grid-row,
  .catalog-grid,
  .products-grid,
  .products-grid-catalog,
  .products.row,
  .products.large-columns-4,
  .row.products,
  #productGridContainer,
  #indexProductGrid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 18px 16px !important;
  }
}

@media (max-width: 768px) {
  .products-grid-row,
  .catalog-grid,
  .products-grid,
  .products-grid-catalog,
  .products.row,
  .products.large-columns-4,
  .row.products,
  #productGridContainer,
  #indexProductGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px 10px !important;
  }
}

/* INDIVIDUAL PRODUCT CARD */
.product-card-item,
.product-small.col,
.products.row > .col,
.products.row > .product,
.products-grid > .col,
.catalog-grid > .col {
  width: 100% !important;
  max-width: 100% !important;
  flex: 1 1 100% !important;
  float: none !important;
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  align-items: center !important;
  text-align: center !important;
  padding: 16px 14px 18px 14px !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04) !important;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  height: 100% !important;
  box-sizing: border-box !important;
  margin: 0 !important;
}

.product-card-item:hover,
.product-small.col:hover,
.products.row > .col:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 12px 28px rgba(0,0,0,0.1) !important;
  border-color: #1a622b !important;
}

/* 1:1 IMAGE CONTAINER */
.product-img-box,
.box-image,
.product-img-holder {
  width: 100% !important;
  height: 210px !important;
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 12px !important;
  background: #ffffff !important;
  overflow: hidden !important;
  padding: 0 !important;
}

.product-img-box a,
.box-image a,
.product-img-holder a {
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
}

.product-img-box img.main-img,
.box-image img.main-img,
.product-img-holder img {
  max-width: 100% !important;
  max-height: 190px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto !important;
  transition: opacity 0.35s ease, transform 0.35s ease !important;
}

.product-img-box img.back-image,
.box-image img.back-image {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  max-width: 100% !important;
  max-height: 190px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  opacity: 0 !important;
  transition: opacity 0.35s ease, transform 0.35s ease !important;
}

.product-card-item:hover img.main-img,
.product-small:hover img.main-img {
  opacity: 0 !important;
  transform: scale(1.05) !important;
}

.product-card-item:hover img.back-image,
.product-small:hover img.back-image {
  opacity: 1 !important;
  transform: translate(-50%, -50%) scale(1.05) !important;
}

.product-img-box.no-hover img.main-img,
.box-image.no-hover img.main-img {
  opacity: 1 !important;
}

.product-card-item:hover .product-img-box.no-hover img.main-img,
.product-small:hover .box-image.no-hover img.main-img {
  transform: scale(1.08) !important;
}

/* PRODUCT TITLE */
.product-card-title,
.product-title,
.title-wrapper p.name {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #1e293b !important;
  line-height: 1.45 !important;
  margin: 0 0 14px 0 !important;
  min-height: 44px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  width: 100% !important;
}

.product-card-title a,
.product-title a,
.title-wrapper p.name a {
  color: inherit !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.product-card-title a:hover,
.product-title a:hover,
.title-wrapper p.name a:hover {
  color: #1a622b !important;
}

/* UNIFORM XEM CHI TIẾT BUTTON (CAM TIGER ĐẲNG CẤP) */
.btn-uniform-detail,
.btn-detail,
.button.primary.btn-detail,
.products .button.primary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  max-width: 160px !important;
  height: 38px !important;
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%) !important;
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
  border: none !important;
  cursor: pointer !important;
  margin: 0 auto !important;
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.25) !important;
}

.btn-uniform-detail:hover,
.btn-detail:hover,
.button.primary.btn-detail:hover,
.products .button.primary:hover {
  background: linear-gradient(135deg, #c2410c 0%, #9a3412 100%) !important;
  box-shadow: 0 6px 16px rgba(234, 88, 12, 0.45) !important;
  transform: translateY(-2px) !important;
  color: #ffffff !important;
}

/* GUARANTEED MENU NAV CLICKABILITY */
.menu-nav-item {
  position: relative !important;
  pointer-events: auto !important;
}
.menu-nav-item > a {
  position: relative !important;
  pointer-events: auto !important;
  cursor: pointer !important;
  z-index: 1005 !important;
}


/* ====================================================
   HIDE GOOGLE TRANSLATE TOOLBAR BANNER & FRAMES
   ==================================================== */
.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame,
iframe.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame {
  display: none !important;
  visibility: hidden !important;
}
body {
  top: 0px !important;
  position: static !important;
}
.skiptranslate {
  display: inline-block;
}
#google_translate_element {
  display: none !important;
}
font {
  background-color: transparent !important;
  box-shadow: none !important;
}


/* ==========================================================================
   RESPONSIVE MOBILE HAMBURGER MENU (DẤU 3 GẠCH TO RÕ CHO ĐIỆN THOẠI)
   ========================================================================== */
.mobile-menu-toggle-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 44px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.25));
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fef08a;
  padding: 0;
  border-radius: 10px;
  font-size: 24px;
  cursor: pointer;
  outline: none;
  transition: all 0.2s ease;
  user-select: none;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  -webkit-tap-highlight-color: transparent;
  z-index: 1010;
}
.mobile-menu-toggle-btn:hover,
.mobile-menu-toggle-btn:active,
.mobile-menu-toggle-btn:focus {
  background: #ea580c;
  border-color: #fef08a;
  color: #ffffff;
  transform: scale(1.05);
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.5);
}
.mobile-menu-toggle-btn i {
  font-size: 24px;
  line-height: 1;
  pointer-events: none;
  transition: transform 0.2s ease;
}

/* =========================================================================
   STICKY NAVBAR & RESPONSIVE HEADER ACTIONS (DESKTOP & MOBILE)
   ========================================================================= */

/* Desktop Sticky Nav Styles (>= 992px) */
@media (min-width: 992px) {
  .mobile-menu-toggle-btn {
    display: none !important;
  }

  .nav-bottom-bar .container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    padding: 0 15px !important;
    position: relative !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .menu-nav-list {
    display: flex !important;
    align-items: center !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    flex-wrap: wrap !important;
    gap: 4px !important;
  }

  .menu-nav-item {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .menu-nav-item > a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 9px 18px !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    border-radius: 6px !important;
    background: transparent;
    box-shadow: none !important;
    transition: all 0.22s ease !important;
    cursor: pointer !important;
  }

  .menu-nav-item.active > a,
  .menu-nav-item.has-dropdown.active > a {
    background-color: #7c2d12 !important;
    background: #7c2d12 !important;
    color: #fef08a !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35), inset 0 -3px 0 #f59e0b !important;
  }

  .menu-nav-item:hover > a,
  .menu-nav-item.has-dropdown:hover > a {
    background-color: #7c2d12 !important;
    background: #7c2d12 !important;
    color: #fef08a !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35), inset 0 -3px 0 #f59e0b !important;
  }

  .menu-nav-list:hover .menu-nav-item.active:not(:hover) > a,
  .nav-bottom-bar:hover .menu-nav-item.active:not(:hover) > a {
    background: transparent !important;
    background-color: transparent !important;
    color: #ffffff !important;
    box-shadow: none !important;
  }

  .menu-nav-item.has-dropdown:hover > a img,
  .menu-nav-item.has-dropdown:hover > a .nav-dropdown-icon {
    transform: rotate(180deg) !important;
  }

  .nav-sticky-search-form,
  .nav-sticky-actions,
  .nav-sticky-mobile-actions,
  .tiger-mobile-menu-overlay,
  .mobile-drawer-header,
  .mobile-drawer-footer {
    display: none !important;
  }

  .lang-switcher-top {
    margin-left: auto !important;
    display: inline-flex !important;
  }
}

/* Common Sticky Action Buttons (Account & Cart) */
.nav-sticky-actions,
.nav-sticky-mobile-actions {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  flex-shrink: 0 !important;
}

.nav-sticky-icon-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 35px !important;
  height: 35px !important;
  border-radius: 50% !important;
  background: rgba(0, 0, 0, 0.25) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.35) !important;
  color: #ffffff !important;
  font-size: 14px !important;
  text-decoration: none !important;
  position: relative !important;
  transition: all 0.22s ease !important;
  cursor: pointer !important;
  outline: none !important;
  flex-shrink: 0 !important;
}

.nav-sticky-icon-btn i {
  font-size: 14px !important;
  color: #ffffff !important;
  line-height: 1 !important;
  transition: color 0.2s ease !important;
}

.nav-sticky-icon-btn:hover {
  background: #ffffff !important;
  color: #ea580c !important;
  border-color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25) !important;
  transform: translateY(-2px) scale(1.06) !important;
}

.nav-sticky-icon-btn:hover i {
  color: #ea580c !important;
}

.nav-sticky-icon-btn .header-cart-badge {
  position: absolute !important;
  top: -4px !important;
  right: -4px !important;
  background: #ef4444 !important;
  color: #ffffff !important;
  font-size: 10px !important;
  font-weight: 900 !important;
  min-width: 18px !important;
  height: 18px !important;
  padding: 0 3px !important;
  border-radius: 9px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1.5px solid #ffffff !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3) !important;
  line-height: 1 !important;
}

/* Mobile & Tablet Styles (< 992px) */
@media (max-width: 991px) {
  html, body {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
  }
  *, *::before, *::after {
    box-sizing: border-box !important;
  }

  .container, .content-container, .page-container, .main-container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
    box-sizing: border-box !important;
  }

  /* TOP HEADER NGOÀI TRÊN ĐIỆN THOẠI: ĐỒNG BỘ 100% VỚI HEADER TRONG MENU DRAWER */
  .header-main-area {
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 50%, #9a3412 100%) !important;
    padding: 8px 0 !important;
    border-bottom: 2px solid #f59e0b !important;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.18) !important;
    position: relative !important;
    z-index: 100001 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .header-main-area .container {
    padding-left: 12px !important;
    padding-right: 12px !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .header-main-flex {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .brand-logo-wrap {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    text-decoration: none !important;
    margin: 0 auto 0 0 !important;
    padding: 0 !important;
  }
  .brand-logo-img {
    height: 38px !important;
    width: 38px !important;
    border-radius: 6px !important;
    background: #ffffff !important;
    border: 1.5px solid #ffffff !important;
    padding: 2px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
    object-fit: contain !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
  }
  .brand-title-group {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .brand-name-text {
    font-size: 1.15rem !important;
    font-weight: 900 !important;
    color: #ffffff !important;
    line-height: 1.1 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
    letter-spacing: -0.01em !important;
    display: block !important;
    margin: 0 !important;
  }
  .brand-sub-text {
    font-size: 0.68rem !important;
    font-weight: 700 !important;
    color: #ffedd5 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    display: block !important;
    margin: 0 !important;
  }
  .header-main-area .header-actions-box,
  .header-main-area .header-search-form {
    display: none !important;
  }

  .mobile-menu-toggle-btn {
    order: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 32px !important;
    height: 30px !important;
    font-size: 13px !important;
    background: rgba(0, 0, 0, 0.25) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
  }

  .nav-sticky-search-form {
    order: 2 !important;
    display: flex !important;
    flex: 1 1 auto !important;
    min-width: 50px !important;
    align-items: center !important;
    background: #ffffff !important;
    border-radius: 15px !important;
    padding: 1px 2px 1px 6px !important;
    height: 30px !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12) !important;
    margin: 0 !important;
  }
  .nav-sticky-search-form input {
    border: none !important;
    outline: none !important;
    font-size: 10.5px !important;
    color: #1e293b !important;
    width: 100% !important;
    background: transparent !important;
    padding: 2px 0 !important;
  }
  .nav-sticky-search-form button {
    background: #ea580c !important;
    border: none !important;
    color: #ffffff !important;
    width: 24px !important;
    height: 24px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 9.5px !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
    padding: 0 !important;
  }

  .nav-sticky-actions,
  .nav-sticky-mobile-actions {
    order: 3 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 3px !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
  }

  .nav-sticky-icon-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 28px !important;
    height: 28px !important;
    border-radius: 50% !important;
    background: rgba(0, 0, 0, 0.25) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.35) !important;
    color: #ffffff !important;
    font-size: 11.5px !important;
    text-decoration: none !important;
    position: relative !important;
    flex-shrink: 0 !important;
  }

  .lang-switcher-top {
    order: 4 !important;
    display: inline-flex !important;
    align-items: center !important;
    background: rgba(0, 0, 0, 0.22) !important;
    padding: 1px 3px !important;
    border-radius: 15px !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
  }

  /* Ẩn cờ trên điện thoại theo yêu cầu (chỉ giữ lại ô chọn ngôn ngữ gọn gàng) */
  .lang-switcher-top .header-flags-row,
  .header-flags-row {
    display: none !important;
  }

  .lang-switcher-top .header-lang-select {
    padding: 2px 16px 2px 6px !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    height: 26px !important;
    border-radius: 13px !important;
    background: rgba(0, 0, 0, 0.35) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
  }

  .nav-bottom-bar {
    position: sticky !important;
    top: 0 !important;
    z-index: 99999 !important;
    background: #9a3412 !important;
    width: 100% !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25) !important;
  }

  .nav-bottom-bar .container {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 4px !important;
    padding: 4px 6px !important;
    position: relative !important;
    width: 100% !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
  }

  /* =========================================================================
     MOBILE LEFT DRAWER MENU (GIAO DIỆN ĐIỆN THOẠI TRƯỢT TỪ BÊN TRÁI SANG)
     ========================================================================= */

  /* Nền mờ phủ toàn màn hình khi mở Menu bên trái */
  .tiger-mobile-menu-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: rgba(15, 23, 42, 0.65) !important;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
    z-index: 999998 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: opacity 0.28s ease, visibility 0.28s ease !important;
  }

  .nav-bottom-bar.mobile-menu-open .tiger-mobile-menu-overlay,
  .nav-bottom-bar.mobile-menu-open ~ .tiger-mobile-menu-overlay,
  .tiger-mobile-menu-overlay.is-active,
  body.tiger-mobile-menu-open .tiger-mobile-menu-overlay {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  /* Khung Menu trượt từ BÊN TRÁI sang */
  .menu-nav-list {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 310px !important;
    max-width: 84vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: #ffffff !important;
    z-index: 999999 !important;
    display: flex !important;
    flex-direction: column !important;
    margin: 0 !important;
    padding: 0 0 30px 0 !important;
    border: none !important;
    border-right: 2px solid #fed7aa !important;
    border-radius: 0 18px 18px 0 !important;
    box-shadow: 6px 0 30px rgba(0, 0, 0, 0.35) !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    transform: translateX(-100%) !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease !important;
    list-style: none !important;
  }

  /* Trạng thái mở: Trượt êm ái ra từ mép TRÁI */
  .menu-nav-list.is-open,
  .nav-bottom-bar.mobile-menu-open .menu-nav-list,
  body.tiger-mobile-menu-open .menu-nav-list {
    transform: translateX(0) !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  /* Header đầu Menu bên trái: NẰM BÊN TRÁI & ĐỒNG BỘ 100% VỚI HEADER NGOÀI */
  .mobile-drawer-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 8px 12px !important;
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 50%, #9a3412 100%) !important;
    border-bottom: 2px solid #f59e0b !important;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.18) !important;
    flex-shrink: 0 !important;
    margin: 0 0 4px 0 !important;
    list-style: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .mobile-drawer-header .brand-logo-wrap,
  .mobile-drawer-brand {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    text-decoration: none !important;
    margin: 0 auto 0 0 !important;
    padding: 0 !important;
  }

  .mobile-drawer-header .brand-logo-img,
  .mobile-drawer-brand img {
    height: 38px !important;
    width: 38px !important;
    border-radius: 6px !important;
    background: #ffffff !important;
    border: 1.5px solid #ffffff !important;
    padding: 2px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
    object-fit: contain !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
  }

  .mobile-drawer-header .brand-title-group {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .mobile-drawer-header .brand-name-text,
  .mobile-drawer-title {
    font-size: 1.15rem !important;
    font-weight: 900 !important;
    color: #ffffff !important;
    line-height: 1.1 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
    letter-spacing: -0.01em !important;
    display: block !important;
    margin: 0 !important;
  }

  .mobile-drawer-header .brand-sub-text,
  .mobile-drawer-sub {
    font-size: 0.68rem !important;
    font-weight: 700 !important;
    color: #ffedd5 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    display: block !important;
    margin: 0 !important;
  }

  .mobile-drawer-close-btn {
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    background: rgba(0, 0, 0, 0.25) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    color: #ffffff !important;
    font-size: 16px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    outline: none !important;
    flex-shrink: 0 !important;
    margin-left: 8px !important;
  }
  .mobile-drawer-close-btn:hover,
  .mobile-drawer-close-btn:active {
    background: rgba(0, 0, 0, 0.5) !important;
    transform: scale(1.1) rotate(90deg) !important;
  }

  /* Khối thông tin liên hệ nhanh ở cuối menu */
  .mobile-drawer-footer {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    padding: 16px !important;
    margin-top: auto !important;
    background: #fff7ed !important;
    border-top: 1px solid #fed7aa !important;
    font-size: 13px !important;
    list-style: none !important;
  }
  .mobile-drawer-footer a {
    text-decoration: none !important;
  }

  .mobile-drawer-hotline-btn {
    background: linear-gradient(135deg, #ea580c, #c2410c) !important;
    color: #ffffff !important;
    padding: 10px 16px !important;
    border-radius: 8px !important;
    font-weight: 800 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    box-shadow: 0 4px 12px rgba(234,88,12,0.25) !important;
    text-decoration: none !important;
  }

  .mobile-drawer-slogan {
    text-align: center !important;
    color: #9a3412 !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    margin-top: 4px !important;
  }

  .menu-nav-item {
    width: 100% !important;
    display: block !important;
    border-bottom: 1px solid #f1f5f9 !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .menu-nav-item:last-child {
    border-bottom: none !important;
  }

  .menu-nav-item > a {
    width: 100% !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 13px 18px !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    color: #1e293b !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    border-radius: 0 !important;
    box-sizing: border-box !important;
    transition: background 0.18s ease, color 0.18s ease, padding 0.18s ease !important;
  }
  .menu-nav-item > a:hover,
  .menu-nav-item > a:active,
  .menu-nav-item.active > a {
    background: #fff7ed !important;
    color: #ea580c !important;
    border-left: 4px solid #ea580c !important;
    padding-left: 22px !important;
  }

  /* TRÊN MOBILE: ẨN MENU CON KHI CHƯA MỞ */
  .menu-nav-item.has-dropdown:not(.dropdown-open) .nav-dropdown-menu,
  .menu-nav-list .has-dropdown:not(.dropdown-open) .nav-dropdown-menu {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  /* KHI MỞ (.dropdown-open): LUÔN LUÔN HIỆN MENU CON BÊN TRONG RA */
  .menu-nav-item.has-dropdown.dropdown-open .nav-dropdown-menu,
  .menu-nav-list .has-dropdown.dropdown-open .nav-dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    background: #fff7ed !important;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.05) !important;
    border-radius: 0 !important;
    padding: 4px 0 !important;
    border-left: 4px solid #ea580c !important;
    margin: 0 !important;
    width: 100% !important;
    list-style: none !important;
    animation: tigerMobileMenuSlide 0.22s cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  /* ICON MŨI TÊN TRÊN MENU PHÂN BÓN HỮU CƠ (MẶC ĐỊNH HƯỚNG LÊN) */
  .nav-dropdown-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 11px !important;
    opacity: 0.85 !important;
    margin-left: auto !important;
    transform: rotate(0deg) !important;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    pointer-events: none !important;
    color: #ea580c !important;
  }

  /* KHI MỞ: MŨI TÊN XOAY 180 ĐỘ HƯỚNG XUỐNG DƯỚI */
  .menu-nav-item.has-dropdown.dropdown-open > a .nav-dropdown-icon {
    transform: rotate(180deg) !important;
    color: #ea580c !important;
    opacity: 1 !important;
  }

  .menu-nav-item.has-dropdown .nav-dropdown-menu li {
    border-bottom: 1px solid #fed7aa !important;
    list-style: none !important;
  }
  .menu-nav-item.has-dropdown .nav-dropdown-menu li:last-child {
    border-bottom: none !important;
  }

  .menu-nav-item.has-dropdown .nav-dropdown-menu li a {
    padding: 12px 18px 12px 22px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #334155 !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    text-decoration: none !important;
    border-left: 3px solid transparent !important;
    transition: all 0.2s ease !important;
  }

  .menu-nav-item.has-dropdown .nav-dropdown-menu li a img {
    width: 20px !important;
    height: 20px !important;
    flex-shrink: 0 !important;
  }

  .menu-nav-item.has-dropdown .nav-dropdown-menu li a:hover,
  .menu-nav-item.has-dropdown .nav-dropdown-menu li a:active {
    background: #ffedd5 !important;
    color: #c2410c !important;
    border-left-color: #ea580c !important;
    padding-left: 26px !important;
  }

  .lang-switcher-top {
    margin-left: auto !important;
  }
}

@media (max-width: 768px) {
  .header-flags-row {
    display: none !important;
  }
  .lang-switcher-top {
    padding: 2px 4px !important;
    margin-left: 0 !important;
    border-radius: 16px !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    background: rgba(0, 0, 0, 0.22) !important;
  }
  .header-lang-select {
    font-size: 10.5px !important;
    font-weight: 700 !important;
    padding: 2px 18px 2px 6px !important;
    height: 24px !important;
  }

  .header-icon-circle-btn {
    width: 34px !important;
    height: 34px !important;
    font-size: 13px !important;
  }
  .header-icon-circle-btn i {
    font-size: 13px !important;
  }

  /* GỌN GÀNG KHUNG GỢI Ý TÌM KIẾM */
  .tiger-search-dropdown-wrap {
    position: absolute !important;
    top: calc(100% + 6px) !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-height: 380px !important;
    border-radius: 12px !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18) !important;
    border: 1.5px solid #fed7aa !important;
    z-index: 1000005 !important;
    overflow-y: auto !important;
  }
  .tiger-search-header-tags {
    padding: 8px 12px !important;
  }
  .tiger-search-header-title {
    font-size: 11px !important;
    margin-bottom: 6px !important;
  }
  .tiger-search-tags-row {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 4px !important;
  }
  .tiger-search-tag-chip {
    font-size: 11px !important;
    padding: 3px 8px !important;
    border-radius: 16px !important;
  }
  .tiger-search-item {
    padding: 8px 12px !important;
    gap: 10px !important;
  }
  .tiger-search-item-img {
    width: 44px !important;
    height: 44px !important;
    border-radius: 8px !important;
    padding: 2px !important;
  }
  .tiger-search-item-badge {
    font-size: 9px !important;
    padding: 1px 5px !important;
    margin-bottom: 2px !important;
  }
  .tiger-search-item-title {
    font-size: 12.5px !important;
    line-height: 1.25 !important;
    margin-bottom: 1px !important;
  }
  .tiger-search-item-desc {
    font-size: 11px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 1 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    line-height: 1.35 !important;
  }
  .tiger-search-item-btn {
    font-size: 11px !important;
    font-weight: 700 !important;
    padding: 4px 10px !important;
    border-radius: 16px !important;
  }

  /* COMPACT PRODUCT GRID ON MOBILE */
  .products-18-grid,
  .products-grid,
  .products-grid-catalog,
  .catalog-grid,
  #indexProductGrid,
  #productGridContainer {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }
  .product-item-card,
  .product-card-item {
    border-radius: 12px !important;
    overflow: hidden !important;
    border: 1px solid #fed7aa !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04) !important;
  }
  .product-item-img-wrap,
  .product-card-img-wrap {
    height: 145px !important;
    min-height: 140px !important;
    padding: 6px !important;
  }
  .product-item-img-wrap img,
  .product-card-img-wrap img {
    max-height: 130px !important;
    height: 130px !important;
    object-fit: contain !important;
  }
  .product-item-body {
    padding: 8px !important;
  }
  .product-item-badge {
    font-size: 9.5px !important;
    padding: 2px 6px !important;
    margin-bottom: 3px !important;
  }
  .product-item-title {
    font-size: 12.5px !important;
    line-height: 1.3 !important;
    margin-bottom: 4px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    height: 32px !important;
  }
  .product-item-desc {
    display: none !important;
  }
  .product-item-price-row {
    margin-bottom: 6px !important;
  }
  .product-item-price {
    font-size: 14px !important;
    font-weight: 800 !important;
  }
  .product-item-btn {
    font-size: 11px !important;
    padding: 6px 8px !important;
    border-radius: 6px !important;
    text-align: center !important;
    justify-content: center !important;
    width: 100% !important;
    display: block !important;
  }

  /* COMPACT CERTIFICATIONS ON MOBILE */
  .cert-seals-grid,
  .cert-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }
  .cert-seal-card,
  .cert-card-box {
    padding: 14px 8px !important;
    border-radius: 12px !important;
  }
  .cert-seal-img-wrap,
  .cert-img-box {
    height: 60px !important;
    margin-bottom: 8px !important;
  }
  .cert-seal-img-wrap img,
  .cert-img-box img {
    max-height: 52px !important;
  }
  .cert-seal-card h3,
  .cert-card-box h3 {
    font-size: 12.5px !important;
    margin-bottom: 3px !important;
  }
  .cert-seal-card p,
  .cert-card-box p {
    font-size: 10.5px !important;
    line-height: 1.35 !important;
  }

  /* COMPACT NEWS PREVIEW ON MOBILE */
  .news-preview-section {
    padding: 2.2rem 0 !important;
  }
  .news-preview-header {
    margin-bottom: 1.2rem !important;
    gap: 8px !important;
  }
  .news-preview-title {
    font-size: 1.35rem !important;
    margin-top: 2px !important;
  }
  .news-preview-badge {
    font-size: 11px !important;
  }
  .news-preview-viewall {
    font-size: 12px !important;
  }
  .news-articles-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .news-article-card {
    border-radius: 12px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04) !important;
  }
  .news-article-img-wrap {
    height: 140px !important;
  }
  .news-article-body {
    padding: 12px !important;
  }
  .news-article-meta {
    margin-bottom: 4px !important;
  }
  .news-article-meta span {
    font-size: 10.5px !important;
  }
  .news-article-title {
    font-size: 13.5px !important;
    line-height: 1.35 !important;
    margin-bottom: 5px !important;
  }
  .news-article-desc {
    font-size: 11.5px !important;
    line-height: 1.4 !important;
    margin-bottom: 8px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }
  .news-article-link {
    font-size: 11.5px !important;
  }

  /* COMPACT FOOTER ON MOBILE */
  .footer-area {
    padding: 2.2rem 0 1.2rem 0 !important;
  }
  .footer-grid-layout {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .footer-area .brand-logo-img {
    max-height: 42px !important;
  }
  .footer-area .brand-name-text {
    font-size: 1.15rem !important;
  }
  .footer-area .brand-sub-text {
    font-size: 0.65rem !important;
  }
  .footer-area p {
    font-size: 0.82rem !important;
    line-height: 1.5 !important;
    margin-bottom: 0.75rem !important;
  }
  .footer-col-title {
    font-size: 0.95rem !important;
    margin-bottom: 0.65rem !important;
  }
  .footer-links-list {
    gap: 8px !important;
  }
  .footer-links-list li a {
    font-size: 0.84rem !important;
    gap: 6px !important;
  }
  .footer-links-list li a img {
    width: 15px !important;
    height: 15px !important;
  }
  .footer-bottom-bar {
    padding-top: 1rem !important;
    margin-top: 1.2rem !important;
    font-size: 0.78rem !important;
    text-align: center !important;
    justify-content: center !important;
    gap: 6px !important;
    flex-direction: column !important;
  }
}

@media (max-width: 480px) {
  .products-18-grid,
  .products-grid,
  .products-grid-catalog,
  .catalog-grid,
  #indexProductGrid,
  #productGridContainer {
    gap: 8px !important;
  }
  .product-item-img-wrap,
  .product-card-img-wrap {
    height: 130px !important;
    min-height: 125px !important;
    padding: 4px !important;
  }
  .product-item-img-wrap img,
  .product-card-img-wrap img {
    max-height: 115px !important;
    height: 115px !important;
  }
  .product-item-title {
    font-size: 11.5px !important;
  }
  .cert-seals-grid,
  .cert-cards-grid {
    gap: 8px !important;
  }
  .news-article-img-wrap {
    height: 130px !important;
  }
}

/* CERTIFICATIONS SECTION STYLES */
.cert-cards-grid,
.cert-seals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: stretch;
}
.cert-card-box,
.cert-seal-card {
  background: #ffffff;
  border: 1.5px solid #fed7aa;
  border-radius: 20px;
  padding: 32px 22px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(234, 88, 12, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.cert-card-box:hover,
.cert-seal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(234, 88, 12, 0.15);
  border-color: #ea580c;
}
.cert-img-box,
.cert-seal-img-wrap {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.cert-img-box img,
.cert-seal-img-wrap img {
  max-height: 90px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.08));
}
.cert-card-box h3,
.cert-seal-card h3 {
  font-size: 1.2rem;
  font-weight: 900;
  color: #9a3412;
  margin-bottom: 8px;
}
.cert-card-box p,
.cert-seal-card p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.55;
  margin: 0;
}

@keyframes tigerMobileMenuSlide {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* BALANCED PRODUCT IMAGE FRAMES */
.product-item-img-wrap,
.product-card-img-wrap,
.product-img-wrap,
.product-image-box,
.product-featured-img {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  margin: 0 auto !important;
  width: 100% !important;
  height: 225px !important;
  min-height: 210px !important;
  padding: 10px !important;
  overflow: hidden !important;
}

.product-item-img-wrap img,
.product-card-img-wrap img,
.product-img-wrap img,
.product-image-box img,
.product-featured-img img {
  display: block !important;
  margin: 0 auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  transform: none !important;
  transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.product-item-card:hover .product-item-img-wrap img,
.product-card-item:hover .product-card-img-wrap img {
  transform: scale(1.06) !important;
}

/* COMPACT & BALANCED PRODUCT IMAGE FRAMES */
.product-detail-grand-card {
  display: grid !important;
  grid-template-columns: 420px 1fr !important;
  gap: 2.5rem !important;
  align-items: center !important;
  margin-bottom: 3rem !important;
  background: #ffffff !important;
  padding: 2rem !important;
  border-radius: 20px !important;
  box-shadow: 0 8px 30px rgba(234, 88, 12, 0.06) !important;
  border: 1.5px solid #fed7aa !important;
}

@media (max-width: 992px) {
  .product-detail-grand-card {
    grid-template-columns: 1fr !important;
    padding: 1.5rem !important;
    gap: 1.5rem !important;
  }
}

.product-img-frame {
  border: 1.5px solid #fed7aa !important;
  border-radius: 16px !important;
  padding: 1.25rem !important;
  background: #ffffff !important;
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  max-width: 380px !important;
  width: 100% !important;
  margin: 0 auto !important;
  min-height: auto !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03) !important;
}

.product-img-frame img {
  max-width: 100% !important;
  width: auto !important;
  max-height: 400px !important;
  height: auto !important;
  object-fit: contain !important;
  margin: 0 auto !important;
  transform: none !important;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.1)) !important;
}

.product-item-img-wrap img,
.product-card-img-wrap img {
  max-height: 220px !important;
  height: 220px !important;
  width: auto !important;
  object-fit: contain !important;
}

/* ========================================================
   BREADCRUMB STYLES (TRANG CHỦ » PHÂN BÓN HỮU CƠ)
   ======================================================== */
.breadcrumb-bar,
.breadcrumbs,
.woocommerce-breadcrumb {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  font-size: 14.5px !important;
  color: #64748b !important;
  margin-bottom: 1.5rem !important;
  line-height: 1.5 !important;
}

.breadcrumb-bar a,
.breadcrumbs a,
.woocommerce-breadcrumb a {
  color: #ea580c !important;
  text-decoration: none !important;
  font-weight: 700 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  transition: color 0.2s ease, transform 0.2s ease !important;
}

.breadcrumb-bar a:hover,
.breadcrumbs a:hover,
.woocommerce-breadcrumb a:hover {
  color: #c2410c !important;
  text-decoration: underline !important;
}

.breadcrumb-bar .breadcrumb-separator,
.breadcrumb-bar .divider,
.breadcrumbs .divider,
.woocommerce-breadcrumb .divider {
  color: #94a3b8 !important;
  font-weight: 800 !important;
  margin: 0 4px !important;
  user-select: none !important;
}

.breadcrumb-bar span:last-child:not(:first-child),
.breadcrumbs span.current,
.woocommerce-breadcrumb span.current {
  color: #1e293b !important;
  font-weight: 700 !important;
}

/* ==========================================================================
   UNIVERSAL HEADER MENU HOVER & ACTIVE/CLICK OVERRIDE (DESKTOP)
   ========================================================================== */
@media (min-width: 992px) {
  .header-nav > li:hover > a,
  .header-nav > li.active > a,
  .header-nav > li.current-menu-item > a,
  .header-nav > li.current_page_item > a,
  .header-nav > li.current-menu-ancestor > a,
  .header-nav > li.current-menu-parent > a,
  .header-bottom-nav > li:hover > a,
  .header-bottom-nav > li.active > a,
  .menu-nav-item > a,
  .header-nav > li > a,
  .header-bottom-nav > li > a,
  #wide-nav .nav > li > a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 9px 18px !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    border-radius: 6px !important;
    background: transparent;
    box-shadow: none !important;
    transition: all 0.22s ease !important;
    cursor: pointer !important;
  }

  /* 1. Mục Active (trang đang mở hoặc vừa click): Nền nâu đậm/đen chữ vàng */
  .menu-nav-item.active > a,
  .menu-nav-item.has-dropdown.active > a,
  .header-nav > li.active > a,
  .header-nav > li.current-menu-item > a,
  .header-nav > li.current_page_item > a,
  .header-nav > li.current-menu-ancestor > a,
  .header-bottom-nav > li.active > a,
  .header-bottom-nav > li.current-menu-item > a,
  .header-bottom-nav > li.current_page_item > a,
  #wide-nav .nav > li.active > a,
  #wide-nav .nav > li.current-menu-item > a {
    background-color: #7c2d12 !important;
    background: #7c2d12 !important;
    color: #fef08a !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35), inset 0 -3px 0 #f59e0b !important;
  }

  /* 2. Rê chuột vào BẤT KỲ mục nào (Phân Bón Hữu Cơ, Giới Thiệu, Tin Tức, Liên Hệ):
        Mục đó lập tức nhận nền nâu đậm/đen chữ vàng */
  .menu-nav-item:hover > a,
  .menu-nav-item.has-dropdown:hover > a,
  .header-nav > li:hover > a,
  .header-bottom-nav > li:hover > a,
  #wide-nav .nav > li:hover > a {
    background-color: #7c2d12 !important;
    background: #7c2d12 !important;
    color: #fef08a !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35), inset 0 -3px 0 #f59e0b !important;
  }

  /* 3. Khi rê chuột vào menu: Tắt nền đen ở Trang Chủ để nền đen nhảy sang mục đang rê chuột */
  .menu-nav-list:hover .menu-nav-item.active:not(:hover) > a,
  .header-nav:hover > li.active:not(:hover) > a,
  .header-nav:hover > li.current-menu-item:not(:hover) > a,
  .header-bottom-nav:hover > li.active:not(:hover) > a,
  .header-bottom-nav:hover > li.current-menu-item:not(:hover) > a,
  #wide-nav .nav:hover > li.active:not(:hover) > a,
  #wide-nav .nav:hover > li.current-menu-item:not(:hover) > a {
    background: transparent !important;
    background-color: transparent !important;
    color: #ffffff !important;
    box-shadow: none !important;
  }
}

/* FINAL BULLETPROOF ICON PROTECTION */
.fa, .fas, .far, .fab, .fa-solid, .fa-regular, .fa-brands, [class*="fa-"] {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "FontAwesome" !important;
  font-style: normal !important;
  font-variant: normal !important;
  text-rendering: auto !important;
  line-height: 1 !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}
.fa-regular, .far {
  font-weight: 400 !important;
}
.fa-solid, .fas, .fa-calendar-days, .fa-arrow-right, .fa-chevron-right, .fa-phone-volume, .fa-truck-fast, .fa-shield-halved, .fa-medal {
  font-weight: 900 !important;
}
.fa-brands, .fab {
  font-family: "Font Awesome 6 Brands" !important;
  font-weight: 400 !important;
}
/* PRODUCT DETAIL TOP NAVIGATION CONTROLS (Nút bấm qua trái & qua phải nằm bên phải trang xem chi tiết) */
.product-top-nav-bar {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 2rem !important;
  flex-wrap: wrap !important;
  gap: 14px !important;
}
.product-page-nav-btns {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-left: auto !important;
}
.prod-page-nav-btn {
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background: #ffffff !important;
  border: 1.8px solid #fed7aa !important;
  color: #ea580c !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 15px !important;
  text-decoration: none !important;
  cursor: pointer !important;
  box-shadow: 0 3px 10px rgba(234, 88, 12, 0.12) !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
  outline: none !important;
  flex-shrink: 0 !important;
}
.prod-page-nav-btn:hover {
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%) !important;
  color: #ffffff !important;
  border-color: #ea580c !important;
  box-shadow: 0 6px 18px rgba(234, 88, 12, 0.35) !important;
  transform: translateY(-2px) scale(1.08) !important;
}
.prod-page-nav-btn:active {
  transform: translateY(0) scale(0.95) !important;
}
.prod-page-nav-btn i {
  color: inherit !important;
  font-size: 15px !important;
}

/* HEADER RIGHT ACTIONS: MY ACCOUNT & CART (https://phanhumic.com/my-account/ & https://phanhumic.com/cart/) */
.header-actions-box {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  flex-shrink: 0 !important;
}

.header-icon-circle-btn {
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background: #ffffff !important;
  border: 1.8px solid #fed7aa !important;
  color: #ea580c !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 16px !important;
  line-height: 1 !important;
  text-decoration: none !important;
  position: relative !important;
  box-shadow: 0 3px 10px rgba(234, 88, 12, 0.12) !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
  outline: none !important;
}
.header-icon-circle-btn i {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  font-size: 16px !important;
  color: #ea580c !important;
}
.header-icon-circle-btn:hover {
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%) !important;
  color: #ffffff !important;
  border-color: #ea580c !important;
  box-shadow: 0 6px 18px rgba(234, 88, 12, 0.35) !important;
  transform: translateY(-2px) scale(1.06) !important;
}
.header-icon-circle-btn:hover i {
  color: #ffffff !important;
}
.header-icon-circle-btn .header-cart-badge {
  position: absolute !important;
  top: -4px !important;
  right: -4px !important;
  background: #ef4444 !important;
  color: #ffffff !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  width: 20px !important;
  height: 20px !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 2px solid #ffffff !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2) !important;
  line-height: 1 !important;
}
.header-actions-sep {
  display: none !important;
}

@media (max-width: 768px) {
  .header-main-flex {
    flex-wrap: wrap !important;
    justify-content: space-between !important;
    gap: 10px !important;
  }
  .brand-logo-wrap {
    flex: 1 !important;
  }
  .header-actions-box {
    margin-left: auto !important;
    order: 2 !important;
  }
  .header-search-form {
    order: 3 !important;
    max-width: 100% !important;
    width: 100% !important;
  }
}

/* MAIN HEADER LOGO & SEARCH BAR */
.header-main-area {
  position: relative !important;
  z-index: 100001 !important;
  background: #ffffff;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border-light);
}

.header-main-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo-img {
  width: 55px;
  height: 55px;
  border-radius: var(--radius-md);
  object-fit: cover;
  border: 1.5px solid var(--primary);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.brand-title-group {
  display: flex;
  flex-direction: column;
}

.brand-name-text {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary-dark);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.brand-sub-text {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-amber);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* TTP GLOBAL SEARCH FORM */
.header-search-form {
  position: relative !important;
  z-index: 100002 !important;
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
  max-width: 480px !important;
  overflow: visible !important;
}

.header-search-form input {
  width: 100%;
}

/* WOOCOMMERCE / FLATSOME MY ACCOUNT STYLES */
.account-container {
  background: #ffffff;
  padding: 35px;
  border-radius: 8px;
  box-shadow: 0 3px 20px rgba(0,0,0,0.06);
  border: 1px solid #e2e8f0;
  margin-top: 1.5rem;
  margin-bottom: 3.5rem;
}
.account-divided-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
}
.account-divided-row::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: #e2e8f0;
}
.account-inner-col h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1e293b;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}
.woo-form-row {
  margin-bottom: 1.25rem;
}
.woo-form-row label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 6px;
}
.woo-form-row label .required {
  color: #ef4444;
}
.woo-input-text {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
  box-sizing: border-box;
}
.woo-input-text:focus {
  border-color: #ea580c;
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.12);
}
.woo-btn-primary {
  background: #ea580c;
  color: #ffffff;
  border: none;
  padding: 11px 26px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
}
.woo-btn-primary:hover {
  background: #c2410c;
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
}

/* WOOCOMMERCE MY ACCOUNT DASHBOARD (INSIDE) */
.woo-myaccount-wrap {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 35px;
  background: #ffffff;
  padding: 35px;
  border-radius: 8px;
  box-shadow: 0 3px 20px rgba(0,0,0,0.06);
  border: 1px solid #e2e8f0;
  margin-top: 1.5rem;
  margin-bottom: 3.5rem;
}
.woo-account-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  overflow: hidden;
}
.woo-account-nav-item {
  border-bottom: 1px solid #e2e8f0;
}
.woo-account-nav-item:last-child {
  border-bottom: none;
}


/* =========================================================================
   MYSTICKYELEMENTS RIGHT SIDEBAR - LANGUAGE POPUP / FLYOUT
   ========================================================================= */
.mystickyelements-social-icon-li.item-language {
  position: relative;
}

.sidebar-lang-popup {
  position: absolute;
  top: 50%;
  right: calc(100% + 12px);
  transform: translateY(-50%) scale(0.95);
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.22);
  border: 1.5px solid #ea580c;
  padding: 8px;
  width: 195px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10000000;
}

.sidebar-lang-popup::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -7px;
  transform: translateY(-50%);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 7px solid #ea580c;
}

.mystickyelements-social-icon-li.item-language:hover .sidebar-lang-popup,
.mystickyelements-social-icon-li.item-language.is-open .sidebar-lang-popup {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(-50%) scale(1);
}

.sidebar-lang-header {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: #ea580c;
  padding: 4px 8px;
  border-bottom: 1px solid #fed7aa;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sidebar-lang-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 6px 10px;
  color: #1e293b;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.18s ease;
  text-align: left;
  outline: none;
  width: 100%;
}

.sidebar-lang-btn:hover {
  background: #fff7ed;
  border-color: #ea580c;
  color: #ea580c;
  transform: translateX(-2px);
}

.sidebar-lang-btn.active {
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
  color: #ffffff !important;
  border-color: #ea580c;
  box-shadow: 0 3px 8px rgba(234, 88, 12, 0.35);
}

.sidebar-lang-flag {
  font-size: 16px;
  line-height: 1;
}

.sidebar-lang-text {
  flex: 1;
}

.sidebar-lang-check {
  font-size: 11px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.sidebar-lang-btn.active .sidebar-lang-check {
  opacity: 1;
  color: #fef08a;
}

/* TIGER HUMIC SOCIAL AUTHENTICATION BUTTONS (GOOGLE & APPLE) */
.btn-tiger-social-google {
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.btn-tiger-social-google:hover {
  background: #f8fafc !important;
  border-color: #ea580c !important;
  color: #ea580c !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(234, 88, 12, 0.16) !important;
}
.btn-tiger-social-google:active {
  transform: translateY(0);
}

.btn-tiger-social-apple {
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.btn-tiger-social-apple:hover {
  background: #27272a !important;
  border-color: #27272a !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4) !important;
}
.btn-tiger-social-apple:active {
  transform: translateY(0);
  background: #09090b !important;
}

.btn-tiger-social-facebook {
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.btn-tiger-social-facebook:hover {
  background: #166fe5 !important;
  border-color: #166fe5 !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(24, 119, 242, 0.42) !important;
}
.btn-tiger-social-facebook:active {
  transform: translateY(0);
}

.btn-social-apple {
  background: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
.btn-social-apple:hover {
  background: #27272a !important;
  border-color: #27272a !important;
  color: #ffffff !important;
}

.btn-social-facebook {
  background: #1877f2 !important;
  border-color: #1877f2 !important;
  color: #ffffff !important;
}
.btn-social-facebook:hover {
  background: #166fe5 !important;
  border-color: #166fe5 !important;
  color: #ffffff !important;
}



.mfp-hide { display: none !important; }
