/* ===================================================
   TIGER — components.css  |  Nav · Cards · Footer
   =================================================== */

/* ── Navbar ─────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: var(--nav-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--nav-border);
  padding: 0 var(--sp-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background var(--t-base);
  will-change: transform;
}

.navbar.scrolled { box-shadow: var(--shadow-md); }
.navbar.nav-hidden { transform: translateY(-100%); }

/* Spacer so content doesn't hide under fixed nav */
.nav-spacer { height: var(--nav-h); }

.nav-inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 10px; cursor: pointer; flex-shrink: 0; text-decoration: none; max-width: 160px; overflow: hidden; }
.nav-logo-img,
.nav-logo-img-dark { height: 34px; width: auto; max-width: 150px; object-fit: contain; display: block; flex-shrink: 0; }
.nav-logo-img-dark { display: none; }

[data-theme="dark"] .nav-logo-img       { display: none; }
[data-theme="dark"] .nav-logo-img-dark  { display: block; }

/* Search */
.nav-search { flex: 1; max-width: 460px; position: relative; }
.nav-search-input {
  width: 100%; height: 40px;
  padding: 0 40px 0 42px;
  background: var(--c-bg2);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-full);
  color: var(--c-text);
  font-size: 14px; outline: none;
  transition: var(--t-base);
}
.nav-search-input:focus { border-color: var(--c-accent); box-shadow: 0 0 0 3px var(--c-accent-dim); background: var(--c-bg); }
.nav-search-input::placeholder { color: var(--c-text3); }
.nav-search-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--c-text3); font-size: 15px; pointer-events: none; }
.nav-search-shortcut { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); font-size: 11px; color: var(--c-text3); background: var(--c-bg3); padding: 2px 6px; border-radius: 4px; border: 1px solid var(--c-border); pointer-events: none; }

/* Search dropdown */
.search-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  z-index: 999; display: none;
}
.search-dropdown.open { display: block; }
.sd-item { display: flex; align-items: center; gap: 12px; padding: 12px 16px; cursor: pointer; border-bottom: 1px solid var(--c-border); transition: background var(--t-fast); }
.sd-item:last-child { border-bottom: none; }
.sd-item:hover { background: var(--c-bg2); }
.sd-thumb { width: 40px; height: 40px; border-radius: var(--r-sm); background: var(--c-bg2); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; overflow: hidden; }
.sd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.sd-name { font-size: 14px; font-weight: 600; line-height: 1.3; }
.sd-meta { font-size: 12px; color: var(--c-text2); margin-top: 1px; }
.sd-highlight { color: var(--c-accent); font-weight: 700; }
.sd-empty { padding: 20px; text-align: center; font-size: 14px; color: var(--c-text2); }

/* Nav right */
.nav-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.nav-dist-btn {
  display: flex; align-items: center; gap: 7px;
  padding: 9px 16px; background: var(--c-accent-dim); color: var(--c-accent);
  font-weight: 700; font-size: 13px; border-radius: var(--r-full);
  cursor: pointer; transition: var(--t-base); border: 1.5px solid rgba(55,181,168,0.35); white-space: nowrap;
}
.nav-dist-btn:hover { background: var(--c-accent); color: #fff; transform: translateY(-1px); }

.nav-wa-btn {
  display: flex; align-items: center; gap: 7px;
  padding: 9px 18px; background: var(--c-wa); color: #fff;
  font-weight: 700; font-size: 13px; border-radius: var(--r-full);
  cursor: pointer; transition: var(--t-base); border: none; white-space: nowrap;
}
.nav-wa-btn:hover { background: var(--c-wa-dark); transform: translateY(-1px); }

/* Dark mode toggle */
.theme-toggle {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--c-border);
  background: var(--c-bg2);
  color: var(--c-text2);
  font-size: 16px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--t-base);
  flex-shrink: 0;
}
.theme-toggle:hover { border-color: var(--c-accent); color: var(--c-accent); background: var(--c-accent-dim); }
.theme-toggle .icon-sun  { display: none; }
.theme-toggle .icon-moon { display: block; }
[data-theme="dark"] .theme-toggle .icon-sun  { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--c-text); border-radius: 2px; transition: var(--t-base); }

/* ── Mobile Drawer ───────────────────────────────────── */
.mob-drawer { position: fixed; inset: 0; z-index: 1000; display: none; }
.mob-drawer.open { display: block; }
.mob-drawer-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); }
.mob-drawer-panel {
  position: absolute; top: 0; left: 0; bottom: 0; width: 288px;
  background: var(--c-bg);
  border-right: 1px solid var(--c-border);
  padding: 24px; overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.mob-drawer.open .mob-drawer-panel { transform: translateX(0); }
.mob-drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.mob-close { background: none; border: none; color: var(--c-text2); font-size: 22px; cursor: pointer; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: var(--r-sm); transition: var(--t-fast); }
.mob-close:hover { background: var(--c-bg2); color: var(--c-text); }
.mob-search { width: 100%; padding: 10px 14px; background: var(--c-bg2); border: 1.5px solid var(--c-border); border-radius: var(--r-md); color: var(--c-text); font-size: 14px; outline: none; margin-bottom: 20px; }
.mob-search:focus { border-color: var(--c-accent); }
.mob-section-label { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--c-text3); margin-bottom: 8px; }
.mob-nav-item { display: flex; align-items: center; gap: 12px; padding: 11px 0; font-size: 15px; color: var(--c-text2); cursor: pointer; border-bottom: 1px solid var(--c-border); transition: color var(--t-fast); }
.mob-nav-item:hover { color: var(--c-accent); }
.mob-nav-item .em { font-size: 20px; width: 26px; flex-shrink: 0; }
.mob-cat-icon { width: 26px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--c-accent); }
.mob-extra-links { margin-top: 20px; }
.mob-extra-link { display: block; padding: 9px 0; font-size: 14px; color: var(--c-text2); cursor: pointer; border-bottom: 1px solid var(--c-border); transition: color var(--t-fast); width: 100%; text-align: left; background: none; font-family: inherit; }
.mob-extra-link:hover { color: var(--c-accent); }
.mob-dist-link { background: var(--c-accent); color: #fff !important; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: 8px; border-radius: var(--r-full); padding: 11px 20px; margin: 4px 0 12px; border-bottom: none !important; text-align: center; }
.mob-dist-link:hover { color: #fff !important; opacity: 0.9; }

/* ── Category Cards ──────────────────────────────────── */
.categories-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }

.cat-card {
  position: relative;
  background: var(--c-bg);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 28px 16px 22px;
  text-align: center; cursor: pointer;
  overflow: hidden;
  transition: var(--t-base);
  box-shadow: var(--shadow-card);
}
.cat-card::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 0%, var(--c-accent-dim) 0%, transparent 65%); opacity: 0; transition: opacity var(--t-base); border-radius: inherit; }
.cat-card:hover { border-color: var(--c-accent); box-shadow: var(--shadow-glow), var(--shadow-md); transform: translateY(-5px); }
.cat-card:hover::after { opacity: 1; }
.cat-emoji { font-size: 38px; margin-bottom: 10px; display: block; transition: transform var(--t-base); position: relative; z-index: 1; }
.cat-card:hover .cat-emoji { transform: scale(1.15) rotate(-5deg); }

