/* =========================================================
   NEXA FOODS — style.css
   Font: Be Vietnam Pro (Google Fonts)
   ========================================================= */

/* --- DESIGN TOKENS --- */
:root {
  --navy-950: #031124;
  --navy-900: #071b34;
  --green-600: #00913f;
  --green-500: #00b95f;
  --green-400: #22d87a;
  --green-50:  #f0fdf6;
  --ink:   #1a1a2e;
  --ink-2: #374151;
  --muted: #6b7280;
  --line:  #e5e7eb;
  --paper: #f9fafb;
  --white: #ffffff;
  --container: 1200px;
  --header-height: 76px;
  --radius: 10px;
  --shadow-sm: 0 1px 3px rgb(0 0 0/8%), 0 1px 2px rgb(0 0 0/6%);
  --shadow-md: 0 4px 16px rgb(0 0 0/10%);
  --shadow-lg: 0 10px 40px rgb(0 0 0/14%);
}

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: 'Be Vietnam Pro', 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4, p { margin-top: 0; }
ul { list-style: none; margin: 0; padding: 0; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 100;
  padding: 10px 14px; border-radius: 6px;
  color: #fff; background: var(--green-500);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

/* =========================================================
   HEADER
   ========================================================= */
/* Mobile homepage: equal side columns keep the brand truly centered. */
@media (max-width: 640px) {
  .site-header .nav-wrap { display: grid; grid-template-columns: 44px minmax(0, 1fr) 44px; gap: 0; }
  .site-header .brand { grid-column: 2; grid-row: 1; justify-self: center; gap: 6px; white-space: nowrap; }
  .site-header .brand img { width: 32px; height: 32px; }
  .site-header .brand strong { font-size: 1.05rem; }
  .site-header .brand small { font-size: .48rem; letter-spacing: .08em; }
  .site-header .menu-toggle { grid-column: 1; grid-row: 1; justify-self: start; }
  .site-header .header-search-wrap { display: none; }
}
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 20;
  height: var(--header-height);
  color: var(--ink);
  background: #fff;
  border-bottom: 1px solid var(--line);
  transition: background .25s, box-shadow .25s, color .25s;
}
.site-header.scrolled {
  color: #fff;
  background: rgb(3 17 36 / 96%);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
  border-bottom-color: transparent;
}
.nav-wrap {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
}
.brand img { width: 40px; height: 40px; object-fit: contain; }
.brand span { display: grid; line-height: 1; }
.brand strong { font-size: 1.15rem; font-weight: 700; letter-spacing: .1em; }
.brand small {
  margin-top: 4px; font-size: .6rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; opacity: .65;
}
/* Header Search Wrap (Phong cách Nhà thuốc Thân thiện) */
.header-search-wrap {
  flex: 1; min-width: 200px; max-width: 440px; margin: 0 18px;
}
.header-search-form {
  position: relative; display: flex; align-items: center;
}
.header-search-form input {
  width: 100%; height: 40px; border-radius: 99px;
  border: 1.5px solid #cbd5e1; padding: 0 44px 0 16px;
  font-size: .83rem; color: var(--ink); background: #f8fafc;
  outline: none; transition: border-color .15s, box-shadow .15s, background .15s;
  font-family: inherit;
}
.site-header.scrolled .header-search-form input {
  background: rgba(255, 255, 255, 0.95); border-color: transparent;
}
.header-search-form input:focus {
  border-color: var(--green-500); background: #fff;
  box-shadow: 0 0 0 4px rgb(0 185 95 / 15%);
}
.header-search-form button {
  position: absolute; right: 3px; top: 3px; bottom: 3px; width: 34px;
  border: none; background: var(--green-500); color: #fff;
  border-radius: 50%; cursor: pointer; font-size: .82rem;
  display: grid; place-items: center; transition: background .15s, transform .15s;
}
.header-search-form button:hover {
  background: var(--green-600); transform: scale(1.05);
}

.main-nav { display: flex; align-items: center; gap: 24px; }
.main-nav a { font-size: .875rem; font-weight: 600; letter-spacing: .01em; opacity: .75; transition: opacity .15s; }
.main-nav a:hover { opacity: 1; }
.main-nav a:not(.nav-cta) { color: inherit; }
.nav-dropdown { position: relative; align-self: stretch; display: flex; align-items: center; }
.nav-dropdown-toggle {
  display: inline-flex; align-items: center; gap: 6px; padding: 0;
  color: inherit; background: transparent; border: 0; cursor: pointer;
  font: inherit; font-size: .875rem; font-weight: 600; letter-spacing: .01em;
  opacity: .75; transition: color .15s, opacity .15s;
}
.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle { color: var(--green-600); opacity: 1; }
.nav-dropdown-toggle:focus-visible { outline: 2px solid var(--green-500); outline-offset: 5px; border-radius: 3px; }
.site-header.scrolled .nav-dropdown-toggle:hover,
.site-header.scrolled .nav-dropdown.open .nav-dropdown-toggle { color: var(--green-400); }
.nav-dropdown-toggle svg {
  width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round; transition: transform .18s;
}
.nav-dropdown.open .nav-dropdown-toggle svg { transform: rotate(180deg); }
.nav-submenu {
  position: absolute; top: calc(100% - 2px); left: 50%; z-index: 25;
  width: 286px; padding: 8px; color: var(--ink); background: #fff;
  border: 1px solid var(--line); border-radius: 12px;
  box-shadow: 0 18px 46px rgb(3 17 36 / 18%);
  visibility: hidden; opacity: 0; transform: translate(-50%, 10px);
  transition: opacity .16s, transform .16s, visibility .16s;
}
.nav-submenu::before { content: ""; position: absolute; right: 0; bottom: 100%; left: 0; height: 14px; }
.nav-dropdown:hover .nav-submenu,
.nav-dropdown.open .nav-submenu { visibility: visible; opacity: 1; transform: translate(-50%, 0); }
.nav-dropdown-right .nav-submenu {
  left: auto; right: 0;
  transform: translateY(10px);
}
.nav-dropdown-right:hover .nav-submenu,
.nav-dropdown-right.open .nav-submenu {
  transform: translateY(0);
}
.main-nav .nav-submenu a {
  display: block; padding: 12px 14px; color: var(--ink); border-radius: 8px;
  font-size: .86rem; font-weight: 650; opacity: 1;
}
.main-nav .nav-submenu a + a { border-top: 1px solid #edf2ef; border-radius: 0 0 8px 8px; }
.main-nav .nav-submenu a:hover,
.main-nav .nav-submenu a:focus-visible { color: var(--green-600); background: var(--green-50); outline: none; }
.nav-cta {
  opacity: 1 !important;
  padding: 9px 18px;
  border: 1.5px solid rgb(0 0 0 / 18%);
  border-radius: 999px;
  font-weight: 600;
  transition: background .15s, color .15s, border-color .15s;
}
.site-header.scrolled .nav-cta { border-color: rgb(255 255 255 / 30%); }
.nav-cta:hover { color: #fff !important; border-color: var(--green-500); background: var(--green-500); }
.menu-toggle {
  display: none; width: 42px; height: 42px;
  padding: 10px; color: var(--ink); background: transparent; border: 0;
}
.site-header.scrolled .menu-toggle { color: #fff; }
.menu-toggle span {
  display: block; width: 22px; height: 2px;
  margin: 5px auto; background: currentColor; transition: .2s;
}

@media (max-width: 768px) {
  .site-header .main-nav { justify-content: flex-start; overflow-y: auto; }
  .nav-dropdown { width: 100%; align-self: auto; display: block; }
  .nav-dropdown-toggle {
    width: 100%; justify-content: space-between; padding: 12px 0;
    color: #fff !important; border-bottom: 1px solid rgb(255 255 255 / 10%);
    font-size: 1.25rem; opacity: .85;
  }
  .nav-dropdown-toggle:hover,
  .nav-dropdown.open .nav-dropdown-toggle { color: var(--green-400); }
  .nav-submenu {
    position: static; display: none; width: 100%; margin: 6px 0 4px; padding: 5px 10px;
    color: #fff; background: rgb(255 255 255 / 6%); border-color: rgb(255 255 255 / 10%);
    box-shadow: none; visibility: visible; opacity: 1; transform: none; transition: none;
  }
  .nav-dropdown:hover .nav-submenu { display: none; transform: none; }
  .nav-dropdown.open .nav-submenu { display: block; transform: none; }
  .nav-dropdown-right .nav-submenu { right: auto; left: auto; transform: none; }
  .nav-dropdown-right:hover .nav-submenu,
  .nav-dropdown-right.open .nav-submenu { transform: none; }
  .main-nav .nav-submenu a {
    padding: 10px 12px; color: #dbe8f1 !important; border-bottom: 0;
    border-radius: 7px; font-size: 1rem; font-weight: 550;
  }
  .main-nav .nav-submenu a + a { border-top-color: rgb(255 255 255 / 9%); }
  .main-nav .nav-submenu a:hover,
  .main-nav .nav-submenu a:focus-visible { color: #fff !important; background: rgb(0 185 95 / 16%); }
}
/* =========================================================
   HERO CAROUSEL SLIDER (Dạng Cuộn 2 Slide 4K Siêu Sắc Nét & Tràn Viền Tuyệt Đối)
   ========================================================= */
.hero-slider-container {
  position: relative; width: 100%;
  min-height: clamp(660px, 84vh, 900px);
  overflow: hidden; margin: 0; padding: 0;
  background: #090d16;
}
.hero-slide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden;
  transition: opacity .8s cubic-bezier(.4, 0, .2, 1), transform 1s cubic-bezier(.4, 0, .2, 1);
  transform: scale(1.02);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex; align-items: center; text-align: left;
}
.hero-slide.active {
  opacity: 1; visibility: visible; transform: scale(1);
  z-index: 2;
}

/* Slide 1 Dark Gradient Overlay */
.hero-bright-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(2, 13, 28, 0.78) 0%, rgba(2, 13, 28, 0.3) 45%, transparent 75%);
}

/* Slide 2 Light Gradient Overlay */
.hero-slide-light-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.75) 42%, rgba(255, 255, 255, 0.15) 80%);
}

