﻿/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SUGIHWARAS â€” Global Styles
   Sport Apparel Storefront
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

[x-cloak] { display: none !important; }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* âš¡ Defaults â€” di-override realtime oleh <style id="dynamic-theme"> di layout.
     Edit warna dari Dashboard â†’ Pengaturan â†’ ðŸŽ¨ Tema Warna Website. */
  --blue:      #4A90D9;   /* accent biru terang */
  --blue-h:    #152C6C;   /* hover dark */
  --blue-pale: #EEF4FF;   /* badge BG pale */
  --navy:      #1E3A8A;   /* PRIMARY brand */
  --navy-dark: #18273F;   /* topbar & footer */
  --text:      #2A3A52;
  --sub:       #7A8EA6;
  --line:      #E8EEF6;
  --bg:        #FAFBFD;
  --card:      #FFFFFF;
  --surface:   #F2F6FB;
  /* Alias modern names */
  --primary:   #1E3A8A;
  --primary-h: #152C6C;
  --accent:    #4A90D9;
}


html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg); color: var(--text);
  line-height: 1.6; -webkit-font-smoothing: antialiased;
  padding-bottom: 64px; /* space for bottom nav on mobile */
}
a { text-decoration: none; color: inherit; }

/* â”€â”€â”€ TOPBAR â”€â”€â”€ */
.topbar {
  background: var(--navy); color: rgba(255,255,255,0.65);
  text-align: center; padding: 9px 16px; font-size: 12px;
}
.topbar strong { color: white; font-weight: 600; }
/* Hide topbar di HP/tablet â€” hanya tampil di desktop (â‰¥1024px) */
@media (max-width: 1023px) {
  .topbar { display: none; }
}

/* â”€â”€â”€ HEADER â”€â”€â”€ */
header {
  position: sticky; top: 0; z-index: 200;
  background: linear-gradient(180deg, rgba(239,246,255,0.96) 0%, rgba(219,234,254,0.92) 100%);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(59,130,246,0.12);
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset;
  padding: 0 20px; height: 60px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  display: flex; align-items: center; gap: 9px;
  font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 700;
  color: var(--navy); letter-spacing: -0.3px; cursor: pointer;
}
.logo-icon { width: 36px; height: 36px; flex-shrink: 0; }
.logo-img  { height: 40px; width: auto; max-width: 200px; object-fit: contain; flex-shrink: 0; }
.logo-text { display: inline-flex; align-items: baseline; gap: 4px; line-height: 1.1; }
.logo-text > span, .logo span { color: var(--blue); }