/* Category product image */
.cat-img-wrap {
  width: 80px; height: 80px;
  margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-bg2);
}
.cat-img {
  width: 100%; height: 100%;
  object-fit: contain;
  transition: transform var(--t-base);
}
.cat-card:hover .cat-img { transform: scale(1.12); }

.cat-name { font-family: var(--f-head); font-size: 14px; font-weight: 700; margin-bottom: 4px; position: relative; z-index: 1; }
.cat-count { font-size: 12px; color: var(--c-text3); position: relative; z-index: 1; }
.cat-desc-small { font-size: 12px; color: var(--c-text2); margin-top: 8px; line-height: 1.5; position: relative; z-index: 1; }

/* Mega category variant — only 3 tiles, larger */
.categories-grid:has(.mega-cat) { grid-template-columns: repeat(3, 1fr); }
.mega-cat { padding: 40px 24px 32px; }
.mega-cat .cat-emoji { font-size: 52px; margin-bottom: 14px; }
.mega-cat .cat-img-wrap { width: 110px; height: 110px; margin-bottom: 16px; border-radius: var(--r-xl); }
.mega-cat .cat-name { font-size: 20px; margin-bottom: 6px; }
.mega-cat .cat-count { font-size: 13px; }
@media(max-width:768px) { .categories-grid:has(.mega-cat) { grid-template-columns: 1fr; } }

/* ── Sub-category tiles (accessories hub) ─────────────── */
.subcat-chips {
  display: flex; flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.subcat-chip {
  display: flex; flex-direction: column; align-items: center;
  gap: 6px; padding: 10px 10px 8px;
  min-width: 68px;
  border-radius: var(--r-md);
  border: 1.5px solid var(--c-border);
  background: var(--c-bg);
  color: var(--c-text2);
  cursor: pointer;
  transition: var(--t-base);
}
.subcat-chip:hover {
  border-color: var(--c-accent);
  background: var(--c-accent-dim);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.subcat-chip-icon {
  width: 38px; height: 38px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, rgba(55,181,168,0.16) 0%, rgba(55,181,168,0.06) 100%);
  border: 1.5px solid rgba(55,181,168,0.28);
  display: flex; align-items: center; justify-content: center;
  transition: var(--t-base);
}
.subcat-chip-icon .cat-ti-icon { font-size: 18px; }
.subcat-chip:hover .subcat-chip-icon {
  background: linear-gradient(135deg, rgba(55,181,168,0.26) 0%, rgba(55,181,168,0.12) 100%);
  border-color: rgba(55,181,168,0.55);
  box-shadow: 0 4px 12px rgba(55,181,168,0.18);
}
.subcat-chip-name {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.01em; text-align: center;
  line-height: 1.25; color: var(--c-text2);
  transition: color var(--t-fast);
}
.subcat-chip:hover .subcat-chip-name { color: var(--c-accent); }
/* Active state */
.subcat-chip.active {
  border-color: var(--c-accent);
  background: var(--c-accent-dim);
}
.subcat-chip.active .subcat-chip-icon {
  background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent2) 100%);
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(55,181,168,0.3);
}
.subcat-chip.active .subcat-chip-icon .cat-ti-icon { color: #0a2421; }
.subcat-chip.active .subcat-chip-name { color: var(--c-accent); }

/* ── Product Cards ───────────────────────────────────── */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }

.prod-card {
  background: var(--c-bg);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-xl);
  overflow: hidden; cursor: pointer;
  transition: var(--t-base);
  display: flex; flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-card);
  will-change: transform;
  contain: layout style;
}
.prod-card:hover { border-color: var(--c-accent); transform: translateY(-6px); box-shadow: var(--shadow-glow), var(--shadow-md); }
.prod-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--c-accent), var(--c-accent2)); opacity: 0; transition: opacity var(--t-base); z-index: 2; }
.prod-card:hover::before { opacity: 1; }