.hero-banner-inner {
  position: relative; z-index: 3; max-width: 420px;
  margin-left: clamp(80px, 7vw, 110px); text-align: left;
}
.hero-slide h1 {
  font-size: clamp(1.5rem, 3.2vw, 2.4rem); font-weight: 800;
  line-height: 1.2; margin-bottom: 14px; letter-spacing: -.02em;
}
.vessel-banner-title {
  display: flex; flex-direction: column; gap: 4px;
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  font-weight: 800; line-height: 1.2;
  margin-bottom: 14px; letter-spacing: -.02em;
}
.vessel-banner-title .title-white {
  color: #ffffff; font-weight: 800; display: block;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7);
}
.vessel-banner-title .title-cyan {
  color: #00f2fe; font-weight: 800; display: block;
  text-shadow: 0 0 18px rgba(0, 242, 254, 0.65), 0 0 35px rgba(0, 242, 254, 0.4), 0 2px 10px rgba(0, 0, 0, 0.8);
  letter-spacing: -.01em;
}

.food-banner-title {
  display: flex; flex-direction: column; gap: 4px;
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  font-weight: 800; line-height: 1.2;
  margin-bottom: 14px; letter-spacing: -.02em;
}
.food-banner-title .title-dark {
  color: #0f172a; font-weight: 800; display: block;
  text-shadow: none;
}
.food-banner-title .title-green {
  color: #00b95f; font-weight: 800; display: block;
  text-shadow: none;
}
.hero-lead-clean {
  max-width: 360px; margin: 0 0 18px; font-size: .85rem;
  color: #f8fafc; line-height: 1.5; text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  font-weight: 500; opacity: .9;
}
.hero-lead-clean-dark {
  max-width: 380px; margin: 0 0 22px; font-size: .92rem;
  color: #334155; line-height: 1.6; font-weight: 500; text-shadow: none;
}

.hero-actions-bright {
  display: flex; align-items: center; justify-content: flex-start; gap: 10px; flex-wrap: wrap;
}
.btn-hero-bright-primary {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 20px; border-radius: 6px; background: var(--green-500);
  color: #fff; font-weight: 700; font-size: .85rem; text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 185, 95, 0.4); transition: background .15s, transform .15s;
}
.btn-hero-bright-primary:hover { background: var(--green-600); transform: translateY(-1px); }

.btn-hero-bright-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 18px; border-radius: 6px; background: rgba(255, 255, 255, 0.18);
  border: 1.5px solid rgba(255, 255, 255, 0.35); color: #fff; font-weight: 700;
  font-size: .85rem; cursor: pointer; backdrop-filter: blur(8px);
  transition: background .15s, border-color .15s, transform .15s; font-family: inherit;
}
.btn-hero-bright-ghost:hover { background: rgba(255, 255, 255, 0.3); border-color: #fff; transform: translateY(-1px); }

.btn-hero-dark-ghost {
  background: #fff; border: 1.5px solid #cbd5e1; color: #1e293b;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.btn-hero-dark-ghost:hover {
  border-color: var(--green-500); color: var(--green-600); background: #f8fafc;
}

/* Nút Mũi Tên Trái / Phải */
.hero-slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.85); border: 1px solid rgba(0, 0, 0, 0.1);
  color: #0f172a; font-size: 1.6rem; font-weight: 400; display: flex; align-items: center; justify-content: center;
  cursor: pointer; backdrop-filter: blur(8px); transition: background .2s, transform .2s, color .2s;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12); user-select: none;
}
.hero-slider-btn:hover {
  background: var(--green-500); color: #fff; transform: translateY(-50%) scale(1.08);
}
.hero-slider-btn.prev { left: 24px; }
.hero-slider-btn.next { right: 24px; }

/* Dấu Chấm Chuyển Slide (Pagination Dots) */
.hero-slider-dots {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 10;
  display: flex; align-items: center; gap: 8px;
}
.hero-slider-dots .dot {
  width: 10px; height: 10px; border-radius: 50%; border: none; outline: none;
  background: rgba(0, 0, 0, 0.25); cursor: pointer;
  transition: background .2s, transform .2s, width .2s;
}
.hero-slider-dots .dot.active {
  width: 28px; border-radius: 99px; background: var(--green-500);
  box-shadow: 0 0 10px rgba(0, 185, 95, 0.6);
}
.floating-card strong { font-size: .82rem; font-weight: 600; color: var(--ink); }
.card-top { top: 16%; right: 0; }
.card-bottom { bottom: 14%; left: -2%; }

/* Marquee ticker */
.hero-marquee {
  position: relative; z-index: 2;
  overflow: hidden; padding: 14px 0;
  color: var(--navy-950); background: var(--green-500);
}
.hero-marquee div {
  width: max-content;
  font-size: .76rem; font-weight: 800;
  letter-spacing: .12em; white-space: nowrap;
  animation: ticker 30s linear infinite;
}
.hero-marquee span { margin: 0 20px; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* =========================================================
   QUICK CATEGORIES
   ========================================================= */
.section-sm { padding: 56px 0; }
.quick-cats { background: var(--paper); border-bottom: 1px solid var(--line); }
.quick-cats-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 28px;
}
.quick-cats-head h2 {
  margin: 0; font-size: 1.4rem; font-weight: 700; letter-spacing: -.01em;
}
.view-all { color: var(--green-500); font-size: .875rem; font-weight: 600; }
.view-all:hover { text-decoration: underline; }
.quick-cats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.cat-card {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 20px 12px; border-radius: var(--radius);
  background: #fff; border: 1.5px solid var(--line);
  text-align: center;
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.cat-card:hover {
  border-color: var(--green-400);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.cat-icon { font-size: 2rem; }
.cat-card span { font-size: .875rem; font-weight: 600; color: var(--ink-2); }

/* =========================================================
   PRODUCTS SECTION
   ========================================================= */
.products-section {
  background: var(--white);
  scroll-margin-top: calc(var(--header-height) + 16px);
}
.products-section.section {
  padding: 36px 0 40px;
}

/* Category groups spacing */
.catalog-category-group + .catalog-category-group {
  margin-top: 40px;
}

.catalog-search-status {
  margin: 24px 0 0;
  padding: 18px 20px;
  border: 1px solid rgba(0, 185, 95, 0.24);
  border-radius: 12px;
  background: var(--green-50);
  color: var(--ink-2);
  font-size: .92rem;
  line-height: 1.55;
  text-align: center;
}

.catalog-search-status[hidden] {
  display: none;
}

/* Catalog Header Ribbon (Biển Ngọc inspired) */
.catalog-header-ribbon {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 2px solid var(--green-500);
  margin-bottom: 18px;
}

.catalog-ribbon-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, #008f4c 0%, #00a854 100%);
  color: #ffffff;
  padding: 6px 18px 5px 14px;
  border-radius: 6px 16px 0 0;
  box-shadow: 0 -1px 6px rgba(0, 143, 76, 0.12);
}

.catalog-ribbon-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #ffffff;
}

.catalog-ribbon-icon svg {
  width: 14px;
  height: 14px;
  display: block;
}

.catalog-ribbon-title {
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .03em;
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
  line-height: 1.2;
  white-space: nowrap;
}

.catalog-ribbon-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--green-600);
  text-decoration: none;
  padding-bottom: 4px;
  transition: color .15s ease, transform .15s ease;
  white-space: nowrap;
}

.catalog-ribbon-link:hover {
  color: var(--green-700);
  transform: translateX(2px);
}

.catalog-mobile-hint {
  display: none;
  font-size: .75rem;
  font-weight: 600;
  color: var(--green-600);
  margin-left: auto;
  padding-bottom: 6px;
  letter-spacing: .02em;
}

/* Product Grid (Full Width 4 columns desktop) */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s ease, transform .2s ease;
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--paper);
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 10px;
  border-radius: 99px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  background: var(--green-500);
  color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.badge-blue {
  background: #0284c7;
}

.badge-orange {
  background: #ea580c;
}

.product-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 14px 14px 16px;
}

.product-code {
  display: inline-block;
  margin-bottom: 6px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--green-600);
  text-transform: uppercase;
}

.product-name {
  margin: 0 0 8px;
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink);
  min-height: 2.7em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-name a {
  color: inherit;
  text-decoration: none;
}

.product-name a:hover {
  color: var(--green-600);
}

.product-meta {
  margin: 0 0 14px;
  font-size: .75rem;
  color: var(--muted);
}

.product-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin-top: auto;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: .8rem;
  font-weight: 700;
  background: var(--green-50);
  color: var(--green-600);
  border: 1px solid rgba(0, 185, 95, 0.25);
  transition: all .15s ease;
  text-decoration: none;
}

.product-cta:hover {
  background: var(--green-500);
  color: #ffffff;
  border-color: var(--green-500);
}

