/* ============================================================
   style.css — Canton Fair 2026 | SimiGO
   Light Premium · Warm White + Sand + Vivid Orange
   Font: Plus Jakarta Sans
   ============================================================ */

/* ─── Google Font ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');

/* ─── Design Tokens ───────────────────────────────────────── */
:root {
  /* Palette — Light */
  --bg:          #f8f7f4;
  --bg-2:        #ffffff;
  --bg-3:        #f0ede8;
  --navy:        #0f172a;
  --navy-mid:    #2d3f55;
  --navy-light:  #3d5470;
  --navy-dark:   #0f1823;
  --orange:      #FF6B2B;
  --orange-dark: #e55a1a;
  --orange-light:#fff3ed;
  --orange-glow: rgba(255,107,43,0.15);
  --white:       #ffffff;
  --off-white:   #f8f7f4;
  --muted:       #6b7a8d;
  --muted2:      #9aa5b4;
  --text:        #0f172a;          /* slate-900 — sharp, modern */
  --text-2:      #334155;          /* slate-700 — subheadings */
  --text-3:      #64748b;          /* slate-500 — body secondary */
  --text-4:      #94a3b8;          /* slate-400 — captions, labels */
  --border:      rgba(255,107,43,0.18);
  --border-soft: rgba(15,23,42,0.07);
  --border-card: rgba(15,23,42,0.06);

  /* Glass → light card style */
  --glass-bg:     #ffffff;
  --glass-border: rgba(0,0,0,0.07);
  --glass-blur:   blur(0px);

  /* Shadows — softer, more refined on light */
  --shadow-sm:  0 1px 4px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.08), 0 8px 32px rgba(0,0,0,0.05);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.1), 0 24px 64px rgba(0,0,0,0.06);
  --shadow-orange: 0 6px 24px rgba(255,107,43,0.25), 0 2px 8px rgba(255,107,43,0.15);
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);

  --radius:     14px;
  --radius-sm:  8px;
}

/* ─── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Scrollbar ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--orange-dark); border-radius: 3px; }

/* ─── NAVIGATION ──────────────────────────────────────────── */
#main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 1rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
#main-nav.nav-scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 24px rgba(0,0,0,0.08);
  padding: 0.65rem 2.5rem;
}
.nav-logo {
  font-size: 1.5rem; font-weight: 900; letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--text) 30%, var(--orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em;
  color: var(--text-3); transition: color var(--transition);
  position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 100%;
  height: 2px; background: var(--orange);
  transition: right var(--transition);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: 0.5rem; }

/* Language buttons — Global nav style */
.lang-btn {
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  border: 1px solid var(--border-soft);
  background: transparent;
  color: var(--muted);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  cursor: pointer; font-family: inherit;
  transition: all var(--transition);
}
.lang-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255,107,43,0.06);
}
.lang-btn.lang-active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}

#menu-toggle {
  display: none; background: none; border: none;
  cursor: pointer; color: var(--text); font-size: 1.4rem;
}

/* Mobile menu */
#mobile-menu {
  display: none; flex-direction: column; gap: 0.75rem;
  position: fixed; top: 60px; left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1.5rem 2rem;
  z-index: 190; border-bottom: 1px solid var(--border-soft);
  transform: translateY(-110%);
  transition: transform var(--transition);
}
#mobile-menu.open { transform: translateY(0); display: flex; }
#mobile-menu a { font-size: 1rem; color: var(--text-2); font-weight: 600; }
#mobile-menu a:hover { color: var(--orange); }

/* ─── HERO ────────────────────────────────────────────────── */
.hero-section {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 9rem 2rem 5rem;
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 10%, rgba(255,107,43,0.06) 0%, transparent 60%),
    linear-gradient(160deg, #fff8f5 0%, var(--bg) 50%, #f5f0eb 100%);
}

/* Animated grid overlay */
.hero-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

