:root {
  --brand-blue: #0e1e3c;
  --brand-yellow: #f5bd10;
  --brand-white: #ffffff;
  --text-main: #1f2937;
  --text-muted: #6b7280;
  --border-color: #e5e7eb;
  --bg-light: #f8fafc;
}

@font-face {
  font-family: "InterLocal";
  src: url("../font/Inter-VariableFont_opsz,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "InterLocal";
  src: url("../font/Inter-Italic-VariableFont_opsz,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family:
    "InterLocal",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    sans-serif !important;
  background: var(--brand-white);
  color: var(--text-main);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

picture {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

/* Header desktop */
.site-header,
#header {
  background: var(--brand-white);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  z-index: 1000;
  margin: 0;
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-logo img {
  max-height: 58px;
  width: auto;
  display: block;
}

.site-logo-text {
  font-size: 28px;
  font-weight: 800;
  color: var(--brand-blue);
}

.header-nav {
  margin-left: auto;
}

.header-nav > ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.header-nav li {
  position: relative;
  margin: 0;
  padding: 0;
}

.header-nav > ul > li > a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-blue);
  font-size: 15px;
  font-weight: 600;
  transition: 0.2s ease;
  padding: 30px 0;
  line-height: 1.2;
}

.header-nav > ul > li > a:hover,
.header-nav > ul > li > a.active {
  color: var(--brand-yellow);
}

.nav-arrow {
  font-size: 12px;
  line-height: 1;
}

.sub-menu {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  margin: 0;
  padding: 10px 0;
  background: var(--brand-white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  display: none;
  z-index: 1200;
}

.sub-menu li {
  width: 100%;
}

.sub-menu li a {
  display: block;
  padding: 10px 16px;
  color: var(--brand-blue);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  line-height: 1.4;
  transition: 0.2s ease;
}

.sub-menu li a:hover {
  background: #fff7e3;
  color: var(--brand-yellow);
}

.menu-item-has-children:hover > .sub-menu {
  display: block;
}

.menu-item-has-children:hover > a {
  color: var(--brand-yellow);
}

/* Main */
.main-content {
  min-height: 400px;
  margin: 0;
  padding: 0;
}

/* Home */
.home-page {
  margin: 0;
  padding: 40px 0;
}

.home-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 22px;
}

.home-section-kicker {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: #fef3c7;
  color: #b45309;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 6px;
}

.home-section-title {
  margin: 0;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 800;
  color: #0e1e3c;
}

.home-section-view-all {
  font-size: 14px;
  font-weight: 600;
  color: #0e1e3c;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
}

.home-section-view-all:hover {
  background: #0e1e3c;
  color: #ffffff;
}

/* Inner pages spacing (keep content off header) */
.contact-inquiry-section,
.static-page,
.product-page,
.product-detail-page,
.sample-page,
.supplier-register-page,
.quote-page,
.page-404 {
  margin: 0;
  padding: 40px 0;
}

/* Static pages (Manufacturing/Private Label/Manufacturers/Case Study) */
.static-page .page-heading {
  text-align: center;
}

.static-page .page-title {
  margin-left: auto;
  margin-right: auto;
  max-width: 920px;
  font-size: 36px;
  color: var(--brand-blue);
  font-weight: bold;
}

.static-page .static-description {
  margin-left: auto;
  margin-right: auto;
  max-width: 820px;
}

.static-page .static-cover {
  max-width: 1040px;
  margin: 24px auto 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: #fff;
}

.static-page .static-cover img {
  width: 100%;
  height: auto;
  display: block;
}

.static-page .static-content {
  max-width: 920px;
  margin: 26px auto 0;
  color: #334155;
  line-height: 1.85;
}

.static-page .static-content img,
.static-page .static-content iframe,
.static-page .static-content video {
  max-width: 100%;
}

/* Slideshow */
.home-slideshow {
  position: relative;
  overflow: hidden;
  background: var(--brand-blue);
  margin: 0;
  padding: 0;
  line-height: 0;
}

.home-slideshow .carousel,
.home-slideshow .carousel-inner,
.home-slideshow .carousel-item {
  position: relative;
  margin: 0;
  padding: 0;
}

/* Bootstrap-carousel core behavior (scoped) */
.home-slideshow .carousel-inner {
  width: 100%;
  overflow: hidden;
}

.home-slideshow .carousel-item {
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}

.home-slideshow .carousel-item.active,
.home-slideshow .carousel-item-next,
.home-slideshow .carousel-item-prev {
  display: block;
}

.home-slideshow .carousel-item-next:not(.carousel-item-start),
.home-slideshow .active.carousel-item-end {
  transform: translateX(100%);
}

.home-slideshow .carousel-item-prev:not(.carousel-item-end),
.home-slideshow .active.carousel-item-start {
  transform: translateX(-100%);
}

@media (prefers-reduced-motion: reduce) {
  .home-slideshow .carousel-item {
    transition: none;
  }
}

.slide-inner {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  margin: 0;
  padding: 0;
  line-height: 0;
}

.slide-inner picture,
.slide-inner img {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

.slide-inner img {
  width: 100%;
  height: 750px;
  object-fit: cover;
  vertical-align: top;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(14, 30, 60, 0.78) 0%,
    rgba(14, 30, 60, 0.35) 45%,
    rgba(14, 30, 60, 0.08) 100%
  );
  z-index: 1;
}

.home-hero-text {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 50%;
  max-width: 1200px;
  padding-left: 64px;
  padding-right: 24px;
  pointer-events: none;
}

.home-hero-text h1 {
  margin: 0 0 18px;
  font-size: 48px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #ffffff;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-hero-text p {
  max-width: 560px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  line-height: 1.65;
  font-weight: 500;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-hero-actions {
  margin-top: 26px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  pointer-events: auto;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 22px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  line-height: 1;
  transition:
    transform 0.15s ease,
    background-color 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
  user-select: none;
  text-decoration: none;
}

.hero-btn:hover {
  transform: translateY(-1px);
}

.hero-btn-primary {
  background: var(--brand-yellow);
  color: var(--brand-blue);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-btn-primary:hover {
  background: #ffd24a;
}

.hero-btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.6);
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 7%;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 620px;
  color: #ffffff;
  line-height: 1.6;
}

.slide-content h2 {
  margin: 0 0 16px;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
}

.slide-content p {
  margin: 0 0 24px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}

.slide-btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  background: #fdbd09;
  color: #0e1e3c;
  font-weight: 700;
  line-height: 1.2;
}

/* Carousel controls */
.home-slideshow .carousel-indicators {
  margin-bottom: 18px;
}

.home-slideshow .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  margin: 0 5px;
  opacity: 0.45;
  background-color: rgba(255, 255, 255, 0.9);
}

.home-slideshow .carousel-indicators .active {
  opacity: 1;
  background-color: #fdbd09;
}

.home-slideshow .carousel-control-prev,
.home-slideshow .carousel-control-next {
  width: 56px;
}