.prod-img-wrap { position: relative; aspect-ratio: 1/1; overflow: hidden; background: #fff; }
.prod-img { width: 100%; height: 100%; object-fit: contain; padding: 10px; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.prod-card:hover .prod-img { transform: scale(1.05); }

.prod-img-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; background: var(--c-bg2); }
.prod-img-placeholder .ph-icon { font-size: 48px; opacity: 0.25; }
.prod-img-placeholder .ph-model { font-size: 12px; font-weight: 700; color: var(--c-text3); font-family: var(--f-head); letter-spacing: 0.05em; }

.prod-badge { position: absolute; top: 10px; left: 10px; z-index: 3; }

.prod-info { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 4px; }
.prod-brand { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--c-accent); }
.prod-name { font-family: var(--f-head); font-size: 15px; font-weight: 700; line-height: 1.3; color: var(--c-text); }
.prod-model { font-size: 12px; color: var(--c-text3); margin-top: 2px; }
.prod-desc-snippet { font-size: 13px; color: var(--c-text2); margin-top: 6px; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.prod-card-foot { padding: 12px 16px; border-top: 1px solid var(--c-border); display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.btn-card-view { font-size: 13px; font-weight: 600; color: var(--c-accent); display: flex; align-items: center; gap: 4px; transition: gap var(--t-fast); }
.prod-card:hover .btn-card-view { gap: 8px; }

/* ── Why TIGER Section (About page) ──────────────────── */
.why-tiger-section {
  background: var(--c-bg2);
  border-top: 1px solid var(--c-border);
  padding: 72px 0 80px;
}
.why-tiger-header { text-align: center; margin-bottom: 48px; }
.why-tiger-header .section-title { font-size: clamp(26px, 4vw, 40px); margin: 8px 0 0; }
.why-tiger-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.wt-card {
  background: var(--c-bg);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 36px 24px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
.wt-card::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% -10%, rgba(55,181,168,0.10) 0%, transparent 65%);
  opacity: 0; transition: opacity 0.3s ease; pointer-events: none;
}
.wt-card:hover { transform: translateY(-6px); border-color: var(--c-accent); box-shadow: 0 16px 48px rgba(55,181,168,0.14); }
.wt-card:hover::after { opacity: 1; }
.wt-icon-wrap {
  width: 68px; height: 68px;
  background: var(--c-accent-dim);
  border: 1.5px solid rgba(55,181,168,0.30);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px; color: var(--c-accent);
  transition: background 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
}
.wt-card:hover .wt-icon-wrap { background: rgba(55,181,168,0.18); border-color: var(--c-accent); transform: scale(1.08); }
.wt-stat { font-family: var(--f-head); font-size: 32px; font-weight: 800; color: var(--c-accent); line-height: 1; margin-bottom: 4px; letter-spacing: -0.02em; }
.wt-title { font-family: var(--f-head); font-size: 14px; font-weight: 700; color: var(--c-text); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.06em; }
.wt-desc { font-size: 12.5px; color: var(--c-text2); line-height: 1.65; }
.wt-body { display: contents; }
@media(max-width: 900px) { .why-tiger-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media(max-width: 640px) {
  .why-tiger-section { padding: 48px 0 56px; }
  .why-tiger-grid { grid-template-columns: 1fr; gap: 12px; }
  .wt-card { padding: 18px 20px; display: flex; flex-direction: row; align-items: center; gap: 16px; text-align: left; }
  .wt-card::after { background: radial-gradient(circle at -10% 50%, rgba(55,181,168,0.10) 0%, transparent 65%); }
  .wt-body { display: flex !important; flex-direction: column; flex: 1; min-width: 0; }
  .wt-icon-wrap { width: 52px !important; height: 52px !important; font-size: 22px !important; border-radius: 14px !important; margin: 0 !important; flex-shrink: 0; }
  .wt-stat { font-size: 26px; margin-bottom: 2px; }
  .wt-title { font-size: 11px; margin-bottom: 4px; }
  .wt-desc { font-size: 12px; line-height: 1.55; }
}

/* ── Page Hero ───────────────────────────────────────── */
.page-hero {
  background: var(--c-bg2);
  border-bottom: 1px solid var(--c-border);
  padding: 52px var(--sp-lg) 44px;
  position: relative; overflow: hidden;
}
.page-hero::before { content: ''; position: absolute; top: -40%; right: -5%; width: 400px; height: 400px; background: radial-gradient(circle, var(--c-accent-dim) 0%, transparent 70%); pointer-events: none; }
.page-hero-inner { max-width: var(--max-w); margin: 0 auto; }
.page-hero-row { display: flex; align-items: center; gap: 16px; margin: 12px 0 6px; }
.page-hero-icon { font-size: 40px; }
.page-hero-icon-box .cat-icon-box { width: 64px; height: 64px; margin: 0; }
.page-hero-title { font-size: clamp(28px, 4vw, 48px); }
.page-hero-desc { font-size: 15px; color: var(--c-text2); }

/* ── Filter Bar ──────────────────────────────────────── */
.filter-bar { display: flex; align-items: center; gap: 12px; padding: 20px 0; border-bottom: 1px solid var(--c-border); flex-wrap: wrap; }
.filter-search-wrap { position: relative; }
.filter-search { height: 38px; padding: 0 14px 0 36px; background: var(--c-bg2); border: 1.5px solid var(--c-border); border-radius: var(--r-md); color: var(--c-text); font-size: 13px; outline: none; width: 220px; transition: var(--t-base); }
.filter-search:focus { border-color: var(--c-accent); background: var(--c-bg); }
.filter-search::placeholder { color: var(--c-text3); }
.filter-search-icon { position: absolute; left: 10px; top: 50%; transform: translateY(-50%); color: var(--c-text3); font-size: 14px; }
.filter-count { margin-left: auto; font-size: 13px; color: var(--c-text2); }

/* ── Product Detail ──────────────────────────────────── */
.prod-detail-layout { display: grid; grid-template-columns: 46% 54%; gap: 20px; align-items: start; padding-bottom: 48px; }

.gallery-col { position: sticky; top: calc(var(--nav-h) + 20px); }
.gallery-main-wrap { aspect-ratio: 1; max-height: calc(100vh - var(--nav-h) - 120px); max-width: calc(100vh - var(--nav-h) - 120px); border-radius: var(--r-xl); overflow: hidden; background: #fff; border: 1.5px solid var(--c-border); cursor: zoom-in; position: relative; margin-bottom: 12px; box-shadow: var(--shadow-md); }
.gallery-main-img { width: 100%; height: 100%; object-fit: contain; padding: 16px; transition: transform 0.4s ease; }
.gallery-main-wrap:hover .gallery-main-img { transform: scale(1.04); }
.gallery-ph { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; background: var(--c-bg2); }
.gallery-ph-icon { font-size: 80px; opacity: 0.2; }
.gallery-ph-model { font-family: var(--f-head); font-size: 24px; font-weight: 800; color: var(--c-text3); letter-spacing: 0.1em; }
.gallery-ph-brand { font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-accent); opacity: 0.7; }
.gallery-thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.gallery-thumb { width: 72px; height: 72px; border-radius: var(--r-md); overflow: hidden; border: 2px solid var(--c-border); cursor: pointer; transition: var(--t-fast); flex-shrink: 0; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.active { border-color: var(--c-accent); }
.gallery-thumb:hover { border-color: var(--c-accent-glow); }
/* Video in main gallery */
.gallery-main-video { width: 100%; height: 100%; object-fit: contain; display: block; background: #000; border-radius: var(--r-xl); }
/* Video thumbnail */
.gallery-thumb-video { position: relative; background: #0a0a0a; }
.gallery-thumb-video video { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
.gallery-vid-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.42); transition: background var(--t-fast); }
.gallery-thumb-video:hover .gallery-vid-play,
.gallery-thumb-video.active .gallery-vid-play { background: rgba(55,181,168,0.45); }
.gallery-vid-play span { font-size: 18px; color: #fff; line-height: 1; text-shadow: 0 1px 4px rgba(0,0,0,0.5); }

/* Info panel */
.prod-detail-brand { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-accent); margin-bottom: 8px; }
.prod-detail-title { font-family: var(--f-head); font-size: clamp(24px, 3vw, 40px); font-weight: 800; line-height: 1.15; margin-bottom: 8px; }
.prod-detail-model { font-size: 14px; color: var(--c-text2); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.prod-detail-model span { color: var(--c-text3); }
.prod-desc-full { font-size: 15px; color: var(--c-text2); line-height: 1.85; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--c-border); white-space: pre-line; }

.order-cta { margin-bottom: 28px; }
.order-cta-title { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-text3); margin-bottom: 12px; }

/* Specs */
.specs-block { margin-top: 28px; }
.specs-block-title { font-size: 18px; font-weight: 700; margin-bottom: 14px; }
.specs-table { width: 100%; border-collapse: collapse; border-radius: var(--r-md); overflow: hidden; border: 1.5px solid var(--c-border); }
.specs-table tr { transition: background var(--t-fast); }
.specs-table tr:nth-child(odd) { background: var(--c-bg2); }
.specs-table tr:nth-child(even) { background: var(--c-bg); }
.specs-table tr:hover { background: var(--c-accent-dim); }
.specs-table td { padding: 11px 16px; font-size: 14px; border-bottom: 1px solid var(--c-border); }
.specs-table tr:last-child td { border-bottom: none; }
.specs-table .sk { font-weight: 600; color: var(--c-text2); width: 42%; }
.specs-table .sv { color: var(--c-text); }

/* Related products */
.related-section { padding: 60px 0; border-top: 1px solid var(--c-border); }
.related-strip {
  display: flex; gap: 16px;
  overflow-x: auto; overflow-y: hidden; padding-bottom: 12px;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}
.related-strip::-webkit-scrollbar { height: 4px; }
.related-strip::-webkit-scrollbar-track { background: var(--c-bg2); border-radius: 2px; }
.related-strip::-webkit-scrollbar-thumb { background: var(--c-accent); border-radius: 2px; }
.related-strip .prod-card { min-width: 220px; max-width: 220px; flex-shrink: 0; scroll-snap-align: start; }

/* Video player */
.prod-video { width: 100%; border-radius: var(--r-lg); overflow: hidden; border: 1.5px solid var(--c-border); background: #000; margin-top: 12px; }
.prod-video video { width: 100%; display: block; }

/* ── Unboxing Videos Section ─────────────────────────── */
.unboxing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.unboxing-card {
  background: var(--c-bg);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--t-base);
}
.unboxing-card:hover { border-color: var(--c-accent); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.unboxing-video-wrap { position: relative; aspect-ratio: 16/9; background: var(--c-bg3); overflow: hidden; }
.unboxing-video-wrap video { width: 100%; height: 100%; object-fit: cover; display: block; }
.unboxing-info { padding: 14px 16px; }
.unboxing-title { font-weight: 700; font-size: 14px; color: var(--c-text); }
.unboxing-badge { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; color: var(--c-accent); margin-top: 4px; }

/* ── Search Page ─────────────────────────────────────── */
.search-page-bar { position: relative; margin-bottom: 32px; }
.search-page-input { width: 100%; height: 56px; padding: 0 20px 0 52px; background: var(--c-bg2); border: 1.5px solid var(--c-border); border-radius: var(--r-full); color: var(--c-text); font-size: 16px; outline: none; transition: var(--t-base); }
.search-page-input:focus { border-color: var(--c-accent); box-shadow: 0 0 0 4px var(--c-accent-dim); background: var(--c-bg); }
.search-page-input::placeholder { color: var(--c-text3); }
.search-page-icon { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); font-size: 20px; color: var(--c-text3); }

/* ── Lightbox ────────────────────────────────────────── */
.lightbox { position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.92); display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: var(--r-md); }
.lightbox-close { position: absolute; top: 20px; right: 20px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: #fff; font-size: 20px; width: 44px; height: 44px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--t-fast); }
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* ── Footer ──────────────────────────────────────────── */
footer { background: var(--c-bg2); border-top: 1px solid var(--c-border); padding: 72px var(--sp-lg) 28px; margin-top: auto; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--c-border); }
.footer-logo-img,
.footer-logo-img-dark { height: 30px; width: auto; max-width: 160px; object-fit: contain; margin-bottom: 14px; display: block; }
.footer-logo-img-dark { display: none; }
[data-theme="dark"] .footer-logo-img      { display: none; }
[data-theme="dark"] .footer-logo-img-dark { display: block; }
.footer-brand-text { font-size: 14px; color: var(--c-text2); line-height: 1.75; margin-bottom: 24px; max-width: 300px; }
.footer-wa-btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; background: var(--c-wa-dim); border: 1px solid rgba(37,211,102,0.3); color: var(--c-wa); font-size: 13px; font-weight: 700; border-radius: var(--r-full); cursor: pointer; transition: var(--t-base); }
.footer-wa-btn:hover { background: rgba(37,211,102,0.2); }
.footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--c-text3); margin-bottom: 18px; }
.footer-link { display: block; font-size: 14px; color: var(--c-text2); cursor: pointer; transition: color var(--t-fast); padding: 5px 0; }
.footer-link:hover { color: var(--c-accent); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: var(--c-text3); flex-wrap: wrap; gap: 12px; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-link { cursor: pointer; transition: color var(--t-fast); }
.footer-bottom-link:hover { color: var(--c-accent); }

/* ── Floating WA ─────────────────────────────────────── */
.wa-float { position: fixed; bottom: 28px; right: 28px; width: 58px; height: 58px; background: var(--c-wa); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 26px; color: #fff; cursor: pointer; z-index: 800; box-shadow: var(--shadow-wa); transition: var(--t-base); text-decoration: none; }
.wa-float:hover { transform: scale(1.12); box-shadow: 0 8px 32px rgba(37,211,102,0.55); }

/* ── WhatsApp Chat Widget ────────────────────────────── */
.wa-widget {
  position: fixed; bottom: 100px; right: 28px;
  width: 320px;
  background: var(--c-bg);
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  border: 1px solid var(--c-border);
  z-index: 820;
  overflow: hidden;
  transform: translateY(20px) scale(0.95);
  opacity: 0; pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease;
}
.wa-widget.open { transform: translateY(0) scale(1); opacity: 1; pointer-events: all; }
.wa-widget-header {
  background: var(--c-wa);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
}
.wa-widget-avatar {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(255,255,255,0.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.wa-widget-name { font-weight: 700; font-size: 15px; color: #fff; line-height: 1.2; }
.wa-widget-status { font-size: 11px; color: rgba(255,255,255,0.85); margin-top: 1px; }
.wa-widget-close-btn {
  margin-left: auto; background: none; border: none;
  color: #fff; font-size: 16px; cursor: pointer;
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0.75; flex-shrink: 0; transition: var(--t-fast);
}
.wa-widget-close-btn:hover { background: rgba(255,255,255,0.2); opacity: 1; }
.wa-widget-body {
  padding: 18px 18px 12px;
  background: #ece5dd;
  display: flex; flex-direction: column; gap: 8px;
}
[data-theme="dark"] .wa-widget-body { background: var(--c-bg2); }
.wa-widget-bubble {
  background: #fff; color: #1a1a1a;
  border-radius: 2px 12px 12px 12px;
  padding: 10px 14px;
  font-size: 14px; line-height: 1.55;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  max-width: 92%;
}
[data-theme="dark"] .wa-widget-bubble { background: var(--c-bg3); color: var(--c-text); }
.wa-widget-time { font-size: 10px; color: #999; text-align: right; margin-top: 4px; }
.wa-widget-footer { padding: 14px 18px 18px; }
.wa-widget-start-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 13px 20px;
  background: var(--c-wa); color: #fff;
  font-weight: 700; font-size: 14px;
  border-radius: var(--r-full);
  text-decoration: none;
  transition: var(--t-base);
}
.wa-widget-start-btn:hover { background: var(--c-wa-dark); transform: translateY(-1px); }
@media (max-width: 400px) {
  .wa-widget { width: calc(100vw - 32px); right: 16px; bottom: 90px; }
}

/* ── Toast ───────────────────────────────────────────── */
#toast { position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(60px); background: var(--c-bg); border: 1px solid var(--c-border); border-radius: var(--r-full); padding: 12px 24px; font-size: 14px; font-weight: 500; z-index: 9999; opacity: 0; transition: transform 0.3s ease, opacity 0.3s ease; white-space: nowrap; box-shadow: var(--shadow-md); pointer-events: none; color: var(--c-text); }
#toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── Back to Top — circular progress ring ─────────────── */
#back-top {
  position: fixed; bottom: 28px; left: 28px;
  width: 52px; height: 52px;
  background: var(--c-bg); border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 800;
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: var(--shadow-md); padding: 0;
}
#back-top.show { opacity: 1; transform: translateY(0); }
#back-top:hover .back-top-fill { filter: brightness(1.2); }
.back-top-svg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  transform: rotate(-90deg);
}
.back-top-track { fill: none; stroke: var(--c-border); stroke-width: 2.5; }
.back-top-fill {
  fill: none; stroke: var(--c-accent); stroke-width: 2.5;
  stroke-dasharray: 94.25; stroke-dashoffset: 94.25;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.15s linear;
}
.back-top-arrow {
  font-size: 8px; font-weight: 800; color: var(--c-accent);
  position: relative; z-index: 1; line-height: 1;
  font-family: var(--f-head); letter-spacing: -0.02em;
}

/* ── Static Pages (About / Contact / Privacy) ────────── */
.static-hero {
  background: var(--c-bg2);
  border-bottom: 1px solid var(--c-border);
  padding: 80px var(--sp-lg) 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.static-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% 0%, rgba(55,181,168,0.14) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 20% 100%, rgba(42,158,146,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.static-hero h1 { font-family: var(--f-head); font-size: clamp(32px, 5vw, 56px); margin: 8px 0 12px; font-weight: 800; }
.static-hero p { font-size: 17px; color: var(--c-text2); max-width: 480px; margin: 0 auto; }

.static-content { max-width: 800px; margin: 0 auto; padding: 64px var(--sp-lg); }
.static-content h2 { font-size: 24px; margin: 36px 0 12px; color: var(--c-text); }
.static-content h2:first-child { margin-top: 0; }
.static-content p { font-size: 15px; color: var(--c-text2); line-height: 1.85; margin-bottom: 16px; }
.static-content ul { padding-left: 20px; margin-bottom: 16px; }
.static-content li { font-size: 15px; color: var(--c-text2); line-height: 1.85; margin-bottom: 6px; list-style: disc; }
.static-content a { color: var(--c-accent); }
.static-content a:hover { text-decoration: underline; }
.static-content .btn-primary { color: #0a2421; }
.static-content .btn-wa { color: #fff; }
.static-content .btn-ghost { color: var(--c-text); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-card { background: var(--c-bg2); border: 1.5px solid var(--c-border); border-radius: var(--r-xl); padding: 32px; }
.contact-method { display: flex; align-items: flex-start; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--c-border); }
.contact-method:last-child { border-bottom: none; padding-bottom: 0; }
.contact-method-icon { font-size: 24px; width: 48px; height: 48px; background: var(--c-accent-dim); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-method-label { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-text3); margin-bottom: 4px; }
.contact-method-value { font-size: 15px; font-weight: 600; color: var(--c-text); }
.contact-method-desc { font-size: 13px; color: var(--c-text2); margin-top: 2px; }

/* ── Trust / Stats Section ───────────────────────────── */
.trust-section {
  background: var(--c-bg);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.trust-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 32px var(--sp-lg);
  text-align: center;
}
.trust-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-accent); margin-bottom: 8px; display: block; }
.trust-heading { font-family: var(--f-head); font-size: clamp(16px,2vw,22px); font-weight: 700; line-height: 1.2; margin-bottom: 0; color: var(--c-text2); }
.trust-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 20px 0 20px;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--c-bg2);
}
.ts-item {
  padding: 28px 16px 24px;
  border-right: 1px solid var(--c-border);
  transition: background var(--t-base);
  position: relative;
}
.ts-item:last-child { border-right: none; }
.ts-item:hover { background: var(--c-accent-dim); }
.ts-icon {
  width: 46px; height: 46px;
  background: var(--c-accent-dim);
  border: 1.5px solid rgba(55,181,168,0.22);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  font-size: 22px; color: var(--c-accent);
  transition: transform var(--t-base);
}
.ts-item:hover .ts-icon { transform: scale(1.1) rotate(-5deg); }
.ts-num {
  font-family: var(--f-head);
  font-size: clamp(26px,3.2vw,42px);
  font-weight: 800;
  color: var(--c-accent);
  line-height: 1;
  margin-bottom: 6px;
}
.ts-label { font-family: var(--f-head); font-size: 13px; font-weight: 700; color: var(--c-text); margin-bottom: 3px; }
.ts-desc { font-size: 11px; color: var(--c-text3); line-height: 1.5; }
.trust-proof { display: flex; flex-direction: row; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.proof-badges { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.proof-badge { font-size: 12px; font-weight: 600; color: var(--c-text2); background: var(--c-bg2); border: 1px solid var(--c-border); border-radius: var(--r-full); padding: 5px 12px; }
.trust-note { font-size: 11px; color: var(--c-text3); }

/* ── Video Carousel ──────────────────────────────────── */
.vid-carousel-wrap { position: relative; overflow: hidden; padding-bottom: 8px; }
.vid-carousel { display: flex; gap: 20px; will-change: transform; }
.vid-carousel .vid-card { flex: 0 0 calc(25% - 15px); min-width: 0; }

/* ── 3D Coverflow Carousel ───────────────────────────── */
.vid-carousel-wrap.vid-wrap-3d {
  overflow: visible;
  height: 480px;
  padding-bottom: 0;
}
.vid-carousel-wrap.vid-wrap-3d .vid-carousel {
  display: block;
  position: relative;
  height: 100%;
  perspective: 1200px;
  transform-style: preserve-3d;
  will-change: auto;
}
.vid-3d-card {
  position: absolute;
  width: 280px;
  left: calc(50% - 140px);
  top: 0;
  transform-style: preserve-3d;
  will-change: transform, opacity;
  cursor: pointer;
  /* Transition used as fallback when GSAP is unavailable */
  transition: transform 0.65s cubic-bezier(0.175,0.885,0.32,1.275),
              opacity 0.45s ease,
              box-shadow 0.35s ease,
              border-color 0.3s ease;
  flex: none;
  min-width: 0;
  /* Override the generic flex-based sizing */
}
.vid-3d-active {
  border-color: rgba(55,181,168,0.72) !important;
  box-shadow: 0 0 40px rgba(55,181,168,0.38), 0 16px 50px rgba(0,0,0,0.55) !important;
}
/* Nav buttons stay vertically centred inside the taller 3D wrap */
.vid-carousel-wrap.vid-wrap-3d .vid-carousel-btn { top: calc(50% - 22px); }
.vid-card { background: var(--c-bg); border: 1.5px solid var(--c-border); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-card); transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s; will-change: transform; contain: layout style; }
.vid-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--c-accent); }
.vid-thumb { position: relative; aspect-ratio: 3/4; background: #000; cursor: pointer; overflow: hidden; }
.vid-thumb video { width: 100%; height: 100%; object-fit: cover; display: block; }
.vid-play-btn { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.38); transition: background 0.25s ease, opacity 0.25s ease; }
.vid-thumb:hover .vid-play-btn { background: rgba(0,0,0,0.22); }
.vid-play-icon { width: 60px; height: 60px; background: rgba(255,255,255,0.92); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; color: #0a2421; transition: transform 0.2s ease; padding-left: 4px; }
.vid-thumb:hover .vid-play-icon { transform: scale(1.12); }
.vid-tag { position: absolute; top: 12px; left: 12px; background: var(--c-accent); color: #0a2421; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; padding: 4px 10px; border-radius: var(--r-full); text-transform: uppercase; }
.vid-label { padding: 14px 18px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--c-border); gap: 8px; }
.vid-title { font-family: var(--f-head); font-size: 14px; font-weight: 700; color: var(--c-text); line-height: 1.3; flex: 1; }
.vid-views { font-size: 12px; color: var(--c-text2); white-space: nowrap; display: flex; align-items: center; gap: 3px; flex-shrink: 0; }
.vid-views-count { font-weight: 600; color: var(--c-text); }
.vid-carousel-btn { position: absolute; top: calc(50% - 28px); z-index: 10; width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--c-border); background: var(--c-bg2); color: var(--c-text); font-size: 28px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); transition: background 0.2s, color 0.2s, transform 0.2s; padding: 0; }
.vid-carousel-btn:hover { background: var(--c-accent); color: #0a2421; transform: scale(1.1); }
.vid-carousel-prev { left: -22px; }
.vid-carousel-next { right: -22px; }
@media(max-width:1024px) { .vid-carousel .vid-card { flex: 0 0 calc(33.333% - 13.333px); } }
@media(max-width:640px) { .vid-carousel .vid-card { flex: 0 0 calc(50% - 10px); } .vid-carousel-btn { width: 36px; height: 36px; font-size: 22px; } .vid-carousel-prev { left: -12px; } .vid-carousel-next { right: -12px; } }

/* ── Video Reel Carousel ─────────────────────────────── */
.reel-carousel-outer { position: relative; padding: 0 36px; user-select: none; }
.reel-overflow { overflow: hidden; }
.reel-track {
  display: flex; gap: 16px;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.reel-card {
  flex: 0 0 220px;
  background: var(--c-bg);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: border-color var(--t-base), box-shadow var(--t-base), transform var(--t-base);
}
.reel-card:hover { border-color: var(--c-accent); box-shadow: var(--shadow-glow), var(--shadow-md); transform: translateY(-4px); }
.reel-video-wrap {
  position: relative; aspect-ratio: 9/16;
  background: #000; overflow: hidden; cursor: pointer;
}
.reel-video-wrap video { width: 100%; height: 100%; object-fit: cover; display: block; }
.reel-play-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.32);
  transition: opacity 0.3s ease;
}
.reel-play-circle {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 2px solid rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  backdrop-filter: blur(4px);
  transition: transform var(--t-base), background var(--t-base);
}
.reel-card:hover .reel-play-circle { transform: scale(1.12); background: rgba(255,255,255,0.28); }
.reel-card.reel-playing .reel-play-overlay { opacity: 0; pointer-events: none; }
.reel-view-badge {
  position: absolute; bottom: 10px; left: 10px;
  background: rgba(0,0,0,0.6); color: #fff;
  font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: var(--r-full);
  display: flex; align-items: center; gap: 5px;
  backdrop-filter: blur(6px);
}
.reel-info { padding: 14px 16px 16px; display: flex; align-items: center; justify-content: space-between; }
.reel-title { font-weight: 700; font-size: 14px; color: var(--c-text); line-height: 1.3; }
.reel-badge-label { font-size: 11px; color: var(--c-accent); font-weight: 600; white-space: nowrap; }
.reel-nav-btn {
  position: absolute; top: 38%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--c-bg); border: 1.5px solid var(--c-border);
  font-size: 22px; color: var(--c-text);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 5; box-shadow: var(--shadow-md);
  transition: var(--t-base);
}
.reel-nav-btn:hover { border-color: var(--c-accent); color: var(--c-accent); }
.reel-nav-btn:disabled { opacity: 0.25; cursor: not-allowed; pointer-events: none; }
.reel-nav-prev { left: 0; }
.reel-nav-next { right: 0; }
.reel-dots { display: flex; gap: 6px; justify-content: center; margin-top: 24px; }
.reel-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c-bg3); border: 1px solid var(--c-border); cursor: pointer; transition: all 0.3s ease; }
.reel-dot.active { background: var(--c-accent); width: 24px; border-radius: 4px; border-color: var(--c-accent); }