/* Glow orb */
.hero-section::after {
  content: '';
  position: absolute; top: 20%; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,43,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-bg-overlay { display: none; }
.hero-particles   { display: none; }

.hero-content {
  position: relative; z-index: 2;
  max-width: 820px; margin: 0 auto;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 1.2rem;
  border: 1px solid var(--orange);
  border-radius: 999px;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.15em;
  color: var(--orange); text-transform: uppercase;
  background: var(--orange-light);
  margin-bottom: 1.75rem;
}
.hero-badge::before { content: '●'; font-size: 0.5rem; animation: pulse-dot 1.8s infinite; }
@keyframes pulse-dot {
  0%,100% { opacity: 1; } 50% { opacity: 0.3; }
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900; line-height: 1.1; letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  color: var(--text);
  letter-spacing: -0.025em;
}
.hero-slogan {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 700; letter-spacing: -0.01em;
  background: linear-gradient(135deg, var(--orange) 0%, #ffb347 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.25rem;
}
.hero-subtitle {
  font-size: 1.05rem; color: var(--text-3); letter-spacing: -0.005em;
  max-width: 580px; margin: 0 auto 2.5rem;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2.25rem; border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white); font-weight: 800; font-size: 0.88rem;
  letter-spacing: 0.02em; border: none; cursor: pointer; font-family: inherit;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(255,107,43,0.45); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2.25rem; border-radius: 999px;
  border: 1.5px solid rgba(0,0,0,0.2);
  color: var(--text); font-weight: 700; font-size: 0.88rem;
  background: rgba(0,0,0,0.03);
  cursor: pointer; font-family: inherit;
  transition: all var(--transition);
}
.btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255,107,43,0.06);
}

.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.scroll-dot {
  width: 20px; height: 32px; border-radius: 10px;
  border: 2px solid rgba(255,107,43,0.35);
  position: relative; overflow: hidden;
}
.scroll-dot::after {
  content: ''; position: absolute; top: 5px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 6px; border-radius: 2px;
  background: var(--orange);
  animation: scroll-bounce 1.8s infinite;
}
@keyframes scroll-bounce {
  0%  { top: 5px; opacity: 1; }
  80% { top: 16px; opacity: 0; }
  100%{ top: 5px; opacity: 0; }
}

/* ─── SECTION SHARED ──────────────────────────────────────── */
.section-pad { padding: 5.5rem 2rem; }

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 900; letter-spacing: -0.02em;
  color: var(--text);
  -webkit-background-clip: unset; -webkit-text-fill-color: unset;
  background-clip: unset; background: none;
  line-height: 1.2;
}
.section-divider {
  width: 52px; height: 4px; border-radius: 2px;
  background: linear-gradient(90deg, var(--orange), transparent);
  margin: 0.85rem auto;
}
.section-desc { color: var(--text-3); font-size: 1rem; max-width: 560px; margin: 0 auto; }

/* ─── STATS ───────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem; margin-top: 2.5rem;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem; text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-orange);
}
.stat-value {
  font-size: 2.2rem; font-weight: 900;
  color: var(--orange); line-height: 1;
}
.stat-label {
  font-size: 0.72rem; font-weight: 700;
  color: var(--text-3); margin-top: 0.45rem;
  text-transform: uppercase; letter-spacing: 0.09em;
}

/* ─── BRANDS ──────────────────────────────────────────────── */
.brand-card {
  background: var(--white);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; gap: 2rem; align-items: flex-start;
}
.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.brand-logo-wrap {
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  width: 90px; height: 90px; border-radius: 18px;
  border: 2px solid rgba(0,0,0,0.08);
  background: rgba(0,0,0,0.03);
}
.brand-logo-text {
  font-size: 1.1rem; font-weight: 900; letter-spacing: -0.02em;
}
.brand-uniq-text  { color: var(--orange); }
.brand-crenot-text { color: #a78bfa; }
.brand-info h3.brand-tagline {
  font-size: 0.82rem; font-weight: 700; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.08em;
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem;
}
.brand-products-list { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1.25rem; }
.brand-products-list li {
  font-size: 0.88rem; color: var(--text-2);
  display: flex; align-items: center; gap: 0.5rem;
}
.brand-products-list li::before {
  content: '→'; color: var(--orange); font-weight: 700;
}
.brand-shopee-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: #EE4D2D; color: #fff;
  padding: 0.45rem 1rem; border-radius: 999px;
  font-size: 0.78rem; font-weight: 700;
  transition: opacity var(--transition);
}
.brand-shopee-link:hover { opacity: 0.85; }