.home-slideshow .carousel-control-prev-icon,
.home-slideshow .carousel-control-next-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background-color: rgba(14, 30, 60, 0.45);
  background-size: 55% 55%;
  backdrop-filter: blur(6px);
}

/* Buttons */
.btn-primary,
.contact-submit-btn,
.quote-submit-btn,
.sample-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--brand-yellow);
  color: var(--brand-blue);
  border: 0;
  border-radius: 10px;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-primary:hover,
.contact-submit-btn:hover,
.quote-submit-btn:hover,
.sample-submit-btn:hover {
  background: var(--brand-blue);
  color: var(--brand-yellow);
}

/* Cards / sections */
.section-card,
.contact-inquiry-card,
.quote-card,
.sample-card,
.supplier-card {
  background: var(--brand-white);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

/* Supplier registration form layout */
.supplier-card {
  max-width: 980px;
  margin: 0 auto;
  padding: 26px 24px 28px;
}

.supplier-section-title {
  margin: 22px 0 10px;
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.supplier-section-title:first-of-type {
  margin-top: 4px;
}

.supplier-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}

.supplier-group.full {
  grid-column: 1 / -1;
}

.supplier-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  font-size: 14px;
  color: #374151;
}

.supplier-radio input {
  margin-right: 6px;
}

.supplier-check-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.supplier-check-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  font-size: 13px;
  color: #111827;
}

.supplier-check-item input {
  margin: 0;
}

.supplier-upload-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  margin-top: 8px;
}

.supplier-upload-box small {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #6b7280;
}

.supplier-note {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.6;
  color: #6b7280;
}

@media (max-width: 900px) {
  .supplier-card {
    padding: 20px 16px 22px;
  }

  .supplier-grid,
  .supplier-upload-grid {
    grid-template-columns: 1fr;
  }
}

/* Form inputs */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
select,
textarea {
  width: 100%;
  border: 1px solid #dbe1e8;
  border-radius: 10px;
  background: var(--bg-light);
  padding: 12px 14px;
  font-size: 14px;
  color: var(--brand-blue);
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand-yellow);
  box-shadow: 0 0 0 3px rgba(253, 189, 9, 0.15);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-blue);
}

/* Alerts */
.quote-alert {
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 16px;
}

.quote-alert.success {
  background: #ecfdf3;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.quote-alert.error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.quote-alert ul {
  margin: 0;
  padding-left: 18px;
}

/* Request quote page */
.quote-hero-section {
  padding: 0 0 72px;
  background: #f3f6fb;
}

.quote-hero {
  background: var(--brand-blue);
  color: #ffffff;
  padding: 54px 0 120px;
  text-align: center;
}

.quote-hero-kicker {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.quote-hero-title {
  margin: 16px 0 10px;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 800;
}

.quote-hero-desc {
  margin: 0 auto;
  max-width: 640px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

.quote-card-container {
  margin-top: -88px;
}

.quote-form-card {
  max-width: 920px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.35);
  padding: 28px 26px 26px;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}

.quote-group.full {
  grid-column: 1 / -1;
}

.quote-radio {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 14px;
  color: #374151;
}

.quote-radio input {
  margin-right: 6px;
}

.quote-submit-btn {
  width: 100%;
  margin-top: 16px;
  border-radius: 10px;
  padding: 13px 16px;
}

.quote-note {
  margin: 10px 4px 0;
  font-size: 12px;
  line-height: 1.6;
  color: #6b7280;
}

/* Contact page */
.contact-inquiry-section {
  padding: 40px 0 72px;
  background: transparent;
}

.contact-split {
  display: grid;
  grid-template-columns: 0.9fr 1.25fr;
  gap: 28px;
  align-items: start;
}

.contact-split-hero {
  border-radius: 18px;
  padding: 34px 28px;
  background: transparent;
  color: var(--brand-blue);
  border: 0;
  box-shadow: none;
  position: sticky;
  top: 18px;
}

.contact-hero-label {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.92);
}

.contact-hero-title {
  margin: 14px 0 10px;
  font-size: 36px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.contact-hero-desc {
  margin: 0;
  max-width: 720px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
}

.contact-inquiry-container {
  margin: 0;
}

.contact-inquiry-card {
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(2, 6, 23, 0.18);
  overflow: hidden;
}

.contact-inquiry-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 0;
}

.contact-form-col {
  padding: 34px 34px 30px;
  background: #fff;
}

.contact-form-head h2 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--brand-blue);
}

.contact-form-head p {
  margin: 0 0 20px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  max-width: 520px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form-group.full {
  grid-column: 1 / -1;
}

.contact-submit-btn {
  width: 100%;
  margin-top: 18px;
  border-radius: 8px;
  padding: 14px 16px;
}

.contact-info-col {
  padding: 26px 26px 30px;
  background: #f8fafc;
  border-left: 1px solid var(--border-color);
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eaf7ee;
  color: #166534;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}

.contact-info-box {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 16px 16px 10px;
}

.contact-info-box::before {
  content: "Office Details";
  display: block;
  font-weight: 800;
  color: var(--brand-blue);
  margin: 2px 0 14px;
  font-size: 14px;
}

.contact-info-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: start;
  padding: 10px 0;
  border-top: 1px solid #eef2f7;
}

.contact-info-item:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}

.contact-info-item strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  margin: 0 0 2px;
  color: var(--brand-blue);
}

.contact-info-item p {
  margin: 0;
  font-size: 13px;
  color: #475569;
  line-height: 1.5;
}

.contact-image-box {
  margin-top: 16px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: #fff;
  min-height: 220px;
}

.contact-image-box iframe {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
}

.contact-image-box img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* Footer */
.site-footer {
  margin-top: 40px;
  position: relative;
  background: var(--brand-blue);
  color: var(--brand-white);
  padding: 64px 0 26px;
  overflow: hidden;
}

.site-footer .footer-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.site-footer .footer-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 20, 50, 0.7);
}

.site-footer .footer-grid,
.site-footer .footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(11, 35, 69, 0.92), rgba(11, 35, 69, 0.92)),
    url("../images/noimage.png");
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  z-index: 0;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 34px;
}

.footer-grid-3 {
  grid-template-columns: 1.5fr 1fr 1.1fr;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  color: #fff;
}

.footer-logo img {
  max-height: 56px;
  width: 50%;
}

.footer-desc {
  margin: 16px 0 18px;
  max-width: 360px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social-link {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
}

.footer-social-link:hover {
  background: var(--brand-yellow);
  color: var(--brand-blue);
  border-color: var(--brand-yellow);
}

.footer-col-title {
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 14px;
  color: #ffffff;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--brand-yellow);
}

.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  margin-top: 26px;
}

.footer-bottom-line {
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
  margin-bottom: 14px;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  text-align: center;
}

@media (max-width: 991px) {
  .footer-grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding-top: 50px;
  }

  .footer-grid-3 {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-brand {
    grid-column: auto;
  }
}

/* Utility */
.text-center {
  text-align: center;
}