/* ── Scroll snap ─────────────────────────────────────── */
.snap-start { scroll-snap-align: start; }

/* ── Page Loader ─────────────────────────────────────── */
#page-loader {
  position: fixed; inset: 0; z-index: 99999;
  background: #050507;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 28px;
  transition: clip-path 0.7s cubic-bezier(0.76,0,0.24,1);
  clip-path: inset(0 0 0 0);
}
#page-loader.loaded {
  clip-path: inset(0 0 100% 0);
  pointer-events: none;
}
.loader-logo-wrap {
  animation: loader-logo-in 0.9s cubic-bezier(0.4,0,0.2,1) forwards;
  opacity: 0;
}
.loader-logo-img {
  width: 140px; height: auto; display: block;
  filter: brightness(0) invert(1);
}
.loader-tagline {
  font-size: 11px; font-weight: 700; letter-spacing: 0.3em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
  animation: loader-logo-in 0.9s 0.2s cubic-bezier(0.4,0,0.2,1) forwards;
  opacity: 0;
}
.loader-bar-wrap {
  width: 160px; height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px; overflow: hidden;
  animation: loader-logo-in 0.5s 0.3s ease forwards;
  opacity: 0;
}
.loader-bar {
  height: 100%; width: 0;
  background: linear-gradient(90deg, #37b5a8, #2a9e92);
  border-radius: 2px;
  animation: loader-fill 2s 0.4s cubic-bezier(0.4,0,0.2,1) forwards;
}

/* ── Custom Cursor ────────────────────────────────────── */
.cursor-dot {
  position: fixed; top: 0; left: 0; z-index: 99990;
  width: 8px; height: 8px;
  background: #37b5a8;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease, opacity 0.2s ease;
  will-change: left, top;
}
.cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 99989;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(55,181,168,0.55);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease, opacity 0.2s ease;
  will-change: left, top;
}
.cursor-dot.is-hover  { width: 14px; height: 14px; background: #25D366; }
.cursor-ring.is-hover { width: 52px; height: 52px; border-color: rgba(55,181,168,0.9); }
.cursor-dot.is-click  { width: 6px;  height: 6px;  }
.cursor-ring.is-click { width: 28px; height: 28px; }
@media (max-width: 768px) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ── Grain Texture Overlay ────────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 9990;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 300px 300px;
}