/* ─── PRODUCTS GRID ───────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

/* Product card — light */
.product-card {
  background: var(--white);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* Product image area — hover zoom */
.product-images {
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #f5f5f5;
  position: relative;
}
.product-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.product-card:hover .product-img {
  transform: scale(1.05);
}

.product-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: 0.9rem; }

.product-brand {
  display: inline-block;
  padding: 0.22rem 0.75rem; border-radius: 6px;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase;
}
.brand-uniq   { background: rgba(255,107,43,0.12); color: var(--orange); border: 1px solid rgba(255,107,43,0.25); }
.brand-crenot { background: rgba(167,139,250,0.1); color: #a78bfa;     border: 1px solid rgba(167,139,250,0.25); }

.product-name {
  font-size: 1.1rem; font-weight: 800; letter-spacing: -0.01em;
  color: var(--text); line-height: 1.25;
  letter-spacing: -0.015em;
}

/* Specs: 2-column grid */
.section-label {
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 0.5rem;
}
.product-specs .specs-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.3rem 1rem;
}
.spec-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; padding: 0.28rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.spec-key { color: var(--text-3); font-size: 0.76rem; }
.spec-val { font-weight: 700; color: var(--text-2); font-size: 0.78rem; }

/* Strengths */
.product-strengths ul { display: flex; flex-direction: column; gap: 0.3rem; }
.product-strengths li {
  font-size: 0.81rem; color: var(--text-3);
  padding-left: 1.2rem; position: relative; line-height: 1.4;
}
.product-strengths li::before {
  content: '✓'; position: absolute; left: 0; color: var(--orange); font-weight: 700;
}

/* Growth Potential badge */
.product-sales { margin-top: auto; padding-top: 0.75rem; border-top: 1px solid var(--border-soft); }
.sales-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.79rem; color: var(--text-3); padding: 0.4rem 0.75rem; border-radius: 8px;
  margin-bottom: 0.4rem; background: rgba(0,0,0,0.02);
}
.sales-row.forecast {
  background: rgba(255,107,43,0.06);
  border: 1px solid rgba(255,107,43,0.15);
}
.forecast-badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: var(--orange); color: var(--white);
  padding: 0.2rem 0.65rem; border-radius: 999px;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.04em;
}
.forecast-badge::before { content: '▲'; font-size: 0.55rem; }

/* Upgrade note */
.product-upgrade p {
  font-size: 0.79rem; color: var(--text-3); font-style: italic; line-height: 1.5;
}

/* ─── SOURCING ────────────────────────────────────────────── */
.sourcing-box {
  background: var(--white);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.sourcing-box:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.sourcing-box-title {
  font-size: 0.82rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--orange); margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.sourcing-list { display: flex; flex-direction: column; gap: 0.55rem; }
.sourcing-item {
  font-size: 0.86rem; color: var(--text-3);
  display: flex; align-items: center; gap: 0.6rem;
  transition: color var(--transition);
}
.sourcing-item:hover { color: var(--text); }
.sourcing-icon { color: var(--orange); font-size: 0.55rem; flex-shrink: 0; }

.req-list { display: flex; flex-direction: column; gap: 0.5rem; }
.req-item {
  font-size: 0.86rem; color: var(--text-3);
  padding-left: 1.25rem; position: relative; line-height: 1.45;
}
.req-item::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--orange); font-weight: 700;
}

.process-steps-wrap { display: flex; flex-direction: column; gap: 0.75rem; }
.process-step {
  display: flex; align-items: center; gap: 0.85rem;
}
.step-num {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white); font-weight: 900; font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-orange);
}
.step-label { font-size: 0.86rem; color: var(--text); font-weight: 600; }