/* Responsive desktop header hide on mobile */
.desktop-header-wrap {
  display: block;
  margin: 0;
  padding: 0;
}

.mobile-header-wrap {
  display: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 991.98px) {
  .desktop-header-wrap {
    display: none !important;
  }

  .mobile-header-wrap {
    display: block !important;
  }

  .slide-inner img {
    height: 520px;
  }

  .slide-content h2 {
    font-size: 34px;
  }

  .slide-content p {
    font-size: 16px;
  }

  .home-hero-text {
    width: 62%;
    max-width: none;
    padding-left: 36px;
    padding-right: 20px;
  }

  .home-hero-text h1 {
    font-size: 46px;
    line-height: 1.1;
  }

  .home-hero-text p {
    font-size: 15px;
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .home-hero-text {
    width: calc(100% - 32px);
    left: 16px;
    padding-left: 0;
    padding-right: 0;
    top: 50%;
  }

  .home-hero-text h1 {
    font-size: 32px;
    line-height: 1.12;
    margin-bottom: 12px;
    -webkit-line-clamp: 2;
  }

  .home-hero-text p {
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 16px;
    -webkit-line-clamp: 3;
  }

  .hero-btn {
    height: 48px;
    padding: 0 16px;
    border-radius: 12px;
    font-size: 14px;
  }

  .slide-inner img {
    height: 460px;
  }

  .slide-content {
    left: 20px;
    right: 20px;
    max-width: none;
  }

  .slide-content h2 {
    font-size: 28px;
  }

  .slide-content p {
    font-size: 15px;
  }
}

@media (max-width: 900px) {
  .contact-split {
    grid-template-columns: 1fr;
  }

  .contact-split-hero {
    position: relative;
    top: auto;
  }

  .contact-inquiry-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-col {
    border-left: 0;
    border-top: 1px solid var(--border-color);
  }

  .contact-hero-title {
    font-size: 34px;
  }
}

.why-vietnam {
  padding: 72px 0 80px;
  overflow: visible;
}

.why-vietnam-title span {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 10px;
  background: #fdbd09;
  color: #ffffff;
}

.why-vietnam-desc {
  max-width: 760px;
  margin: 0 auto 36px;
  font-size: 16px;
  line-height: 1.7;
  color: #6b7280;
}

.why-vietnam-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.why-vietnam-card {
  position: relative;
  min-height: 220px;
  padding: 28px 28px 26px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  overflow: visible;
  box-shadow: none;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
  z-index: 1;
}

.why-vietnam-card.active {
  background: #0e1e3c;
  border-color: #0e1e3c;
  box-shadow:
    0 10px 0 #fdbd09,
    0 18px 40px rgba(15, 23, 42, 0.45);
  transform: translateY(-2px);
}

.why-vietnam-card:hover {
  background: #0e1e3c;
  border-color: #0e1e3c;
  box-shadow:
    0 10px 0 #fdbd09,
    0 10px 20px rgba(15, 23, 42, 0.45);
  transform: translateY(-2px);
}

.why-vietnam-icon {
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border-radius: 12px;
  background: #fdbd09;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.why-vietnam-card.active .why-vietnam-icon {
  background: #ffffff;
}

.why-vietnam-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

.why-vietnam-bg-icon {
  position: absolute;
  top: 22px;
  right: 20px;
  width: 72px;
  height: 72px;
  opacity: 0.12;
  z-index: 1;
  pointer-events: none;
}

.why-vietnam-bg-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.why-vietnam-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 800;
  color: #0e1e3c;
}

.why-vietnam-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
}

.why-vietnam-card.active h3,
.why-vietnam-card.active p,
.why-vietnam-card:hover h3,
.why-vietnam-card:hover p {
  color: #ffffff;
}

@media (max-width: 1199px) {
  .why-vietnam-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .why-vietnam {
    padding: 50px 0;
  }

  .why-vietnam-title {
    font-size: 34px;
    margin-bottom: 14px;
  }

  .why-vietnam-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .why-vietnam-card {
    min-height: auto;
    padding: 22px 20px;
  }
}

.your-path {
  background: #032a5d;
  padding: 64px 0 56px;
  overflow: hidden;
}

.your-path .container {
  position: relative;
}

.your-path-head {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 34px;
}

.your-path-title span {
  color: #f5bd10;
}

.your-path-desc {
  margin: 0;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.7;
}

.your-path-slider .home-auto-slider-viewport {
  overflow: hidden;
}

.your-path-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.your-path-slider.is-slider .your-path-grid {
  display: flex !important;
  grid-template-columns: unset !important;
  transition: transform 0.4s ease;
  will-change: transform;
}

.your-path-slider.is-slider .home-auto-slider-item {
  flex: 0 0 calc((100% - 84px) / 4);
  min-width: calc((100% - 84px) / 4);
}

.your-path-card {
  position: relative;
  min-height: 210px;
  padding: 28px 8px 12px 0;
  color: #fff;
}

.your-path-bg-number {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 78px;
  line-height: 1;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.16);
  z-index: 1;
  pointer-events: none;
  letter-spacing: -0.04em;
}

.your-path-icon {
  position: relative;
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #f5bd10;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 34px 0 14px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  padding: 10px;
}

.your-path-step {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: #fdbd09;
  color: #0e1e3c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 18px;
}

.your-path-icon {
  position: relative;
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #f5bd10;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 34px 0 14px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  padding: 10px;
}

.your-path-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.your-path-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 8px;
  font-size: 19px;
  line-height: 1.35;
  font-weight: 700;
  color: #ffffff;
}

.your-path-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  max-width: 240px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}

/* tablet */
@media (max-width: 991px) {
  .your-path {
    padding: 52px 0 46px;
  }

  .your-path-head {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 28px;
  }

  .your-path-title {
    font-size: 40px;
    max-width: unset;
  }

  .your-path-desc {
    max-width: unset;
  }

  .your-path-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .your-path-slider.is-slider .home-auto-slider-item {
    flex: 0 0 calc((100% - 20px) / 2);
    min-width: calc((100% - 20px) / 2);
  }

  .your-path-bg-number {
    font-size: 66px;
  }
}

/* mobile */
@media (max-width: 767px) {
  .your-path {
    padding: 42px 0 38px;
  }

  .your-path-title {
    font-size: 32px;
  }

  .your-path-desc {
    font-size: 14px;
    line-height: 1.6;
  }

  .your-path-slider.is-slider .your-path-grid {
    gap: 14px;
  }

  .your-path-slider.is-slider .home-auto-slider-item {
    flex: 0 0 calc((100% - 14px) / 2);
    min-width: calc((100% - 14px) / 2);
  }

  .your-path-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .your-path-card {
    min-height: 190px;
    padding: 22px 0 10px;
  }

  .your-path-bg-number {
    font-size: 54px;
  }

  .your-path-icon {
    width: 42px;
    height: 42px;
    margin: 28px 0 12px;
    border-radius: 9px;
    padding: 8px;
  }

  .your-path-card h3 {
    font-size: 16px;
  }

  .your-path-card p {
    font-size: 13px;
    line-height: 1.55;
  }
}