/* ── Holographic card shimmer ─────────────────────────── */
.prod-card::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--holo-x, 50%) var(--holo-y, 50%),
    rgba(255,255,255,0.12) 0%,
    rgba(55,181,168,0.08) 30%,
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 5;
}
.prod-card:hover::after { opacity: 1; }

/* ── How to Order ─────────────────────────────────────── */
.how-order-section { background: var(--c-bg2); border-top: 1px solid var(--c-border); }
.order-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 48px 0 40px;
}
.order-step {
  flex: 1;
  text-align: center;
  padding: 40px 24px;
  background: var(--c-bg);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-xl);
  position: relative;
  transition: var(--t-base);
  box-shadow: var(--shadow-card);
}
.order-step:hover {
  border-color: var(--c-accent);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow), var(--shadow-md);
}
.step-num {
  font-family: var(--f-head);
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
  color: var(--c-accent); margin-bottom: 16px;
}
.step-icon {
  font-size: 40px; margin-bottom: 16px; display: block;
  transition: transform var(--t-base);
}
.order-step:hover .step-icon { transform: scale(1.2) rotate(-5deg); }
.step-title {
  font-family: var(--f-head);
  font-size: 18px; font-weight: 700;
  color: var(--c-text); margin-bottom: 10px;
}
.step-desc { font-size: 14px; color: var(--c-text2); line-height: 1.7; }
.step-connector {
  display: flex; flex-direction: column; align-items: center;
  flex: 0 0 60px; gap: 4px;
}
.step-conn-line {
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--c-accent), transparent);
  transform-origin: left;
  animation: line-grow 0.8s 0.5s ease forwards;
  transform: scaleX(0);
}
.step-conn-arrow {
  font-size: 20px; color: var(--c-accent);
  animation: connector-pulse 2s ease-in-out infinite;
}
.order-steps-cta { text-align: center; }

