/* Centuryzen Mall — Lazada layout, black-gold premium, phone first */
:root {
  --cz-bg: #07080c;
  --cz-header: #0c0d12;
  --cz-header-2: #12141c;
  --cz-card: #14161e;
  --cz-surface: #1a1d26;
  --cz-cat: #151821;
  --cz-img: #0e1016;
  --cz-line: rgba(255,255,255,.08);
  --cz-gold: #e4c15a;
  --cz-gold-2: #f6de9a;
  --cz-sale: #ff4d4f;
  --cz-price: #ffc107;
  --cz-text: #f5f5f7;
  --cz-muted: rgba(245,245,247,.52);
  --cz-desc: rgba(245,245,247,.78);
  --cz-ink: #1a1408;
  --cz-search-border: rgba(228,193,90,.28);
  --cz-hero: radial-gradient(80% 120% at 100% 0%, rgba(228,193,90,.28), transparent 50%),
    linear-gradient(120deg, #16120a 0%, #0e1016 55%, #1a1408 100%);
  --cz-nav: rgba(12,13,18,.94);
  --cz-safe: env(safe-area-inset-bottom, 0px);
}
html.zx-light {
  --cz-bg: #f4f6f8;
  --cz-header: #ffffff;
  --cz-header-2: #ffffff;
  --cz-card: #ffffff;
  --cz-surface: #f4f6f8;
  --cz-cat: #fff7e6;
  --cz-img: #f0f2f5;
  --cz-line: rgba(10,11,15,.10);
  --cz-gold: #c9a227;
  --cz-gold-2: #8a7014;
  --cz-sale: #f57224;
  --cz-price: #d48806;
  --cz-text: #1a1d26;
  --cz-muted: rgba(26,29,38,.52);
  --cz-desc: rgba(26,29,38,.78);
  --cz-ink: #1a1408;
  --cz-search-border: rgba(201,162,39,.45);
  --cz-hero: radial-gradient(80% 120% at 100% 0%, rgba(228,193,90,.35), transparent 52%),
    linear-gradient(120deg, #fff8e8 0%, #ffffff 55%, #f7f0dc 100%);
  --cz-nav: rgba(255,255,255,.96);
  color-scheme: light;
}
* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--cz-bg);
  color: var(--cz-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  -webkit-text-size-adjust: 100%;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input { font-family: inherit; }
.cz-mall { min-height: 100dvh; padding-bottom: calc(64px + var(--cz-safe)); }

.cz-top {
  position: sticky; top: 0; z-index: 40;
  background: var(--cz-header);
  border-bottom: 1px solid var(--cz-line);
  padding-top: env(safe-area-inset-top);
}
.cz-util {
  display: flex; align-items: center; justify-content: flex-end; gap: 14px;
  max-width: 1180px; margin: 0 auto;
  padding: 6px 12px 0;
  font-size: 11px; font-weight: 700; letter-spacing: .02em;
  color: var(--cz-muted); overflow-x: auto;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.cz-util::-webkit-scrollbar { display: none; }
.cz-util a { white-space: nowrap; }
.cz-util a:hover { color: var(--cz-gold-2); }
.cz-util .hi { color: var(--cz-gold-2); }
.cz-top-row {
  display: flex; align-items: center; gap: 10px;
  max-width: 1180px; margin: 0 auto;
  padding: 8px 12px 8px;
}
.cz-logo { height: 40px; width: auto; max-width: 240px; object-fit: contain; flex: 0 0 auto; }
.cz-brand { display: flex; align-items: center; flex: 0 0 auto; min-width: 0; }
.cz-wordmark {
  display: none;
  align-items: baseline;
  font-weight: 900;
  font-size: 17px;
  letter-spacing: .02em;
  color: #e4c15a;
  line-height: 1;
  white-space: nowrap;
}
.cz-wordmark i {
  font-style: normal;
  font-size: 1.45em;
  background: linear-gradient(180deg, #f6de9a 0%, #c9a227 72%, #8a7014 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cz-mark-light { display: none; }
html.zx-light .cz-mark-dark { display: none; }
html.zx-light .cz-mark-light { display: block; }
html:not(.zx-light) .cz-top .cz-mark-dark {
  filter: drop-shadow(0 0 0.55px #f3d78a) drop-shadow(0 0 0.55px #d4af37);
}
.cz-search {
  flex: 1; min-width: 0; display: flex; align-items: center;
  background: var(--cz-surface); border: 1px solid var(--cz-search-border);
  border-radius: 8px; overflow: hidden; height: 40px;
}
.cz-search input {
  flex: 1; min-width: 0; border: 0; background: transparent;
  color: var(--cz-text); padding: 0 12px 0 14px; font-size: 13px; outline: none;
}
.cz-search button {
  border: 0; height: 100%; width: 46px; padding: 0; cursor: pointer;
  background: linear-gradient(135deg, #e4c15a, #c9a227); color: #1a1408;
  display: inline-flex; align-items: center; justify-content: center;
}
.cz-ico {
  width: 38px; height: 38px; border-radius: 12px; flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--cz-surface); border: 1px solid var(--cz-line); color: var(--cz-text);
  cursor: pointer; padding: 0;
}
html:not(.zx-light) .zx-theme-sun { display: none !important; }
html:not(.zx-light) .zx-theme-moon { display: block !important; }
html.zx-light .zx-theme-moon { display: none !important; }
html.zx-light .zx-theme-sun { display: block !important; }
.cz-wallet {
  display: inline-flex; align-items: center; gap: 6px; flex: 0 0 auto;
  height: 40px; padding: 0 12px; border-radius: 10px;
  background: linear-gradient(135deg, rgba(0,212,170,.18), rgba(228,193,90,.18));
  border: 1px solid rgba(228,193,90,.35);
  color: var(--cz-text); font-size: 12px; font-weight: 800; white-space: nowrap;
}
html.zx-light .cz-wallet {
  background: #eefaf7; border-color: #b7ebe0; color: #0b7d6a;
}
.cz-wallet svg { flex: 0 0 auto; }
.cz-sub {
  display: flex; align-items: center; gap: 16px;
  max-width: 1180px; margin: 0 auto;
  padding: 0 12px 10px;
  overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.cz-sub::-webkit-scrollbar { display: none; }
.cz-dd { position: relative; flex: 0 0 auto; }
.cz-dd summary {
  list-style: none; cursor: pointer; user-select: none;
  font-size: 13px; font-weight: 800; display: flex; align-items: center; gap: 5px;
}
.cz-dd summary::-webkit-details-marker { display: none; }
.cz-dd-menu {
  position: absolute; top: calc(100% + 8px); left: 0; z-index: 60;
  min-width: 210px; max-height: 70vh; overflow: auto;
  background: var(--cz-card); border: 1px solid var(--cz-line);
  border-radius: 12px; padding: 6px;
  box-shadow: 0 16px 40px rgba(0,0,0,.22);
}
.cz-dd-menu a {
  display: block; padding: 9px 10px; border-radius: 8px; font-size: 13px; font-weight: 600;
}
.cz-dd-menu a:hover { background: var(--cz-surface); }
.cz-feat {
  display: inline-flex; align-items: center; gap: 6px; flex: 0 0 auto;
  font-size: 12px; font-weight: 700; color: var(--cz-text); white-space: nowrap;
}
.cz-feat i {
  width: 18px; height: 18px; border-radius: 5px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--cz-cat); font-style: normal; font-size: 11px;
}
html.zx-light .cz-top { box-shadow: 0 1px 0 rgba(16,24,40,.06); }

.cz-wrap { max-width: 1180px; margin: 0 auto; padding: 12px 12px 24px; }

.cz-caro { margin: 0 0 8px; }
.cz-caro-view {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--cz-search-border);
}
.cz-caro-track {
  display: flex;
  width: 100%;
  transition: transform .45s ease;
  will-change: transform;
}
.cz-caro-slide {
  flex: 0 0 100%;
  min-width: 100%;
  min-height: 168px;
  display: grid;
  grid-template-columns: 88px 1fr 88px;
  align-items: center;
  gap: 6px;
  padding: 14px 10px 28px;
  box-sizing: border-box;
  color: inherit;
}
.cz-caro-slide.gold {
  background:
    radial-gradient(80% 140% at 100% 0%, rgba(228,193,90,.38), transparent 52%),
    linear-gradient(118deg, #2a210e 0%, #16120a 48%, #1a1408 100%);
}
.cz-caro-slide.teal {
  background:
    radial-gradient(80% 140% at 0% 100%, rgba(0,212,170,.28), transparent 50%),
    linear-gradient(118deg, #0c1a18 0%, #0e1214 55%, #10201c 100%);
}
.cz-caro-slide.dark {
  background:
    radial-gradient(70% 120% at 50% 0%, rgba(228,193,90,.18), transparent 50%),
    linear-gradient(118deg, #12141c 0%, #0c0d12 100%);
}
html.zx-light .cz-caro-slide.gold {
  background:
    radial-gradient(80% 140% at 100% 0%, rgba(228,193,90,.45), transparent 52%),
    linear-gradient(118deg, #fff4d8 0%, #ffe7b0 50%, #f7e4b8 100%);
  color: #1a1408;
}
html.zx-light .cz-caro-slide.teal {
  background:
    radial-gradient(80% 140% at 0% 100%, rgba(0,212,170,.22), transparent 50%),
    linear-gradient(118deg, #e7faf5 0%, #f4f6f8 55%, #ddf4ee 100%);
  color: #1a1d26;
}
html.zx-light .cz-caro-slide.dark {
  background: linear-gradient(118deg, #f7f0dc 0%, #ffffff 55%, #fff8e8 100%);
  color: #1a1d26;
}
.cz-caro-slide .pic {
  height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
.cz-caro-slide .pic img {
  max-height: 118px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.28));
}
.cz-caro-slide .pic.right { display: none; }
.cz-caro-slide .copy {
  text-align: center;
  min-width: 0;
  padding: 0 4px;
}
.cz-caro-slide .kicker {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #1a1408;
  background: var(--cz-gold);
  border-radius: 999px;
  padding: 3px 8px;
  margin-bottom: 8px;
}
.cz-caro-slide h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.15;
  text-transform: uppercase;
}
.cz-caro-slide p {
  margin: 6px 0 10px;
  font-size: 12px;
  color: var(--cz-muted);
  line-height: 1.4;
}
html.zx-light .cz-caro-slide p { color: rgba(26,20,8,.62); }
.cz-caro-slide .cta {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 800;
  color: #1a1408;
  background: linear-gradient(135deg, #e4c15a, #c9a227);
  border-radius: 999px;
  padding: 7px 12px;
}
.cz-caro-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 0;
  background: rgba(0,0,0,.45);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: none;
  z-index: 2;
}
.cz-caro-btn.prev { left: 8px; }
.cz-caro-btn.next { right: 8px; }
.cz-caro-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: -22px;
  position: relative;
  z-index: 2;
  pointer-events: none;
}
.cz-caro-dots button {
  pointer-events: auto;
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.38);
  cursor: pointer;
}
.cz-caro-dots button.on {
  width: 16px;
  background: var(--cz-gold);
}
html.zx-light .cz-caro-dots button { background: rgba(26,20,8,.22); }
html.zx-light .cz-caro-dots button.on { background: #c9a227; }

.cz-hero {
  position: relative; overflow: hidden; border-radius: 16px;
  min-height: 132px;
  background: var(--cz-hero);
  border: 1px solid var(--cz-search-border);
  padding: 18px 16px 16px;
  display: flex; align-items: center; gap: 14px;
}
.cz-hero img { height: 80px; width: auto; max-width: 280px; object-fit: contain; }
.cz-hero h1 { margin: 0; font-size: 20px; font-weight: 900; letter-spacing: -.03em; }
.cz-hero p { margin: 6px 0 0; font-size: 12px; color: var(--cz-muted); line-height: 1.45; }
.cz-pill {
  display: inline-block; margin-top: 10px; font-size: 10px; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  color: #1a1408; background: var(--cz-gold); border-radius: 999px; padding: 4px 9px;
}

.cz-cats {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px;
  margin: 14px 0 6px;
}
.cz-cat {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 8px 4px; border-radius: 14px; color: var(--cz-muted); font-size: 10px; font-weight: 700;
  text-align: center; line-height: 1.2;
}
.cz-cat.on, .cz-cat:active { color: var(--cz-gold-2); }
.cz-cat i {
  width: 42px; height: 42px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cz-cat); border: 1px solid var(--cz-line); font-style: normal; font-size: 18px;
}
.cz-chips {
  display: flex; gap: 8px; overflow-x: auto; padding: 8px 0 4px;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.cz-chips::-webkit-scrollbar { display: none; }
.cz-chip {
  flex: 0 0 auto; border: 1px solid var(--cz-line); background: var(--cz-card);
  color: var(--cz-muted); border-radius: 999px; padding: 7px 12px;
  font-size: 12px; font-weight: 700; white-space: nowrap;
}
.cz-chip.on { background: var(--cz-gold); color: #1a1408; border-color: var(--cz-gold); }

.cz-sec {
  display: flex; align-items: center; justify-content: space-between;
  margin: 16px 0 10px;
}
.cz-sec h2 { margin: 0; font-size: 15px; font-weight: 800; }
.cz-sec a, .cz-sec span { font-size: 12px; color: var(--cz-muted); font-weight: 700; }

.cz-shops {
  display: flex; gap: 10px; overflow-x: auto; padding-bottom: 4px;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.cz-shops::-webkit-scrollbar { display: none; }
.cz-shop {
  flex: 0 0 86px; text-align: center;
}
.cz-shop img, .cz-shop .ph {
  width: 64px; height: 64px; border-radius: 50%; object-fit: cover; margin: 0 auto 6px;
  border: 2px solid rgba(228,193,90,.45); background: var(--cz-surface);
}
.cz-shop .ph { display: flex; align-items: center; justify-content: center; font-weight: 800; color: var(--cz-gold); }
.cz-shop b { display: block; font-size: 11px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.cz-catrow { margin: 16px 0 20px; }
.cz-goldrow .cz-row-bar {
  background: linear-gradient(90deg, #2a2316, #c9a227 50%, #2a2316);
  border-color: rgba(228,193,90,.55);
}
.cz-goldrow .cz-row-bar h2 { color: #1a1408; }
.cz-goldrow .cz-row-bar a { color: #1a1408; }
.cz-row-bar {
  position: relative;
  text-align: center;
  background: linear-gradient(90deg, #16130c, #2a2316 45%, #16130c);
  border: 1px solid rgba(228,193,90,.28);
  border-radius: 12px 12px 0 0;
  padding: 10px 44px;
}
.cz-row-bar h2 {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .02em;
  color: var(--cz-gold);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cz-row-bar a {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  font-weight: 700;
  color: rgba(228,193,90,.78);
  white-space: nowrap;
}
html.zx-light .cz-row-bar {
  background: linear-gradient(90deg, #3a101c, #5a1a2c 50%, #3a101c);
  border-color: rgba(90,26,44,.35);
}
html.zx-light .cz-row-bar h2 { color: #fff; }
html.zx-light .cz-row-bar a { color: rgba(255,255,255,.78); }
.cz-rail {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 10px 2px 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  background: var(--cz-surface);
  border: 1px solid var(--cz-line);
  border-top: 0;
  border-radius: 0 0 12px 12px;
}
.cz-rail::-webkit-scrollbar { display: none; }
.cz-rail .cz-card {
  flex: 0 0 152px;
  width: 152px;
}

.cz-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.cz-card {
  background: var(--cz-card);
  border: 1px solid var(--cz-line);
  border-radius: 14px;
  overflow: hidden;
  display: flex; flex-direction: column;
  min-width: 0;
}
.cz-card-img {
  position: relative;
  background: radial-gradient(80% 90% at 50% 18%, #fff6d8 0%, #f3e6b8 42%, #e8d7a0 100%);
}
html:not(.zx-light) .cz-card-img {
  background: radial-gradient(80% 90% at 50% 18%, #3a3018 0%, #1a1710 55%, #12141c 100%);
}
.cz-card-img:before { content: ""; display: block; padding-top: 100%; }
.cz-card-img img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; padding: 14px; box-sizing: border-box;
}
.cz-badge {
  position: absolute; top: 8px; left: 8px; z-index: 1;
  background: var(--cz-sale); color: #fff; font-size: 9px; font-weight: 800;
  border-radius: 6px; padding: 3px 6px; letter-spacing: .02em;
}
.cz-off {
  position: absolute; top: 8px; right: 8px; z-index: 1;
  background: #e85d04; color: #fff; font-size: 10px; font-weight: 800;
  border-radius: 6px; padding: 3px 6px;
}
.cz-card-b { padding: 8px 9px 10px; display: flex; flex-direction: column; flex: 1; }
.cz-name {
  font-size: 12px; font-weight: 600; line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  min-height: 2.7em;
}
.cz-price { margin-top: 6px; font-size: 15px; font-weight: 900; color: var(--cz-price); }
.cz-old { margin-top: 2px; font-size: 11px; color: var(--cz-muted); text-decoration: line-through; font-weight: 600; }
.cz-meta { margin-top: 4px; font-size: 10px; color: var(--cz-muted); font-weight: 600; }
.cz-shopnow {
  display: block;
  margin-top: auto;
  text-align: center;
  background: linear-gradient(135deg, #e4c15a, #c9a227);
  color: #1a1408;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .02em;
  padding: 7px 8px;
  border-radius: 8px;
}
html.zx-light .cz-shopnow {
  background: linear-gradient(135deg, #ff2d7b, #e31263);
  color: #fff;
}
.cz-soldout {
  position: absolute; inset: 0; background: rgba(0,0,0,.45);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; letter-spacing: .06em;
}

.cz-empty {
  grid-column: 1 / -1; text-align: center; padding: 40px 16px;
  color: var(--cz-muted);
}
.cz-empty b { display: block; color: var(--cz-text); font-size: 15px; margin-bottom: 6px; }

.cz-nav {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--cz-nav); backdrop-filter: blur(12px);
  border-top: 1px solid var(--cz-line);
  padding-bottom: var(--cz-safe);
}
.cz-nav a {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 8px 4px 7px; font-size: 10px; font-weight: 700; color: var(--cz-muted);
}
.cz-nav a.on { color: var(--cz-gold); }

.cz-pd-gal { border-radius: 16px; overflow: hidden; background: var(--cz-img); border: 1px solid var(--cz-line); }
.cz-pd-gal .main { position: relative; }
.cz-pd-gal .main:before { content: ""; display: block; padding-top: 100%; }
.cz-pd-gal .main img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cz-thumbs { display: flex; gap: 8px; padding: 10px; background: var(--cz-surface); }
.cz-thumbs button {
  width: 52px; height: 52px; padding: 0; border-radius: 10px; overflow: hidden;
  border: 1px solid var(--cz-line); background: var(--cz-img); cursor: pointer;
}
.cz-thumbs button.on { border-color: var(--cz-gold); }
.cz-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.cz-crumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; color: var(--cz-muted); margin: 0 0 12px;
}
.cz-crumb a { color: var(--cz-gold); }
.cz-crumb span:last-child {
  color: var(--cz-text); max-width: 100%;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.cz-pd-grid { display: grid; gap: 16px; }
.cz-pd-info h1 { margin: 0 0 8px; font-size: 18px; font-weight: 800; line-height: 1.3; }
.cz-stars { font-size: 13px; color: #f5b301; font-weight: 800; margin-bottom: 10px; }
.cz-stars span, .cz-stars b { color: var(--cz-muted); font-weight: 700; }
.cz-stars b { color: var(--cz-text); }
.cz-promo {
  margin: 0 0 12px; border-radius: 12px; padding: 12px 14px;
  background: linear-gradient(90deg, #c81e4a, #e31263);
  color: #fff; font-size: 13px; font-weight: 800;
}
html:not(.zx-light) .cz-promo {
  background: linear-gradient(90deg, #3a2010, #c9a227);
  color: #1a1408;
}
.cz-pd-price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.cz-pd-price .cz-price { margin: 0; font-size: 26px; }
.cz-off-txt { font-size: 12px; font-weight: 800; color: #e85d04; }
.cz-pd-meta { margin: 0; }
.cz-pd-meta > div {
  display: grid; grid-template-columns: 92px 1fr; gap: 8px;
  padding: 8px 0; border-top: 1px solid var(--cz-line);
}
.cz-pd-meta dt { margin: 0; font-size: 12px; font-weight: 700; color: var(--cz-muted); }
.cz-pd-meta dd { margin: 0; font-size: 13px; font-weight: 600; line-height: 1.45; }
.cz-opts { display: flex; flex-wrap: wrap; gap: 8px; }
.cz-opt {
  border: 1px solid var(--cz-line); background: var(--cz-card); color: var(--cz-text);
  border-radius: 8px; padding: 7px 12px; font-size: 12px; font-weight: 800; cursor: pointer;
}
.cz-opt.on { border-color: var(--cz-gold); box-shadow: 0 0 0 1px var(--cz-gold); }
html.zx-light .cz-opt.on { border-color: #ff2d7b; box-shadow: 0 0 0 1px #ff2d7b; }
.cz-qty { display: flex; align-items: center; gap: 0; }
.cz-qty button, .cz-qty input {
  height: 36px; border: 1px solid var(--cz-line); background: var(--cz-card); color: var(--cz-text);
}
.cz-qty button { width: 36px; font-size: 18px; font-weight: 800; cursor: pointer; }
.cz-qty input { width: 48px; text-align: center; font-weight: 800; border-left: 0; border-right: 0; }
.cz-pd-actions { display: flex; gap: 10px; margin-top: 16px; }
.cz-pd-actions .cz-cta { flex: 1; text-align: center; text-decoration: none; }
.cz-store-btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px; padding: 8px 12px; font-size: 11px; font-weight: 800;
  background: linear-gradient(135deg, #e4c15a, #c9a227); color: #1a1408; white-space: nowrap;
}
.cz-store-btn.ghost {
  background: transparent; color: var(--cz-text); border: 1px solid var(--cz-line);
}
html.zx-light .cz-cta.ghost, html.zx-light .cz-store-btn {
  background: transparent; color: #e31263; border: 1px solid #ff2d7b;
}
html.zx-light .cz-cta:not(.ghost), html.zx-light .cz-store-btn:not(.ghost) {
  background: linear-gradient(135deg, #ff2d7b, #e31263); color: #fff; border: 0;
}
.cz-storebar {
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-top: 14px;
  padding: 12px; border-radius: 14px; background: var(--cz-card); border: 1px solid var(--cz-line);
}
.cz-storebar img, .cz-storebar .ph {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover; background: var(--cz-surface);
}
.cz-storebar .ph { display: flex; align-items: center; justify-content: center; font-weight: 800; color: var(--cz-gold); }
.cz-desc { margin-top: 14px; font-size: 13px; line-height: 1.6; color: var(--cz-desc); white-space: pre-wrap; }
.cz-buybar {
  position: fixed; left: 0; right: 0; bottom: calc(52px + var(--cz-safe)); z-index: 45;
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  padding: 10px 12px; background: var(--cz-nav);
  border-top: 1px solid var(--cz-line);
}
.cz-buybar .cz-price { margin: 0; flex: 1; }
.cz-buybar .cz-cta { text-align: center; text-decoration: none; }
.cz-cta {
  border: 0; border-radius: 12px; padding: 12px 18px; cursor: pointer;
  background: linear-gradient(135deg, #e4c15a, #c9a227);
  color: #1a1408; font-size: 14px; font-weight: 800;
}
.cz-cta.ghost {
  background: transparent; color: var(--cz-text); border: 1px solid var(--cz-line);
}
html.zx-light .cz-card {
  box-shadow: 0 1px 4px rgba(16,24,40,.06);
}

.cz-note {
  font-size: 11px; color: var(--cz-muted); text-align: center; margin: 18px 8px 8px;
}
.cz-foot {
  margin-top: 20px;
  padding: 28px 16px 28px;
  background: #12141c;
  border-top: 1px solid var(--cz-line);
}
html.zx-light .cz-foot {
  background: #eef1f4;
  border-top-color: rgba(16,24,40,.08);
}
.cz-foot-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 26px;
}
.cz-foot h3 {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--cz-text);
}
.cz-foot a {
  display: block;
  padding: 3px 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--cz-muted);
}
.cz-foot a:hover { color: var(--cz-gold); }
.cz-foot-app { display: flex; flex-direction: column; gap: 12px; }
.cz-foot-brand { display: flex; align-items: center; gap: 10px; }
.cz-foot-mark {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #e4c15a, #c9a227);
  color: #1a1408; font-size: 20px; font-weight: 900;
}
.cz-foot-brand b { display: block; font-size: 15px; font-weight: 800; color: #e85d04; line-height: 1.15; }
.cz-foot-brand span { display: block; font-size: 12px; font-weight: 700; color: var(--cz-muted); }
html:not(.zx-light) .cz-foot-brand b { color: var(--cz-gold); }
.cz-stores { display: flex; flex-wrap: wrap; gap: 8px; }
.cz-store {
  display: flex; align-items: center; gap: 8px;
  min-width: 148px; padding: 8px 10px; border-radius: 8px;
  background: #111; color: #fff;
}
.cz-store small { display: block; font-size: 8px; font-weight: 700; letter-spacing: .04em; opacity: .75; }
.cz-store span { font-size: 12px; font-weight: 800; line-height: 1.15; }

.cz-foot-trust {
  max-width: 1180px;
  margin: 22px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--cz-line);
  display: grid;
  gap: 22px;
}
html.zx-light .cz-foot-trust { border-top-color: rgba(16,24,40,.08); }
.cz-foot-trust h3 {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: var(--cz-muted);
}
.cz-pay, .cz-ship {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cz-logo-tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  height: 36px;
  padding: 0 8px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid rgba(16,24,40,.08);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .02em;
  color: #1a1d26;
  box-shadow: 0 1px 2px rgba(16,24,40,.04);
}
html:not(.zx-light) .cz-logo-tile {
  background: #fff;
  color: #1a1d26;
}
.t-wallet { color: #c9a227; }
.t-visa { color: #1a1f71; font-style: italic; font-size: 13px; }
.t-maybank { color: #ffc107; background: #1a3a2a; }
.t-cimb { color: #c41e3a; }
.t-hlb { color: #c8102e; }
.t-pbb { color: #c8102e; }
.t-rhb { color: #003087; }
.t-islam { color: #0b6b3a; }
.t-fpx { color: #e31c23; }
.t-711 { color: #00853f; }
.t-tng { color: #005eb8; }
.t-boost { color: #e31c79; }
.t-mc { color: #eb001b; }
.t-union { color: #e21836; }
.t-pos { color: #c8102e; }
.t-ninja { color: #e31c23; font-weight: 900; }
.t-sky { color: #1a1a1a; letter-spacing: .08em; }
.t-jt { color: #e31c23; }
.t-jtc { color: #e31c23; }
.t-ssl { color: #1a1d26; min-width: 88px; }
.t-pci { color: #c9a227; min-width: 88px; background: #3a1a08; }

.cz-foot-end {
  max-width: 1180px;
  margin: 22px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--cz-line);
  display: grid;
  gap: 18px;
}
html.zx-light .cz-foot-end { border-top-color: rgba(16,24,40,.08); }
.cz-foot-end h3 {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: var(--cz-muted);
}
.cz-flags { display: flex; gap: 8px; }
.cz-flag {
  width: 32px; height: 32px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 20px; line-height: 1;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(16,24,40,.08);
  overflow: hidden;
}
.cz-follow { text-align: left; }
.cz-soc { display: flex; flex-wrap: wrap; gap: 8px; }
.cz-soc a {
  width: 32px; height: 32px; padding: 0; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 14px; font-weight: 900; line-height: 1;
}
.cz-soc a:hover { color: #fff; opacity: .88; }
.s-fb { background: #1877f2; }
.s-yt { background: #ff0000; font-size: 11px; }
.s-ig { background: linear-gradient(135deg, #f58529, #dd2a7b 55%, #8134af); }
.s-x { background: #111; }
.s-tt { background: #111; }
.cz-copy {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--cz-muted);
}

@media (max-width: 719px) {
  .cz-hide-sm { display: none !important; }
  .cz-wallet span { display: none; }
  .cz-wallet { width: 40px; padding: 0; justify-content: center; }
  .cz-search { height: 36px; }
  .cz-search button { width: 40px; }
  .cz-logo { height: 34px; max-width: 188px; }
  .cz-ico { width: 34px; height: 34px; border-radius: 10px; }
  .cz-caro-slide { min-height: 156px; grid-template-columns: 72px 1fr; padding: 12px 10px 26px; }
}

@media (min-width: 720px) {
  .cz-pd-grid { grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
  .cz-buybar { display: none; }
  .cz-foot-grid { grid-template-columns: 1fr 1fr minmax(240px, 300px); align-items: start; }
  .cz-foot-trust { grid-template-columns: 1.2fr 1fr .7fr; align-items: start; }
  .cz-foot-end {
    grid-template-columns: 1fr 1fr auto;
    align-items: end;
  }
  .cz-follow { text-align: center; }
  .cz-follow .cz-soc { justify-content: center; }
  .cz-copy { text-align: right; align-self: center; }
  .cz-rail .cz-card { flex-basis: 168px; width: 168px; }
  .cz-row-bar h2 { font-size: 17px; }
  .cz-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .cz-hero { min-height: 180px; padding: 28px 28px; }
  .cz-hero h1 { font-size: 28px; }
  .cz-hero img { height: 108px; max-width: 340px; }
  .cz-cats { grid-template-columns: repeat(10, 1fr); }
  .cz-caro-slide {
    min-height: 220px;
    grid-template-columns: 180px 1fr 180px;
    padding: 18px 48px 32px;
    gap: 12px;
  }
  .cz-caro-slide .pic { height: 168px; }
  .cz-caro-slide .pic img { max-height: 168px; }
  .cz-caro-slide .pic.right { display: flex; }
  .cz-caro-slide h2 { font-size: 32px; }
  .cz-caro-slide p { font-size: 14px; }
  .cz-caro-slide .cta { font-size: 13px; padding: 8px 16px; }
  .cz-caro-btn { display: inline-flex; align-items: center; justify-content: center; }
}
@media (min-width: 1024px) {
  .cz-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .cz-nav, .cz-buybar { max-width: 1180px; left: 50%; right: auto; transform: translateX(-50%); width: 100%; }
  .cz-mall { padding-bottom: 24px; }
  .cz-nav { display: none; }
  .cz-buybar { bottom: 0; }
}