/* Home Product Categories - new layout */
.home-product-categories {
  padding: 72px 0 36px;
  background: #f5f5f5;
}

.home-product-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
}

.home-product-main-title {
  margin: 0;
  font-size: 36px;
  line-height: 1;
  font-weight: 800;
  color: #08295d;
  letter-spacing: -0.03em;
}

.home-product-main-title span {
  display: inline-block;
  padding: 6px 12px 8px;
  margin-right: 6px;
  border-radius: 8px;
  background: #f5bd10;
  color: #ffffff;
  line-height: 1;
}

.home-product-view-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 45px;
  padding: 0 13px;
  border: 2px solid #e6c75e;
  border-radius: 14px;
  color: #d9aa00;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  background: #fffdf6;
  transition: all 0.2s ease;
}

.home-product-view-all:hover {
  background: #fff7dc;
  color: #c89600;
}

.home-product-view-all span {
  font-size: 24px;
  line-height: 1;
}

.home-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.home-product-card {
  min-width: 0;
}

.home-product-card-link {
  position: relative;
  display: block;
  height: 330px;
  overflow: hidden;
  border-radius: 22px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(10, 28, 54, 0.1);
  background: #d9dee7;
}

.home-product-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.home-product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 19, 43, 0.72) 0%,
    rgba(5, 19, 43, 0.38) 34%,
    rgba(5, 19, 43, 0) 68%
  );
}

.home-product-card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 26px 28px 24px;
}

.home-product-card-title {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.home-product-card-desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 500;
}

.home-product-card-link:hover .home-product-card-image {
  transform: scale(1.04);
}

/* tablet */
@media (max-width: 991px) {
  .home-product-categories {
    padding: 58px 0 28px;
  }

  .home-product-head {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 26px;
  }

  .home-product-main-title {
    font-size: 42px;
  }

  .home-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .home-product-card-link {
    height: 270px;
    border-radius: 18px;
  }

  .home-product-card-content {
    padding: 20px 20px 18px;
  }

  .home-product-card-title {
    font-size: 21px;
  }

  .home-product-card-desc {
    font-size: 14px;
  }
}

/* mobile: 3 rows x 2 cols */
@media (max-width: 767px) {
  .home-product-categories {
    padding: 44px 0 18px;
  }

  .home-product-main-title {
    font-size: 30px;
    line-height: 1.1;
  }

  .home-product-main-title span {
    padding: 5px 10px 6px;
    border-radius: 6px;
  }

  .home-product-view-all {
    min-height: 44px;
    padding: 0 16px;
    font-size: 15px;
    border-radius: 12px;
  }

  .home-product-view-all span {
    font-size: 20px;
  }

  .home-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .home-product-card-link {
    height: 170px;
    border-radius: 14px;
  }

  .home-product-card-content {
    padding: 14px 14px 12px;
  }

  .home-product-card-title {
    margin-bottom: 4px;
    font-size: 16px;
    line-height: 1.25;
  }

  .home-product-card-desc {
    font-size: 12px;
    line-height: 1.35;
  }
}

/* Home Tailored - new design */
.home-tailored {
  width: 100%;
  padding: 72px 0 52px;
  background: #f5f5f5;
}

.home-tailored-inner {
  width: min(1720px, 98%);
  margin: 0 auto;
}

.home-tailored-head {
  text-align: center;
  margin-bottom: 46px;
}

.home-tailored-title {
  margin: 0;
  font-size: 36px;
  line-height: 1.08;
  font-weight: 800;
  color: #08295d;
  letter-spacing: -0.03em;
}

.home-tailored-title span {
  display: inline-block;
  padding: 6px 14px 8px;
  border-radius: 10px;
  background: #f5bd10;
  color: #ffffff;
  line-height: 1;
}

.home-tailored-grid {
  display: grid;
  justify-content: space-between;
  grid-template-columns: repeat(5, minmax(220px, 1fr));
  gap: 26px;
  width: 100%;
}

.home-tailored-card {
  min-height: 156px;
  padding: 28px 18px 24px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.home-tailored-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.1);
}

.home-tailored-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: #f5bd10;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 8px 18px rgba(245, 189, 16, 0.22);
}

.home-tailored-card-icon i {
  font-size: 28px;
  line-height: 1;
}

.home-tailored-card-text {
  color: #111827;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 700;
}

/* tablet */
@media (max-width: 1199px) {
  .home-tailored-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .home-tailored {
    padding: 58px 0 38px;
  }

  .home-tailored-title {
    font-size: 42px;
  }

  .home-tailored-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .home-tailored-card {
    min-height: 146px;
  }
}

/* mobile */
@media (max-width: 767px) {
  .home-tailored {
    padding: 44px 0 24px;
  }

  .home-tailored-head {
    margin-bottom: 24px;
  }

  .home-tailored-title {
    font-size: 30px;
    line-height: 1.15;
  }

  .home-tailored-title span {
    padding: 4px 10px 6px;
    border-radius: 8px;
  }

  .home-tailored-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .home-tailored-card {
    min-height: 126px;
    padding: 20px 12px 18px;
    border-radius: 14px;
  }

  .home-tailored-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    margin-bottom: 12px;
  }

  .home-tailored-card-icon i {
    font-size: 18px;
  }

  .home-tailored-card-text {
    font-size: 15px;
  }
}

.home-ready {
  width: 100%;
  padding: 0;
  margin: 0;
  background: transparent;
}

.home-ready-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 70px 0 48px;
  margin: 0;
  background: #f8fafc;
  background-image: var(--journey-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.site-footer {
  margin-top: 0 !important;
}

.home-ready-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.94) 0%,
    rgba(255, 255, 255, 0.88) 42%,
    rgba(255, 255, 255, 0.72) 100%
  );
  z-index: 1;
}

.home-ready .container {
  position: relative;
  z-index: 2;
}

.home-ready-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 40px;
  align-items: center;
}

.home-ready-title {
  margin: 0 0 14px;
  font-size: 36px;
  line-height: 1.06;
  font-weight: 800;
  color: #08295d;
  letter-spacing: -0.03em;
  max-width: 540px;
}

.home-ready-title span {
  color: #f5bd10;
}

.home-ready-desc {
  max-width: 520px;
  margin: 0 0 22px;
  color: #4b5d76;
  font-size: 12px;
  line-height: 1.7;
}

.home-ready-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.home-ready-list li {
  position: relative;
  padding-left: 28px;
  color: #17345f;
  font-size: 12px;
  font-weight: 600;
}

.home-ready-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #f5bd10;
  color: #fff;
  font-size: 11px;
  line-height: 18px;
  text-align: center;
}

.home-ready-card {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
}

.home-ready-card h3 {
  margin: 0 0 18px;
  font-size: 22px;
  color: #0f172a;
  font-weight: 700;
}