/* Position variants â€” admin-controlled via Settings */
.logo-pos-right {
  flex-direction: row;       /* default: logo + text horizontal */
  align-items: center;
}
.logo-pos-below {
  flex-direction: column;    /* logo on top, text below */
  align-items: flex-start;
  gap: 4px;
  line-height: 1;
}
.logo-pos-below .logo-text {
  font-size: 12px;
  letter-spacing: 1px;
}
.desk-nav { display: none; gap: 28px; }
.desk-nav a { font-size: 14px; font-weight: 500; color: var(--sub); transition: color .2s; }
.desk-nav a:hover { color: var(--blue); }
.desk-nav a.nav-active { color: var(--blue); font-weight: 600; }
.hdr { display: flex; align-items: center; gap: 8px; }
.ico { width: 36px; height: 36px; border-radius: 9px; border: none; background: none; cursor: pointer; color: var(--text); display: flex; align-items: center; justify-content: center; transition: background .2s; }
.ico:hover { background: rgba(255,255,255,0.7); }
.cart-pill {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.7);
  color: var(--navy);
  padding: 7px 14px;
  border-radius: 9px;
  border: 1px solid rgba(30,58,138,0.12);
  font-size: 13px; font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all .2s;
}
.cart-pill:hover { background: #fff; border-color: rgba(30,58,138,0.25); box-shadow: 0 2px 6px rgba(30,58,138,0.08); }
.cart-dot {
  background: var(--blue); color: white;
  width: 17px; height: 17px; border-radius: 50%;
  font-size: 10px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.burger { display: flex; }
.ico-wish { display: none; } /* hidden mobile, ditampilkan kembali di desktop */

/* â”€â”€â”€ LOGIN PILL (guest) â”€â”€â”€ */
.login-pill {
  display: none; align-items: center; gap: 6px;
  background: var(--navy); color: #fff;
  padding: 8px 14px; border-radius: 9px;
  font-size: 13px; font-weight: 600;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.login-pill:hover { background: #0f172a; transform: translateY(-1px); }

/* â”€â”€â”€ USER PILL (authenticated) â”€â”€â”€ */
.user-pill { position: relative; display: none; }
.user-avatar-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 5px 8px 5px 5px;
  background: rgba(62,116,196,.15);
  border: 1px solid transparent;
  border-radius: 99px;
  cursor: pointer;
  transition: background .15s;
}
.user-avatar-btn:hover { background: rgba(62,116,196,.25); }
.user-avatar {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800;
  flex-shrink: 0;
}
.user-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(15,23,42,.12);
  min-width: 220px;
  padding: 6px;
  z-index: 100;
}
.user-menu-head {
  padding: 10px 14px 12px;
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 4px;
}
.user-menu-head strong { display: block; color: #0f172a; font-size: 14px; font-weight: 700; }
.user-menu-head small { color: #64748b; font-size: 11px; font-family: 'Courier New', monospace; }
.user-menu-item {
  display: flex; align-items: center; gap: 9px;
  padding: 9px 12px;
  color: #475569;
  text-decoration: none;
  font-size: 13px; font-weight: 500;
  border-radius: 7px;
  width: 100%;
  background: none; border: none; cursor: pointer;
  font-family: inherit;
  transition: background .15s, color .15s;
}
.user-menu-item:hover { background: #f1f5f9; color: var(--navy); }
.user-menu-item.logout { color: #dc2626; }
.user-menu-item.logout:hover { background: #fee2e2; color: #991b1b; }
.user-menu-divider { height: 1px; background: #f1f5f9; margin: 4px 0; }
[x-cloak] { display: none !important; }

/* Desktop: show login/user pill, hide burger */
@media (min-width: 768px) {
  .login-pill, .user-pill { display: flex; }
}

/* â”€â”€â”€ MOBILE NAV OVERLAY â”€â”€â”€ */
.mob-overlay { position: fixed; inset: 0; z-index: 300; background: white; transform: translateX(100%); transition: transform .3s ease; display: flex; flex-direction: column; }
.mob-overlay.open { transform: translateX(0); }
.mob-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--line); }
.mob-links { flex: 1; padding: 8px 0; overflow-y: auto; }
.mob-links a { display: block; padding: 14px 24px; font-size: 16px; font-weight: 600; color: var(--navy); border-bottom: 1px solid var(--line); transition: color .2s; }
.mob-links a:hover { color: var(--blue); }
.mob-foot { padding: 20px 24px; border-top: 1px solid var(--line); }

/* â”€â”€â”€ BOTTOM NAV (mobile only) â”€â”€â”€ */
.bottom-nav {
  display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 190;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line); height: 64px;
  align-items: stretch;
}
.bn-item {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 3px;
  font-size: 10px; font-weight: 500; color: var(--sub);
  cursor: pointer; border: none; background: none;
  transition: color .2s; position: relative;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
}
.bn-item.active { color: var(--blue); }
.bn-item svg { width: 22px; height: 22px; }
.bn-badge {
  position: absolute; top: 8px; right: calc(50% - 18px);
  background: var(--blue); color: white;
  width: 15px; height: 15px; border-radius: 50%;
  font-size: 9px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

/* â”€â”€â”€ HERO â”€â”€â”€ */
.hero-wrap { display: flex; flex-direction: column; }
.hero-left { padding: 44px 24px 36px; }

/* Mobile: hide hero-left text section (cuma tampilkan banner/slider) */
@media (max-width: 767px) {
  .hero-left { display: none; }
}
.eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; display: block; }
.hero-left h1 { font-family: 'Poppins', sans-serif; font-size: 32px; font-weight: 800; line-height: 1.15; letter-spacing: -.6px; color: var(--navy); margin-bottom: 12px; }
.hero-desc { font-size: 14px; color: var(--sub); line-height: 1.75; max-width: 340px; margin-bottom: 28px; }
.hero-btns { display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px; }
.btn-solid { background: var(--blue); color: white; padding: 13px 24px; border-radius: 10px; border: none; font-size: 14px; font-weight: 600; cursor: pointer; font-family: 'Inter', sans-serif; transition: background .2s, transform .15s; display: flex; align-items: center; justify-content: center; gap: 8px; text-decoration: none; }
.btn-solid:hover { background: var(--blue-h); transform: translateY(-1px); }
.btn-soft { background: var(--blue-pale); color: var(--blue); padding: 13px 24px; border-radius: 10px; border: none; font-size: 14px; font-weight: 600; cursor: pointer; font-family: 'Inter', sans-serif; transition: background .2s; display: flex; align-items: center; justify-content: center; gap: 8px; text-decoration: none; }
.btn-soft:hover { background: #d6e8f8; }
.hero-stats { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: var(--card); }
.stat { padding: 14px 10px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat-n { font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 800; color: var(--navy); }
.stat-l { font-size: 11px; color: var(--sub); margin-top: 2px; }

/* â”€â”€â”€ HERO SLIDER (right) â”€â”€â”€ */
.hero-slider {
  position: relative; overflow: hidden;
  background: var(--navy); min-height: 460px;
  display: flex; align-items: stretch;
}
.slide {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 44px 24px; gap: 18px;
  transition: opacity .6s ease, transform .6s ease;
  opacity: 0; transform: translateX(60px);
}
.slide.active { opacity: 1; transform: translateX(0); position: relative; }
.slide.prev { opacity: 0; transform: translateX(-60px); }

.slide-1 { background: linear-gradient(160deg, #18273F 0%, #1e3660 100%); }
.slide-2 { background: linear-gradient(160deg, #1a2e1a 0%, #1a4a2e 100%); }
.slide-3 { background: linear-gradient(160deg, #2a1a3e 0%, #3a1a5e 100%); }

.slide-glow {
  position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px; border-radius: 50%;
  pointer-events: none;
}
.s1-glow { background: radial-gradient(circle, rgba(62,116,196,.35) 0%, transparent 70%); }
.s2-glow { background: radial-gradient(circle, rgba(16,185,129,.3) 0%, transparent 70%); }
.s3-glow { background: radial-gradient(circle, rgba(139,92,246,.3) 0%, transparent 70%); }

.jersey-shape {
  width: 160px; height: 200px;
  clip-path: polygon(22% 0%, 78% 0%, 100% 13%, 100% 100%, 0% 100%, 0% 13%);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
}
.js-blue   { background: linear-gradient(150deg, #4A90D9, #1E5BAD); box-shadow: 0 16px 48px rgba(30,91,173,.45); }
.js-green  { background: linear-gradient(150deg, #10b981, #065f46); box-shadow: 0 16px 48px rgba(16,185,129,.4); }
.js-purple { background: linear-gradient(150deg, #8b5cf6, #5b21b6); box-shadow: 0 16px 48px rgba(139,92,246,.4); }
.jersey-txt { font-family: 'Poppins', sans-serif; font-size: 40px; font-weight: 800; color: rgba(255,255,255,.92); letter-spacing: -1px; }
.slide-tag { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.45); z-index: 2; }
.slide-title { font-family: 'Poppins', sans-serif; font-size: 21px; font-weight: 700; color: white; text-align: center; line-height: 1.3; z-index: 2; }
.slide-sub { font-size: 13px; color: rgba(255,255,255,.55); text-align: center; z-index: 2; }
.slide-cta { background: white; color: var(--navy); padding: 11px 24px; border-radius: 9px; border: none; font-size: 13px; font-weight: 700; cursor: pointer; font-family: 'Inter', sans-serif; z-index: 2; transition: background .2s; text-decoration: none; }
.slide-cta:hover { background: #f0f4f8; }

.slider-dots { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 10; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.3); border: none; cursor: pointer; padding: 0; transition: all .3s; }
.dot.on { background: white; width: 18px; border-radius: 3px; }
.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,.12); border: none; color: white; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.slider-arrow:hover { background: rgba(255,255,255,.22); }
.sa-prev { left: 10px; }
.sa-next { right: 10px; }

/* â”€â”€â”€ SECTIONS â”€â”€â”€ */
.sec { padding: 40px 16px; }
.sec-w { background: var(--card); }
.sec-s { background: var(--surface); }
.sec-d { background: var(--navy); }
.lbl { font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; }
.lbl-d { color: rgba(62,116,196,.7); }
.ttl { font-family: 'Poppins', sans-serif; font-size: 24px; font-weight: 700; color: var(--navy); line-height: 1.2; letter-spacing: -.3px; }
.ttl-w { color: white; }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 24px; }
.see-all { font-size: 13px; font-weight: 600; color: var(--blue); display: flex; align-items: center; gap: 4px; white-space: nowrap; }

/* â”€â”€â”€ CATEGORY CARDS (Tokopedia style) â”€â”€â”€ */
.cat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* mobile: 4 kolom auto-wrap */
  gap: 6px 4px; /* row gap kecil â€” judul naik mendekati icon baris atas */
}
.cat-card-soft {
  width: auto;
  background: none; border: none; padding: 4px 2px 4px;
  cursor: pointer; transition: transform .2s;
  display: flex; flex-direction: column; align-items: center;
  gap: 4px; text-align: center; text-decoration: none;
  min-width: 0;
}
.cat-card-soft:hover { transform: translateY(-4px); }
.cat-ico {
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: filter .2s;
}
.cat-card-soft:hover .cat-ico { transform: translateY(-2px); transition: all .25s; }
.cat-ico svg { width: 46px; height: 46px; }
/* Tanpa background â€” icon floating clean */
.ci-b, .ci-o, .ci-g, .ci-p, .ci-t, .ci-r, .ci-y, .ci-n {
  background: transparent;
}
.cat-n-soft { font-size: 10.5px; font-weight: 500; color: var(--text); line-height: 1.2; }
.cat-dot {
  width: 5px; height: 5px; border-radius: 50%;
  display: block; margin-top: 4px;
  opacity: .8;
  transition: transform .2s, opacity .2s;
}
.cat-card-soft:hover .cat-dot { transform: scale(1.4); opacity: 1; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   STATIC PAGES (common â€” cara pemesanan, tentang, kontak, dst)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.sp-wrap { padding: 32px 20px 60px; min-height: 60vh; }
.sp-container { max-width: 820px; margin: 0 auto; }
.sp-wide { max-width: 1100px; margin: 0 auto; }

.sp-hero { text-align: center; margin-bottom: 36px; padding: 20px 0; }
.sp-eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.sp-title {
  font-family: 'Poppins', sans-serif;
  font-size: 28px; font-weight: 800;
  color: var(--navy);
  letter-spacing: -.5px;
  line-height: 1.15;
  margin-bottom: 14px;
}
.sp-desc {
  font-size: 14.5px;
  color: var(--sub);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto;
}

.sp-section { margin-bottom: 28px; }
.sp-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px; font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: -.3px;
}
.sp-section p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 12px;
}
.sp-section ul, .sp-section ol { padding-left: 24px; margin-bottom: 14px; }
.sp-section li { font-size: 14px; color: var(--text); line-height: 1.85; margin-bottom: 4px; }
.sp-section strong { color: var(--navy); font-weight: 600; }

/* Step / process cards */
.sp-steps { display: grid; grid-template-columns: 1fr; gap: 14px; margin-bottom: 28px; }
.sp-step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 20px;
  display: flex; gap: 16px;
  align-items: flex-start;
  transition: all .25s;
}
.sp-step:hover { border-color: var(--blue); box-shadow: 0 8px 24px rgba(62,116,196,.08); transform: translateY(-2px); }
.sp-step-num {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--blue-pale);
  color: var(--blue);
  font-family: 'Poppins', sans-serif;
  font-size: 16px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sp-step-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 15px; font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}
.sp-step-content p {
  font-size: 13.5px;
  color: var(--sub);
  line-height: 1.7;
  margin: 0;
}

/* Card grid (untuk values, contact, dll) */
.sp-cards { display: grid; grid-template-columns: 1fr; gap: 14px; }
.sp-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 20px;
  text-align: left;
  transition: all .25s;
}
.sp-card:hover { border-color: var(--blue); box-shadow: 0 8px 24px rgba(62,116,196,.08); transform: translateY(-2px); }
.sp-card-icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.sp-card-icon svg { width: 22px; height: 22px; color: var(--blue); }
.sp-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 15px; font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.sp-card p {
  font-size: 13px;
  color: var(--sub);
  line-height: 1.7;
  margin: 0 0 10px;
}
.sp-card-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12.5px; font-weight: 600;
  color: var(--blue);
  text-decoration: none;
}
.sp-card-link:hover { color: var(--blue-h); }

/* Info/note box */
.sp-note {
  background: var(--blue-pale);
  border-left: 3px solid var(--blue);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 13px;
  color: var(--text);
  line-height: 1.7;
  margin: 16px 0;
}
.sp-note strong { color: var(--navy); }

/* CTA banner at bottom */
.sp-cta {
  background: linear-gradient(135deg, var(--navy) 0%, #1E3660 100%);
  color: white;
  padding: 36px 24px;
  border-radius: 16px;
  text-align: center;
  margin-top: 36px;
  position: relative;
  overflow: hidden;
}
.sp-cta::before {
  content: ''; position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(62,116,196,.3) 0%, transparent 70%);
}
.sp-cta-inner { position: relative; z-index: 1; }
.sp-cta h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px; font-weight: 700;
  margin-bottom: 8px;
}
.sp-cta p {
  font-size: 13.5px;
  color: rgba(255,255,255,.7);
  margin-bottom: 20px;
}
.sp-cta .btn-solid { display: inline-flex; }

/* FORM styles (untuk kontak, lacak) */
.sp-form { display: flex; flex-direction: column; gap: 14px; }
.sp-form-row { display: grid; grid-template-columns: 1fr; gap: 14px; }
.sp-form label {
  display: block;
  font-size: 12.5px; font-weight: 600;
  color: var(--navy);
  margin-bottom: 5px;
}
.sp-form input, .sp-form textarea, .sp-form select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-size: 13.5px;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--card);
  outline: none;
  transition: border-color .2s;
}
.sp-form input:focus, .sp-form textarea:focus, .sp-form select:focus { border-color: var(--blue); }
.sp-form textarea { resize: vertical; min-height: 120px; }
.sp-form button[type=submit] {
  width: 100%;
  background: var(--blue); color: white;
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-size: 14px; font-weight: 700;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all .2s;
}
.sp-form button[type=submit]:hover { background: var(--blue-h); transform: translateY(-1px); }

/* Tracking timeline */
.sp-track-result {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  margin-top: 20px;
}
.sp-track-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 16px; margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.sp-track-id { font-size: 13px; color: var(--sub); }
.sp-track-id strong { color: var(--navy); font-weight: 700; font-family: 'Poppins', sans-serif; }
.sp-track-status {
  background: #DCFCE7;
  color: #15803D;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11.5px; font-weight: 700;
  letter-spacing: .3px;
}
.sp-timeline { list-style: none; padding: 0; }
.sp-timeline-item {
  position: relative;
  padding: 0 0 18px 32px;
  border-left: 2px solid var(--line);
  margin-left: 8px;
}
.sp-timeline-item:last-child { border-left-color: transparent; padding-bottom: 0; }
.sp-timeline-item::before {
  content: '';
  position: absolute;
  left: -8px; top: 2px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--line);
  border: 3px solid var(--card);
}
.sp-timeline-item.done::before { background: #16A34A; }
.sp-timeline-item.done { border-left-color: #16A34A; }
.sp-timeline-item.active::before { background: var(--blue); box-shadow: 0 0 0 4px rgba(62,116,196,.2); }
.sp-timeline-item.active { border-left-color: var(--blue); }
.sp-timeline-time {
  font-size: 11.5px; color: var(--sub);
  font-weight: 500;
  margin-bottom: 2px;
}
.sp-timeline-title {
  font-size: 13.5px; font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}
.sp-timeline-item.pending .sp-timeline-title { color: var(--sub); font-weight: 500; }

/* Two-column layout (kontak) */
.sp-2col { display: grid; grid-template-columns: 1fr; gap: 24px; }

@media (min-width: 768px) {
  .sp-wrap { padding: 56px 80px 100px; }
  .sp-hero { margin-bottom: 48px; padding: 28px 0; }
  .sp-title { font-size: 40px; letter-spacing: -1.2px; }
  .sp-desc { font-size: 16px; }
  .sp-section { margin-bottom: 36px; }
  .sp-section h2 { font-size: 26px; }
  .sp-steps { grid-template-columns: 1fr 1fr; }
  .sp-cards { grid-template-columns: 1fr 1fr; gap: 16px; }
  .sp-form-row { grid-template-columns: 1fr 1fr; }
  .sp-cta { padding: 48px 48px; }
  .sp-cta h3 { font-size: 26px; }
  .sp-2col { grid-template-columns: 1.2fr 1fr; gap: 36px; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CHECKOUT PAGE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.co-wrap { padding: 24px 16px 100px; min-height: 60vh; }

/* STEP INDICATOR */
.co-steps {
  display: flex; align-items: center;
  max-width: 600px;
  margin: 0 auto 28px;
  padding: 0 8px;
}
.co-step {
  display: flex; flex-direction: column; align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.co-step-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--surface);
  color: var(--sub);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 13px; font-weight: 800;
  transition: all .3s;
  border: 2px solid var(--line);
}
.co-step-name {
  font-size: 11px; font-weight: 600;
  color: var(--sub);
  transition: color .3s;
}
.co-step.active .co-step-num {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(62,116,196,.15);
}
.co-step.active .co-step-name { color: var(--blue); }
.co-step.done .co-step-num {
  background: #16a34a;
  color: white;
  border-color: #16a34a;
}
.co-step.done .co-step-name { color: var(--navy); font-weight: 700; }
.co-step.pending { opacity: .55; }
.co-step-line {
  flex: 1; height: 2px;
  background: var(--line);
  margin: 0 6px;
  margin-bottom: 18px;
  transition: background .3s;
}
.co-step-line.done { background: #16a34a; }

/* LAYOUT */
.co-layout { display: flex; flex-direction: column; gap: 16px; }

/* SECTIONS */
.co-section {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 14px;
}
.co-section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 16px; font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 8px;
}
.co-section-icon { font-size: 20px; }

/* FORM */
.co-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.co-field { display: flex; flex-direction: column; gap: 5px; }
.co-field label {
  font-size: 12px; font-weight: 600;
  color: var(--navy);
}
.co-optional { color: var(--sub); font-weight: 500; font-style: italic; }
.co-field input,
.co-field select,
.co-field textarea {
  padding: 10px 12px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--card);
  outline: none;
  transition: border-color .2s;
  resize: vertical;
}
.co-field input:focus,
.co-field select:focus,
.co-field textarea:focus { border-color: var(--blue); }
.co-field select:disabled { background: var(--surface); cursor: not-allowed; opacity: .6; }
.co-field input::placeholder,
.co-field textarea::placeholder { color: var(--sub); }

/* INFO BOX */
.co-info-box {
  display: flex; align-items: center; gap: 10px;
  background: var(--blue-pale);
  color: var(--blue);
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 13px;
}

/* CUSTOM PICKER (klik trigger â†’ expand options) */
.co-picker {
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--card);
  transition: border-color .2s, box-shadow .2s;
}
.co-picker.open {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(62,116,196,.08);
}
.co-picker-trigger {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  text-align: left;
}
.co-picker-content { flex: 1; min-width: 0; }
.co-picker-empty {
  font-size: 14px; font-weight: 500;
  color: var(--sub);
}
.co-picker-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.co-picker-row-left { flex: 1; min-width: 0; }
.co-picker-name {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 2px;
}
.co-picker-eta { font-size: 11.5px; color: var(--sub); }
.co-picker-price {
  font-family: 'Poppins', sans-serif;
  font-size: 14px; font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}
.co-picker-price.free { color: #16a34a; }
.co-picker-arrow {
  flex-shrink: 0;
  color: var(--sub);
  transition: transform .25s ease;
}
.co-picker-arrow.rotate { transform: rotate(180deg); color: var(--blue); }

/* Options list â€” CSS Grid trick (smooth expand, no scroll, no jank) */
.co-picker-collapsible {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s cubic-bezier(.4, 0, .2, 1);
}
.co-picker.open .co-picker-collapsible { grid-template-rows: 1fr; }

.co-picker-options {
  overflow: hidden;
  min-height: 0;
  display: flex; flex-direction: column;
  padding: 6px;
  border-top: 1px solid var(--line);
}

/* Group label (for payment) */
.co-option-group {
  font-size: 10.5px; font-weight: 700;
  color: var(--sub);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 10px 10px 4px;
}
.co-option-group:first-child { padding-top: 4px; }

/* Each option */
.co-option {
  display: flex; align-items: center; gap: 12px;
  width: 100%;
  padding: 10px 12px;
  background: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background .15s;
  font-family: 'Inter', sans-serif;
  text-align: left;
}
.co-option:hover { background: var(--blue-pale); }
.co-option.on {
  background: var(--blue-pale);
  outline: 1.5px solid var(--blue);
}
.co-option-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  border-radius: 8px;
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
}
.co-option-emoji { font-size: 18px; }
.co-option-badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 42px; padding: 6px 10px;
  background: var(--navy);
  color: white;
  border-radius: 6px;
  font-size: 10.5px; font-weight: 800;
  letter-spacing: .3px;
  flex-shrink: 0;
}
.co-option.on .co-option-badge { background: var(--blue); }
.co-option-info { flex: 1; min-width: 0; }
.co-option-name {
  font-size: 13px; font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}
.co-option-eta {
  font-size: 11px;
  color: var(--sub);
  margin-top: 1px;
}
.co-option-price {
  font-family: 'Poppins', sans-serif;
  font-size: 13px; font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}
.co-option-price.free { color: #16a34a; font-size: 11.5px; font-weight: 700; }
.co-option-empty {
  display: flex; align-items: center; gap: 8px;
  padding: 14px;
  font-size: 12px;
  color: var(--sub);
  background: var(--surface);
  border-radius: 8px;
  margin: 4px 6px;
}

/* PICKUP INFO BOX */
.co-pickup-info {
  display: flex; gap: 14px;
  background: linear-gradient(135deg, var(--blue-pale) 0%, #E0EBFF 100%);
  border: 1px solid #c8d9f0;
  border-radius: 12px;
  padding: 16px;
  margin-top: 12px;
}
.co-pickup-icon { font-size: 30px; flex-shrink: 0; }
.co-pickup-title {
  font-family: 'Poppins', sans-serif;
  font-size: 14px; font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.co-pickup-addr {
  font-size: 13px;
  color: var(--text);
  margin-bottom: 10px;
  font-weight: 500;
}
.co-pickup-list {
  list-style: none; padding: 0;
  display: flex; flex-direction: column;
  gap: 4px;
  font-size: 11.5px;
  color: var(--sub);
}

/* SHIPPING ETA INFO */
.co-shipping-eta {
  display: flex; align-items: center; gap: 8px;
  margin-top: 12px;
  padding: 10px 14px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  font-size: 12.5px;
  color: #15803d;
}
.co-shipping-eta strong { font-weight: 700; }

/* PAYMENT METHOD INFO */
.co-payment-info {
  display: flex; align-items: flex-start; gap: 8px;
  margin-top: 12px;
  padding: 10px 14px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  font-size: 12.5px;
  color: #15803d;
  line-height: 1.55;
}
.co-payment-info svg { flex-shrink: 0; margin-top: 2px; }

/* SUMMARY */
.co-summary {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
}
.co-summary-title {
  font-family: 'Poppins', sans-serif;
  font-size: 15px; font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.co-items-toggle {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer;
  font-size: 12px; font-weight: 600;
  color: var(--sub);
  padding: 4px 0;
  margin-bottom: 8px;
}
.co-items-toggle svg { transition: transform .2s; }
.co-items {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.co-item {
  display: flex; align-items: center; gap: 10px;
}
.co-item-thumb {
  width: 38px; height: 48px;
  flex-shrink: 0;
  clip-path: polygon(22% 0%, 78% 0%, 100% 13%, 100% 100%, 0% 100%, 0% 13%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1px;
}
.cot-brand { font-size: 6px; font-weight: 700; color: rgba(255,255,255,.85); letter-spacing: .5px; }
.cot-num { font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 900; color: white; line-height: 1; }
.co-item-info { flex: 1; min-width: 0; }
.co-item-name {
  font-size: 12px; font-weight: 600;
  color: var(--navy);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.co-item-variant { font-size: 11px; color: var(--sub); }
.co-item-price {
  font-family: 'Poppins', sans-serif;
  font-size: 12px; font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}

.co-breakdown { padding-bottom: 0; }
.co-breakdown .cs-row { margin-bottom: 8px; font-size: 13px; }

.co-place-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
  background: var(--blue);
  color: white;
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-size: 14px; font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all .2s;
}
.co-place-btn:hover:not(:disabled) {
  background: var(--blue-h);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(62,116,196,.3);
}
.co-place-btn:disabled {
  background: var(--surface);
  color: var(--sub);
  cursor: not-allowed;
}

@media (min-width: 768px) {
  .co-wrap { padding: 32px 80px 80px; }
  .co-steps { max-width: 700px; margin-bottom: 36px; }
  .co-step-num { width: 38px; height: 38px; font-size: 14px; }
  .co-step-name { font-size: 12px; }
  .co-section { padding: 28px; }
  .co-section-title { font-size: 17px; margin-bottom: 22px; }
  .co-form-grid { grid-template-columns: 1fr 1fr; }
  .co-field-full { grid-column: 1 / -1; }
  .co-layout { flex-direction: row; align-items: flex-start; gap: 28px; max-width: 1200px; margin: 0 auto; }
  .co-main { flex: 1; min-width: 0; }
  .co-summary {
    width: 360px; flex-shrink: 0;
    position: sticky; top: 88px;
    align-self: flex-start;
    padding: 24px;
  }
  .cart-mobile-bar { display: none; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CART PAGE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.cart-wrap { padding: 24px 16px 100px; min-height: 60vh; }

.cart-empty {
  text-align: center; padding: 60px 24px;
  max-width: 420px; margin: 0 auto;
}
.cart-empty-icon {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  color: var(--sub);
}
.cart-empty-icon svg { width: 40px; height: 40px; }
.cart-empty h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px; font-weight: 700; color: var(--navy);
  margin-bottom: 8px;
}
.cart-empty p { font-size: 14px; color: var(--sub); margin-bottom: 24px; line-height: 1.65; }

.cart-layout { display: flex; flex-direction: column; gap: 20px; }
.cart-main { flex: 1; min-width: 0; }
.cart-head { margin-bottom: 18px; }
.cart-head h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 22px; font-weight: 700;
  color: var(--navy); letter-spacing: -.3px;
  margin-bottom: 4px;
}
.cart-head p { font-size: 13px; color: var(--sub); }
.cart-head p span { font-weight: 700; color: var(--blue); }

/* Cart items */
.cart-items { display: flex; flex-direction: column; gap: 12px; }
.cart-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  transition: all .2s;
}
.ci-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 14px;
  align-items: flex-start;
}
.ci-thumb {
  width: 80px; aspect-ratio: 4/5;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  text-decoration: none;
  flex-shrink: 0;
}
.ci-jersey {
  width: 100%; height: 100%;
  clip-path: polygon(22% 0%, 78% 0%, 100% 13%, 100% 100%, 0% 100%, 0% 13%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2px;
}
.cij-brand {
  font-size: 7px; font-weight: 700;
  color: rgba(255,255,255,.85);
  letter-spacing: 1px;
}
.cij-num {
  font-family: 'Poppins', sans-serif;
  font-size: 26px; font-weight: 900;
  color: white;
  line-height: 1;
}
.ci-info { min-width: 0; }
.ci-cat {
  font-size: 10px; font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 4px;
}
.ci-name {
  font-family: 'Poppins', sans-serif;
  font-size: 14px; font-weight: 600;
  color: var(--navy);
  display: block;
  margin-bottom: 4px;
  line-height: 1.3;
  text-decoration: none;
}
.ci-name:hover { color: var(--blue); }
.ci-variant {
  font-size: 11.5px;
  color: var(--sub);
  margin-bottom: 12px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 4px;
}
.ci-variant strong { color: var(--navy); font-weight: 600; }
.ci-dot { margin: 0 4px; opacity: .5; }
.ci-edit-btn {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--blue-pale);
  color: var(--blue);
  border: none;
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 10.5px; font-weight: 600;
  cursor: pointer;
  margin-left: 6px;
  transition: all .2s;
  font-family: 'Inter', sans-serif;
}
.ci-edit-btn:hover { background: var(--blue); color: white; }

/* Cart item editing mode */
.cart-item.editing {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(62,116,196,.1);
}

/* Inline variant picker */
.ci-picker {
  border-top: 1px dashed var(--line);
  margin-top: 14px;
  padding-top: 14px;
  display: flex; flex-direction: column;
  gap: 14px;
}
.cip-section { /* nothing special */ }
.cip-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 8px;
}
.cip-label { font-size: 12px; font-weight: 600; color: var(--navy); }
.cip-current { font-size: 11px; color: var(--sub); font-style: italic; }

/* Color swatches */
.cip-colors { display: flex; flex-wrap: wrap; gap: 8px; }
.cip-color {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 3px solid transparent;
  cursor: pointer;
  outline: 2px solid transparent;
  outline-offset: 2px;
  transition: all .2s;
  padding: 0;
}
.cip-color:hover { transform: scale(1.08); }
.cip-color.on {
  outline-color: var(--blue);
  border-color: var(--card);
}

/* Size buttons */
.cip-sizes { display: flex; flex-wrap: wrap; gap: 6px; }
.cip-size {
  position: relative;
  min-width: 52px;
  padding: 8px 14px 18px;
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  transition: all .2s;
  display: flex; flex-direction: column; align-items: center;
  font-family: 'Inter', sans-serif;
}
.cip-size:hover:not(:disabled) { border-color: var(--blue); color: var(--blue); }
.cip-size.on {
  border-color: var(--blue);
  background: var(--blue-pale);
  color: var(--blue);
}
.cip-size.out {
  opacity: .5;
  cursor: not-allowed;
  background: var(--surface);
}
.cip-size.out .cip-size-label {
  text-decoration: line-through;
  color: var(--sub);
}
.cip-size-label {
  font-size: 13px; font-weight: 600;
  color: var(--text);
  line-height: 1;
}
.cip-size.on .cip-size-label { color: var(--blue); }
.cip-stock {
  position: absolute;
  bottom: 3px; left: 50%;
  transform: translateX(-50%);
  font-size: 8.5px; font-weight: 500;
  color: #DC2626;
  white-space: nowrap;
  letter-spacing: .3px;
}
.cip-stock-out { color: var(--sub); font-weight: 600; }

/* Done button */
.cip-done {
  align-self: flex-end;
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--blue); color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 12px; font-weight: 700;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background .2s;
}
.cip-done:hover { background: var(--blue-h); }
.ci-bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
}
.ci-qty {
  display: inline-flex; align-items: center;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.ci-qty button {
  width: 28px; height: 28px;
  border: none; background: var(--surface);
  color: var(--navy);
  font-size: 15px; font-weight: 600;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.ci-qty button:hover:not(:disabled) { background: var(--blue-pale); }
.ci-qty button:disabled { opacity: .35; cursor: not-allowed; }
.ci-qty span {
  min-width: 28px; padding: 0 8px;
  font-size: 13px; font-weight: 600;
  color: var(--navy); text-align: center;
}
.ci-price {
  font-family: 'Poppins', sans-serif;
  font-size: 14px; font-weight: 700;
  color: var(--navy);
}
.ci-remove {
  width: 32px; height: 32px;
  border: none; border-radius: 8px;
  background: var(--surface);
  color: var(--sub);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.ci-remove:hover { background: #fee2e2; color: #dc2626; }

.cart-continue {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 18px;
  color: var(--blue);
  font-size: 13px; font-weight: 600;
  text-decoration: none;
}
.cart-continue:hover { color: var(--blue-h); }

/* Summary panel */
.cart-summary {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
}
.cs-title {
  font-family: 'Poppins', sans-serif;
  font-size: 15px; font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.cs-voucher { margin-bottom: 16px; }
.cs-label {
  display: block;
  font-size: 12px; font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.cs-voucher-row { display: flex; gap: 6px; }
.cs-voucher-input {
  flex: 1; min-width: 0;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  outline: none;
  background: var(--card);
}
.cs-voucher-input:focus { border-color: var(--blue); }
.cs-voucher-input:disabled { background: var(--surface); }
.cs-voucher-btn {
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0 14px;
  font-size: 12px; font-weight: 700;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}
.cs-voucher-btn:hover { background: var(--blue-h); }
.cs-voucher-hint {
  font-size: 11px; color: var(--sub);
  margin-top: 6px;
}
.cs-voucher-hint strong { color: var(--blue); font-weight: 700; }
.cs-voucher-success {
  font-size: 11.5px; color: #16a34a;
  margin-top: 6px;
  display: flex; align-items: center; gap: 4px;
  font-weight: 600;
}

.cs-breakdown {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-bottom: 14px;
}
.cs-row {
  display: flex; justify-content: space-between;
  font-size: 13px; color: var(--text);
  margin-bottom: 8px;
}
.cs-row span:last-child { font-weight: 600; }
.cs-muted { color: var(--sub) !important; font-style: italic; font-size: 12px; }

.cs-total {
  display: flex; justify-content: space-between;
  align-items: baseline;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  margin-bottom: 16px;
}
.cs-total span:first-child { font-size: 14px; font-weight: 600; color: var(--navy); }
.cs-total span:last-child {
  font-family: 'Poppins', sans-serif;
  font-size: 22px; font-weight: 800;
  color: var(--blue);
}

.cs-checkout {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
  background: var(--blue); color: white;
  padding: 14px;
  border-radius: 10px;
  font-size: 14px; font-weight: 700;
  text-decoration: none;
  transition: all .2s;
}
.cs-checkout:hover { background: var(--blue-h); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(62,116,196,.3); }

.cs-secure {
  font-size: 11px; color: var(--sub);
  margin-top: 12px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}

/* Mobile sticky checkout bar */
.cart-mobile-bar {
  position: fixed; bottom: 64px; left: 0; right: 0; z-index: 100;
  background: var(--card);
  border-top: 1px solid var(--line);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 -4px 16px rgba(20,40,80,.06);
}
.cmb-total { flex: 1; min-width: 0; }
.cmb-label {
  display: block; font-size: 11px; color: var(--sub);
}
.cmb-amount {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 18px; font-weight: 800; color: var(--navy);
}
.cmb-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--blue); color: white;
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 14px; font-weight: 700;
  text-decoration: none;
}
.cmb-btn:hover { background: var(--blue-h); }

@media (min-width: 768px) {
  .cart-wrap { padding: 32px 80px 80px; }
  .cart-mobile-bar { display: none; }
  .cart-layout { flex-direction: row; align-items: flex-start; gap: 32px; max-width: 1200px; margin: 0 auto; }
  .cart-main { flex: 1; }
  .cart-head h1 { font-size: 28px; }
  .cart-summary {
    width: 360px; flex-shrink: 0;
    position: sticky; top: 88px;
    align-self: flex-start;
    padding: 24px;
  }
  .cs-title { font-size: 16px; }
  .cs-total span:last-child { font-size: 26px; }

  .cart-item { padding: 18px; }
  .ci-row { grid-template-columns: 100px 1fr auto; gap: 18px; }
  .ci-thumb { width: 100px; }
  .cij-num { font-size: 30px; }
  .ci-name { font-size: 15px; }
  .ci-price { font-size: 16px; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CUSTOM JERSEY LANDING PAGE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* HERO */
.cjl-hero {
  background: linear-gradient(180deg, var(--navy) 0%, #1E3660 100%);
  color: white;
  padding: 48px 24px 56px;
  position: relative;
  overflow: hidden;
}
.cjl-hero::before {
  content: ''; position: absolute;
  top: -120px; right: -120px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(62,116,196,.25) 0%, transparent 70%);
  pointer-events: none;
}
.cjl-hero-inner { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 32px; }
.cjl-hero-text { max-width: 600px; }
.cjl-eyebrow {
  display: inline-block;
  background: rgba(62,116,196,.18);
  color: #7BB0FF;
  padding: 5px 12px;
  border-radius: 16px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.cjl-hero-text h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 36px; font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.cjl-hero-text p {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  line-height: 1.75;
  margin-bottom: 24px;
}
.cjl-hero-text p strong { color: white; font-weight: 600; }
.cjl-hero-stats {
  display: flex; gap: 24px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.cjl-hero-stats > div { flex: 0 0 auto; }
.cjl-hero-stats .stat-n {
  font-family: 'Poppins', sans-serif;
  font-size: 28px; font-weight: 800; color: white;
  line-height: 1;
}
.cjl-hero-stats .stat-n small { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.6); }
.cjl-hero-stats .stat-l { font-size: 11px; color: rgba(255,255,255,.55); margin-top: 4px; }

.cjl-hero-cta { display: flex; flex-direction: column; gap: 10px; }
.cjl-hero-cta .btn-solid { background: var(--blue); box-shadow: 0 8px 24px rgba(62,116,196,.4); }
.cjl-hero-cta .btn-solid:hover { background: var(--blue-h); }
.cjl-hero-cta .btn-soft { background: rgba(255,255,255,.1); color: white; border: 1px solid rgba(255,255,255,.18); }
.cjl-hero-cta .btn-soft:hover { background: rgba(255,255,255,.18); }

/* Hero visual â€” 3 jersey stack */
.cjl-hero-visual {
  position: relative; width: 100%; height: 280px;
  display: flex; align-items: center; justify-content: center;
}
.cjl-jersey-show {
  position: absolute;
  width: 160px; aspect-ratio: 4/5;
  clip-path: polygon(22% 0%, 78% 0%, 100% 13%, 100% 100%, 0% 100%, 0% 13%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
  box-shadow: 0 24px 48px rgba(0,0,0,.3);
}
.cjl-jersey-show span { color: white; font-family: 'Poppins', sans-serif; font-weight: 900; line-height: 1; }
.cjl-back  { transform: rotate(-12deg) translateX(-50px) scale(.85); opacity: .55; }
.cjl-mid   { transform: rotate(8deg)   translateX(50px)  scale(.9);  opacity: .75; }
.cjl-front { z-index: 2; transform: rotate(-2deg); }
.cjl-front .js-brand { font-size: 9px; font-weight: 700; color: rgba(255,255,255,.85); letter-spacing: 2.5px; text-transform: uppercase; }
.cjl-front .js-num   { font-size: 48px; font-weight: 900; text-shadow: 0 2px 12px rgba(0,0,0,.3); }
.cjl-front .js-name  { font-size: 10px; font-weight: 700; color: rgba(255,255,255,.8); letter-spacing: 2px; text-transform: uppercase; }
.cjl-back span, .cjl-mid span { font-size: 40px; }

/* PROCESS 4-step */
.cjl-steps { display: grid; gap: 16px; grid-template-columns: 1fr; }
.cjl-step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 22px;
  transition: all .25s;
}
.cjl-step:hover { border-color: var(--blue); box-shadow: 0 8px 24px rgba(62,116,196,.1); transform: translateY(-3px); }
.cjl-step-num {
  font-family: 'Poppins', sans-serif;
  font-size: 36px; font-weight: 900;
  color: var(--blue);
  opacity: .25;
  line-height: 1;
  margin-bottom: 12px;
}
.cjl-step h3 { font-family: 'Poppins', sans-serif; font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.cjl-step p { font-size: 13px; color: var(--sub); line-height: 1.65; }

/* GALLERY */
.cjl-gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.cjl-gallery-item { position: relative; overflow: hidden; border-radius: 12px; cursor: pointer; transition: transform .3s; background: var(--card); border: 1px solid var(--line); }
.cjl-gallery-item:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(20,40,80,.1); }
.cjl-gallery-jersey {
  aspect-ratio: 4/5;
  clip-path: polygon(22% 0%, 78% 0%, 100% 13%, 100% 100%, 0% 100%, 0% 13%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
  position: relative;
}
.cjl-gallery-jersey::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(255,255,255,.18) 0%, transparent 35%, transparent 65%, rgba(0,0,0,.18) 100%);
}
.gj-brand { font-size: 8px; font-weight: 700; color: rgba(255,255,255,.85); letter-spacing: 2px; text-transform: uppercase; z-index: 1; }
.gj-num   { font-family: 'Poppins', sans-serif; font-size: 36px; font-weight: 900; color: white; line-height: 1; text-shadow: 0 2px 8px rgba(0,0,0,.3); z-index: 1; }
.gj-team  { font-size: 7.5px; font-weight: 700; color: rgba(255,255,255,.85); letter-spacing: 1.5px; text-transform: uppercase; z-index: 1; }
.cjl-gallery-info { padding: 8px 12px; }
.gi-cat { font-size: 11px; font-weight: 600; color: var(--blue); text-transform: uppercase; letter-spacing: 1px; }
.cjl-gallery-note { text-align: center; font-size: 13px; color: var(--sub); margin-top: 24px; font-style: italic; }

/* MATERIAL */
.cjl-material-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cjl-material-card { background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 18px 16px; }
.cm-icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.cm-icon svg { width: 22px; height: 22px; color: var(--blue); }
.cjl-material-card h3 { font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.cjl-material-card p { font-size: 12px; color: var(--sub); line-height: 1.6; }

/* PRICING */
.cjl-pricing { display: grid; grid-template-columns: 1fr; gap: 14px; }
.cjl-price-card {
  background: var(--card); border: 1.5px solid var(--line);
  border-radius: 16px; padding: 24px 22px;
  transition: all .25s; position: relative;
}
.cjl-price-card:hover { border-color: var(--blue); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(62,116,196,.12); }
.cjl-price-popular {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-h) 100%);
  border-color: var(--blue); color: white;
}
.pc-popular-tag {
  position: absolute; top: -10px; left: 50%;
  transform: translateX(-50%);
  background: white; color: var(--blue);
  font-size: 10px; font-weight: 800; letter-spacing: 1.5px;
  padding: 4px 12px; border-radius: 12px;
  box-shadow: 0 4px 12px rgba(62,116,196,.25);
}
.pc-tier { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; color: var(--sub); text-transform: uppercase; margin-bottom: 6px; }
.cjl-price-popular .pc-tier { color: rgba(255,255,255,.75); }
.pc-qty { font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 16px; }
.cjl-price-popular .pc-qty { color: white; }
.pc-price { font-family: 'Poppins', sans-serif; font-size: 28px; font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 20px; }
.cjl-price-popular .pc-price { color: white; }
.pc-price span { font-size: 14px; font-weight: 600; color: var(--sub); }
.cjl-price-popular .pc-price span { color: rgba(255,255,255,.75); }
.cjl-price-card ul { list-style: none; padding: 0; }
.cjl-price-card li { font-size: 13px; color: var(--text); padding: 6px 0; border-top: 1px solid var(--line); }
.cjl-price-card li:first-child { border-top: none; padding-top: 0; }
.cjl-price-popular li { color: rgba(255,255,255,.92); border-color: rgba(255,255,255,.15); }

/* FAQ */
.cjl-faq { max-width: 800px; margin: 0 auto; }

/* FINAL CTA */
.cjl-final-cta {
  background: linear-gradient(135deg, var(--navy) 0%, #1E3660 50%, var(--navy) 100%);
  padding: 56px 24px; text-align: center;
  position: relative; overflow: hidden;
}
.cjl-final-cta::before {
  content: ''; position: absolute;
  bottom: -100px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(62,116,196,.3) 0%, transparent 70%);
  pointer-events: none;
}
.cjl-cta-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.cjl-cta-inner h2 { font-family: 'Poppins', sans-serif; font-size: 26px; font-weight: 700; color: white; margin-bottom: 14px; line-height: 1.2; }
.cjl-cta-inner > p { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.75; margin-bottom: 28px; }
.btn-cta-big {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--blue); color: white;
  padding: 16px 32px; border-radius: 12px;
  font-size: 15px; font-weight: 700; font-family: 'Inter', sans-serif;
  text-decoration: none; transition: all .25s;
  box-shadow: 0 12px 32px rgba(62,116,196,.45);
}
.btn-cta-big:hover { background: var(--blue-h); transform: translateY(-2px); box-shadow: 0 16px 40px rgba(62,116,196,.55); }
.cjl-cta-note { font-size: 12px; color: rgba(255,255,255,.45); margin-top: 16px; }

/* Mobile sticky CTA */
.cjl-sticky-mobile {
  position: fixed; bottom: 72px; left: 16px; right: 16px; z-index: 100;
  background: #25D366; color: white;
  padding: 12px 20px; border-radius: 12px;
  font-size: 13px; font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37,211,102,.45);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}

@media (min-width: 768px) {
  .cjl-hero { padding: 80px 80px; }
  .cjl-hero-inner { flex-direction: row; align-items: center; gap: 64px; max-width: 1200px; margin: 0 auto; }
  .cjl-hero-text { flex: 1; }
  .cjl-hero-text h1 { font-size: 54px; letter-spacing: -1.8px; }
  .cjl-hero-text p { font-size: 16px; max-width: 480px; }
  .cjl-hero-cta { flex-direction: row; }
  .cjl-hero-visual { flex: 0 0 auto; width: 380px; height: 360px; }
  .cjl-jersey-show { width: 200px; }
  .cjl-front .js-num { font-size: 64px; }
  .cjl-steps { grid-template-columns: repeat(4, 1fr); }
  .cjl-gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .cjl-material-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .cjl-pricing { grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1100px; margin: 0 auto; }
  .cjl-final-cta { padding: 100px 80px; }
  .cjl-cta-inner h2 { font-size: 36px; }
  .cjl-sticky-mobile { display: none; }
}

/* â”€â”€â”€ FLASH SALE & BANNER SLIDER (compact, biru smooth) â”€â”€â”€ */
.flash-sec, .bsl-section { padding: 0 16px; margin: 18px 0; }
.flash-inner {
  background: linear-gradient(135deg, #4A90D9 0%, #3B7EC9 50%, #2D63B3 100%);
  border-radius: 12px;
  padding: 14px 16px;
  color: white;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
  gap: 12px;
  box-shadow: 0 6px 20px rgba(62,116,196,.18);
}
.flash-glow {
  position: absolute; top: -60px; right: -60px;
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.15) 0%, transparent 70%);
  pointer-events: none;
}
.flash-left { position: relative; z-index: 1; }
.flash-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,.18);
  padding: 3px 9px;
  border-radius: 14px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.flash-title {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.2px;
  margin-bottom: 3px;
}
.flash-desc {
  font-size: 11.5px;
  opacity: .8;
  margin-bottom: 10px;
}
.flash-timer {
  display: flex; align-items: center; gap: 4px;
}
.ft-block {
  background: rgba(0,0,0,.22);
  border-radius: 6px;
  padding: 5px 8px;
  min-width: 42px;
  text-align: center;
}
.ft-num {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 15px; font-weight: 800;
  line-height: 1;
}
.ft-lbl {
  display: block;
  font-size: 7.5px; font-weight: 600;
  opacity: .7;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-top: 2px;
}
.ft-sep {
  font-size: 13px; font-weight: 800;
  opacity: .5;
}
.flash-btn {
  background: white;
  color: #2D63B3;
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: transform .15s, box-shadow .2s;
  align-self: stretch;
  position: relative;
  z-index: 1;
}
.flash-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
}

@media (min-width: 768px) {
  .flash-sec, .bsl-section { padding: 0 80px; margin: 24px 0; }
  .flash-inner {
    padding: 16px 24px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  .flash-title { font-size: 18px; margin-bottom: 0; }
  .flash-desc { display: none; }
  .flash-badge { margin-bottom: 6px; }
  .ft-num { font-size: 17px; }
  .ft-block { min-width: 48px; padding: 6px 10px; }
  .ft-lbl { font-size: 8px; }
  .flash-btn { align-self: center; padding: 10px 20px; font-size: 12.5px; }
}

/* â”€â”€â”€ PRODUCTS â”€â”€â”€ */
.tabs { display: flex; gap: 3px; background: var(--surface); padding: 3px; border-radius: 10px; width: fit-content; margin-bottom: 20px; }
.tab { padding: 7px 15px; border-radius: 8px; font-size: 13px; font-weight: 500; border: none; background: none; color: var(--sub); cursor: pointer; transition: all .2s; font-family: 'Inter', sans-serif; }
.tab.on { background: var(--card); color: var(--navy); font-weight: 600; box-shadow: 0 1px 6px rgba(0,0,0,.07); }
.prod-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.pc { background: var(--card); border-radius: 14px; overflow: hidden; border: 1px solid var(--line); cursor: pointer; transition: all .25s; text-decoration: none; color: inherit; display: block; }
.pc:hover { border-color: #c8d9f0; box-shadow: 0 8px 28px rgba(30,60,120,.08); transform: translateY(-3px); }
.pi { aspect-ratio: 4/5; display: flex; align-items: center; justify-content: center; font-size: 36px; position: relative; }
.g1{background:linear-gradient(135deg,#dbeafe,#bfdbfe)}.g2{background:linear-gradient(135deg,#e0f2fe,#bae6fd)}.g3{background:linear-gradient(135deg,#ede9fe,#ddd6fe)}.g4{background:linear-gradient(135deg,#dcfce7,#bbf7d0)}.g5{background:linear-gradient(135deg,#fce7f3,#fbcfe8)}.g6{background:linear-gradient(135deg,#f0f9ff,#e0f2fe)}.g7{background:linear-gradient(135deg,#f1f5f9,#e2e8f0)}.g8{background:linear-gradient(135deg,#ecfeff,#cffafe)}
.pbadge { position: absolute; top: 10px; left: 10px; padding: 3px 9px; border-radius: 6px; font-size: 10px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; }
.pb-b { background: var(--blue-pale); color: var(--blue); }
.pb-n { background: var(--navy); color: white; }
.pwish {
  position: absolute; top: 10px; right: 10px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .94);
  border: none;
  cursor: pointer;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .2s, transform .2s, background .2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
  color: #94A3B8;
  z-index: 2;
}
.pc:hover .pwish { opacity: 1; }
.pwish.on { opacity: 1; color: #E11D48; }    /* selalu visible kalau di-wishlist */
.pwish:hover { transform: scale(1.12); }
.pwish:active { transform: scale(.94); }
.pwish-heart, .pwish-heart-on { line-height: 1; }
.pwish-heart-on { display: none; }
.pwish.on .pwish-heart    { display: none; }
.pwish.on .pwish-heart-on { display: inline; animation: heart-pop .35s ease-out; }
@keyframes heart-pop {
  0%   { transform: scale(.6); }
  50%  { transform: scale(1.3); }
  100% { transform: scale(1); }
}

/* â”€â”€â”€ Toast notification global â”€â”€â”€ */
.sw-toast {
  position: fixed;
  left: 50%;
  bottom: 100px;
  transform: translateX(-50%) translateY(20px);
  background: #1F2937;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 22px;
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, .25);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .25s;
  max-width: 90vw;
  text-align: center;
}
.sw-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.sw-toast.ok   { background: #047857; }
.sw-toast.err  { background: #B91C1C; }
.sw-toast.warn { background: #C2410C; }
@media (min-width: 768px) {
  .sw-toast { bottom: 32px; }
}
.pc:hover .pwish { opacity: 1; }
.pbody { padding: 12px 13px; }
.pname { font-size: 13px; font-weight: 600; color: var(--navy); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 3px; }
.pvar { font-size: 11px; color: var(--sub); margin-bottom: 10px; }
.purgency {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  color: #C2410C;
  background: #FFF7ED;
  border: 1px solid #FED7AA;
  padding: 3px 8px;
  border-radius: 6px;
  margin-bottom: 8px;
  animation: urgency-pulse 1.8s ease-in-out infinite;
}
.purgency strong { color: #C2410C; font-weight: 800; }
.pdp-stock-urgent {
  background: #FFF7ED !important;
  color: #C2410C !important;
  border: 1px solid #FED7AA;
  font-weight: 700;
  animation: urgency-pulse 1.8s ease-in-out infinite;
}

/* ═══════════════════════════════════════════
   📐 SIZE GUIDE — button + modal
═══════════════════════════════════════════ */
.size-guide-btn {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--blue-pale, #EEF4FF);
  color: var(--primary, #1E3A8A);
  border: 1px solid var(--accent, #4A90D9);
  padding: 5px 10px;
  border-radius: 7px;
  font-size: .76rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s;
  font-family: inherit;
}
.size-guide-btn:hover {
  background: var(--primary, #1E3A8A);
  color: #FFFFFF;
}

/* Modal overlay */
.sg-overlay {
  position: fixed; inset: 0;
  background: rgba(15, 23, 42, .7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  animation: qv-fade .25s ease-out;
}

.sg-modal {
  position: relative;
  background: #FFFFFF;
  border-radius: 16px;
  max-width: 720px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 25px 80px rgba(0, 0, 0, .4);
}

.sg-close {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: #F1F5F9;
  color: #475569;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 5;
  transition: all .15s;
}
.sg-close:hover { background: #1F2937; color: #FFF; transform: rotate(90deg); }

.sg-content { padding: 30px 30px 26px; }

.sg-head { text-align: center; margin-bottom: 20px; }
.sg-head h2 { color: var(--primary, #1E3A8A); font-size: 1.4rem; margin: 0 0 6px; }
.sg-head p { color: #64748B; font-size: .88rem; margin: 0; }

.sg-visual {
  display: flex; justify-content: center;
  background: #F8FAFC;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
}

.sg-table-wrap { overflow-x: auto; margin-bottom: 24px; border-radius: 10px; border: 1px solid #E2E8F0; }
.sg-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.sg-table thead th {
  background: var(--primary, #1E3A8A);
  color: #FFFFFF;
  padding: 11px 14px;
  text-align: left;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .3px;
}
.sg-table tbody td {
  padding: 10px 14px;
  border-bottom: 1px solid #F1F5F9;
  color: #334155;
}
.sg-table tbody tr:last-child td { border-bottom: none; }
.sg-table tbody tr:hover { background: #F8FAFC; }
.sg-table tbody tr.sg-row-recommended {
  background: linear-gradient(90deg, #FEF9C3 0%, #FEF3C7 100%);
  font-weight: 700;
  position: relative;
}
.sg-table tbody tr.sg-row-recommended td:first-child::before {
  content: '★ ';
  color: #CA8A04;
}

/* Calculator */
.sg-calc {
  background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 20px;
}
.sg-calc h3 { color: var(--primary, #1E3A8A); font-size: 1rem; margin: 0 0 4px; }
.sg-calc-desc { color: #64748B; font-size: .82rem; margin-bottom: 14px; }
.sg-calc-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 14px; }
.sg-calc-field label { display: block; font-size: .78rem; color: #64748B; margin-bottom: 5px; font-weight: 600; }
.sg-input-suffix { position: relative; }
.sg-input-suffix input {
  width: 100%;
  padding: 9px 38px 9px 12px;
  border: 1.5px solid #BAE6FD;
  border-radius: 8px;
  font-size: .92rem;
  font-family: inherit;
  font-weight: 600;
  color: #0F172A;
  background: #FFFFFF;
}
.sg-input-suffix input:focus { outline: none; border-color: var(--accent, #4A90D9); }
.sg-input-suffix span {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: .82rem;
  color: #64748B;
  font-weight: 600;
}

.sg-result {
  background: #FFFFFF;
  border: 1.5px dashed #10B981;
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.sg-result small { color: #64748B; font-size: .82rem; }
.sg-result strong {
  background: linear-gradient(135deg, #10B981, #059669);
  color: #FFFFFF;
  padding: 6px 18px;
  border-radius: 8px;
  font-size: 1.4rem;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
}
.sg-result span { color: #047857; font-size: .8rem; font-style: italic; }

.sg-result-empty {
  text-align: center;
  padding: 10px;
  color: #64748B;
  font-size: .85rem;
}

.sg-tips {
  background: #FEFCE8;
  border-left: 4px solid #F59E0B;
  border-radius: 8px;
  padding: 14px 18px;
}
.sg-tips h4 { color: #78350F; font-size: .92rem; margin: 0 0 8px; }
.sg-tips ul { margin: 0; padding-left: 18px; color: #78350F; font-size: .84rem; line-height: 1.6; }
.sg-tips li { margin-bottom: 4px; }

/* Mobile responsive */
@media (max-width: 580px) {
  .sg-overlay { padding: 10px; align-items: flex-end; }
  .sg-modal { border-radius: 16px 16px 0 0; max-height: 94vh; }
  .sg-content { padding: 24px 18px 22px; }
  .sg-head h2 { font-size: 1.2rem; }
  .sg-visual svg { width: 100px; height: 120px; }
  .sg-table { font-size: .82rem; }
  .sg-table thead th, .sg-table tbody td { padding: 9px 10px; }
  .sg-calc-inputs { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   📦 ESTIMATED DELIVERY (PDP)
═══════════════════════════════════════════ */
.pdp-delivery {
  display: flex; align-items: center; gap: 12px;
  background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
  border: 1px solid #BFDBFE;
  border-radius: 10px;
  padding: 11px 14px;
  margin: 12px 0 18px;
}
.pdp-delivery-icon {
  width: 38px; height: 38px;
  background: #FFFFFF;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary, #1E3A8A);
  flex-shrink: 0;
}
.pdp-delivery-info { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.pdp-delivery-info small { color: #64748B; font-size: .7rem; letter-spacing: .8px; font-weight: 700; text-transform: uppercase; }
.pdp-delivery-info strong { color: var(--primary, #1E3A8A); font-size: .98rem; font-weight: 800; }
.pdp-delivery-info span { color: #64748B; font-size: .76rem; }

/* ═══════════════════════════════════════════
   🚚 FREE SHIPPING PROGRESS BAR
═══════════════════════════════════════════ */
.fsb-wrap {
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
  border: 1.5px solid #FCD34D;
  border-radius: 12px;
  padding: 14px 18px;
  margin: 14px 0 18px;
}
.fsb-wrap.achieved {
  background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
  border-color: #34D399;
}
.fsb-content { display: flex; flex-direction: column; gap: 8px; }
.fsb-text {
  font-size: .92rem;
  color: #78350F;
  line-height: 1.4;
}
.fsb-wrap.achieved .fsb-text { color: #065F46; }
.fsb-text strong { font-weight: 800; }
.fsb-wrap.achieved .fsb-text strong { color: #047857; }

.fsb-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, .65);
  border-radius: 99px;
  overflow: hidden;
}
.fsb-fill {
  height: 100%;
  background: linear-gradient(90deg, #F59E0B 0%, #FCD34D 100%);
  border-radius: 99px;
  transition: width .6s ease;
  position: relative;
  overflow: hidden;
}
.fsb-wrap.achieved .fsb-fill {
  background: linear-gradient(90deg, #10B981 0%, #34D399 100%);
}
.fsb-fill::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
  animation: fsb-shine 2s linear infinite;
}
@keyframes fsb-shine {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

.fsb-info { display: flex; justify-content: space-between; font-size: .72rem; color: #78350F; }
.fsb-wrap.achieved .fsb-info { color: #065F46; }

@media (max-width: 580px) {
  .fsb-wrap { padding: 12px 14px; margin: 10px 0 14px; }
  .fsb-text { font-size: .85rem; }
}
@keyframes urgency-pulse {
  0%, 100% { background: #FFF7ED; }
  50%      { background: #FED7AA; }
}
.pfoot { display: flex; align-items: center; justify-content: space-between; }
.pprice { font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 700; color: var(--navy); }
.padd { width: 30px; height: 30px; border-radius: 8px; background: var(--blue-pale); color: var(--primary, #1E3A8A); border: none; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .2s; }
.padd:hover { background: var(--primary, #1E3A8A); color: white; }

/* Tombol View â€” abu, di samping tombol + */
.pbtns { display: flex; gap: 6px; align-items: center; }
.pview { width: 30px; height: 30px; border-radius: 8px; background: #F1F5F9; color: #64748B; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .2s; padding: 0; }
.pview:hover { background: #1F2937; color: #FFF; transform: scale(1.05); }
.pview svg { display: block; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   QUICK VIEW MODAL â€” popup detail produk
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.qv-overlay {
  position: fixed; inset: 0;
  background: rgba(15, 23, 42, .7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  animation: qv-fade .25s ease-out;
}
@keyframes qv-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.qv-modal {
  position: relative;
  background: #FFFFFF;
  border-radius: 16px;
  max-width: 880px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, .4);
  display: flex;
  flex-direction: column;
}

.qv-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .94);
  color: #475569;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
  transition: all .15s;
}
.qv-close:hover { background: #1F2937; color: #FFF; transform: rotate(90deg); }

/* Loading & error */
.qv-loading, .qv-error {
  padding: 60px 30px;
  text-align: center;
}
.qv-spinner {
  width: 40px; height: 40px;
  border: 3px solid #E2E8F0;
  border-top-color: var(--primary, #1E3A8A);
  border-radius: 50%;
  animation: qv-spin .8s linear infinite;
  margin: 0 auto 14px;
}
@keyframes qv-spin {
  to { transform: rotate(360deg); }
}
.qv-loading p { color: #64748B; font-size: .88rem; }
.qv-error h3 { color: #DC2626; margin-bottom: 8px; }
.qv-error p { color: #64748B; margin-bottom: 14px; }

/* Content layout: 2 column desktop, stacked mobile */
.qv-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
  flex: 1;
  min-height: 0;
}

/* LEFT â€” Gallery */
.qv-gallery {
  background: #F8FAFC;
  display: flex;
  flex-direction: column;
}
.qv-main-img {
  position: relative;
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, #F8FAFC, #EFF6FF);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.qv-img {
  max-width: 100%; max-height: 100%;
  width: auto; height: auto;
  object-fit: contain;
  display: block;
  animation: qv-fade .3s ease-out;
}
.qv-img-fallback {
  width: 70%;
  aspect-ratio: 4/5;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #FFF;
  font-size: 4rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
}
.qv-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .94);
  color: #1F2937;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
  transition: all .15s;
}
.qv-nav:hover { background: var(--primary, #1E3A8A); color: #FFF; }
.qv-prev { left: 12px; }
.qv-next { right: 12px; }

.qv-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: linear-gradient(135deg, var(--accent, #4A90D9), var(--primary, #1E3A8A));
  color: #FFF;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.qv-thumbs {
  display: flex;
  gap: 8px;
  padding: 12px 14px;
  background: #FFF;
  border-top: 1px solid #F1F5F9;
  overflow-x: auto;
  flex-shrink: 0;
}
.qv-thumb {
  width: 54px; height: 54px;
  border-radius: 7px;
  border: 2px solid transparent;
  background: #F8FAFC;
  cursor: pointer;
  overflow: hidden;
  flex-shrink: 0;
  padding: 0;
  transition: border-color .15s;
}
.qv-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.qv-thumb.on { border-color: var(--primary, #1E3A8A); }
.qv-thumb:hover { border-color: var(--accent, #4A90D9); }

.qv-dots {
  display: none;
  justify-content: center;
  gap: 6px;
  padding: 8px;
  background: #FFF;
}
.qv-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #CBD5E1;
  border: none;
  cursor: pointer;
  transition: background .15s, transform .15s;
  padding: 0;
}
.qv-dot.on { background: var(--primary, #1E3A8A); transform: scale(1.25); }

/* RIGHT â€” Info */
.qv-info {
  padding: 30px 32px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.qv-cat {
  display: block;
  color: var(--accent, #4A90D9);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.qv-name {
  font-size: 1.4rem;
  color: var(--primary, #1E3A8A);
  font-weight: 800;
  margin: 0 0 10px;
  line-height: 1.25;
}
.qv-rating {
  display: flex; align-items: center; gap: 8px;
  font-size: .82rem;
  color: #64748B;
  margin-bottom: 14px;
}
.qv-stars { color: #F59E0B; font-size: .9rem; }

.qv-price-row {
  display: flex; align-items: baseline; gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.qv-price {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary, #1E3A8A);
}
.qv-price-old {
  font-size: .92rem;
  color: #94A3B8;
  text-decoration: line-through;
}
.qv-disc {
  background: #FEE2E2;
  color: #DC2626;
  padding: 3px 9px;
  border-radius: 6px;
  font-size: .7rem;
  font-weight: 700;
}

.qv-stock { margin-bottom: 14px; font-size: .85rem; }
.qv-stock-ok { color: #047857; }
.qv-stock-ok strong { font-family: 'Poppins', sans-serif; }
.qv-stock-out { color: #DC2626; }

.qv-short {
  color: #475569;
  font-size: .88rem;
  line-height: 1.65;
  margin-bottom: 12px;
}
.qv-var {
  background: #F1F5F9;
  color: #475569;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: .82rem;
  margin-bottom: 16px;
}

.qv-actions {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #F1F5F9;
}
.qv-btn-detail {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 18px !important;
  font-size: .9rem !important;
}
.qv-btn-cart {
  background: #FFF;
  color: var(--primary, #1E3A8A);
  border: 1.5px solid var(--primary, #1E3A8A);
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: inherit;
  transition: all .15s;
}
.qv-btn-cart:hover { background: var(--primary, #1E3A8A); color: #FFF; }

/* Mobile responsive */
@media (max-width: 768px) {
  .qv-overlay { padding: 12px; align-items: flex-end; }
  .qv-modal { max-height: 92vh; border-radius: 16px 16px 0 0; max-width: 100%; }
  .qv-content { grid-template-columns: 1fr; }
  .qv-main-img { aspect-ratio: 4/4; padding: 16px; }
  .qv-thumbs { display: none; }
  .qv-dots { display: flex; }
  .qv-info { padding: 20px 22px 26px; }
  .qv-name { font-size: 1.2rem; }
  .qv-price { font-size: 1.4rem; }
  .qv-close { width: 30px; height: 30px; }
  .qv-nav { width: 30px; height: 30px; }
}

/* â”€â”€â”€ PRODUCT CARD: foto upload (override jersey illustration) â”€â”€â”€ */
.pi.has-photo {
  padding: 18px;                /* âš¡ kasih margin dalam box biar foto tidak terlalu besar */
  background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
  overflow: hidden;
}
.pc-photo {
  position: absolute;
  top: 18px; left: 18px; right: 18px; bottom: 18px;  /* foto inside padding */
  width: calc(100% - 36px);
  height: calc(100% - 36px);
  object-fit: contain;          /* foto UTUH masuk box, gak crop */
  object-position: center;
  display: block;
  transition: transform .35s ease;
}
.pc:hover .pc-photo { transform: scale(1.06); }

/* â”€â”€â”€ CUSTOM JERSEY (clean & impactful) â”€â”€â”€ */
.cj-section {
  padding: 64px 24px;
  background: linear-gradient(180deg, var(--navy) 0%, #1E3660 100%);
  position: relative; overflow: hidden;
}
.cj-section::before {
  content: ''; position: absolute; top: -120px; right: -120px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(62,116,196,.25) 0%, transparent 70%);
  pointer-events: none;
}
.cj-inner { display: flex; flex-direction: column; gap: 36px; align-items: center; position: relative; z-index: 1; }
.cj-text { text-align: center; max-width: 540px; }
.cj-text .lbl { color: rgba(62,116,196,.85); display: inline-block; margin-bottom: 10px; }
.cj-text h2 { font-family: 'Poppins', sans-serif; font-size: 28px; font-weight: 700; color: white; line-height: 1.2; letter-spacing: -.3px; margin-bottom: 14px; }
.cj-text p { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.75; margin-bottom: 24px; }

.cj-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px 18px; margin: 0 auto 28px;
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,.85);
  text-align: left; max-width: 380px;
}
.cj-features div { display: flex; align-items: center; gap: 9px; }
.cj-features svg { color: var(--blue); flex-shrink: 0; }

/* 3D STAGE â€” perspective container */
.cj-visual {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 30px 16px; gap: 20px;
  perspective: 1400px;
  perspective-origin: 50% 50%;
  position: relative;
}

.cj-mockup-wrapper {
  display: flex; flex-direction: column;
  align-items: center; gap: 18px;
  width: 100%;
}

/* 3D Jersey container â€” SVG-based realistic mockup */
.cj-jersey-3d {
  width: 240px;
  position: relative;
  transform: rotateY(var(--rot, 0deg));
  transform-style: preserve-3d;
  transition: transform .04s linear;
  will-change: transform, translate;
  filter: drop-shadow(0 24px 32px rgba(20,40,100,.45));

  /* Cursor & UX untuk drag rotate */
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  touch-action: none; /* prevent browser scroll saat drag jersey di mobile */
}

.cj-jersey-3d.dragging {
  cursor: grabbing;
  transition: none;
  animation: none !important;
}

.cj-jersey-3d svg,
.cj-jersey-3d * {
  pointer-events: none; /* drag tetap handle di parent */
}

/* Floating animation â€” hanya saat tidak di-drag */
.cj-jersey-3d.floating {
  animation: jersey-float 5s ease-in-out infinite;
}
@keyframes jersey-float {
  0%, 100% { translate: 0 0 0; }
  50%      { translate: 0 -8px 0; }
}

/* SVG fills full container */
.cj-jersey-3d svg {
  width: 100%; height: auto; display: block;
}

/* Customization overlay (text/number/name pop out) */
.cj-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center;
  pointer-events: none;
  transform-style: preserve-3d;
}
.cj-overlay > * {
  position: absolute;
  transform: translateZ(20px);
  transition: opacity .4s ease, transform .5s cubic-bezier(.2,.8,.2,1);
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.jo-brand {
  top: 24%;
  font-size: 10px; font-weight: 700;
  color: rgba(255,255,255,.95);
  letter-spacing: 2.5px; text-transform: uppercase;
}
.jo-num {
  top: 38%;
  font-family: 'Poppins', sans-serif;
  font-size: 72px; font-weight: 900;
  color: white;
  line-height: 1;
  text-shadow: 0 4px 16px rgba(0,0,0,.4);
  transform: translateZ(35px);
}
.jo-name {
  bottom: 18%;
  font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,.88);
  letter-spacing: 2.5px; text-transform: uppercase;
}

/* Pop-in animation untuk elemen baru muncul */
.cj-overlay > *.popping {
  animation: element-pop .5s cubic-bezier(.2,.8,.2,1) backwards;
}
@keyframes element-pop {
  from { opacity: 0; transform: translateZ(20px) translateY(15px) scale(.6); }
  to   { opacity: 1; }
}

/* â”€â”€â”€ Play button â”€â”€â”€ */
.cj-play-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--blue);
  color: white;
  padding: 12px 24px;
  border-radius: 24px;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 600;
  cursor: pointer;
  transition: all .25s cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 8px 20px rgba(62,116,196,.4);
}
.cj-play-btn:hover:not(:disabled) {
  background: var(--blue-h);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(62,116,196,.5);
}
.cj-play-btn:disabled { opacity: .6; cursor: not-allowed; }
.cj-play-btn svg { width: 14px; height: 14px; }

/* â”€â”€â”€ Step indicators â”€â”€â”€ */
.cj-steps {
  display: flex; gap: 8px;
  justify-content: center; flex-wrap: wrap;
}
.cj-step-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px 6px 6px;
  border-radius: 20px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,.5);
  transition: all .3s;
}
.cj-step-pill > span {
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(255,255,255,.1);
  font-size: 10px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
}
.cj-step-pill.on {
  background: rgba(62,116,196,.3);
  border-color: rgba(62,116,196,.55);
  color: white;
}
.cj-step-pill.on > span { background: var(--blue); color: white; }

.cj-caption {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px;
  font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,.85);
  letter-spacing: .3px;
  backdrop-filter: blur(8px);
}
.cj-caption svg { opacity: .8; }

.btn-ghost-blue {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(62,116,196,.1); color: #7EB0EE;
  border: 1.5px solid rgba(62,116,196,.3);
  padding: 13px 24px; border-radius: 10px;
  font-size: 14px; font-weight: 600; cursor: pointer;
  font-family: 'Inter', sans-serif; transition: all .2s;
  text-decoration: none;
}
.btn-ghost-blue:hover { background: var(--blue); color: white; border-color: var(--blue); }

/* â”€â”€â”€ TRUST â”€â”€â”€ */
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.tcard { background: var(--card); border-radius: 14px; padding: 18px 14px; border: 1px solid var(--line); display: flex; flex-direction: column; gap: 10px; }
.tico { width: 40px; height: 40px; border-radius: 11px; background: var(--blue-pale); display: flex; align-items: center; justify-content: center; }
.tico svg { width: 18px; height: 18px; color: var(--blue); }
.tt { font-size: 13px; font-weight: 600; color: var(--navy); line-height: 1.3; }
.td { font-size: 12px; color: var(--sub); line-height: 1.5; }

/* â”€â”€â”€ TESTIMONIALS â”€â”€â”€ */
.testi-row { display: flex; gap: 12px; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 4px; }
.testi-row::-webkit-scrollbar { display: none; }
.tcard2 { flex-shrink: 0; width: 260px; background: var(--card); border-radius: 14px; padding: 20px; border: 1px solid var(--line); }
.tstars { color: var(--blue); font-size: 12px; margin-bottom: 10px; opacity: .8; }
.tquote { font-size: 13px; color: var(--sub); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.twho { display: flex; align-items: center; gap: 10px; }
.tav { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.av1{background:linear-gradient(135deg,#3E74C4,#2D63B3)}.av2{background:linear-gradient(135deg,#0ea5e9,#0369a1)}.av3{background:linear-gradient(135deg,#10b981,#065f46)}
.tnm { font-size: 13px; font-weight: 600; color: var(--navy); }
.trl { font-size: 11px; color: var(--sub); }

/* â”€â”€â”€ NEWSLETTER â”€â”€â”€ */
.nl { background: linear-gradient(135deg, var(--navy) 0%, #1e3660 100%); padding: 48px 24px; text-align: center; }
.nl h2 { font-family: 'Poppins', sans-serif; font-size: 22px; font-weight: 700; color: white; margin-bottom: 8px; letter-spacing: -.3px; }
.nl p { color: rgba(255,255,255,.45); font-size: 13px; margin-bottom: 22px; }
.nl-form { display: flex; flex-direction: column; gap: 10px; max-width: 320px; margin: 0 auto; }
.nl-in { padding: 12px 16px; border-radius: 10px; border: 1.5px solid rgba(255,255,255,.1); background: rgba(255,255,255,.06); color: white; font-size: 14px; font-family: 'Inter', sans-serif; outline: none; transition: border-color .2s; }
.nl-in::placeholder { color: rgba(255,255,255,.28); }
.nl-in:focus { border-color: rgba(62,116,196,.5); }
.nl-btn { background: var(--blue); color: white; padding: 12px; border-radius: 10px; border: none; font-weight: 600; font-size: 14px; cursor: pointer; font-family: 'Inter', sans-serif; transition: background .2s; }
.nl-btn:hover { background: var(--blue-h); }

/* â”€â”€â”€ FOOTER â”€â”€â”€ */
footer { background: var(--navy); color: white; padding: 48px 24px 28px; }
.f-logo { display: flex; align-items: center; gap: 9px; font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 700; color: white; margin-bottom: 12px; }
.f-logo span { color: var(--blue); }
.fdesc { font-size: 13px; color: rgba(255,255,255,.3); line-height: 1.7; margin-bottom: 18px; }
.fsoc { display: flex; gap: 8px; margin-bottom: 36px; }
.fsoc a { width: 32px; height: 32px; border-radius: 8px; background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center; font-size: 14px; transition: background .2s; text-decoration: none; }
.fsoc a:hover { background: var(--blue); }
.fcols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 36px; }
.fct { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 12px; }
.flinks { display: flex; flex-direction: column; gap: 9px; }
.flink { font-size: 13px; color: rgba(255,255,255,.3); transition: color .2s; text-decoration: none; }
.flink:hover { color: rgba(255,255,255,.7); }
.fbot {
  background: #FAFBFD;
  margin: 22px -24px -28px;
  padding: 18px 24px;
  display: flex; flex-direction: column; align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line);
}
.fcopy { font-size: 12px; color: var(--sub); text-align: center; }
.fpays { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; }
.fpay {
  padding: 5px 10px; border-radius: 6px;
  background: var(--card); border: 1px solid var(--line);
  font-size: 10px; font-weight: 700;
  color: var(--text); letter-spacing: .5px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PRODUCT DETAIL PAGE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.breadcrumb { padding: 14px 24px; display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--sub); background: var(--card); border-bottom: 1px solid var(--line); }
.breadcrumb a { color: var(--sub); transition: color .2s; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb span { color: var(--text); font-weight: 500; }

.pdp-layout { display: flex; flex-direction: column; }
.pdp-sidebar { display: none; }
.pdp-main { display: flex; flex-direction: column; }

.pdp-img-col { background: var(--card); border-radius: 14px; overflow: hidden; box-shadow: 0 1px 4px rgba(15,23,42,.04); }
.pdp-img-main {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  aspect-ratio: 4/5;
  display: flex; align-items: center; justify-content: center;
  font-size: 80px;
  position: relative;
  overflow: hidden;
  padding: 20px;            /* ⚡ buffer biar foto tidak nempel pinggir */
}
.pdp-img-main.has-photo { background: #FFFFFF; padding: 16px; }
.pdp-photo {
  position: absolute;
  inset: 16px;                  /* match padding container */
  width: calc(100% - 32px);
  height: calc(100% - 32px);
  max-width: 100%; max-height: 100%;
  object-fit: contain;          /* ⚡ foto UTUH, tidak crop, tidak overflow */
  object-position: center;
  display: block;
}
.pdp-thumbs {
  display: flex; gap: 10px;
  padding: 14px 18px;
  background: var(--card);
  border-top: 1px solid var(--line);  /* separator antara image & thumbs */
  overflow-x: auto;
}
.pdp-thumb {
  width: 72px; height: 72px;
  border-radius: 10px;
  border: 2px solid #E2E8F0;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  transition: border-color .15s, transform .15s, box-shadow .15s;
  background: #FFFFFF;            /* selalu putih bersih — tidak ada BG hitam */
  overflow: hidden;
  padding: 4px;                   /* tipis biar foto lebih jelas */
}
.pdp-thumb img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #FFFFFF;            /* fallback bg kalau foto transparent/dark edge */
}
.pdp-thumb.on {
  border-color: var(--primary, #1E3A8A);
  background: #FFFFFF;           /* tetap putih — TIDAK ada inner gelap */
  box-shadow: 0 0 0 2px rgba(30, 58, 138, .15);
}
.pdp-thumb:hover { border-color: var(--accent, #4A90D9); transform: translateY(-1px); }

/* PDP Extras: Share & Social Proof — di bawah gambar utama */
.pdp-extras {
  padding: 14px 18px;
  background: var(--card);
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 12px;
}

/* Share buttons row */
.pdp-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.pdp-share-label {
  display: flex; align-items: center; gap: 6px;
  font-size: .82rem;
  color: var(--sub, #7A8EA6);
  font-weight: 600;
}
.pdp-share-label svg { color: var(--primary, #1E3A8A); }
.pdp-share-btns {
  display: flex;
  gap: 8px;
}
.pdp-share-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #F8FAFC;
  color: var(--sub, #7A8EA6);
  border: 1.5px solid #E2E8F0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .15s;
  text-decoration: none;
  padding: 0;
}
.pdp-share-btn:hover { transform: translateY(-2px); }
.pdp-share-btn.whatsapp:hover { background: #25D366; color: #FFF; border-color: #25D366; }
.pdp-share-btn.facebook:hover { background: #1877F2; color: #FFF; border-color: #1877F2; }
.pdp-share-btn.twitter:hover  { background: #000000; color: #FFF; border-color: #000000; }
.pdp-share-btn.copy:hover     { background: var(--primary, #1E3A8A); color: #FFF; border-color: var(--primary, #1E3A8A); }
.pdp-share-btn.copied { background: #10B981; color: #FFF; border-color: #10B981; }

/* Social Proof Counter */
.pdp-proof {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 10px;
  border-top: 1px dashed var(--line);
}
.pdp-proof-item {
  display: flex; align-items: center; gap: 8px;
  font-size: .82rem;
  color: var(--sub, #7A8EA6);
}
.pdp-proof-item svg { color: var(--accent, #4A90D9); flex-shrink: 0; }
.pdp-proof-item strong { color: var(--primary, #1E3A8A); font-weight: 700; }
.pdp-proof-item.proof-active svg { color: #10B981; }
.pdp-proof-item.proof-active strong { color: #047857; }
.pdp-proof-item.proof-urgent {
  color: #C2410C;
  font-weight: 600;
  animation: urgency-pulse 1.8s ease-in-out infinite;
  background: #FFF7ED;
  padding: 6px 10px;
  border-radius: 7px;
  border: 1px solid #FED7AA;
}
.pdp-proof-item.proof-urgent svg { color: #DC2626; }
.pdp-proof-item.proof-urgent strong { color: #C2410C; }

/* Mobile responsive */
@media (max-width: 580px) {
  .pdp-share { flex-direction: column; align-items: flex-start; gap: 8px; }
  .pdp-extras { padding: 12px 14px; }
}

/* 📐 Panduan Ukuran inline calculator di accordion */
.pg-calc {
  background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 14px;
}
.pg-calc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.pg-calc-field label { display: block; font-size: .76rem; color: #64748B; margin-bottom: 4px; font-weight: 600; }
.pg-calc-suffix { position: relative; }
.pg-calc-suffix input {
  width: 100%;
  padding: 8px 38px 8px 12px;
  border: 1.5px solid #BAE6FD;
  border-radius: 8px;
  font-size: .9rem;
  font-family: inherit;
  font-weight: 600;
  color: #0F172A;
  background: #FFFFFF;
}
.pg-calc-suffix input:focus { outline: none; border-color: var(--accent, #4A90D9); }
.pg-calc-suffix span { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); font-size: .78rem; color: #64748B; font-weight: 600; }

.pg-result {
  background: #FFFFFF;
  border: 1.5px dashed #10B981;
  border-radius: 10px;
  padding: 10px 14px;
  display: flex; align-items: baseline; gap: 10px;
  margin-top: 6px;
}
.pg-result small { color: #64748B; font-size: .82rem; }
.pg-result strong {
  background: linear-gradient(135deg, #10B981, #059669);
  color: #FFFFFF;
  padding: 4px 14px;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
}

.pg-row-on {
  background: linear-gradient(90deg, #FEF9C3 0%, #FEF3C7 100%);
  font-weight: 700;
}
.pg-row-on td:first-child::before { content: '★ '; color: #CA8A04; }

@media (max-width: 580px) {
  .pg-calc-row { grid-template-columns: 1fr; }
}

/* 🛒 Marketplace icon buttons (di dalam accordion) — bundar, brand color */
.pdp-marketplace-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pdp-mp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue-pale, #EEF4FF);
  color: var(--primary, #1E3A8A);
  border: none;
  text-decoration: none;
  box-shadow: 0 1px 3px rgba(15, 23, 42, .06);
  transition: all .15s;
  cursor: pointer;
}
.pdp-mp-btn:hover {
  background: var(--primary, #1E3A8A);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(30, 58, 138, .25);
}
.pdp-mp-btn svg { display: block; }

/* PDP Trust info (delivery + warranty) — konsisten SVG biru brand */
.pdp-trust {
  background: linear-gradient(135deg, #EFF6FF 0%, #F8FAFC 100%);
  border: 1px solid #DBEAFE;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 20px;
  display: flex; flex-direction: column; gap: 10px;
}
.pdp-trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
  color: var(--sub, #7A8EA6);
  line-height: 1.4;
}
.pdp-trust-item strong { color: var(--primary, #1E3A8A); font-weight: 700; }
.pdp-trust-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: #FFFFFF;
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--primary, #1E3A8A);
  box-shadow: 0 1px 3px rgba(30, 58, 138, .08);
}
.pdp-thumb:hover { border-color: var(--blue-pale); }
.t-g1{background:linear-gradient(135deg,#dbeafe,#bfdbfe)}.t-g2{background:linear-gradient(135deg,#dcfce7,#bbf7d0)}.t-g3{background:linear-gradient(135deg,#fce7f3,#fbcfe8)}.t-g4{background:linear-gradient(135deg,#fff7ed,#fed7aa)}

.pdp-info { padding: 20px 24px; background: var(--card); }
.pdp-cat { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; }
.pdp-name { font-family: 'Poppins', sans-serif; font-size: 22px; font-weight: 700; color: var(--navy); letter-spacing: -.3px; margin-bottom: 8px; line-height: 1.25; }
.pdp-rating { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--sub); margin-bottom: 16px; }
.pdp-stars { color: var(--blue); }
.pdp-price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.pdp-price { font-family: 'Poppins', sans-serif; font-size: 26px; font-weight: 800; color: var(--navy); }
.pdp-stock { font-size: 12px; color: #16a34a; font-weight: 600; background: #dcfce7; padding: 4px 10px; border-radius: 20px; }

.pdp-label { font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.color-opts { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.color-opt { width: 28px; height: 28px; border-radius: 50%; border: 3px solid transparent; cursor: pointer; transition: border-color .2s; outline: 2px solid transparent; outline-offset: 2px; }
.color-opt.on { outline-color: var(--blue); }

.size-opts { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.size-opt { padding: 7px 16px; border-radius: 8px; border: 1.5px solid var(--line); font-size: 13px; font-weight: 500; cursor: pointer; transition: all .2s; color: var(--text); background: var(--card); }
.size-opt:hover { border-color: var(--blue); color: var(--blue); }
.size-opt.on { border-color: var(--blue); background: var(--blue-pale); color: var(--blue); font-weight: 600; }

.qty-row { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.qty-ctrl { display: flex; align-items: center; border: 1.5px solid var(--line); border-radius: 10px; overflow: hidden; }
.qty-btn { width: 36px; height: 36px; border: none; background: var(--surface); cursor: pointer; font-size: 18px; color: var(--navy); display: flex; align-items: center; justify-content: center; transition: background .2s; }
.qty-btn:hover { background: var(--blue-pale); }
.qty-num { width: 44px; text-align: center; font-weight: 600; font-size: 15px; color: var(--navy); border: none; background: none; outline: none; }

.pdp-cta { display: flex; gap: 10px; margin-bottom: 20px; }
.btn-cart { flex: 1; background: var(--blue); color: white; padding: 14px; border-radius: 10px; border: none; font-size: 14px; font-weight: 600; cursor: pointer; font-family: 'Inter', sans-serif; transition: background .2s; }
.btn-cart:hover { background: var(--blue-h); }
.btn-wish { width: 48px; height: 48px; border: 1.5px solid var(--line); border-radius: 10px; background: var(--card); cursor: pointer; font-size: 20px; display: flex; align-items: center; justify-content: center; transition: all .2s; }
.btn-wish:hover { border-color: #f87171; color: #ef4444; }

.acc-item { border-top: 1px solid var(--line); }
.acc-item:last-of-type { border-bottom: 1px solid var(--line); }
.acc-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0; cursor: pointer;
  font-size: 14px; font-weight: 600; color: var(--navy);
  user-select: none;
  transition: color .2s;
}
.acc-head:hover { color: var(--blue); }
.acc-head svg { transition: transform .25s ease; flex-shrink: 0; color: var(--sub); }
.acc-head:hover svg { color: var(--blue); }
.acc-item.open .acc-head svg { transform: rotate(180deg); color: var(--blue); }

/* Accordion body â€” CSS Grid trick (no display toggle, no layout jank) */
.acc-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s cubic-bezier(.4, 0, .2, 1);
  font-size: 13px; color: var(--sub); line-height: 1.75;
}
.acc-item.open .acc-body { grid-template-rows: 1fr; }
.acc-body > .acc-content {
  overflow: hidden;
  min-height: 0;
}
.acc-item.open .acc-body > .acc-content { padding-bottom: 16px; }

/* â”€â”€â”€ PDP Description Sections (clean tables) â”€â”€â”€ */
.pdp-section { margin-bottom: 24px; }
.pdp-section-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.pdp-description {
  font-size: 13px;
  color: var(--text);
  line-height: 1.75;
}
.pdp-description strong { color: var(--navy); font-weight: 600; }

/* Spec table â€” 2 column key/value */
.pdp-specs {
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: var(--card);
}
.spec-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  font-size: 13px;
}
.spec-row + .spec-row { border-top: 1px solid var(--line); }
.spec-label {
  padding: 11px 14px;
  background: var(--surface);
  color: var(--sub);
  font-weight: 500;
}
.spec-value {
  padding: 11px 14px;
  color: var(--text);
  font-weight: 500;
}

/* Size guide table */
.size-table-wrap {
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.size-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  background: var(--card);
}
.size-table th {
  padding: 10px 12px;
  background: var(--surface);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--sub);
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.size-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
}
.size-table tbody tr:last-child td { border-bottom: none; }
.size-table tbody td:first-child {
  font-weight: 700;
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
}
.size-table tbody tr:hover { background: var(--blue-pale); }

.size-note {
  font-size: 11px;
  color: var(--sub);
  margin-top: 8px;
  font-style: italic;
}

@media (min-width: 768px) {
  .spec-row { grid-template-columns: 140px 1fr; }
}

.related { padding: 40px 24px; }
.related .lbl { margin-bottom: 6px; }
.related .ttl { margin-bottom: 20px; }

.sticky-cart { position: fixed; bottom: 64px; left: 0; right: 0; z-index: 180; padding: 12px 16px; background: rgba(255,255,255,.97); backdrop-filter: blur(10px); border-top: 1px solid var(--line); display: flex; gap: 10px; align-items: center; }
.sticky-price { font-family: 'Poppins', sans-serif; font-size: 18px; font-weight: 800; color: var(--navy); flex: 1; }
.sticky-btn { background: var(--blue); color: white; padding: 12px 24px; border-radius: 10px; border: none; font-size: 14px; font-weight: 600; cursor: pointer; font-family: 'Inter', sans-serif; white-space: nowrap; }

/* â”€â”€â”€ SIDEBAR SVG ICONS â”€â”€â”€ */
.si { width: 17px; height: 17px; flex-shrink: 0; stroke: currentColor; }

/* â”€â”€â”€ SHOP PAGE â”€â”€â”€ */
.shop-layout { display: flex; flex-direction: column; }
.shop-sidebar { display: none; }
.shop-main { flex: 1; min-width: 0; }
.shop-title-row {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 12px; padding: 20px 24px 0; flex-wrap: wrap;
}
.shop-title-row .ttl { font-size: 22px; margin-bottom: 2px; }
.shop-count { font-size: 13px; color: var(--sub); margin-top: 2px; }
.shop-sort {
  padding: 8px 12px; border: 1.5px solid var(--line); border-radius: 9px;
  font-size: 13px; font-family: 'Inter', sans-serif; color: var(--text);
  background: var(--card); outline: none; cursor: pointer;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%237A8EA6' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 10px center;
  padding-right: 30px;
}

.cat-chips-wrap {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; padding: 14px 24px 0;
}
.cat-chips-wrap::-webkit-scrollbar { display: none; }
.cat-chips { display: flex; gap: 8px; width: max-content; }
.cat-chip {
  padding: 7px 14px; border-radius: 20px; border: 1.5px solid var(--line);
  font-size: 13px; font-weight: 500; color: var(--sub); background: var(--card);
  cursor: pointer; white-space: nowrap; transition: all .2s;
  font-family: 'Inter', sans-serif; text-decoration: none;
}
.cat-chip:hover { border-color: var(--blue); color: var(--blue); }
.cat-chip.on { border-color: var(--blue); background: var(--blue-pale); color: var(--blue); font-weight: 600; }

.shop-prod-area { padding: 16px 24px 48px; }
.shop-empty { text-align: center; padding: 60px 24px; color: var(--sub); }
.shop-empty svg { opacity: .3; margin-bottom: 12px; }
.shop-empty p { font-size: 14px; }


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   JERSEY ILLUSTRATION (product image)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.pi { padding: 24px; }
.jersey-img {
  width: 78%; aspect-ratio: 4/5;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px; position: relative;
  clip-path: polygon(22% 0%, 78% 0%, 100% 13%, 100% 100%, 0% 100%, 0% 13%);
  box-shadow: 0 12px 32px rgba(30,91,173,.25);
}
.jersey-img::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(255,255,255,.18) 0%, transparent 35%, transparent 65%, rgba(0,0,0,.15) 100%);
  pointer-events: none;
}
.jersey-num {
  font-family: 'Poppins', sans-serif;
  font-size: 38px; font-weight: 900;
  color: white;
  text-shadow: 0 2px 12px rgba(0,0,0,.25);
  line-height: 1;
}
.jersey-label {
  font-size: 9px; font-weight: 700;
  color: rgba(255,255,255,.85);
  letter-spacing: 3px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .jersey-num { font-size: 52px; }
  .jersey-label { font-size: 11px; }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   POWERFUL FEATURE #1 â€” FLOATING WHATSAPP
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.fab-wa {
  position: fixed; right: 18px; bottom: 80px; z-index: 250;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: white; display: flex;
  align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.45);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.fab-wa:hover { transform: scale(1.08); box-shadow: 0 12px 32px rgba(37,211,102,.55); }
.fab-wa svg { width: 28px; height: 28px; }
.fab-wa::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: #25D366; opacity: .35; animation: fab-pulse 2.2s ease-out infinite;
  z-index: -1;
}
@keyframes fab-pulse {
  0%   { transform: scale(1);   opacity: .35; }
  100% { transform: scale(1.5); opacity: 0; }
}
.fab-wa-tip {
  position: absolute; right: 70px; top: 50%; transform: translateY(-50%);
  background: var(--navy); color: white; font-size: 12px; font-weight: 600;
  padding: 8px 12px; border-radius: 8px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
.fab-wa:hover .fab-wa-tip { opacity: 1; }
@media (min-width: 768px) {
  .fab-wa { bottom: 24px; right: 24px; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FLOATING CONTACTS FAB â€” Multi-channel
   CS Â· Shopee Â· TikTok Â· Lazada (white style)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.fab-contacts {
  position: fixed;
  right: 0;
  bottom: 100px;
  z-index: 250;
  display: flex;
  align-items: center;
  pointer-events: none;     /* hanya child yg clickable */
}
.fab-contacts > * { pointer-events: auto; }

/* Stack tombol â€” vertical */
.fab-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px 11px 10px 13px;
  background: #FFFFFF;
  border-top-left-radius: 14px;
  border-bottom-left-radius: 14px;
  box-shadow: -6px 8px 28px rgba(15, 23, 42, .14), 0 2px 6px rgba(15, 23, 42, .06);
  border: 1px solid rgba(15, 23, 42, .06);
  border-right: none;
}

/* Tombol close mini di atas stack */
.fab-close {
  align-self: flex-end;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: transparent;
  color: #94A3B8;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: -4px -4px 2px 0;
  transition: color .15s, background .15s;
}
.fab-close:hover { color: #1F2937; background: #F1F5F9; }

/* Tombol bundar putih kecil â€” pakai warna brand Sugihwaras */
.fab-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #FFFFFF;
  color: var(--primary, #1E3A8A);
  border: 1.5px solid var(--primary, #1E3A8A);
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  box-shadow: 0 2px 6px rgba(15, 23, 42, .08);
}
.fab-btn:hover {
  background: var(--primary, #1E3A8A);
  color: #FFFFFF;
  transform: translateX(-3px) scale(1.08);
  box-shadow: 0 6px 18px rgba(30, 58, 138, .25);
}
.fab-btn svg { width: 16px; height: 16px; }

/* Tooltip kiri tombol */
.fab-btn-tip {
  position: absolute;
  right: 44px;
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: #1F2937;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 9px;
  border-radius: 7px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s, transform .18s;
}
.fab-btn-tip::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: #1F2937;
}
.fab-btn:hover .fab-btn-tip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Handle kecil (saat collapsed) */
.fab-handle {
  position: relative;
  width: 24px;
  height: 44px;
  background: #FFFFFF;
  color: var(--primary, #1E3A8A);
  border: 1.5px solid rgba(15, 23, 42, .08);
  border-right: none;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: -4px 4px 14px rgba(15, 23, 42, .1);
  transition: transform .18s, background .18s;
  padding: 0;
}
.fab-handle svg { width: 14px; height: 14px; }
.fab-handle:hover {
  background: var(--primary, #1E3A8A);
  color: #FFFFFF;
  transform: translateX(-2px);
}
.fab-handle-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: inherit;
  pointer-events: none;
  background: var(--primary, #1E3A8A);
  opacity: .25;
  animation: fab-handle-pulse 1.8s ease-out infinite;
}
@keyframes fab-handle-pulse {
  0%   { transform: translate(-50%, -50%) scale(1);   opacity: .3; }
  100% { transform: translate(-50%, -50%) scale(1.4); opacity: 0; }
}

/* Animasi slide-in saat di-reveal */
.fab-slide-in {
  animation: fab-slide-in .35s cubic-bezier(.34, 1.56, .64, 1);
}
.fab-slide-out {
  animation: fab-slide-out .25s ease-in;
}
@keyframes fab-slide-in {
  0%   { transform: translateX(120%); opacity: 0; }
  100% { transform: translateX(0);    opacity: 1; }
}
@keyframes fab-slide-out {
  0%   { transform: translateX(0);    opacity: 1; }
  100% { transform: translateX(120%); opacity: 0; }
}

/* Mobile responsive â€” geser sedikit & ukuran kecil */
@media (max-width: 580px) {
  .fab-contacts { bottom: 80px; }
  .fab-btn      { width: 30px; height: 30px; }
  .fab-btn svg  { width: 14px; height: 14px; }
  .fab-stack    { padding: 8px 10px 8px 12px; gap: 7px; }
  .fab-handle   { width: 22px; height: 40px; }
  .fab-handle svg { width: 12px; height: 12px; }
  .fab-btn-tip  { display: none; }  /* tooltip hide di mobile, tap langsung */
}



/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   POWERFUL FEATURE #4 â€” SEARCH AUTOCOMPLETE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.search-wrap { position: relative; }
.search-modal {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(20,30,55,.55); backdrop-filter: blur(6px);
  display: flex; align-items: flex-start; justify-content: center;
  padding: 80px 16px 24px;
}
.search-box {
  background: var(--card); border-radius: 16px;
  width: 100%; max-width: 600px;
  box-shadow: 0 20px 60px rgba(20,30,55,.3);
  overflow: hidden;
}
.search-input-row { display: flex; align-items: center; gap: 12px; padding: 18px 22px; border-bottom: 1px solid var(--line); }
.search-input-row svg { width: 20px; height: 20px; color: var(--sub); flex-shrink: 0; }
.search-input {
  flex: 1; border: none; outline: none; font-size: 16px;
  font-family: 'Inter', sans-serif; color: var(--text);
  background: none;
}
.search-input::placeholder { color: var(--sub); }
.search-close {
  font-size: 11px; font-weight: 600; padding: 6px 10px; border: 1px solid var(--line);
  border-radius: 6px; background: var(--surface); color: var(--sub); cursor: pointer;
  text-transform: uppercase; letter-spacing: 1px;
}
.search-results { max-height: 60vh; overflow-y: auto; }
.search-section-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--sub); padding: 14px 22px 6px; }
.search-item {
  display: flex; align-items: center; gap: 12px; padding: 10px 22px;
  cursor: pointer; transition: background .15s; text-decoration: none;
}
.search-item:hover { background: var(--surface); }
.search-item-thumb {
  width: 42px; height: 42px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 22px;
  flex-shrink: 0;
}
.search-item-info { flex: 1; min-width: 0; }
.search-item-name { font-size: 13px; font-weight: 600; color: var(--navy); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.search-item-meta { font-size: 11px; color: var(--sub); }
.search-item-price { font-size: 13px; font-weight: 700; color: var(--blue); font-family: 'Poppins', sans-serif; }
.search-tag {
  display: inline-block; padding: 4px 10px; margin: 4px 4px 4px 0;
  background: var(--surface); color: var(--text); border-radius: 16px;
  font-size: 12px; font-weight: 500; cursor: pointer; text-decoration: none;
  transition: all .2s;
}
.search-tag:hover { background: var(--blue-pale); color: var(--blue); }
.search-empty { padding: 40px 22px; text-align: center; color: var(--sub); font-size: 13px; }

/* â•â•â• DESKTOP â•â•â• */
@media (min-width: 768px) {
  body { padding-bottom: 0; }
  header { padding: 0 56px; height: 68px; }
  .desk-nav { display: flex; }
  .burger { display: none; }
  .ico-wish { display: flex; }
  .bottom-nav { display: none; }
  .sticky-cart { display: none; }

  .hero-wrap { flex-direction: row; min-height: 88vh; }
  .hero-left { padding: 80px 60px 80px 80px; flex: 1; display: flex; flex-direction: column; justify-content: center; }
  .hero-left h1 { font-size: 62px; letter-spacing: -1.5px; }
  .hero-desc { max-width: 420px; font-size: 16px; }
  .hero-btns { flex-direction: row; }
  .hero-stats { border: none; background: none; width: fit-content; gap: 0; }
  .stat { border: none; padding: 0 40px 0 0; text-align: left; }
  .stat-n { font-size: 28px; }

  .hero-slider { flex: 1; min-height: auto; }
  .slide { padding: 48px; }
  .jersey-shape { width: 180px; height: 224px; }
  .jersey-txt { font-size: 44px; }
  .slide-title { font-size: 22px; }

  .sec { padding: 64px 80px; }
  .ttl { font-size: 34px; }

  .cat-row { display: grid; grid-template-columns: repeat(8,1fr); overflow: visible; gap: 8px; padding: 0; }
  .cat-card-soft { width: auto; max-width: 120px; }

  .prod-grid { grid-template-columns: repeat(4,1fr); gap: 20px; }

  .cj-section { padding: 100px 80px; }
  .cj-inner { flex-direction: row; gap: 80px; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; }
  .cj-text { text-align: left; flex: 1; }
  .cj-text h2 { font-size: 40px; }
  .cj-features { margin-left: 0; margin-right: 0; max-width: 420px; }
  .cj-visual { flex: 0 0 auto; }
  .cj-jersey-hero { width: 300px; }
  .cj-no { font-size: 96px; }

  .trust-grid { grid-template-columns: repeat(4,1fr); gap: 16px; }

  .testi-row { display: grid; grid-template-columns: repeat(3,1fr); overflow: visible; gap: 16px; padding: 0; }
  .tcard2 { width: auto; }

  .nl { padding: 72px 80px; text-align: left; }
  .nl-inner-d { display: flex; align-items: center; justify-content: space-between; gap: 48px; max-width: 1100px; margin: 0 auto; }
  .nl p { margin-bottom: 0; }
  .nl-form { flex-direction: row; max-width: none; }
  .nl-in { width: 260px; }

  footer { padding: 72px 80px 36px; }
  .f-top-d { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
  .fcols { display: contents; }
  .fdesc { margin-bottom: 20px; }
  .fsoc { margin-bottom: 0; }
  .fbot {
    flex-direction: row; justify-content: center; align-items: center;
    margin: 22px -80px -36px;
    padding: 18px 80px;
    gap: 24px;
  }
  .fcopy { text-align: left; }

  /* PDP desktop */
  .pdp-layout {
    flex-direction: row; align-items: flex-start; min-height: 70vh;
    overflow-anchor: none; /* disable scroll-anchor agar sidebar stay diam saat accordion expand */
  }
  .pdp-sidebar {
    display: flex; flex-direction: column;
    width: 240px; flex-shrink: 0;
    background: var(--card); border-right: 1px solid var(--line);
    padding: 24px 0;
    position: sticky; top: 68px;
    align-self: flex-start;
  }
  .pdp-sidebar-title { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--sub); padding: 0 20px 12px; }
  .pdp-sidebar-link { display: flex; align-items: center; gap: 10px; padding: 10px 20px; font-size: 14px; font-weight: 500; color: var(--text); cursor: pointer; transition: all .2s; border-left: 2px solid transparent; text-decoration: none; }
  .pdp-sidebar-link:hover { background: var(--surface); color: var(--blue); }
  .pdp-sidebar-link.active { background: var(--blue-pale); color: var(--blue); font-weight: 600; border-left-color: var(--blue); }
  .pdp-sidebar-link .link-cnt { font-size: 11px; color: var(--sub); margin-left: auto; }
  .pdp-main { flex: 1; overflow: hidden; }

  .pdp-img-section { display: grid; grid-template-columns: 1fr 1fr; }
  .pdp-img-col { position: sticky; top: 68px; }
  .pdp-img-main { aspect-ratio: 4/5; font-size: 100px; }
  .pdp-info { padding: 32px; }
  .pdp-name { font-size: 28px; }
  .pdp-price { font-size: 30px; }
  .pdp-cta { max-width: 400px; }

  .related { padding: 56px 80px; }
  .related .prod-grid { grid-template-columns: repeat(4,1fr); }

  /* Shop desktop */
  .shop-layout { flex-direction: row; align-items: flex-start; }
  .shop-sidebar {
    display: flex; flex-direction: column;
    width: 240px; flex-shrink: 0;
    background: var(--card); border-right: 1px solid var(--line);
    padding: 24px 0;
    position: sticky; top: 68px;
    align-self: flex-start;
  }
  .shop-title-row { padding: 28px 40px 0; }
  .shop-title-row .ttl { font-size: 28px; }
  .cat-chips-wrap { display: none; }
  .shop-prod-area { padding: 20px 40px 60px; }
  .shop-prod-area .prod-grid { grid-template-columns: repeat(3,1fr); gap: 20px; }

  /* Halaman shop: override jadi 4 kolom di desktop */
  .shop-prod-area .prod-grid.prod-grid-4 { grid-template-columns: repeat(4,1fr); gap: 18px; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SHOP PAGINATION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.shop-pagination {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.shop-pag-info {
  font-size: 13px;
  color: #64748b;
}
.shop-pag-info strong { color: #1E3A8A; font-weight: 700; }

.shop-pag-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.pag-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  color: #475569;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all .15s;
}
.pag-btn:hover:not(.disabled) {
  border-color: #1E3A8A;
  color: #1E3A8A;
  transform: translateY(-1px);
}
.pag-btn.disabled {
  opacity: .4;
  cursor: not-allowed;
}

.pag-pages {
  display: flex;
  gap: 4px;
}
.pag-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: 8px;
  background: #fff;
  color: #64748b;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #e2e8f0;
  transition: all .15s;
}
.pag-num:hover { border-color: #4A90D9; color: #1E3A8A; }
.pag-num.active {
  background: linear-gradient(135deg, #1E3A8A, #4A90D9);
  color: #fff;
  border-color: #1E3A8A;
  cursor: default;
}

@media (max-width: 580px) {
  .shop-pagination { flex-direction: column; align-items: stretch; }
  .shop-pag-info { text-align: center; }
  .shop-pag-links { justify-content: center; }
  .pag-pages { order: 2; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   â­ REVIEWS â€” Product Detail Page section
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.reviews { background:#fff; border-radius:14px; padding:24px 26px; margin:24px 0; box-shadow:0 1px 4px rgba(0,0,0,.04); }
.reviews-head { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:18px; gap:16px; flex-wrap:wrap; }
.reviews-summary { display:flex; align-items:center; gap:10px; }
.reviews-summary strong { font-family:'Poppins',sans-serif; font-size:2.2rem; font-weight:800; color:var(--primary, #1E3A8A); line-height:1; }
.reviews-summary .rev-stars { color:#f59e0b; font-size:1rem; display:block; line-height:1.2; }
.reviews-summary small { display:block; color:#94a3b8; font-size:.75rem; }

.reviews-empty { background:#f8fafc; padding:30px; border-radius:10px; text-align:center; }
.reviews-empty p { color:#475569; font-size:.92rem; margin-bottom:6px; font-weight:500; }
.reviews-empty small { color:#94a3b8; font-size:.82rem; }

.reviews-list { display:flex; flex-direction:column; gap:14px; }
.rev-card { background:#f8fafc; padding:14px 16px; border-radius:10px; border:1px solid #f1f5f9; }
.rev-card-head { display:flex; align-items:center; gap:10px; margin-bottom:8px; }
.rev-avatar { width:36px; height:36px; border-radius:50%; background:linear-gradient(135deg, var(--accent, #4A90D9), var(--primary, #1E3A8A)); color:#fff; display:flex; align-items:center; justify-content:center; font-weight:800; font-size:.92rem; flex-shrink:0; }
.rev-info { flex:1; min-width:0; }
.rev-info strong { display:block; font-size:.88rem; color:#0f172a; font-weight:600; }
.rev-info small { color:#94a3b8; font-size:.72rem; }
.rev-verified { color:#16A34A; font-weight:600; }
.rev-stars { color:#f59e0b; font-size:.95rem; letter-spacing:1px; flex-shrink:0; }
.rev-title { display:block; color:#0f172a; font-size:.92rem; margin-bottom:4px; font-weight:600; }
.rev-comment { color:#475569; font-size:.88rem; line-height:1.6; margin:0; }

/* Review form di order detail */
.rev-form { background:#fff; border:1px solid #e2e8f0; border-radius:10px; padding:14px 16px; margin-top:10px; }
.rev-form-head { display:flex; align-items:center; gap:10px; margin-bottom:12px; }
.rev-form-head strong { color:#0f172a; font-size:.92rem; }
.rev-form-stars { display:flex; gap:4px; margin:8px 0 12px; }
.rev-form-stars button { background:none; border:none; cursor:pointer; padding:2px; font-size:1.5rem; color:#cbd5e1; transition:color .15s, transform .15s; }
.rev-form-stars button.on, .rev-form-stars button:hover { color:#f59e0b; transform:scale(1.12); }
.rev-form textarea, .rev-form input[type="text"] { width:100%; padding:9px 12px; border:1px solid #e2e8f0; border-radius:8px; font-size:.88rem; font-family:inherit; resize:vertical; margin-bottom:8px; }
.rev-form textarea:focus, .rev-form input:focus { outline:none; border-color:var(--accent, #4A90D9); }
.rev-form button[type=submit] { background:var(--primary, #1E3A8A); color:#fff; border:none; padding:9px 18px; border-radius:8px; font-weight:600; cursor:pointer; font-size:.88rem; }
.rev-form button[type=submit]:hover { background:var(--primary-h, #152C6C); }
.rev-form-existing { background:#dcfce7; color:#166534; padding:10px 14px; border-radius:8px; font-size:.85rem; margin-top:8px; }

/* Trigger button untuk buka form review di order detail */
.ord-review-trigger { background:#f8fafc; border:1px dashed #cbd5e1; color:#475569; padding:8px 14px; border-radius:8px; cursor:pointer; font-size:.82rem; font-family:inherit; transition:all .15s; }
.ord-review-trigger:hover { background:#f1f5f9; border-color:var(--accent, #4A90D9); color:var(--primary, #1E3A8A); }
.ord-review-trigger.primary { background:linear-gradient(135deg, var(--accent, #4A90D9), var(--primary, #1E3A8A)); color:#fff; border:none; font-weight:600; }
.ord-review-trigger.primary:hover { transform:translateY(-1px); box-shadow:0 4px 12px rgba(30,58,138,.2); color:#fff; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ðŸŽ¨ ICON BRAND STYLING â€” Sugihwaras
   Standarisasi semua icon mengikuti warna brand dari Settings dashboard.
   Override hardcoded stroke colors di SVG yang nge-render currentColor.
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Default icon stroke: ikut warna teks parent (jadi gampang diatur per-context) */
svg { stroke-linecap: round; stroke-linejoin: round; }

/* Class utility untuk icon brand â€” apply ke <svg class="icon-brand"> */
.icon-brand        { color: var(--primary); stroke: currentColor; }
.icon-accent       { color: var(--accent); stroke: currentColor; }
.icon-navy         { color: var(--navy-dark); stroke: currentColor; }
.icon-sub          { color: var(--sub); stroke: currentColor; }

/* Navigation icons (header, footer, bottom-nav, mobile-nav) ikut brand color */
header svg,
.bottom-nav svg,
.mobile-nav svg,
.account-sidebar svg,
.pdp-sidebar svg {
  stroke: currentColor;
}

/* Active state â€” pakai primary (brand utama) */
.bottom-nav a.active svg,
.bottom-nav a.on svg,
header .nav-link.active svg,
.account-sidebar a.active svg,
.pdp-sidebar-link.active svg { color: var(--primary); }

/* Icon size standard */
.icon-xs  { width: 14px; height: 14px; }
.icon-sm  { width: 16px; height: 16px; }
.icon-md  { width: 20px; height: 20px; }
.icon-lg  { width: 24px; height: 24px; }
.icon-xl  { width: 32px; height: 32px; }

/* Round badge dengan icon di tengah â€” Sugihwaras style */
.icon-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: var(--blue-pale);
  color: var(--primary);
  border-radius: 10px;
  flex-shrink: 0;
}
.icon-badge.solid {
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: #fff;
}
.icon-badge.lg { width: 44px; height: 44px; border-radius: 12px; }
.icon-badge svg { width: 18px; height: 18px; }
.icon-badge.lg svg { width: 22px; height: 22px; }

/* Trust indicator SVG di hero & section icons */
.trust-item svg,
.hero2-trust svg,
.section-icon svg { color: var(--primary); stroke: currentColor; }

/* Override hardcoded stroke="#1E3A8A" yang udah eksis di SVG â€” pakai attribute selector */
svg[stroke="#1E3A8A"],
svg path[stroke="#1E3A8A"],
svg [stroke="#1E3A8A"] { stroke: var(--primary) !important; }
svg[stroke="#4A90D9"],
svg path[stroke="#4A90D9"],
svg [stroke="#4A90D9"] { stroke: var(--accent) !important; }
svg[fill="#1E3A8A"],
svg path[fill="#1E3A8A"],
svg [fill="#1E3A8A"] { fill: var(--primary) !important; }
svg[fill="#4A90D9"],
svg path[fill="#4A90D9"],
svg [fill="#4A90D9"] { fill: var(--accent) !important; }

/* ═══════════════════════════════════════════
   🎨 BANNER SLIDER — Hybrid Layout (sama dengan Flash Sale)
   Padding di-handle full oleh media query supaya match flash-sec
═══════════════════════════════════════════ */
.bsl-section {
  /* padding di-handle media query .flash-sec, .bsl-section di line ~1806 */
}

/* Grid hybrid 2 kolom — selalu, no matter screen size */
.bsl-hybrid {
  display: grid;
  grid-template-columns: 2fr 1fr;      /* 66% kiri + 33% kanan */
  gap: 10px;
  align-items: stretch;                /* anak2 stretch ke tinggi sama */
}

/* HERO Banner (kiri besar) — aspect ratio menentukan tinggi total */
.bsl-hero-wrap {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
  box-shadow: 0 6px 24px rgba(15, 23, 42, .08);
  min-width: 0;
}

/* ✨ Shimmer sweep — kilau otomatis tiap 5 detik untuk hook attention */
.bsl-hero-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, .45) 50%,
    transparent 65%
  );
  transform: translateX(-110%) skewX(-12deg);
  animation: bsl-shimmer 5s ease-in-out infinite;
  animation-delay: 1.5s;
  pointer-events: none;
  z-index: 4;                 /* di atas image tapi di bawah dots */
  mix-blend-mode: overlay;
}
.bsl-side-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, .35) 50%,
    transparent 65%
  );
  transform: translateX(-110%) skewX(-12deg);
  animation: bsl-shimmer 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 4;
  mix-blend-mode: overlay;
}
.bsl-side-slide:nth-child(1)::after { animation-delay: 3s; }
.bsl-side-slide:nth-child(2)::after { animation-delay: 4.5s; }

@keyframes bsl-shimmer {
  0%, 80% { transform: translateX(-110%) skewX(-12deg); opacity: 0; }
  85%     { opacity: 1; }
  100%    { transform: translateX(110%) skewX(-12deg); opacity: 0; }
}

/* Subtle glow border pulse di hero — extra hook */
.bsl-hero-wrap::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(74, 144, 217, .4) 0%,
    rgba(30, 58, 138, .2) 50%,
    rgba(74, 144, 217, .4) 100%
  );
  filter: blur(8px);
  opacity: 0;
  animation: bsl-glow-pulse 3.5s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
}

@keyframes bsl-glow-pulse {
  0%, 100% { opacity: 0; }
  50%      { opacity: .6; }
}

/* Pause shimmer saat user hover (biar gak gangu reading) */
.bsl-hero-wrap:hover::after,
.bsl-side-slide:hover::after {
  animation-play-state: paused;
}
.bsl-hero-slide {
  position: absolute;
  inset: 0;
  display: block;
  text-decoration: none;
  color: inherit;
  opacity: 0;
  transition: opacity .7s ease;
  pointer-events: none;
}
.bsl-hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

/* SIDE Panel (kanan) — 2 banner stacked, total tinggi = hero */
.bsl-side-wrap {
  display: grid;
  grid-template-rows: 1fr 1fr;         /* 2 row sama tinggi */
  gap: 10px;
  min-width: 0;
}

/* Side banner — match width 100%, height stretch dari grid row */
.bsl-side-slide {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
  box-shadow: 0 6px 24px rgba(15, 23, 42, .08);
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform .25s ease, box-shadow .25s ease;
  cursor: pointer;
  min-width: 0;
  min-height: 0;
}
.bsl-side-slide:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(15, 23, 42, .15);
}

/* Hero dots indicator */
.bsl-hero-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}
.bsl-hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .55);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all .2s ease;
}
.bsl-hero-dot:hover { background: rgba(255, 255, 255, .85); }
.bsl-hero-dot.is-active {
  background: #FFFFFF;
  width: 22px;
  border-radius: 99px;
}

/* Side panel text overlay — scale lebih kecil karena banner kecil */
.bsl-side-slide .bsl-title    { font-size: clamp(.78rem, 1.6vw, 1.1rem); margin-bottom: 3px; }
.bsl-side-slide .bsl-subtitle { font-size: clamp(.6rem, 1vw, .78rem); margin-bottom: 8px; -webkit-line-clamp: 2; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; }
.bsl-side-slide .bsl-cta { padding: 4px 10px; font-size: .65rem; }
.bsl-side-slide .bsl-content { padding: 0 6%; max-width: 80%; }

/* Mobile — TETAP 2 kolom, cuma kurangi padding & gap (match flash-sec) */
@media (max-width: 768px) {
  .bsl-section { padding: 0 16px; margin: 18px 0; }
  .bsl-hybrid { gap: 6px; }
  .bsl-hero-wrap, .bsl-side-slide { border-radius: 10px; box-shadow: 0 3px 12px rgba(15, 23, 42, .08); }
  .bsl-side-slide .bsl-title    { font-size: .65rem; margin-bottom: 2px; }
  .bsl-side-slide .bsl-subtitle { display: none; }   /* hide subtitle di mobile small */
  .bsl-side-slide .bsl-cta      { display: none; }   /* hide CTA chip — full banner clickable */
  .bsl-side-wrap { gap: 6px; }
}

@media (max-width: 480px) {
  .bsl-section { padding: 0 16px; }   /* match flash-sec */
  .bsl-hybrid { gap: 4px; }
  .bsl-side-wrap { gap: 4px; }
  .bsl-hero-wrap, .bsl-side-slide { border-radius: 8px; }
  .bsl-side-slide .bsl-title { font-size: .58rem; }
}

/* DEPRECATED — old single-banner classes (still used internally by partial) */
.bsl-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
  box-shadow: 0 8px 32px rgba(15, 23, 42, .08);
  aspect-ratio: 16/5;
}
.bsl-track {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Slide — overlap, fade transition antar slide */
.bsl-slide {
  position: absolute;
  inset: 0;
  display: block;
  text-decoration: none;
  color: inherit;
  opacity: 0;
  transition: opacity .7s ease;
  pointer-events: none;
}
.bsl-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.bsl-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Overlay tint untuk readability text */
.bsl-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Content overlay — title + subtitle + CTA */
.bsl-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 7%;
  max-width: 55%;
  pointer-events: none;
}
.bsl-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 10px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .35);
}
.bsl-subtitle {
  font-size: clamp(.85rem, 1.6vw, 1.05rem);
  line-height: 1.5;
  margin: 0 0 18px;
  opacity: .95;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .25);
  max-width: 480px;
}
.bsl-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  color: var(--primary, #1E3A8A);
  padding: 10px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: .9rem;
  width: fit-content;
  pointer-events: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .15);
  transition: transform .25s ease, box-shadow .25s ease;
}
.bsl-slide:hover .bsl-cta {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
}

/* Arrow navigation (prev/next) */
.bsl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--primary, #1E3A8A);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  opacity: 0;
  transition: opacity .25s ease, transform .15s ease, background .15s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
  padding: 0;
}
.bsl-wrap:hover .bsl-nav { opacity: 1; }
.bsl-prev { left: 16px; }
.bsl-next { right: 16px; }
.bsl-nav:hover {
  background: var(--primary, #1E3A8A);
  color: #FFFFFF;
  transform: translateY(-50%) scale(1.08);
}

/* Dots indicator */
.bsl-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}
.bsl-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .55);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all .2s ease;
}
.bsl-dot:hover { background: rgba(255, 255, 255, .85); }
.bsl-dot.is-active {
  background: #FFFFFF;
  width: 24px;
  border-radius: 99px;
}

/* MOBILE responsive (legacy single-banner mode) */
@media (max-width: 768px) {
  /* .bsl-section padding di-handle main rule + override flash-sec match */
  .bsl-wrap { aspect-ratio: 16/9; border-radius: 12px; }
  .bsl-content { max-width: 70%; padding: 0 6%; }
  .bsl-title { margin-bottom: 6px; }
  .bsl-subtitle { font-size: .78rem; margin-bottom: 12px; -webkit-line-clamp: 2; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; }
  .bsl-cta { padding: 7px 14px; font-size: .78rem; }
  .bsl-nav { display: none; }
  .bsl-dots { bottom: 10px; }
  .bsl-dot { width: 6px; height: 6px; }
  .bsl-dot.is-active { width: 18px; }
}

@media (max-width: 480px) {
  .bsl-wrap { aspect-ratio: 4/3; }    /* hampir kotak di phone kecil */
  .bsl-content { max-width: 85%; }
}