/* =========================================================
   CATALOG RESPONSIVE BREAKPOINTS
   ========================================================= */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .products-section.section {
    padding: 24px 0 28px;
  }
  .catalog-category-group + .catalog-category-group {
    margin-top: 26px;
  }
  .catalog-header-ribbon {
    margin-bottom: 12px;
    border-bottom-width: 1.5px;
  }
  .catalog-ribbon-badge {
    padding: 5px 12px 4px 10px;
    border-radius: 5px 12px 0 0;
    gap: 6px;
  }
  .catalog-ribbon-icon {
    width: 15px;
    height: 15px;
  }
  .catalog-ribbon-icon svg {
    width: 12px;
    height: 12px;
  }
  .catalog-ribbon-title {
    font-size: 0.8rem;
    letter-spacing: .02em;
    font-weight: 700;
  }
  .catalog-ribbon-link {
    font-size: 0.72rem;
    padding-bottom: 3px;
  }

  /* Horizontal Scroll: Displays 3 products, swipe to see next */
  .product-grid {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 8px;
    padding-bottom: 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--green-500) rgba(0, 0, 0, 0.06);
  }
  .product-grid::-webkit-scrollbar {
    height: 4px;
  }
  .product-grid::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 99px;
  }
  .product-grid::-webkit-scrollbar-thumb {
    background: var(--green-500);
    border-radius: 99px;
  }

  .product-grid .product-card {
    flex: 0 0 calc((100% - 16px) / 3);
    min-width: calc((100% - 16px) / 3);
    scroll-snap-align: start;
  }
  .product-info {
    padding: 8px 6px 10px;
  }
  .product-code {
    font-size: .6rem;
    margin-bottom: 2px;
  }
  .product-name {
    font-size: .75rem;
    line-height: 1.25;
    min-height: 2.5em;
    margin-bottom: 4px;
  }
  .product-meta {
    font-size: .62rem;
    line-height: 1.2;
    margin-bottom: 8px;
  }
  .product-badge {
    font-size: .55rem;
    padding: 2px 6px;
    top: 6px;
    left: 6px;
  }
  .product-cta {
    font-size: .68rem;
    padding: 5px 4px;
    gap: 3px;
  }
}
/* =========================================================
   INTRO / GIỚI THIỆU
   ========================================================= */
.section { padding: 110px 0; }
.intro.section {
  padding: 36px 0 48px;
  scroll-margin-top: var(--header-height, 70px);
}
.split-heading {
  display: grid; grid-template-columns: 1fr .9fr;
  gap: 60px; align-items: start; margin-bottom: 0;
}
.split-heading h2 { margin-bottom: 0; }
.split-heading.intro-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 0;
}
.intro .section-heading-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  margin: 0 auto 32px;
}
.intro .section-heading-title {
  font-size: 1.12rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink, #0f172a);
  line-height: 1.3;
}
.intro .section-heading-line {
  display: block;
  width: 54px;
  height: 3.5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #00b95f, #007d48);
  margin-top: 8px;
}
.intro-content h2 { margin-bottom: 12px; }
.intro-lead {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.intro-features {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.intro-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--green-50);
  color: var(--green-600);
  flex-shrink: 0;
  margin-top: 1px;
}
.feature-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.feature-text strong {
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 750;
  line-height: 1.35;
}
.feature-text span {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}
.intro-profile-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 8px; color: var(--green-600); font-weight: 750;
  transition: color .15s ease, transform .15s ease;
}
.intro-profile-link:hover {
  color: var(--navy-900);
  transform: translateX(3px);
}
.intro-visual {
  position: relative;
}
.intro-image-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 30, 20, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--line);
  background: #ffffff;
}
.intro-image-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 896;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}
.intro-image-frame:hover img {
  transform: scale(1.02);
}
.intro-image-badge {
  display: none;
}

@media (max-width: 960px) {
  .intro .section-heading-badge {
    margin: 0 auto 16px;
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .intro .section-heading-title {
    font-size: 1.22rem;
  }
  .intro .section-heading-line {
    width: 60px;
    margin-top: 7px;
  }
  .split-heading.intro-layout {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .intro-visual {
    order: 1;
    margin: 2px 0 10px;
    width: 100%;
  }
  .intro-content {
    order: 2;
  }
  .intro-content h2 {
    margin-top: 4px;
    margin-bottom: 12px;
  }
  .intro-lead {
    margin-bottom: 18px;
  }
  .intro-features {
    margin-bottom: 18px;
  }
  .intro-profile-link {
    display: inline-flex;
  }
  .intro-image-frame img {
    height: auto;
    aspect-ratio: 1200 / 896;
  }
}

@media (max-width: 820px) {
  .intro.section { padding: 36px 0 40px; }
  .split-heading.intro-layout { gap: 16px; }
}
@media (max-width: 520px) {
  .intro.section { padding: 30px 0 34px; }
  .intro .section-heading-title {
    font-size: 1.16rem;
    letter-spacing: 0.06em;
  }
  .intro-visual {
    margin: 0 0 8px;
  }
  .intro-content h2 {
    font-size: 1.45rem;
    line-height: 1.28;
    margin-top: 4px;
    margin-bottom: 10px;
  }
  .intro-lead {
    font-size: 0.95rem;
    margin-bottom: 16px;
  }
  .intro-features {
    margin-bottom: 16px;
  }
  .intro-image-frame img {
    height: auto;
    aspect-ratio: 1200 / 896;
    object-position: center;
  }
}
/* Capability overview styles are served independently from public/nang-luc/overview.css. */
.services-overview .services-header-top h2 {
  color: #fff;
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  text-align: center;
}
.services-overview .services-header-top h2 span {
  display: inline-block;
}
@media (max-width: 600px) {
  .services-overview .services-header-top h2 {
    font-size: 1.35rem;
  }
}
/* =========================================================
   NEWS & ARTICLES / BÀI VIẾT & TIN TỨC (THAY THẾ VALUES)
   ========================================================= */
.values { background: #fff; }
.values.section {
  padding: 44px 0 48px;
  scroll-margin-top: var(--header-height, 70px);
}

/* Header row */
.news-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--line);
}
.news-header-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}
.news-header .section-heading-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 12px;
}
.news-header .section-heading-title {
  font-size: 1.12rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink, #0f172a);
  line-height: 1.3;
}
.news-header .section-heading-line {
  display: block;
  width: 54px;
  height: 3.5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #00b95f, #007d48);
  margin: 8px auto 0;
}
.news-header-text h2 {
  margin: 6px 0 14px;
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 800;
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.02em;
  text-align: center;
}
.news-header-text h2 span {
  display: inline-block;
}
.news-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green-600);
  font-size: 0.92rem;
  font-weight: 750;
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 99px;
  background: var(--green-50);
  transition: all 0.2s ease;
  white-space: nowrap;
}
.news-all-link:hover {
  background: var(--green-500);
  color: #fff;
  transform: translateX(2px);
}

/* Layout 2 columns: Featured (Left) + List (Right) */
.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 480px);
  gap: 28px;
  align-items: stretch;
}

/* Featured Card (Left) */
.featured-post {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.featured-post:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 168, 84, 0.4);
}
.featured-image-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  height: 220px;
  background: var(--navy-900);
}
.featured-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}
.featured-post:hover .featured-image-wrap img {
  transform: scale(1.05);
}
.featured-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, #008f4c 0%, #00a854 100%);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 750;
  padding: 5px 12px;
  border-radius: 6px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.featured-body {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.featured-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 8px;
}
.meta-dot {
  color: var(--line-strong, #ccc);
}
.featured-title {
  margin: 0 0 8px;
  font-size: 1.12rem;
  font-weight: 750;
  line-height: 1.4;
}
.featured-title a {
  color: var(--ink);
  text-decoration: none;
  transition: color 0.15s ease;
}
.featured-title a:hover {
  color: var(--green-600);
}
.featured-excerpt {
  margin: 0 0 14px;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.5;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.featured-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green-600);
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
  transition: transform 0.15s ease, color 0.15s ease;
}
.featured-link:hover {
  color: var(--navy-900);
  transform: translateX(4px);
}

/* Recent List (Right) */
.recent-posts-list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  max-width: 480px;
  width: 100%;
}
.recent-post-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.recent-post-item:hover {
  transform: translateX(3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 168, 84, 0.35);
}