.home-ready-card form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.home-ready-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.home-ready-field.full {
  grid-column: 1 / -1;
}

.home-ready-field label {
  font-size: 13px;
  font-weight: 600;
  color: #334155;
}

.home-ready-field input,
.home-ready-field textarea {
  width: 100%;
  border: 1px solid #d7dde6;
  border-radius: 8px;
  padding: 11px 12px;
  background: #fff;
  font-size: 14px;
  color: #0f172a;
}

.home-ready-field textarea {
  min-height: 120px;
  resize: vertical;
}

.home-ready-submit {
  grid-column: 1 / -1;
  height: 46px;
  border: 0;
  border-radius: 8px;
  background: #08295d;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 991px) {
  .home-ready-wrap {
    padding: 28px;
  }

  .home-ready-grid {
    grid-template-columns: 1fr;
  }

  .home-ready-title {
    font-size: 38px;
    max-width: unset;
  }
}

@media (max-width: 767px) {
  .home-ready {
    padding: 44px 0;
  }

  .home-ready-wrap {
    border-radius: 18px;
    padding: 20px;
  }

  .home-ready-title {
    font-size: 30px;
  }

  .home-ready-card {
    padding: 18px;
  }

  .home-ready-card form {
    grid-template-columns: 1fr;
  }
}

.product-page {
  padding: 40px 0 70px;
  background: #f8fafc;
}

.product-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.product-sidebar {
  position: sticky;
  top: 100px;
}

.product-sidebar-title {
  margin-bottom: 10px;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.08em;
  color: #3f4650;
  text-transform: uppercase;
}

.product-sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-sidebar-link {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 10px;
  border-radius: 8px;
  background: #ececec;
  color: #29313d;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.product-sidebar-link i {
  width: 16px;
  text-align: center;
  font-size: 14px;
}

.product-sidebar-link:hover {
  background: #fff7e3;
  color: #0e1e3c;
}

.product-sidebar-link.active {
  background: #fdbd09;
  color: var(--brand-blue);
  font-weight: 700;
}

.product-sidebar-link:hover {
  background: #e1e1e1;
}

.product-sidebar-link.active {
  background: #efb20c;
  color: #1e1e1e;
}

.product-sidebar-link-icon {
  width: 16px;
  text-align: center;
  color: inherit;
  flex: 0 0 16px;
}

.product-cert-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.product-cert-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 11px;
  line-height: 1.45;
  color: #59606b;
  cursor: pointer;
}

.product-cert-item input[type="checkbox"] {
  width: 14px;
  height: 14px;
  margin-top: 1px;
  accent-color: #efb20c;
  flex: 0 0 14px;
}

.product-main {
  min-width: 0;
}

.product-main-head {
  margin-bottom: 14px;
}

.product-main-title {
  margin: 0 0 6px;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 800;
  color: #173b7a;
}

.product-main-desc {
  max-width: 680px;
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: #6a7280;
}

.product-heading {
  margin-bottom: 18px;
}

.product-heading .page-title {
  margin: 0 0 10px;
  font-size: 56px;
  line-height: 1.05;
  font-weight: 800;
  color: var(--brand-blue);
}

.product-heading .page-subtitle {
  max-width: 760px;
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: #475569;
}

.product-summary {
  margin-bottom: 22px;
  font-size: 15px;
  color: #64748b;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.product-grid-style-2 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.product-card-thumb {
  position: relative;
  display: block;
  aspect-ratio: 1.25 / 1;
  overflow: hidden;
  background: #ddd;
}

.product-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card-style-2 {
  background: #ffffff;
  border: 1px solid #dbe4ee;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
}

.product-grid-style-2 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.product-card-style-2 {
  background: #ffffff;
  border: 1px solid #dbe4ee;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
  height: 100%;
}

.product-card-style-2 .product-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card-style-2 .product-thumb {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #dbe4ee;
}

.product-card-style-2 .product-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.product-card-style-2 .product-content {
  padding: 22px 22px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-style-2 .product-title {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
}

.product-card-style-2 .product-title a {
  color: #0e1e3c;
}

.product-meta-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

.product-meta {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.5;
  color: #64748b;
}

.product-meta i {
  width: 16px;
  margin-top: 3px;
  font-size: 13px;
  color: #64748b;
  flex: 0 0 16px;
}

.product-card-style-2 .product-desc {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.65;
  color: #64748b;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-detail-no-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  color: #6b7280;
  font-size: 16px;
  font-weight: 600;
}

.product-gallery-viewport {
  overflow: hidden;
  width: 100%;
}

.product-gallery-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  width: 100%;
}

.product-gallery-track::-webkit-scrollbar {
  display: none;
}

.product-gallery-thumb {
  flex: 0 0 calc((100% - 36px) / 4);
  width: calc((100% - 36px) / 4);
  min-width: calc((100% - 36px) / 4);
  max-width: calc((100% - 36px) / 4);
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  padding: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.product-gallery-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.product-gallery-thumb:hover {
  border-color: var(--brand-yellow);
  transform: translateY(-2px);
}

.product-gallery-thumb.is-active {
  border-color: var(--brand-yellow);
  box-shadow: 0 0 0 2px rgba(253, 189, 9, 0.2);
}

.product-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 999px;
  background: rgba(14, 30, 60, 0.92);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    opacity 0.25s ease;
}

.product-gallery-nav:hover {
  background: var(--brand-yellow);
  color: var(--brand-blue);
}

.product-gallery-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.product-gallery-nav.prev {
  left: -14px;
}

.product-gallery-nav.next {
  right: -14px;
}

.product-gallery-wrap:not(.has-nav) .product-gallery-nav {
  display: none;
}

@media (max-width: 767px) {
  .product-gallery-track {
    gap: 10px;
  }

  .product-gallery-thumb {
    flex: 0 0 calc((100% - 20px) / 3);
    width: calc((100% - 20px) / 3);
    min-width: calc((100% - 20px) / 3);
    max-width: calc((100% - 20px) / 3);
  }

  .product-gallery-nav {
    width: 32px;
    height: 32px;
  }

  .product-gallery-nav.prev {
    left: -8px;
  }

  .product-gallery-nav.next {
    right: -8px;
  }
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid #e5e7eb;
  margin-top: auto;
}

.product-footer-note {
  font-size: 14px;
  color: #94a3b8;
  font-weight: 600;
}

.product-explore-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-yellow);
  font-weight: 700;
  white-space: nowrap;
}

.product-explore-link:hover {
  color: #d97706;
}

@media (max-width: 1199px) {
  .product-grid-style-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .product-grid-style-2 {
    grid-template-columns: 1fr;
  }

  .product-card-style-2 .product-thumb img {
    height: 200px;
  }
}

.product-footer-note {
  font-size: 14px;
  color: #94a3b8;
  font-weight: 600;
}

.product-explore-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f59e0b;
  font-weight: 700;
}

.product-explore-link:hover {
  color: #d97706;
}