/* ─── GALLERY ─────────────────────────────────────────────── */
.gallery-slider {
  position: relative; max-width: 960px; margin: 0 auto;
}
.gal-stage {
  position: relative; width: 100%; padding-bottom: 63%;
  overflow: hidden; border-radius: var(--radius);
  background: #f0f0f0;
  border: 1px solid var(--border-soft);
}
.gal-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 0.6s ease;
}
.gal-slide.active { opacity: 1; }
.gal-slide img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--radius);
}
.gal-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.12);
  color: var(--orange); font-size: 1.5rem;
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.gal-arrow:hover { background: var(--orange-light); box-shadow: var(--shadow-orange); }
#gal-prev { left: -23px; }
#gal-next { right: -23px; }
#gal-dots {
  display: flex; justify-content: center;
  gap: 6px; margin-top: 1.25rem; flex-wrap: wrap;
}
.gal-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(0,0,0,0.12); border: none; cursor: pointer;
  transition: background var(--transition), transform var(--transition), width var(--transition);
}
.gal-dot.active {
  background: var(--orange); transform: scale(1.3);
  width: 20px; border-radius: 4px;
}

/* ─── CONTACT ─────────────────────────────────────────────── */
.contact-card {
  background: var(--white);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  padding: 2.25rem; text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.contact-icon { font-size: 2.25rem; margin-bottom: 0.85rem; }
.contact-label {
  font-size: 0.72rem; font-weight: 800; color: var(--orange);
  text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.5rem;
}
.contact-value { font-size: 0.88rem; color: var(--text-3); line-height: 1.6; }
.contact-value a { transition: color var(--transition); }
.contact-value a:hover { color: var(--orange); }

.shopee-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #EE4D2D; color: #fff;
  padding: 0.6rem 1.5rem; border-radius: 999px;
  font-size: 0.85rem; font-weight: 700;
  transition: opacity var(--transition), transform var(--transition);
  box-shadow: 0 4px 16px rgba(238,77,45,0.25);
}
.shopee-badge:hover { opacity: 0.9; transform: translateY(-2px); }
.shopee-icon { font-size: 1rem; }

/* ─── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: #1a2332;
  border-top: 1px solid rgba(255,107,43,0.15);
  padding: 2.5rem 2rem;
}
.footer-inner {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between; gap: 1rem;
}
.footer-logo {
  font-size: 1.3rem; font-weight: 900;
  background: linear-gradient(135deg, var(--white) 30%, var(--orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-brand-badge {
  padding: 0.25rem 0.75rem; border-radius: 6px;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em;
}
.brand-uniq-badge   { background: rgba(255,107,43,0.15); color: var(--orange); border: 1px solid rgba(255,107,43,0.3); }
.brand-crenot-badge { background: rgba(167,139,250,0.12); color: #a78bfa;     border: 1px solid rgba(167,139,250,0.3); }

/* ─── AOS OVERRIDES ───────────────────────────────────────── */
[data-aos] { transition-timing-function: cubic-bezier(0.4,0,0.2,1) !important; }

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  #menu-toggle { display: block; }
  .section-pad { padding: 3.5rem 1.25rem; }
  .hero-section { padding: 7rem 1.25rem 4rem; }
  #gal-prev { left: -14px; }
  #gal-next { right: -14px; }
  .brand-card { flex-direction: column; text-align: center; align-items: center; }
  .brand-products-list li { justify-content: center; }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .products-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── LOGO IMAGES ─────────────────────────────────────────── */

/* Nav logo — on light bg, darken white logo */
.nav-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(12%) sepia(15%) saturate(1200%) hue-rotate(180deg) brightness(95%);
  transition: opacity var(--transition);
}
.nav-logo { display: flex; align-items: center; }
.nav-logo:hover .nav-logo-img { opacity: 0.85; }

/* Footer logo — keep light on dark footer */
.footer-logo-img {
  height: 30px;
  width: auto;
  object-fit: contain;
  filter: none;
  opacity: 0.9;
}
.footer-logo { display: flex; align-items: center; }

/* Brand card logo wrapper */
.brand-logo-wrap {
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(0,0,0,0.03);
  overflow: hidden;
  flex-shrink: 0;
  padding: 12px;
}