@media (max-width: 768px) {
  .order-steps { flex-direction: column; gap: 0; }
  .step-connector { flex-direction: row; flex: 0 0 40px; transform: rotate(90deg); }
  .order-step { padding: 28px 20px; }
}
@media (max-width: 480px) {
  .step-connector { display: none; }
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .prod-detail-layout { grid-template-columns: 1fr; }
  .gallery-col { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .trust-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .ts-item:nth-child(2) { border-right: none; }
  .ts-item:nth-child(1),
  .ts-item:nth-child(2) { border-bottom: 1px solid var(--c-border); }
}

@media (max-width: 768px) {
  .nav-search { display: none; }
  .nav-wa-btn .btn-text { display: none; }
  .nav-dist-btn { display: none; }
  .hamburger { display: flex; }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 24px; }
  .unboxing-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-inner { padding: 48px var(--sp-lg); }
  .reel-card { flex: 0 0 160px; }
}

@media (max-width: 560px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-item { padding: 18px var(--sp-md); }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .unboxing-grid { grid-template-columns: 1fr; }
  .prod-info { padding: 12px; }
  .prod-card-foot { padding: 10px 12px; }
  .trust-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .ts-item { padding: 28px 14px; }
  .reel-card { flex: 0 0 150px; }
  .reel-carousel-outer { padding: 0 28px; }
  .trust-inner { padding: 40px var(--sp-md); }
}