@media (max-width: 1199px) {
  .product-layout {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .product-heading .page-title {
    font-size: 44px;
  }

  .product-grid-style-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .product-layout {
    grid-template-columns: 1fr;
  }

  .product-sidebar {
    position: static;
  }

  .product-heading .page-title {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .product-page {
    padding: 30px 0 50px;
  }

  .product-grid-style-2 {
    grid-template-columns: 1fr;
  }

  .product-heading .page-title {
    font-size: 30px;
  }

  .product-heading .page-subtitle {
    font-size: 16px;
  }
}

.home-auto-slider {
  position: relative;
}

.home-auto-slider-viewport {
  overflow: hidden;
  width: 100%;
}

.home-auto-slider-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  transition: transform 0.6s ease;
  will-change: transform;
}

.home-auto-slider-item {
  flex: 0 0 calc((100% - 72px) / 4);
  min-width: calc((100% - 72px) / 4);
  max-width: calc((100% - 72px) / 4);
}

.home-auto-slider:not(.is-slider) .home-auto-slider-track {
  transform: none !important;
}

@media (max-width: 991px) {
  .home-auto-slider-item {
    flex: 0 0 calc((100% - 24px) / 2);
    min-width: calc((100% - 24px) / 2);
    max-width: calc((100% - 24px) / 2);
  }
}

@media (max-width: 767px) {
  .home-auto-slider-track {
    gap: 16px;
  }

  .home-auto-slider-item {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
  }
}

.why-vietnam-slider {
  overflow: visible;
}

.why-vietnam-slider .home-auto-slider-viewport {
  overflow: hidden;
  padding-bottom: 34px;
  margin-bottom: -34px;
}

.why-vietnam-slider .home-auto-slider-track {
  align-items: stretch;
}

.product-filter-form {
  display: block;
}

.product-cert-filter-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-cert-filter-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-main);
  cursor: pointer;
  line-height: 1.5;
}

.product-cert-filter-item input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--brand-yellow);
  cursor: pointer;
}

.product-filter-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.product-filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  text-decoration: none;
}

.menu-parent-btn {
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  line-height: inherit;
  font-size: 15px;
  color: var(--brand-blue);
  font-weight: bold;
}

.menu-parent-btn:hover {
  color: var(--brand-yellow);
}

.quote-field-error {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.5;
  color: #dc2626;
}

.quote-form .is-invalid {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.08);
}

.quote-popup-wrap {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: min(420px, calc(100vw - 24px));
}

.quote-popup {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(14, 30, 60, 0.18);
  border-left: 5px solid;
  animation: quotePopupFadeIn 0.25s ease;
}

.quote-popup-success {
  border-left-color: #fdbd09;
}

.quote-popup-error {
  border-left-color: #dc2626;
}

.quote-popup-icon {
  flex: 0 0 auto;
  font-size: 22px;
  line-height: 1;
  margin-top: 2px;
}

.quote-popup-success .quote-popup-icon {
  color: #fdbd09;
}

.quote-popup-error .quote-popup-icon {
  color: #dc2626;
}

.quote-popup-content {
  flex: 1 1 auto;
  min-width: 0;
}

.quote-popup-title {
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 700;
  color: #0e1e3c;
  line-height: 1.3;
}

.quote-popup-message {
  font-size: 14px;
  line-height: 1.5;
  color: #374151;
  word-break: break-word;
}

.quote-popup-list {
  margin: 0;
  padding-left: 18px;
}

.quote-popup-list li {
  margin: 0;
}

.quote-popup-close {
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  padding: 0;
  color: #6b7280;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
}

.quote-popup-close:hover {
  color: #0e1e3c;
}

@keyframes quotePopupFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 767px) {
  .quote-popup-wrap {
    top: 12px;
    left: 12px;
    right: 12px;
    width: auto;
  }

  .quote-popup {
    padding: 14px;
  }
}

.supplier-field-error {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.5;
  color: #dc2626;
}

.supplier-form .is-invalid {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.08);
}

.supplier-radio.is-invalid,
.supplier-check-grid.is-invalid {
  border-radius: 10px;
}

.supplier-upload-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.supplier-upload-item {
  min-width: 0;
}

.supplier-upload-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 168px;
  padding: 24px 16px 20px;
  text-align: center;
  background: #f8fafc;
  border: 2px dashed #d7dee8;
  border-radius: 18px;
  cursor: pointer;
  transition: all 0.25s ease;
  overflow: hidden;
}

.supplier-upload-card:hover {
  border-color: #fdbd09;
  background: #fffdf5;
  transform: translateY(-2px);
}

.supplier-upload-card.is-invalid {
  border-color: #dc2626;
  background: #fff7f7;
}

.supplier-upload-input {
  position: absolute;
  inset: 0;
}

.supplier-upload-input input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.supplier-upload-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: #e9eef5;
  color: #94a3b8;
  font-size: 22px;
  line-height: 1;
  transition: all 0.25s ease;
}

.supplier-upload-card:hover .supplier-upload-icon {
  background: rgba(253, 189, 9, 0.14);
  color: #0e1e3c;
}

.supplier-upload-title {
  display: block;
  margin-bottom: 6px;
  color: #0e1e3c;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.supplier-upload-text {
  display: block;
  color: #7b8794;
  font-size: 14px;
  line-height: 1.5;
}

.supplier-upload-note {
  margin-top: 18px;
  text-align: center;
  color: #8a94a6;
  font-size: 14px;
  line-height: 1.6;
}

.supplier-field-error {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.5;
  color: #dc2626;
}

@media (max-width: 991px) {
  .supplier-upload-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .supplier-upload-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .supplier-upload-card {
    min-height: 150px;
    padding: 20px 14px 18px;
  }

  .supplier-upload-title {
    font-size: 17px;
  }

  .supplier-upload-text,
  .supplier-upload-note {
    font-size: 13px;
  }
}

.supplier-submit-wrap {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.supplier-submit-btn {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  outline: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 14px 28px;
  color: #0e1e3c;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  border-radius: 14px;
  cursor: pointer;
  background-color: var(--brand-yellow);
}

.supplier-submit-btn:hover {
  color: var(--brand-yellow);
  background-color: var(--brand-blue);
}

.supplier-submit-btn:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(253, 189, 9, 0.22);
}

.supplier-submit-btn:focus-visible {
  box-shadow:
    0 0 0 4px rgba(14, 30, 60, 0.12),
    0 10px 24px rgba(253, 189, 9, 0.28);
}

.supplier-note {
  margin-top: 14px;
  text-align: center;
}

.meta-dot {
  font-size: 10px;
  color: #64748b;
}

.home-auto-slider .home-auto-slider-viewport {
  overflow: hidden;
}

.home-auto-slider.is-slider .home-auto-slider-track {
  display: flex !important;
  grid-template-columns: unset !important;
  transition: transform 0.4s ease;
  will-change: transform;
}

.why-vietnam-slider.is-slider .home-auto-slider-track,
.your-path-slider.is-slider .home-auto-slider-track {
  gap: 20px;
}