/* UNIQ — logo chữ trắng → bg gradient cam đậm */
.brand-logo-wrap.wrap-uniq {
  background: linear-gradient(135deg, #c44a00, #FF6B2B);
  border-color: rgba(255,107,43,0.4);
}

/* CRENOT — logo chữ trắng → bg tối để hiện rõ */
.brand-logo-wrap.wrap-crenot {
  background: linear-gradient(135deg, #1e1b4b, #312e81);
  border-color: rgba(139,92,246,0.35);
}
.brand-logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* SimiGO & Crenot — keep original colors */
.brand-logo-img.logo-simigo,
.brand-logo-img.logo-crenot {
  filter: none;
}

/* UNIQ — keep original on white bg */
.brand-logo-img.logo-uniq {
  filter: none;
}

/* ─── PLATFORM STATS ──────────────────────────────────────── */
.platform-stats {
  display: flex; flex-direction: column; gap: 0.4rem;
  background: rgba(0,0,0,0.02);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
}
.platform-row {
  display: flex; align-items: center; gap: 0.55rem;
  font-size: 0.8rem;
}
.platform-icon { font-size: 0.95rem; flex-shrink: 0; }
.platform-label { color: var(--text-3); flex: 1; }
.platform-val { font-weight: 700; color: var(--text-2); }

/* ─── GROWTH PROGRESS BAR ─────────────────────────────────── */
.product-growth { display: flex; flex-direction: column; gap: 0.5rem; }
.growth-meta {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.76rem; color: var(--text-3);
}
.growth-badge {
  background: var(--orange);
  color: var(--white);
  padding: 0.18rem 0.65rem; border-radius: 999px;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.04em;
}
.progress-track {
  width: 100%; height: 7px;
  background: rgba(0,0,0,0.07);
  border-radius: 999px; overflow: hidden;
}
.progress-bar {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--orange-dark), var(--orange), #ffb347);
  border-radius: 999px;
  box-shadow: 0 0 8px rgba(255,107,43,0.35);
}
.progress-label {
  font-size: 0.75rem; color: var(--text-4); text-align: right;
}
.progress-label strong { color: var(--orange); }

/* ─── OEM BLOCK ───────────────────────────────────────────── */
.product-oem {
  background: rgba(255,107,43,0.05);
  border: 1px solid rgba(255,107,43,0.12);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
}
.product-oem p {
  font-size: 0.78rem; color: var(--text-3); line-height: 1.55;
}

/* ─── CTA BUTTONS ─────────────────────────────────────────── */
.card-ctas {
  display: flex; gap: 0.6rem; flex-wrap: wrap;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-soft);
  margin-top: auto;
}
.cta-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.5rem 1rem; border-radius: 999px;
  font-size: 0.76rem; font-weight: 700; font-family: inherit;
  cursor: pointer; transition: all var(--transition);
  text-decoration: none; flex: 1; justify-content: center;
}
.cta-wechat {
  background: rgba(9,185,84,0.1);
  border: 1px solid rgba(9,185,84,0.3);
  color: #09b954;
}
.cta-wechat:hover {
  background: rgba(9,185,84,0.18);
  box-shadow: 0 4px 14px rgba(9,185,84,0.2);
}
.cta-shopee {
  background: rgba(238,77,45,0.1);
  border: 1px solid rgba(238,77,45,0.3);
  color: #EE4D2D;
}
.cta-shopee:hover {
  background: rgba(238,77,45,0.18);
  box-shadow: 0 4px 14px rgba(238,77,45,0.2);
}

/* ─── PRODUCT UPGRADE note ────────────────────────────────── */
.product-upgrade p {
  font-size: 0.79rem; color: var(--text-3); font-style: italic; line-height: 1.5;
  padding: 0.6rem 0.85rem;
  background: rgba(0,0,0,0.02);
  border-left: 2px solid var(--orange);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ─── REVENUE BADGES ──────────────────────────────────────── */
.revenue-badges {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.25rem;
}
.rev-badge {
  display: inline-flex; align-items: center; gap: 0.3rem;
  padding: 0.25rem 0.75rem; border-radius: 999px;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.03em;
}
.rev-gold {
  background: rgba(255,183,27,0.12);
  border: 1px solid rgba(255,183,27,0.35);
  color: #d49600;
}
.rev-navy {
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.1);
  color: var(--text);
}