/* Calendar Date Badge (phong cách Biển Ngọc) */
.news-date-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 50px;
  border-radius: 8px;
  background: linear-gradient(180deg, #00964d 0%, #007a3e 100%);
  color: #ffffff;
  flex-shrink: 0;
  text-align: center;
  padding: 4px 2px;
  box-shadow: 0 4px 10px rgba(0, 150, 77, 0.2);
}
.news-date-badge.accent-blue {
  background: linear-gradient(180deg, #0284c7 0%, #0369a1 100%);
  box-shadow: 0 4px 10px rgba(2, 132, 199, 0.2);
}
.news-date-badge.accent-navy {
  background: linear-gradient(180deg, #1e3a5f 0%, #0f1f2c 100%);
  box-shadow: 0 4px 10px rgba(15, 31, 44, 0.2);
}
.badge-day {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.badge-month {
  font-size: 0.55rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.95;
  margin-top: 2px;
}

/* Recent Post Content */
.recent-post-body {
  flex: 1;
  min-width: 0;
}
.news-category-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 750;
  color: var(--green-600);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 2px;
}
.recent-post-title {
  margin: 0 0 3px;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.35;
}
.recent-post-title a {
  color: var(--ink);
  text-decoration: none;
  transition: color 0.15s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.recent-post-title a:hover {
  color: var(--green-600);
}
.recent-post-excerpt {
  margin: 0;
  font-size: 0.81rem;
  color: var(--muted);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Responsive */
@media (max-width: 960px) {
  .news-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .recent-posts-list {
    max-width: 100%;
  }
  .featured-image-wrap {
    height: 200px;
  }
}
@media (max-width: 820px) {
  .values.section { padding: 32px 0 36px; }
  .news-header {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
  }
}
@media (max-width: 520px) {
  .values.section { padding: 28px 0 32px; }
  .news-header {
    margin-bottom: 16px;
  }
  .news-header .section-heading-title { font-size: 1.15rem; }
  .news-header .section-heading-line { width: 50px; }
  .news-header-text h2 { font-size: 1.35rem; margin-bottom: 10px; }
  .featured-image-wrap { height: 160px; }
  .featured-body { padding: 14px 14px 16px; }
  .featured-title { font-size: 1.02rem; margin-bottom: 6px; line-height: 1.35; }
  .featured-excerpt { font-size: 0.82rem; line-height: 1.45; margin-bottom: 10px; -webkit-line-clamp: 2; }
  .recent-posts-list { gap: 8px; }
  .recent-post-item {
    padding: 9px 12px;
    gap: 10px;
    border-radius: 10px;
  }
  .news-date-badge {
    width: 40px;
    height: 42px;
    border-radius: 6px;
    padding: 3px 2px;
  }
  .badge-day { font-size: 0.95rem; }
  .badge-month { font-size: 0.48rem; }
  .news-category-tag { font-size: 0.64rem; margin-bottom: 2px; }
  .recent-post-title { font-size: 0.86rem; line-height: 1.3; margin-bottom: 2px; }
  .recent-post-excerpt { font-size: 0.76rem; line-height: 1.35; -webkit-line-clamp: 1; }
}

/* =========================================================
   CONTACT (Khối 04 / Liên hệ đã được lược bỏ theo yêu cầu;
   giữ lại anchor target #lien-he điều hướng xuống thông tin chân trang)
   ========================================================= */
.contact-anchor {
  display: block;
  height: 0;
  overflow: hidden;
  scroll-margin-top: var(--header-height, 70px);
}

/* =========================================================
   TOP COMMITMENT BAR (Thanh cam kết 4 tiêu chí)
   ========================================================= */
.footer-commit-bar {
  background: #e6f4ec; border-top: 1px solid #bbf7d0;
  border-bottom: 1px solid #bbf7d0; padding: 26px 0;
}
.footer-commit-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.commit-item {
  display: flex; align-items: flex-start; gap: 14px;
}
.commit-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; border: 2px solid var(--green-500);
  display: grid; place-items: center; font-size: 1.25rem;
  color: var(--green-600); flex-shrink: 0; box-shadow: 0 2px 8px rgb(0 185 95 / 15%);
}
.commit-item strong {
  display: block; font-size: .92rem; font-weight: 700; color: #064e3b;
  margin-bottom: 3px;
}
.commit-item p {
  font-size: .8rem; color: #334155; line-height: 1.45; margin: 0;
}

/* =========================================================
   GLOBAL BRAND PARTNERS (Đối tác chiến lược & Thương hiệu toàn cầu)
   ========================================================= */
.global-partners-section {
  background: linear-gradient(180deg, #07121e 0%, #0a1b2d 55%, #081626 100%);
  color: #ffffff;
  padding: 36px 0 26px;
  position: relative;
  overflow: hidden;
  contain: paint;
  max-width: 100%;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  scroll-margin-top: 80px;
}

.global-partners-section::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 700px;
  height: 380px;
  background: radial-gradient(ellipse, rgba(0, 176, 116, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.partners-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.partners-header-text {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.partners-header .section-heading-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 12px;
}
.partners-header .section-heading-title {
  color: #34d399;
  font-size: 1.12rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.3;
}
.partners-header .section-heading-line {
  display: block;
  width: 54px;
  height: 3.5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #34d399, #059669);
  box-shadow: 0 0 10px rgba(52, 211, 153, 0.4);
  margin: 8px auto 0;
}

.partners-header h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 800;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  text-align: center;
}
.partners-header h2 span {
  display: inline-block;
}

.partners-subtitle {
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.5;
  margin: 0 auto 16px;
  text-align: center;
}

.partners-ctrl-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-shrink: 0;
}

.partner-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.partner-nav-btn:hover {
  background: #00b074;
  border-color: #00b074;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 176, 116, 0.35);
}

.partner-nav-btn:active {
  transform: translateY(0);
}

/* Marquee Viewport & Track */
.partners-marquee-viewport {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  contain: paint;
  padding: 4px 0 12px;
  border-radius: 14px;
}

.partners-marquee-viewport::before,
.partners-marquee-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 48px;
  z-index: 3;
  pointer-events: none;
}

.partners-marquee-viewport::before {
  left: 0;
  background: linear-gradient(to right, #07121e 0%, rgba(7, 18, 30, 0) 100%);
}

.partners-marquee-viewport::after {
  right: 0;
  background: linear-gradient(to left, #07121e 0%, rgba(7, 18, 30, 0) 100%);
}

.partners-marquee-track {
  display: flex;
  align-items: stretch;
  gap: 14px;
  width: max-content;
  will-change: transform;
  animation: partners-marquee-anim 35s linear infinite;
}

.partners-marquee-viewport:hover .partners-marquee-track,
.partners-marquee-viewport:focus-within .partners-marquee-track {
  animation-play-state: paused;
}

@keyframes partners-marquee-anim {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 7px));
  }
}

/* Partner Card: Tinh giản, cân đối, sang trọng chuẩn Corporate B2B */
.partner-card {
  width: 220px;
  min-width: 220px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(180deg, rgba(16, 32, 50, 0.9) 0%, rgba(9, 20, 33, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 14px 14px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.partner-card:hover {
  transform: translateY(-3px);
  border-color: rgba(52, 211, 153, 0.5);
  box-shadow: 0 8px 24px rgba(0, 176, 116, 0.2), 0 3px 10px rgba(0, 0, 0, 0.3);
  background: linear-gradient(180deg, rgba(20, 40, 62, 0.95) 0%, rgba(12, 26, 42, 0.98) 100%);
}

.partner-card-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.partner-logo-box {
  background: #ffffff;
  border-radius: 8px;
  height: 48px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 12px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04), 0 2px 6px rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
}

.partner-logo-img {
  max-width: 100%;
  max-height: 36px;
  object-fit: contain;
  display: block;
}

.partner-card-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.partner-brand-name {
  font-size: 0.85rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 4px;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.partner-corp-role {
  font-size: 0.72rem;
  color: #34d399;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

@media (max-width: 768px) {
  .global-partners-section {
    padding: 26px 0 18px;
  }
  .partners-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    margin-bottom: 16px;
  }
  .partners-header .section-heading-badge {
    align-items: center;
    text-align: center;
  }
  .partners-header .section-heading-title {
    font-size: 1.12rem;
  }
  .partners-header .section-heading-line {
    width: 50px;
    margin: 6px auto 0;
  }
  .partners-header h2 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 6px;
    text-align: center;
  }
  .partners-subtitle {
    font-size: 0.78rem;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 12px;
  }
  .partners-ctrl-row {
    align-self: center;
    margin-top: 0;
  }
  .partner-nav-btn {
    width: 32px;
    height: 32px;
  }
  .partners-marquee-track {
    gap: 10px;
  }
  .partner-card {
    width: 170px;
    min-width: 170px;
    padding: 10px 10px 12px;
    border-radius: 10px;
  }
  .partner-card-top {
    margin-bottom: 8px;
  }
  .partner-logo-box {
    height: 40px;
    padding: 4px 8px;
    border-radius: 6px;
  }
  .partner-logo-img {
    max-height: 28px;
  }
  .partner-brand-name {
    font-size: 0.75rem;
    margin-bottom: 2px;
  }
  .partner-corp-role {
    font-size: 0.65rem;
  }
}


/* =========================================================
   MAIN FOOTER (Giao diện Sáng sủa, Tươi mới & Sạch đẹp - Bản Desktop gốc)
   ========================================================= */
.site-footer {
  background: #f4faf6; color: #334155; padding: 56px 0 24px;
  border-top: 1px solid #dcfce7;
}
.footer-desktop-wrapper { display: block; }
.footer-mobile-wrapper { display: none; }

.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1.1fr 1fr 1.2fr;
  gap: 40px; padding-bottom: 44px;
}

.footer-col-brand .footer-brand-logo {
  display: inline-flex; align-items: center; gap: 10px;
  color: #064e3b; text-decoration: none; margin-bottom: 14px;
}
.footer-col-brand .footer-brand-logo img { width: 46px; height: 46px; }
.footer-col-brand .footer-brand-logo strong { font-size: 1.3rem; font-weight: 800; display: block; color: #064e3b; }
.footer-col-brand .footer-brand-logo small { font-size: .72rem; color: var(--green-600); display: block; font-weight: 600; }

.company-fullname {
  font-size: .85rem; font-weight: 800; color: #0f172a; letter-spacing: .01em;
  margin-bottom: 8px; line-height: 1.4;
}
.company-desc {
  font-size: .83rem; color: #475569; line-height: 1.6; margin-bottom: 18px;
}

/* Social Row (Nút icon tròn chuẩn theo ảnh mẫu) */
.footer-social-row {
  display: flex; align-items: center; gap: 14px; margin-top: 12px;
}
.social-icon-btn, .social-btn {
  width: 44px; height: 44px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: #facc15; text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 3px 8px rgb(0 0 0 / 12%); border: 2px solid #fff;
  font-size: 0; position: relative;
}
.social-icon-btn:hover, .social-btn:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 6px 16px rgb(0 0 0 / 20%);
}

.social-icon-btn.facebook, .social-btn.facebook { background: #facc15; color: #1877f2; }
.social-icon-btn.tiktok, .social-btn.tiktok { background: #facc15; color: #0f172a; }
.social-icon-btn.zalo, .social-btn.zalo { background: #facc15; color: #0284c7; }

.social-icon-btn svg, .social-btn svg { width: 22px; height: 22px; }
.social-icon-btn .zalo-text, .social-btn .zalo-text {
  font-size: .8rem; font-weight: 900; color: #0284c7; background: transparent;
  padding: 0; border-radius: 0; line-height: 1; letter-spacing: -0.02em;
}

/* Footer Titles & Lists */
.footer-title {
  font-size: 1.05rem; font-weight: 700; color: #064e3b; margin-bottom: 18px;
  position: relative; padding-bottom: 8px;
}
.footer-title::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 36px; height: 3px;
  background: var(--green-500); border-radius: 2px;
}

.footer-contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .85rem; }
.footer-contact-list .contact-icon { font-size: 1.15rem; flex-shrink: 0; }
.footer-contact-list strong { display: block; color: #0f172a; font-weight: 700; margin-bottom: 1px; }
.footer-contact-list a { color: var(--green-600); text-decoration: none; font-weight: 700; }
.footer-contact-list a:hover { text-decoration: underline; color: #047857; }
.footer-contact-list span { color: #475569; }

.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-links a {
  color: #475569; text-decoration: none; font-size: .85rem; font-weight: 500;
  transition: color .15s, padding-left .15s; display: inline-block;
}
.footer-links a:hover { color: var(--green-600); padding-left: 4px; font-weight: 600; }

/* Disclaimer Card (Miễn trừ trách nhiệm) */
.disclaimer-card {
  background: #fff; border: 1px solid #d1fae5; border-radius: 10px;
  padding: 16px 18px; box-shadow: 0 2px 8px rgb(0 0 0 / 3%);
}
.disclaimer-card p {
  font-size: .81rem; color: #475569; line-height: 1.6; margin: 0;
}
.disclaimer-card strong { color: #064e3b; font-weight: 700; }

/* Bottom Bar */
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  gap: 16px; padding-top: 22px; border-top: 1px solid #cbd5e1;
  font-size: .8rem; color: #64748b;
}
.back-to-top {
  color: var(--green-600); font-weight: 700; text-decoration: none; transition: color .15s;
}
.back-to-top:hover { color: #047857; text-decoration: underline; }

@media (max-width: 992px) {
  .footer-commit-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* =========================================================
   MOBILE FOOTER (Chỉ áp dụng <= 640px theo Nhà Thuốc Thân Thiện)
   ========================================================= */
@media (max-width: 640px) {
  .footer-desktop-wrapper { display: none !important; }
  .footer-mobile-wrapper { display: block !important; }
  .site-footer {
    padding: 22px 0 16px !important;
    background: #f4f8f5 !important;
    border-top: 3px solid #007d48 !important;
  }
  .nexa-mf-section { margin-bottom: 16px; }
  .nexa-mf-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
  }
  .nexa-mf-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
  }
  .nexa-mf-links a {
    color: #475569;
    text-decoration: none;
    font-size: 0.92rem;
    line-height: 1.5;
  }
  .nexa-mf-highlight a {
    color: #007d48 !important;
    font-weight: 700 !important;
  }
  .nexa-mf-disclaimer {
    font-size: 0.84rem;
    line-height: 1.6;
    color: #4b5563;
    margin: 0;
  }
  .nexa-mf-link-green {
    color: #007d48 !important;
    font-weight: 700 !important;
    text-decoration: none;
  }
  .nexa-mf-toggle {
    cursor: pointer;
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #1e293b;
    user-select: none;
    padding: 4px 0 2px;
  }
  .nexa-mf-toggle::-webkit-details-marker { display: none; }
  .nexa-mf-toggle .toggle-close { display: none; }
  .nexa-mf-details[open] .nexa-mf-toggle .toggle-open { display: none; }
  .nexa-mf-details[open] .nexa-mf-toggle .toggle-close { display: inline; }
  .nexa-mf-details .toggle-arrow { transition: transform 0.2s ease; }
  .nexa-mf-details[open] .toggle-arrow { transform: rotate(180deg); }
  .nexa-mf-expanded {
    margin-top: 8px;
    font-size: 0.8rem;
    line-height: 1.6;
    color: #64748b;
    background: #ffffff;
    border: 1px solid #d1fae5;
    border-radius: 8px;
    padding: 10px 12px;
  }
  .nexa-mf-divider {
    border: 0;
    border-top: 1px solid #e2e8f0;
    margin: 16px 0 12px;
    width: 100%;
  }
  .nexa-mf-legal {
    text-align: left;
    font-size: 0.76rem;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 12px;
  }
  .nexa-mf-legal a {
    color: #007d48;
    text-decoration: none;
    font-weight: 700;
  }
  .nexa-mf-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 6px;
  }
  .nexa-mf-social-btn {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    color: #007d48;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }
  .nexa-mf-zalo .zalo-text {
    font-size: 0.72rem;
    font-weight: 900;
    color: #007d48;
  }
}

/* =========================================================
   FLOATING CONTACT WIDGETS (HOTLINE, MESSENGER, ZALO)
   ========================================================= */
.nexa-floating-contact-left {
  position: fixed;
  left: 16px;
  bottom: 24px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nexa-float-btn {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #007d48;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, border-radius 0.2s ease;
  flex-shrink: 0;
}

.nexa-float-btn svg {
  display: block;
  flex-shrink: 0;
}

.nexa-float-label {
  position: absolute;
  left: 44px;
  top: 0;
  height: 44px;
  line-height: 44px;
  background: #007d48;
  color: #ffffff;
  padding: 0 14px 0 4px;
  border-radius: 0 8px 8px 0;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  display: none;
  box-shadow: 4px 4px 14px rgba(0, 0, 0, 0.2);
}

@media (hover: hover) and (min-width: 769px) {
  .nexa-float-btn:hover {
    border-radius: 8px 0 0 8px;
    transform: scale(1.05);
    background: #00913f;
    box-shadow: 0 6px 18px rgba(0, 125, 72, 0.35);
  }
  .nexa-float-btn:hover .nexa-float-label {
    display: block;
  }
}

.nexa-floating-contact-right {
  position: fixed;
  right: 18px;
  bottom: 24px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.nexa-float-zalo-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.nexa-zalo-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 104, 255, 0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nexa-float-zalo-link:hover .nexa-zalo-icon-box {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 104, 255, 0.45);
}

.nexa-zalo-icon-box svg {
  display: block;
  width: 100%;
  height: 100%;
}

.nexa-zalo-time-badge {
  display: inline-block;
  color: #0068ff;
  font-size: 11px;
  font-weight: 700;
  background: #ffffff;
  border-radius: 12px;
  padding: 2px 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  border: 1px solid #bfdbfe;
  white-space: nowrap;
  line-height: 1.35;
  margin-top: 4px;
}

@media (max-width: 640px) {
  .nexa-floating-contact-left {
    left: 12px;
    bottom: 18px;
    gap: 8px;
  }
  .nexa-float-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }
  .nexa-float-btn svg {
    width: 22px;
    height: 22px;
  }
  .nexa-floating-contact-right {
    right: 12px;
    bottom: 18px;
  }
  .nexa-zalo-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 9px;
  }
  .nexa-zalo-time-badge {
    font-size: 10px;
    padding: 1.5px 6px;
  }
}
.nexa-mobile-contact, .nexa-mobile-contact-space { display: none; }
@media (max-width: 640px) {
  .nexa-mobile-contact { position: fixed; inset: auto 0 0; z-index: 100; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 6px 8px calc(6px + env(safe-area-inset-bottom, 0px)); background: #007d48; color: #fff; border-top: 1px solid #ffffff26; box-shadow: 0 -4px 18px #021e181a; }
  .nexa-mobile-contact a, .nexa-mobile-contact button { display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 4px; min-height: 48px; min-width: 0; padding: 4px 6px; border: 0; border-radius: 5px; background: transparent; color: #fff; text-decoration: none; font: inherit; font-size: .8rem; font-weight: 600; line-height: 1.3; cursor: pointer; }
  .nexa-mobile-contact a { grid-column: 1; }
  .nexa-mobile-contact button { grid-column: 2; }
  .nexa-mobile-contact > * + * { border-left: 1px solid #ffffff2b; border-radius: 0; }
  .nexa-mobile-contact svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
  .nexa-mobile-contact a:focus-visible, .nexa-mobile-contact button:focus-visible { outline: 2px solid #fff; outline-offset: -2px; background: #ffffff18; }
  .nexa-mobile-contact-space { display: block; height: calc(61px + env(safe-area-inset-bottom, 0px)); }
  body:has(.nexa-mobile-contact) .nexa-floating-contact-left,
  body:has(.nexa-mobile-contact) .nexa-floating-contact-right { display: none !important; }
  body.menu-open .nexa-mobile-contact,
  body:has(#price-modal.active) .nexa-mobile-contact { visibility: hidden; pointer-events: none; }
}
.lead-form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.btn-submit-lead:disabled {
  cursor: wait;
  opacity: .68;
}
/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */
@media (max-width: 1024px) {
  .product-layout { grid-template-columns: 220px 1fr; gap: 24px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; padding-top: 140px; }
  .hero-copy { max-width: 680px; }
  .hero-visual { min-height: 420px; }
  .logo-stage { width: min(70%, 400px); }
  .split-heading, .section-head, .values-grid, .contact-shell { grid-template-columns: 1fr; gap: 36px; }
  .intro-copy { padding-top: 0; }
}

@media (max-width: 768px) {
  :root { --header-height: 66px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .menu-toggle { display: block; position: relative; z-index: 22; }
  .menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav {
    position: fixed; inset: 0; z-index: 21;
    display: flex; flex-direction: column;
    align-items: flex-start; justify-content: center;
    gap: 16px; padding: 88px 28px 36px;
    visibility: hidden; opacity: 0;
    background: var(--navy-950);
    transition: opacity .2s, visibility .2s;
  }
  .main-nav.open { visibility: visible; opacity: 1; }
  .main-nav a {
    width: 100%; padding: 12px 0; font-size: 1.25rem; color: #fff !important;
    border-bottom: 1px solid rgb(255 255 255 / 10%); opacity: .85;
  }
  .main-nav a:hover { opacity: 1; }
  .main-nav .nav-cta {
    margin-top: 10px; padding: 13px 18px; text-align: center;
    border: 1.5px solid var(--green-400); color: var(--green-400) !important;
    border-radius: 6px;
  }
  .header-search-wrap { max-width: 220px; margin: 0 10px; }
  .hero-slider-container { min-height: clamp(540px, 78vh, 640px); }
  .hero-slider-btn { display: none; }
  .hero-banner-inner { margin-left: 16px; margin-right: 16px; max-width: calc(100% - 32px); }
  .hero-cargo-banner { padding: 110px 0 60px; min-height: 520px; }
  .hero-stats-row { grid-template-columns: 1fr; }

  .quick-cats-grid { grid-template-columns: repeat(2, 1fr); }
  .product-layout { grid-template-columns: 1fr; }
  .product-sidebar { position: static; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .section { padding: 74px 0; }
  .section-sm { padding: 42px 0; }
  .split-heading h2, .section-head h2, .values-copy h2, .contact-heading h2 { font-size: clamp(1.9rem, 9vw, 3rem); }
  .principles { grid-template-columns: 1fr; margin-top: 48px; }
  .principles article { padding: 22px 0; }
  .principles article + article { padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
  .principles h3 { margin-top: 12px; }
  .service-item { grid-template-columns: 30px 1fr 20px; gap: 14px; min-height: 130px; }
  .service-icon { display: none; }
  .service-number { padding-top: 28px; }
  .service-item h3 { font-size: 1.15rem; }
  .contact { padding: 74px 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; }
  .footer-main nav { justify-content: start; }
  .footer-bottom { gap: 16px; flex-direction: column; }
}

@media (max-width: 640px) {
  .header-search-wrap { display: none; }
  .hero-search-form { flex-direction: column; padding: 10px; gap: 8px; }
  .hero-search-form input { width: 100%; text-align: center; }
  .btn-hero-search { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
}

/* Mobile polish shared by the public homepage and product pages. */
@media (max-width: 640px) {
  html, body { max-width: 100%; overflow-x: clip; }
  :root { --header-height: 64px; }
  .container { width: min(calc(100% - 24px), var(--container)); }

  .site-header { height: var(--header-height); }
  .nav-wrap { gap: 10px; }
  .brand { min-width: 0; gap: 8px; }
  .brand img { width: 36px; height: 36px; }
  .brand strong { font-size: 1.02rem; }
  .brand small { font-size: .52rem; letter-spacing: .12em; }
  .menu-toggle { width: 44px; height: 44px; flex: 0 0 44px; }
  .main-nav { padding-inline: 22px; }

  .hero-slider-container { min-height: 530px; }
  .hero-slide { background-position: 58% center; }
  .slide-brand { background-position: 54% center; }
  .hero-bright-overlay { background: linear-gradient(90deg, rgba(2,13,28,.86), rgba(2,13,28,.5) 72%, rgba(2,13,28,.24)); }
  .hero-slide-light-overlay { background: linear-gradient(90deg, rgba(255,255,255,.95), rgba(255,255,255,.78) 70%, rgba(255,255,255,.35)); }
  .hero-banner-inner { margin-inline: 12px; max-width: calc(100% - 24px); }
  .vessel-banner-title, .food-banner-title, .hero-slide h1 {
    gap: 2px;
    margin-bottom: 10px;
    font-size: clamp(1.18rem, 5.2vw, 1.38rem);
    line-height: 1.16;
  }
  .vessel-banner-title .title-cyan { letter-spacing: -.035em; }
  .hero-lead-clean, .hero-lead-clean-dark {
    max-width: 36ch;
    margin-bottom: 13px;
    font-size: .78rem;
    line-height: 1.48;
  }
  .hero-actions-bright { display: grid; grid-template-columns: 1fr 1fr; width: 100%; gap: 8px; }
  .btn-hero-bright-primary, .btn-hero-bright-ghost {
    min-height: 42px;
    padding: 8px;
    justify-content: center;
    text-align: center;
    font-size: .7rem;
    line-height: 1.25;
  }
  .hero-slider-dots { bottom: 18px; }

  .quick-cats-head { align-items: flex-start; gap: 8px 16px; flex-wrap: wrap; margin-bottom: 20px; }
  .quick-cats-head h2 { font-size: 1.25rem; }
  .view-all { white-space: normal; }
  .quick-cats-grid { gap: 10px; }
  .cat-card { min-height: 116px; padding: 18px 8px; }
  .cat-icon { font-size: 1.7rem; }
  .cat-card span { font-size: .78rem; }

  .section { padding: 58px 0; }
  .section-sm { padding: 36px 0; }
  .products-header { margin-bottom: 26px; }
  .products-header h2 { font-size: 1.9rem; }
  .products-desc { font-size: .92rem; }
  .product-sidebar { display: grid; gap: 10px; }
  .product-layout, .product-layout > *, .product-sidebar, .product-main { min-width: 0; width: 100%; }
  .product-sidebar { overflow: hidden; }
  .product-sidebar .sidebar-box { margin: 0; padding: 14px; }
  .product-sidebar .sidebar-contact { display: none; }
  .sidebar-title { margin-bottom: 10px; }
  .sidebar-cats { display: flex; flex-direction: row; gap: 8px; overflow-x: auto; padding-bottom: 4px; scroll-snap-type: x proximity; }
  .sidebar-cats a { flex: 0 0 auto; gap: 10px; padding: 9px 11px; white-space: nowrap; background: #fff; border: 1px solid var(--line); scroll-snap-align: start; }
  .product-toolbar { margin-top: 4px; }

  .split-heading, .section-head, .values-grid, .contact-shell { gap: 24px; }
  .split-heading h2, .section-head h2, .values-copy h2, .contact-heading h2 { font-size: clamp(1.75rem, 8.5vw, 2.25rem); line-height: 1.2; }
  .intro-copy, .values-copy, .contact-heading { font-size: .95rem; }
  .principles { margin-top: 34px; }
  .service-item { min-height: 112px; padding-block: 18px; }

  .nexa-floating-contact-left { left: 10px !important; bottom: max(12px, env(safe-area-inset-bottom)) !important; gap: 7px !important; }
  .nexa-floating-contact-right { right: 10px !important; bottom: max(12px, env(safe-area-inset-bottom)) !important; }
  .nexa-float-btn, .nexa-zalo-icon-box { width: 40px !important; height: 40px !important; }
  .nexa-floating-contact-left .nexa-btn-messenger { display: none !important; }
  .nexa-zalo-time-badge { display: none !important; }
  body.menu-open .nexa-floating-contact-left,
  body.menu-open .nexa-floating-contact-right { display: none !important; }
}

@media (max-width: 360px) {
  .hero-slider-container { min-height: 520px; }
  .vessel-banner-title, .food-banner-title, .hero-slide h1 { font-size: 1.12rem; }
  .btn-hero-bright-primary, .btn-hero-bright-ghost { font-size: .66rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
/* =========================================================
   PRODUCT DETAIL PAGE STYLES (Tham khảo nhathuocthanthien)
   ========================================================= */
.product-detail-page {
  padding-top: calc(var(--header-height) + 16px);
  padding-bottom: 70px;
  background: var(--paper);
}

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  padding: 12px 0; margin-bottom: 20px;
  font-size: .83rem; color: var(--muted);
  border-bottom: 1px solid var(--line);
}
.breadcrumb a { color: var(--ink-2); transition: color .15s; }
.breadcrumb a:hover { color: var(--green-600); }
.breadcrumb .sep { color: var(--line); font-size: .75rem; }
.breadcrumb .current { color: var(--muted); font-weight: 500; }

/* Main Detail Grid */
.detail-main-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px;
  box-shadow: var(--shadow-sm); margin-bottom: 32px;
}
.detail-top-grid {
  display: grid; grid-template-columns: 420px 1fr;
  gap: 40px; align-items: start;
}

/* Gallery Column */
.detail-gallery { position: relative; }
.detail-main-image {
  position: relative; aspect-ratio: 1;
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; background: #fff; margin-bottom: 16px;
}
.detail-main-image img {
  width: 100%; height: 100%; object-fit: contain;
}
.detail-badge-top {
  position: absolute; top: 14px; left: 14px;
  padding: 5px 14px; border-radius: 99px;
  font-size: .75rem; font-weight: 700; color: #fff;
  background: var(--green-500); box-shadow: var(--shadow-sm);
}

.detail-trust-list {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  padding: 14px; border-radius: 8px;
  background: var(--green-50); border: 1px solid rgb(0 185 95 / 15%);
  text-align: center;
}
.detail-trust-item {
  font-size: .75rem; font-weight: 600; color: var(--green-600);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.detail-trust-item span.icon { font-size: 1.1rem; }

/* Info Column */
.detail-info-header { margin-bottom: 16px; }
.detail-cat-badge {
  display: inline-block; font-size: .75rem; font-weight: 700;
  color: var(--green-600); text-transform: uppercase; letter-spacing: .08em;
  background: var(--green-50); padding: 4px 10px; border-radius: 4px;
  margin-bottom: 8px;
}
.detail-title {
  font-size: 1.8rem; font-weight: 800; line-height: 1.3; color: var(--ink);
  margin-bottom: 10px;
}
/* Price Box */
.detail-price-card {
  padding: 18px 20px; border-radius: 10px;
  background: var(--paper); border: 1.5px solid var(--line);
  margin-bottom: 20px; cursor: pointer; transition: border-color .15s, box-shadow .15s;
}
.detail-price-card:hover {
  border-color: var(--green-500); box-shadow: var(--shadow-sm);
}
.detail-price-label {
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  color: var(--muted); letter-spacing: .06em; margin-bottom: 4px; display: block;
}
.btn-open-price-modal {
  background: none; border: none; padding: 0; font-family: inherit;
  font-size: 1.75rem; font-weight: 800; color: #dc2626; display: inline-flex;
  align-items: center; gap: 6px; cursor: pointer; text-align: left;
  transition: color .15s, transform .15s;
}
.btn-open-price-modal:hover { color: var(--green-600); transform: translateX(3px); }
.detail-price-sub {
  font-size: .8rem; color: var(--muted); font-style: italic; margin-top: 4px; display: block;
}

/* Alert Note Box */
.detail-alert-box {
  padding: 14px 16px; border-radius: 8px;
  background: #f0fdf4; border-left: 4px solid var(--green-500);
  font-size: .85rem; color: #166534; margin-bottom: 22px;
  line-height: 1.5;
}
.detail-alert-box strong { font-weight: 700; }

/* Specs Table */
.detail-specs-table {
  width: 100%; border-collapse: collapse; margin-bottom: 24px;
  font-size: .88rem;
}
.detail-specs-table tr { border-bottom: 1px solid var(--line); }
.detail-specs-table tr:last-child { border-bottom: none; }
.detail-specs-table th {
  text-align: left; padding: 10px 16px 10px 0; width: 140px;
  color: var(--muted); font-weight: 600;
}
.detail-specs-table td {
  padding: 10px 0; color: var(--ink); font-weight: 600;
}

/* Detail CTAs (Phong cách MUA NGAY & Nhập SĐT của Nhà thuốc Thân thiện) */
.detail-cta-block {
  display: grid; gap: 12px; margin-top: 10px; margin-bottom: 24px;
}

/* Nút MUA NGAY / BÁO GIÁ SỈ màu xanh thương hiệu NEXA nổi bật */
.btn-buy-now-brand, .btn-buy-now-orange {
  width: 100%; border: none; outline: none; cursor: pointer;
  background: linear-gradient(135deg, #00b95f, #047857);
  color: #fff; border-radius: 8px; padding: 14px 20px;
  text-align: center; box-shadow: 0 4px 14px rgb(0 185 95 / 35%);
  transition: transform .15s, box-shadow .15s, filter .15s;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: inherit;
}
.btn-buy-now-brand:hover, .btn-buy-now-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgb(0 185 95 / 45%);
  filter: brightness(1.06);
}
.btn-buy-now-brand strong, .btn-buy-now-orange strong {
  font-size: 1.25rem; font-weight: 900; text-transform: uppercase;
  letter-spacing: .05em; line-height: 1.25; color: #fff;
}
.btn-buy-now-brand small, .btn-buy-now-orange small {
  font-size: .82rem; font-weight: 500; opacity: .95; margin-top: 3px; color: #fff;
}

/* Thanh nhập SĐT gọi lại ngay (Viền xanh lá tươi) */
.quick-phone-form {
  display: flex; align-items: center; gap: 6px;
  padding: 4px; border: 2px solid var(--green-600);
  border-radius: 8px; background: #fff; box-shadow: 0 2px 8px rgb(0 185 95 / 12%);
}
.quick-phone-form input[type="tel"] {
  flex: 1; border: none; outline: none; padding: 10px 14px;
  font-size: .88rem; color: var(--ink); background: transparent;
  font-family: inherit; font-weight: 500;
}
.quick-phone-form input[type="tel"]::placeholder {
  color: #64748b; font-size: .85rem;
}
.btn-quick-send {
  border: 2px solid var(--green-600); background: #fff;
  color: var(--green-600); font-weight: 800; font-size: .9rem;
  padding: 8px 22px; border-radius: 6px; cursor: pointer;
  transition: background .15s, color .15s, transform .15s;
  display: inline-flex; align-items: center; gap: 6px; flex-shrink: 0;
  font-family: inherit;
}
.btn-quick-send:hover {
  background: var(--green-600); color: #fff; transform: translateY(-1px);
}

/* Price Modal Popup */
.price-modal-backdrop {
  position: fixed; inset: 0; z-index: 120;
  display: flex; align-items: center; justify-content: center;
  padding: 20px; background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.price-modal-backdrop.active {
  opacity: 1; visibility: visible;
}
.price-modal-card {
  position: relative; width: 100%; max-width: 500px;
  background: #fff; border-radius: 16px; padding: 28px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(20px) scale(0.96);
  transition: transform .25s cubic-bezier(0.16, 1, 0.3, 1);
}
.price-modal-backdrop.active .price-modal-card {
  transform: translateY(0) scale(1);
}
.price-modal-close {
  position: absolute; top: 16px; right: 16px; width: 34px; height: 34px;
  border-radius: 50%; border: 1px solid var(--line); background: var(--paper);
  font-size: 1.1rem; color: var(--muted); cursor: pointer;
  display: grid; place-items: center; transition: background .15s, color .15s;
}
.price-modal-close:hover { background: #fee2e2; color: #dc2626; border-color: #fca5a5; }

.price-modal-header { margin-bottom: 20px; text-align: center; }
.price-modal-badge {
  display: inline-block; font-size: .7rem; font-weight: 800;
  color: var(--green-600); text-transform: uppercase; letter-spacing: .08em;
  background: var(--green-50); padding: 4px 10px; border-radius: 4px;
  margin-bottom: 6px;
}
.price-modal-title { font-size: 1.35rem; font-weight: 800; color: var(--ink); margin-bottom: 4px; }
.price-modal-sub { font-size: .83rem; color: var(--muted); }

.price-modal-zalo-option { margin-bottom: 18px; }
.btn-modal-zalo {
  display: flex; align-items: center; gap: 14px; padding: 14px 18px;
  background: #0284c7; color: #fff; border-radius: 10px;
  transition: background .15s, transform .15s; text-decoration: none;
}
.btn-modal-zalo:hover { background: #0369a1; transform: translateY(-1px); }
.btn-modal-zalo .zalo-icon { font-size: 1.6rem; }
.btn-modal-zalo div { display: flex; flex-direction: column; flex: 1; text-align: left; }
.btn-modal-zalo strong { font-size: 1rem; font-weight: 700; }
.btn-modal-zalo small { font-size: .78rem; opacity: .9; font-weight: 400; }
.btn-modal-zalo .arrow { font-size: 1.2rem; font-weight: 800; }

.price-modal-divider {
  display: flex; align-items: center; text-align: center; margin: 20px 0;
}
.price-modal-divider::before, .price-modal-divider::after {
  content: ''; flex: 1; border-bottom: 1px solid var(--line);
}
.price-modal-divider span {
  padding: 0 12px; font-size: .72rem; font-weight: 700; color: var(--muted);
  letter-spacing: .06em; text-transform: uppercase;
}

/* Lead Form in Modal */
.price-modal-form .lead-form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px;
}
.price-modal-form input {
  width: 100%; padding: 11px 14px; border: 1px solid var(--line);
  border-radius: 8px; font-size: .875rem; font-family: inherit;
  background: #fff; color: var(--ink);
}
.price-modal-form input:focus {
  outline: none; border-color: var(--green-500); box-shadow: 0 0 0 3px rgb(0 185 95 / 15%);
}
.price-modal-form .lead-form-full { margin-bottom: 14px; }
.btn-submit-lead {
  width: 100%; min-height: 48px; border: none; border-radius: 8px;
  background: var(--green-500); color: #fff; font-weight: 700; font-size: .95rem;
  transition: background .15s; cursor: pointer;
}
.btn-submit-lead:hover { background: var(--green-600); }
.lead-form-note {
  font-size: .75rem; color: var(--muted); text-align: center; margin-top: 10px; display: block;
}

/* Single Information Content Box */
.detail-content-box {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 36px;
  box-shadow: var(--shadow-sm); margin-bottom: 40px;
}

.detail-content-box h2.section-title {
  font-size: 1.4rem; font-weight: 800; color: var(--ink);
  padding-bottom: 14px; margin-bottom: 24px;
  border-bottom: 2px solid var(--green-500);
}
.detail-content-body {
  font-size: .98rem; line-height: 1.8; color: var(--ink-2);
}
.detail-content-body h3 { font-size: 1.25rem; font-weight: 700; color: var(--ink); margin: 24px 0 12px; }
.detail-content-body h3:first-child { margin-top: 0; }
.detail-content-body p { margin-bottom: 16px; }
.detail-content-body ul { list-style: disc; padding-left: 24px; margin-bottom: 18px; }
.detail-content-body li { margin-bottom: 8px; }

/* Sticky Contact Button Widget */
.floating-zalo-widget {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  display: flex; flex-direction: column; gap: 10px;
}
.zalo-float-btn {
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  font-weight: 800; font-size: .8rem; text-transform: uppercase;
  box-shadow: var(--shadow-lg); transition: transform .2s;
}
.zalo-float-btn:hover { transform: scale(1.08); }
.zalo-bg-blue { background: #0084ff; }
.zalo-bg-green { background: var(--green-500); }

/* Related Products Section */
.related-products-section { margin-top: 50px; }
.related-products-section h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 24px; }

@media (max-width: 992px) {
  .detail-top-grid { grid-template-columns: 1fr; gap: 24px; }
  .detail-main-card, .detail-content-box { padding: 20px; }
  .detail-title { font-size: 1.4rem; }
  .detail-cta-group, .lead-form-grid { grid-template-columns: 1fr; }
  .detail-trust-list { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .product-detail-page {
    padding-top: var(--header-height);
    padding-bottom: 54px;
    background: #f8fafc;
  }
  .product-detail-page > .container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }
  .product-detail-page .breadcrumb {
    margin: 0;
    padding: 10px 16px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    flex-wrap: nowrap;
    gap: 7px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
  }
  .product-detail-page .breadcrumb::-webkit-scrollbar { display: none; }
  .detail-main-card {
    margin: 0 0 16px 0;
    padding: 0 0 24px 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: #fff;
  }
  .detail-top-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .detail-gallery {
    width: 100%;
  }
  .detail-main-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    border: none;
    border-radius: 0;
    margin: 0 0 12px 0;
    background: #fff;
  }
  .detail-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .detail-badge-top {
    top: 14px;
    left: 14px;
    padding: 5px 12px;
    font-size: 0.72rem;
  }
  .product-detail-page .nexa-product-gallery {
    margin: 4px 16px 14px;
  }
  .product-detail-page .nexa-product-gallery-thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }
  .product-detail-page .nexa-product-gallery-thumbs button {
    min-width: 0;
    aspect-ratio: 1 / 1;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
  }
  .product-detail-page .nexa-product-gallery-thumbs button[aria-pressed="true"] {
    border-color: #00b95f;
    background: #edfff5;
  }
  .detail-trust-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin: 0 16px 18px;
    padding: 10px 8px;
    border-radius: 8px;
  }
  .detail-trust-item {
    font-size: 0.68rem;
    line-height: 1.35;
  }
  .detail-trust-item span.icon { font-size: 0.95rem; }
  .detail-summary {
    padding: 0 16px;
  }
  .detail-cat-badge { font-size: 0.68rem; }
  .detail-title {
    font-size: 1.45rem;
    line-height: 1.25;
    margin-bottom: 12px;
  }
  .detail-cta-block { margin-bottom: 18px; }
  .btn-buy-now-brand, .btn-buy-now-orange { min-height: 68px; padding: 12px 10px; }
  .btn-buy-now-brand strong, .btn-buy-now-orange strong { font-size: 1.02rem; }
  .btn-buy-now-brand small, .btn-buy-now-orange small { font-size: 0.72rem; line-height: 1.45; }
  .quick-phone-form { display: grid; grid-template-columns: 1fr; gap: 6px; padding: 6px; }
  .quick-phone-form input[type="tel"] { width: 100%; padding: 10px; text-align: center; }
  .btn-quick-send { width: 100%; min-height: 42px; justify-content: center; }
  .detail-alert-box { padding: 12px; font-size: 0.78rem; }
  .detail-specs-table { table-layout: fixed; font-size: 0.79rem; }
  .detail-specs-table th { width: 34%; padding-right: 10px; }
  .detail-specs-table td { overflow-wrap: anywhere; }
  .detail-content-box {
    margin: 0 16px 20px;
    border-radius: 12px;
    padding: 20px 16px;
  }
  .detail-content-box h2.section-title { font-size: 1.2rem; margin-bottom: 18px; }
  .detail-content-body { font-size: 0.94rem; line-height: 1.75; }
  .detail-content-body h3 { font-size: 1.1rem; }
  .product-detail-page .nexa-topic-links {
    margin: 18px 16px;
    padding: 16px 14px;
  }
  .related-products-section {
    padding: 0 16px 36px;
  }
  .related-products-section h2 { font-size: 1.3rem; }
  .product-modal-backdrop { padding: 10px; }
  .product-modal-card { max-height: calc(100dvh - 20px); padding: 18px 14px; border-radius: 12px; }
  .modal-close { top: 10px; right: 10px; }
}


.product-modal-backdrop {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  background: rgb(3 17 36 / 75%);
  backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.product-modal-backdrop.open {
  opacity: 1; visibility: visible;
}

.product-modal-card {
  position: relative;
  width: min(100%, 940px);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 24px 60px rgb(0 0 0 / 25%);
  transform: translateY(20px) scale(0.98);
  transition: transform .25s ease;
}
.product-modal-backdrop.open .product-modal-card {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute; top: 18px; right: 18px; z-index: 10;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 50%;
  background: var(--paper); color: var(--ink-2);
  font-size: 1rem; font-weight: 700;
  transition: background .15s, color .15s;
}
.modal-close:hover {
  background: #fee2e2; color: #dc2626; border-color: #fca5a5;
}

.modal-body-grid {
  display: grid; grid-template-columns: 340px 1fr;
  gap: 32px; margin-bottom: 28px;
}

/* Modal Left: Image & Trust badges */
.modal-main-img-wrap {
  position: relative; aspect-ratio: 1;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); background: var(--paper);
  margin-bottom: 14px;
}
.modal-main-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
}
.modal-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 12px; border-radius: 99px;
  font-size: .72rem; font-weight: 700;
  background: var(--green-500); color: #fff;
}

.modal-trust-items {
  display: flex; flex-direction: column; gap: 8px;
  padding: 12px 14px; border-radius: 8px;
  background: var(--green-50); border: 1px solid rgb(0 185 95 / 15%);
}
.trust-item {
  font-size: .78rem; font-weight: 600; color: var(--green-600);
  display: flex; align-items: center; gap: 8px;
}
.trust-icon { font-weight: 800; }

/* Modal Right: Details & Specs */
.modal-header-meta {
  display: flex; align-items: center; gap: 10px; margin-bottom: 8px;
}
.modal-code {
  font-size: .75rem; font-weight: 800; letter-spacing: .1em;
  color: var(--green-600); text-transform: uppercase;
  background: var(--green-50); padding: 3px 8px; border-radius: 4px;
}
.modal-cat-tag {
  font-size: .75rem; font-weight: 600; color: var(--muted);
}
.modal-product-title {
  font-size: 1.6rem; font-weight: 800; line-height: 1.25;
  margin-bottom: 16px; color: var(--ink);
}

.modal-price-box {
  padding: 14px 16px; border-radius: 8px;
  background: var(--paper); border: 1px solid var(--line);
  margin-bottom: 20px;
}
.price-label {
  display: block; font-size: .75rem; font-weight: 600; color: var(--muted);
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px;
}
.price-value {
  font-size: 1.4rem; font-weight: 800; color: var(--green-600); display: block;
}
.price-unit-note {
  font-size: .75rem; color: var(--muted); font-style: italic; margin-top: 4px; display: block;
}

/* Specs Table */
.modal-specs-table-wrap h3 {
  font-size: .85rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--muted); margin-bottom: 10px;
}
.modal-specs-table {
  width: 100%; border-collapse: collapse; margin-bottom: 20px;
  font-size: .85rem;
}
.modal-specs-table tr { border-bottom: 1px solid var(--line); }
.modal-specs-table tr:last-child { border-bottom: none; }
.modal-specs-table th {
  text-align: left; padding: 8px 12px 8px 0;
  width: 140px; color: var(--muted); font-weight: 600;
}
.modal-specs-table td {
  padding: 8px 0; color: var(--ink-2); font-weight: 600;
}

.modal-actions { display: flex; flex-direction: column; gap: 10px; }
.modal-btn-call { width: 100%; text-align: center; }
.modal-btn-contact { width: 100%; text-align: center; justify-content: center; }

/* Modal Tabs */
.modal-tabs-wrap {
  border-top: 1px solid var(--line); padding-top: 20px;
}
.modal-tab-nav {
  display: flex; gap: 8px; border-bottom: 2px solid var(--line);
  margin-bottom: 18px; overflow-x: auto;
}
.tab-btn {
  padding: 10px 16px; border: none; background: transparent;
  font-size: .875rem; font-weight: 600; color: var(--muted);
  border-bottom: 2px solid transparent; margin-bottom: -2px;
  white-space: nowrap; transition: color .15s, border-color .15s;
}
.tab-btn:hover { color: var(--ink); }
.tab-btn.active {
  color: var(--green-600); border-bottom-color: var(--green-500);
}

.modal-tab-content { font-size: .9rem; color: var(--ink-2); line-height: 1.6; }
.tab-pane { display: none; }
.tab-pane.active { display: block; }
.tab-pane ul { list-style: disc; padding-left: 20px; margin: 0; }
.tab-pane li { margin-bottom: 8px; }

@media (max-width: 768px) {
  .product-modal-card { padding: 20px; }
  .modal-body-grid { grid-template-columns: 1fr; gap: 20px; }
  .modal-product-title { font-size: 1.3rem; }
  .modal-tab-nav { gap: 4px; }
  .tab-btn { padding: 8px 12px; font-size: .8rem; }
}
.product-detail-page .nexa-topic-links {
  margin: 28px 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--green-50);
  overflow-wrap: anywhere;
}
.product-detail-page .nexa-topic-links h2 { margin: 0 0 12px; font-size: 1.25rem; }
.product-detail-page .nexa-topic-links p { margin: 12px 0; line-height: 1.7; }
.product-detail-page .nexa-topic-links a { color: var(--green-600); text-decoration: underline; text-underline-offset: 3px; }
.product-detail-page .nexa-topic-links nav { display: flex; flex-wrap: wrap; gap: 12px 20px; }
.product-detail-page .nexa-topic-links nav a { padding: 8px 0; }