.why-vietnam-slider.is-slider .home-auto-slider-item,
.your-path-slider.is-slider .home-auto-slider-item {
  flex: 0 0 calc((100% - 60px) / 4);
  min-width: calc((100% - 60px) / 4);
}

/* Non-slider fallback */
.why-vietnam-slider:not(.is-slider) .why-vietnam-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.your-path-slider:not(.is-slider) .your-path-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

@media (max-width: 991px) {
  .why-vietnam-slider.is-slider .home-auto-slider-item,
  .your-path-slider.is-slider .home-auto-slider-item {
    flex: 0 0 calc((100% - 20px) / 2);
    min-width: calc((100% - 20px) / 2);
  }

  .why-vietnam-slider:not(.is-slider) .why-vietnam-grid,
  .your-path-slider:not(.is-slider) .your-path-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .why-vietnam-slider.is-slider .home-auto-slider-track,
  .your-path-slider.is-slider .home-auto-slider-track {
    gap: 12px;
  }

  .why-vietnam-slider.is-slider .home-auto-slider-item,
  .your-path-slider.is-slider .home-auto-slider-item {
    flex: 0 0 calc((100% - 12px) / 2);
    min-width: calc((100% - 12px) / 2);
  }

  .why-vietnam-slider:not(.is-slider) .why-vietnam-grid,
  .your-path-slider:not(.is-slider) .your-path-grid {
    gap: 12px;
  }

  .why-vietnam-card,
  .your-path-card {
    min-height: 100%;
  }

  .why-vietnam-card {
    padding: 16px 12px;
  }

  .why-vietnam-card h3,
  .your-path-card h3 {
    font-size: 15px;
    line-height: 1.35;
  }

  .why-vietnam-card p,
  .your-path-card p {
    font-size: 13px;
    line-height: 1.5;
  }

  .why-vietnam-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 10px;
  }
}

.btn-request-quote,
.btn-request-sample {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  min-height: 40px;
  padding: 0px 30px;

  border-radius: 4px;
  border: 1px solid var(--brand-yellow);

  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;

  transition: all 0.2s ease;
  box-sizing: border-box;
}

.btn-request-quote {
  background: var(--brand-yellow);
  color: var(--brand-blue);
}

.btn-request-quote:hover {
  background: var(--brand-yellow);
  border-color: var(--brand-yellow);
}

.btn-request-sample {
  background: #fff7dc;
  color: var(--brand-yellow);
}

.btn-request-sample:hover {
  background: #fbeec2;
  border-color: #d9a300;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  line-height: 1;
}

.btn-icon i {
  font-size: 10px;
}

/* =========================================
   PRODUCT PAGE CLEAN
   Brand: #0e1e3c / #fdbd09 / #ffffff
========================================= */

.product-page-catalog {
  padding: 24px 0 56px;
  background: #f6f6f7;
}

.product-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 14px;
  font-size: 12px;
  color: #8a8f98;
}

.product-breadcrumb a {
  color: #8a8f98;
  text-decoration: none;
  transition: color 0.2s ease;
}

.product-breadcrumb a:hover {
  color: #0e1e3c;
}

.product-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

/* Sidebar */
.product-sidebar {
  position: sticky;
  top: 100px;
  z-index: 20;
}

.product-sidebar-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.product-sidebar-box {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.product-sidebar-box + .product-sidebar-box {
  margin-top: 20px;
}

.product-sidebar-title {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.08em;
  color: #3f4650;
  text-transform: uppercase;
}

.product-sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-sidebar-link {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 10px;
  border-radius: 8px;
  background: #ececec;
  color: #29313d;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.product-sidebar-link:hover {
  background: #e1e1e1;
  color: #0e1e3c;
}

.product-sidebar-link.active {
  background: #fdbd09;
  color: #0e1e3c;
  font-weight: 700;
}

.product-sidebar-link-icon {
  width: 16px;
  text-align: center;
  color: inherit;
  flex: 0 0 16px;
}

/* Certification */
.product-cert-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.product-cert-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 11px;
  line-height: 1.45;
  color: #59606b;
  cursor: pointer;
}

.product-cert-item input[type="checkbox"] {
  width: 14px;
  height: 14px;
  margin-top: 1px;
  accent-color: #fdbd09;
  flex: 0 0 14px;
}

/* Main */
.product-main {
  min-width: 0;
}

.product-main-head {
  margin-bottom: 14px;
}

.product-main-title {
  margin: 0 0 6px;
  font-size: 36px;
  line-height: 1.1;
  font-weight: 800;
  color: #0e1e3c;
}

.product-main-desc {
  max-width: 680px;
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: #6a7280;
}

/* Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

/* Card */
.product-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.product-card-thumb {
  position: relative;
  display: block;
  aspect-ratio: 1.25 / 1;
  overflow: hidden;
  background: #ddd;
}

.product-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card-badge {
  position: absolute;
  left: 8px;
  bottom: 8px;
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  padding: 0 7px;
  border-radius: 999px;
  background: #fdbd09;
  color: #0e1e3c;
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.product-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 10px 10px 9px;
}

.product-card-title {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
}

.product-card-title a {
  color: #1d2430;
  text-decoration: none;
}

.product-card-title a:hover {
  color: #0e1e3c;
}

.product-card-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 10px;
}

.product-card-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 12px;
  line-height: 1.45;
  color: #7a818c;
}

.product-card-meta-item i {
  width: 12px;
  margin-top: 1px;
  color: #9aa1ab;
  flex: 0 0 12px;
}

.product-card-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2px;
  border-top: 1px solid var(--bg-light);
}

.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
  padding-top: 8px;
  color: var(--brand-yellow);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.product-card-link:hover {
  color: #d89f00;
}

.product-card-link span {
  font-size: 12px;
}

.product-empty-box {
  padding: 20px;
  background: #fff;
  border: 1px dashed #d8d8d8;
  border-radius: 8px;
  color: #6a7280;
  font-size: 14px;
}

/* Mobile filter */
.product-mobile-filter-toggle-wrap {
  display: none;
  margin-bottom: 14px;
}