/* ── Specular Light Overlay (injected by cinematic.js) ── */
.specular-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 6;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.18s ease;
  mix-blend-mode: screen;
}

/* ── Enhanced card 3D support ────────────────────────── */
.prod-card {
  transform-style: preserve-3d;
}
.prod-img-wrap {
  transform-style: preserve-3d;
  overflow: hidden;
}
/* Smooth image parallax within card */
.prod-img {
  transition: transform 0.08s linear, filter 0.3s ease;
  will-change: transform;
}

/* ── Hero scroll arrow ───────────────────────────────── */
.scroll-arrow {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  z-index: 2;
  animation: bob 2.4s ease-in-out infinite;
  color: var(--c-text3);
  user-select: none;
}
.scroll-arrow-text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-text3);
}
.scroll-arrow-icon {
  font-size: 22px;
  color: var(--c-accent);
  line-height: 1;
}
@media (max-width: 768px) {
  .scroll-arrow { bottom: 16px; }
}

/* ── Splitting.js char spans ─────────────────────────── */
.char {
  display: inline-block;
  will-change: transform, opacity;
}
/* Preserve whitespace chars */
.char.is-whitespace { display: inline; }

/* ── GSAP-managed product card initial state ─────────── */
.products-grid .prod-card,
.categories-grid .cat-card {
  backface-visibility: hidden;
}

/* ── 3D flip entrance perspective wrapper ────────────── */
.products-grid {
  perspective: 1000px;
}
.categories-grid {
  perspective: 800px;
}

/* ── Category icon tiles (Tabler Icons) ──────────────── */
.cat-icon-box {
  width: 76px; height: 76px;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(55,181,168,0.16) 0%, rgba(55,181,168,0.06) 100%);
  border: 1.5px solid rgba(55,181,168,0.28);
  border-radius: var(--r-full);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1),
              background 0.3s ease, border-color 0.3s ease,
              box-shadow 0.3s ease;
  flex-shrink: 0;
}
.cat-card:hover .cat-icon-box {
  transform: translateY(-4px) scale(1.06);
  background: linear-gradient(135deg, rgba(55,181,168,0.26) 0%, rgba(55,181,168,0.12) 100%);
  border-color: rgba(55,181,168,0.55);
  box-shadow: 0 8px 24px rgba(55,181,168,0.2);
}
.cat-ti-icon {
  font-size: 34px;
  color: var(--c-accent);
  display: block;
  line-height: 1;
}
.mega-cat .cat-icon-box {
  width: 96px; height: 96px;
  border-radius: var(--r-full);
  margin-bottom: 20px;
}
.mega-cat .cat-ti-icon { font-size: 44px; }

/* ── Footer category icon (small Tabler icon) ────────── */
.footer-cat-icon {
  font-size: 14px;
  color: var(--c-accent);
  margin-right: 7px;
  vertical-align: -2px;
  opacity: 0.85;
}

/* ── Section performance ─────────────────────────────── */
.section, .trust-section, .brand-story-section, .faq-section, .vid-section {
  contain: layout style;
}

/* ── FAQ accordion (shared across pages) ─────────────── */
.faq-section { background: var(--c-bg2); border-top: 1px solid var(--c-border); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 4px; }
.faq-item { border: 1.5px solid var(--c-border); border-radius: var(--r-lg); background: var(--c-bg); overflow: hidden; transition: border-color var(--t-base); }
.faq-item.open { border-color: var(--c-accent); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; font-size: 15px; font-weight: 600; color: var(--c-text);
  text-align: left; gap: 16px; font-family: var(--f-body);
}
.faq-q:hover { background: var(--c-bg2); }
.faq-icon { font-size: 22px; font-weight: 300; color: var(--c-accent); flex-shrink: 0; transition: transform 0.3s ease; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  padding: 0 24px; max-height: 0; overflow: hidden;
  font-size: 14px; color: var(--c-text2); line-height: 1.75;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease;
}
.faq-item.open .faq-a { max-height: 220px; padding: 4px 24px 20px; }

/* ── Distributor Inquiry Modal ───────────────────────── */
.dist-modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 1100;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(4px);
}
.dist-modal-overlay.open { display: block; }

.dist-modal {
  display: none; position: fixed; z-index: 1101;
  top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.96);
  width: min(560px, 94vw); max-height: 90vh; overflow-y: auto;
  background: var(--c-bg); border: 1.5px solid var(--c-border);
  border-radius: var(--r-xl); box-shadow: var(--shadow-lg);
  opacity: 0; transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.34,1.56,0.64,1);
}
.dist-modal.open {
  display: block; opacity: 1; transform: translate(-50%, -50%) scale(1);
}
.dist-modal-head {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  padding: 24px 28px 16px; border-bottom: 1px solid var(--c-border);
}
.dist-modal-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-accent); margin-bottom: 4px; }
.dist-modal-title { font-family: var(--f-head); font-size: 20px; font-weight: 800; }
.dist-modal-close {
  width: 32px; height: 32px; flex-shrink: 0;
  background: var(--c-bg2); border: 1px solid var(--c-border); border-radius: 50%;
  cursor: pointer; font-size: 14px; display: flex; align-items: center; justify-content: center;
  color: var(--c-text2); transition: var(--t-base);
}
.dist-modal-close:hover { background: var(--c-accent); color: #fff; border-color: var(--c-accent); }

.dist-modal-body { padding: 20px 28px 28px; }
.dist-modal-desc { font-size: 14px; color: var(--c-text2); line-height: 1.7; margin-bottom: 20px; }

.dist-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.dist-form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.dist-label { font-size: 12px; font-weight: 600; color: var(--c-text2); letter-spacing: 0.03em; }
.dist-req { color: var(--c-accent); }
.dist-input {
  padding: 10px 14px; background: var(--c-bg2); border: 1.5px solid var(--c-border);
  border-radius: var(--r-md); color: var(--c-text); font-size: 14px; outline: none;
  transition: var(--t-base); font-family: var(--f-body); width: 100%;
}
.dist-input:focus { border-color: var(--c-accent); box-shadow: 0 0 0 3px var(--c-accent-dim); background: var(--c-bg); }
.dist-input::placeholder { color: var(--c-text3); }
.dist-textarea { resize: vertical; min-height: 80px; }
.dist-form-footer { margin-top: 6px; display: flex; justify-content: flex-end; gap: 10px; flex-wrap: wrap; }
.dist-submit-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; background: var(--c-accent); color: #fff;
  font-weight: 700; font-size: 14px; border-radius: var(--r-full);
  border: none; cursor: pointer; transition: var(--t-base); font-family: var(--f-body);
}
.dist-submit-btn:hover:not(:disabled) { background: var(--c-accent-dark); transform: translateY(-1px); }
.dist-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.dist-submit-wa { background: #25d366; font-size: 16px; }
.dist-submit-wa:hover:not(:disabled) { background: #1ebe5d; }

@media (max-width: 480px) {
  .dist-form-row { grid-template-columns: 1fr; }
  .dist-modal-head, .dist-modal-body { padding-left: 20px; padding-right: 20px; }
  .nav-dist-btn .btn-text { display: none; }
}