.product-mobile-filter-toggle {
  width: 100%;
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  background: #0e1e3c;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}

.product-mobile-filter-toggle i {
  font-size: 13px;
}

.product-sidebar-mobile-head,
.product-sidebar-backdrop {
  display: none;
}

/* Tablet */
@media (max-width: 1199px) {
  .product-layout {
    grid-template-columns: 200px minmax(0, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile */
@media (max-width: 991px) {
  .product-layout {
    display: block;
  }

  .product-mobile-filter-toggle-wrap {
    display: block;
  }

  .product-sidebar {
    position: static;
    top: auto;
    margin-bottom: 16px;
    display: none;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 14px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  }

  .product-sidebar.is-open {
    display: block;
  }

  .product-sidebar-inner {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .product-sidebar-box {
    margin: 0;
  }
}

@media (max-width: 767px) {
  .product-breadcrumb {
    font-size: 11px;
  }

  .product-main-title {
    font-size: 24px;
  }

  .product-main-desc {
    font-size: 12px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card-title {
    font-size: 17px;
  }
}

.menu-label {
  font-weight: bold;
  color: var(--brand-blue);
  font-size: 15px;
  cursor: pointer;
}

.menu-label:hover {
  color: var(--brand-yellow);
}

/* Product Detail - new isolated classes */
.pd-page {
  padding: 28px 0 60px;
  background: #f8fafc;
}

.pd-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 14px;
  color: #7b8798;
}

.pd-breadcrumb a {
  color: #6f7d90;
  text-decoration: none;
}

.pd-breadcrumb a:hover {
  color: #0e1e3c;
}

.pd-layout {
  display: grid;
  grid-template-columns: 540px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.pd-media-col {
  width: 100%;
  max-width: 540px;
}

.pd-main-media {
  width: 100%;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  overflow: hidden;
}

.pd-main-media img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  display: block;
}

.pd-no-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  color: #6b7280;
  font-size: 16px;
  font-weight: 600;
}

.pd-thumb-wrap {
  position: relative;
  width: 100%;
  margin-top: 14px;
}

.pd-thumb-viewport {
  overflow: hidden;
  width: 100%;
}

.pd-thumb-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.pd-thumb-track::-webkit-scrollbar {
  display: none;
}

.pd-thumb-item {
  flex: 0 0 calc((100% - 36px) / 4);
  width: calc((100% - 36px) / 4);
  min-width: calc((100% - 36px) / 4);
  max-width: calc((100% - 36px) / 4);
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  padding: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.pd-thumb-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.pd-thumb-item:hover {
  border-color: #fdbd09;
  transform: translateY(-2px);
}

.pd-thumb-item.is-active {
  border-color: #fdbd09;
  box-shadow: 0 0 0 2px rgba(253, 189, 9, 0.2);
}

.pd-thumb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: rgba(14, 30, 60, 0.92);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: all 0.25s ease;
}

.pd-thumb-nav:hover {
  background: #fdbd09;
  color: #0e1e3c;
}

.pd-thumb-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.pd-thumb-nav.prev {
  left: -12px;
}

.pd-thumb-nav.next {
  right: -12px;
}

.pd-thumb-wrap:not(.has-nav) .pd-thumb-nav {
  display: none;
}

.pd-info-col {
  min-width: 0;
  padding-top: 6px;
}

.pd-title {
  margin: 0 0 18px;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 800;
  color: #0e1e3c;
}

.pd-meta {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.6;
  color: #334155;
}

.pd-meta strong {
  color: #0f172a;
}

.pd-short-desc {
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.75;
  color: #475569;
}

.pd-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.pd-content-box,
.pd-related-box {
  margin-top: 42px;
  padding: 28px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
}

.pd-content-box h2,
.pd-related-box h2 {
  margin: 0 0 18px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
  color: #0e1e3c;
}

.pd-long-content {
  font-size: 16px;
  line-height: 1.8;
  color: #475569;
}

@media (max-width: 1199px) {
  .pd-layout {
    grid-template-columns: 480px minmax(0, 1fr);
    gap: 28px;
  }

  .pd-media-col {
    max-width: 480px;
  }

  .pd-main-media img {
    height: 480px;
  }
}

@media (max-width: 991px) {
  .pd-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pd-media-col {
    max-width: 100%;
  }

  .pd-main-media img {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .pd-title {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .pd-page {
    padding: 22px 0 44px;
  }

  .pd-breadcrumb {
    margin-bottom: 18px;
    font-size: 13px;
  }

  .pd-title {
    font-size: 24px;
    margin-bottom: 14px;
  }

  .pd-meta,
  .pd-short-desc,
  .pd-long-content {
    font-size: 15px;
  }

  .pd-thumb-track {
    gap: 10px;
  }

  .pd-thumb-item {
    flex: 0 0 calc((100% - 20px) / 3);
    width: calc((100% - 20px) / 3);
    min-width: calc((100% - 20px) / 3);
    max-width: calc((100% - 20px) / 3);
  }

  .pd-content-box,
  .pd-related-box {
    margin-top: 30px;
    padding: 20px;
    border-radius: 16px;
  }

  .pd-content-box h2,
  .pd-related-box h2 {
    font-size: 20px;
  }
}

/* Product description - no outer box */
.pd-content-plain {
  margin-top: 42px;
}

.pd-content-plain h2 {
  margin: 0 0 18px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
  color: #0e1e3c;
}

/* Related products new style */
.pd-related-section {
  margin-top: 42px;
}

.pd-related-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.pd-related-head h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
  color: #0e1e3c;
}

.pd-related-view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #c69200;
  text-decoration: none;
}

.pd-related-view-all:hover {
  color: #a87900;
}

.pd-related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.pd-related-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.pd-related-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.pd-related-thumb {
  display: block;
  aspect-ratio: 1.35 / 1;
  overflow: hidden;
  background: #f3f4f6;
}

.pd-related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pd-related-body {
  padding: 12px 12px 14px;
}

.pd-related-title {
  margin: 0 0 6px;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 800;
}

.pd-related-title a {
  color: #0e1e3c;
  text-decoration: none;
}

.pd-related-title a:hover {
  color: #f0ab00;
}

.pd-related-desc {
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.5;
  color: #6b7280;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pd-related-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #c69200;
  text-decoration: none;
}

.pd-related-link:hover {
  color: #a87900;
}

@media (max-width: 1199px) {
  .pd-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .pd-content-plain,
  .pd-related-section {
    margin-top: 30px;
  }

  .pd-content-plain h2,
  .pd-related-head h2 {
    font-size: 20px;
  }

  .pd-related-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .pd-related-body {
    padding: 10px 10px 12px;
  }

  .pd-related-title {
    font-size: 13px;
  }

  .pd-related-desc {
    font-size: 11px;
  }

  .pd-related-view-all {
    font-size: 13px;
  }
}

input::placeholder,
textarea::placeholder {
  color: #b6c0cc;
  font-weight: 400;
  opacity: 0.7;
}

.header-language-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 18px;
  flex-shrink: 0;
}

.lang-btn {
  min-width: 42px;
  height: 36px;
  padding: 0 12px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #0f172a;
  border-radius: 10px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  transition: all 0.2s ease;
}

.lang-btn:hover,
.lang-btn.is-active {
  border-color: #fdbd09;
  background: #fff7e6;
  color: #0e1e3c;
}

.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

body {
  top: 0 !important;
}

.skiptranslate {
  font-size: 0 !important;
}

.goog-logo-link,
.goog-te-gadget span {
  display: none !important;
}

@media (max-width: 991px) {
  .header-language-switcher {
    display: none;
  }
}

.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

.skiptranslate iframe {
  display: none !important;
}

.goog-te-gadget {
  font-size: 0 !important;
}

.goog-logo-link,
.goog-te-gadget span {
  display: none !important;
}
