@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,700;1,800;1,900&display=swap');

/* ============================================================
   PLAY GO BOOST — style.css
   Theme  : Dark Hero + Light Content (Hybrid)
   Version: 3.0 — 2026
============================================================ */

/* ============================================================
   1. CSS VARIABLES
============================================================ */
:root {
  /* Dark surfaces (hero, navbar, footer) */
  --dark:        #050b1f;
  --dark-2:      #070d1f;
  --dark-card:   #0d1630;
  --navy:        #0f172a;

  /* Light surfaces (content sections) */
  --light-bg:    #f4f7ff;
  --light-card:  #ffffff;
  --light-card2: #f0f4ff;
  --light-border: rgba(13,54,168,.12);
  --light-border2: rgba(15,23,42,.08);

  /* Neon accents */
  --blue:        #0d36a8;
  --blue-2:      #0E2E96;
  --cyan:        #06b6d4;
  --red:         #ef4444;
  --red-2:       #dc2626;
  --yellow:      #f59e0b;
  --green:       #16a34a;

  /* Text — dark mode */
  --white:       #ffffff;
  --text-dark:   #e2e8f0;
  --text-muted-dark: rgba(226,232,240,.62);

  /* Text — light mode */
  --text-light:  #0f172a;
  --text-muted-light: #475569;
  --text-dim-light: #94a3b8;

  /* Glow shadows */
  --glow-blue:   0 0 22px rgba(13,54,168,.45);
  --glow-red:    0 0 22px rgba(239,68,68,.45);
  --glow-cyan:   0 0 18px rgba(6,182,212,.40);

  /* Borders */
  --border-dark: rgba(59,130,246,.18);

  /* Aliases dipakai di halaman produk */
  --text:      #0f172a;
  --blue-dark: #0E2E96;
}

/* ============================================================
   2. RESET & BASE
============================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Nunito", Arial, sans-serif;
  background: var(--light-bg);
  color: var(--text-light);
  overflow-x: hidden;
  padding-bottom: 88px;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  touch-action: manipulation;
}

.container {
  width: min(1180px, calc(100% - 28px));
  margin: auto;
}

/* ============================================================
   3. NAVBAR — dark glass
============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #0E2E96;
  box-shadow: 0 2px 20px rgba(0,0,0,.28);
}

.nav-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand-text {
  line-height: .92;
  font-weight: 900;
  font-style: italic;
}

.brand-text span {
  display: block;
  font-size: 18px;
  color: #fff;
  letter-spacing: .5px;
}

.brand-text strong {
  display: block;
  font-size: 24px;
  color: var(--white);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-menu a {
  color: rgba(255,255,255,.72);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 10px;
  transition: color .2s, background .2s;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--white);
  background: rgba(13,54,168,.18);
}

.nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .5px;
  box-shadow: var(--glow-blue);
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}

.nav-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 34px rgba(13,54,168,.65);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: none;
  color: #ffffff;
  font-size: 26px;
  cursor: pointer;
  text-shadow:
    0 2px 0 rgba(0,0,0,.22),
    0 4px 6px rgba(0,0,0,.28);
  transition: transform .18s;
}

.menu-button:hover {
  background: none;
  transform: translateY(-2px);
}

/* ============================================================
   4. HERO — full dark neon (tetap seperti asli + efek)
============================================================ */
.home-hero {
  position: relative;
  background:
    url("hero-bg-desktop.jpg") center top / cover no-repeat,
    var(--dark);
  color: var(--white);
  overflow: hidden;
}

/* Neon atmosphere */
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 45%, rgba(13,54,168,.18), transparent 50%),
    radial-gradient(ellipse at 15% 80%, rgba(6,182,212,.10), transparent 42%),
    linear-gradient(180deg, rgba(5,11,31,.30) 0%, rgba(5,11,31,.0) 55%);
  z-index: 1;
  pointer-events: none;
}

/* Grid lines */
.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(13,54,168,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,54,168,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  z-index: 1;
  pointer-events: none;
}

.hero-wrap {
  position: relative;
  min-height: 660px;
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 92px;
}

.hero-text {
  width: 47%;
  position: relative;
  z-index: 5;
}

.hero-text h1 {
  font-size: clamp(52px, 6.4vw, 88px);
  line-height: .9;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -2px;
  margin-bottom: 22px;
  text-shadow: 0 4px 18px rgba(0,0,0,.60);
}

.hero-text h1 span {
  display: block;
}

.blue-text {
  color: var(--blue);
  filter: drop-shadow(0 0 14px rgba(13,54,168,.65));
}

.red-text {
  color: var(--red);
  filter: drop-shadow(0 0 14px rgba(239,68,68,.60));
}

.hero-line {
  width: 260px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), rgba(6,182,212,.0));
  border-radius: 999px;
  margin-bottom: 24px;
  box-shadow: 0 0 14px rgba(13,54,168,.50);
}

.hero-text p {
  max-width: 500px;
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255,255,255,.88);
  margin-bottom: 28px;
}

.hero-order-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 190px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff1717, #e60012);
  color: var(--white);
  font-size: 19px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(239,68,68,.40), var(--glow-red);
  transition: transform .25s, box-shadow .25s;
}

.hero-order-btn span {
  font-size: 30px;
  line-height: 1;
  margin-top: -2px;
  transition: transform .2s;
}

.hero-order-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(239,68,68,.55), 0 0 36px rgba(239,68,68,.35);
}

.hero-order-btn:hover span {
  transform: translateX(5px);
}

/* Mascot */
.hero-mascot {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 4;
}

.hero-mascot::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(13,54,168,.16) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: pgb-pulse 3.5s ease-in-out infinite;
  pointer-events: none;
}

.hero-mascot img {
  width: min(580px, 100%);
  max-width: none;
  position: relative;
  filter: drop-shadow(0 26px 44px rgba(13,54,168,.28));
  animation: pgb-float 4s ease-in-out infinite;
}

@keyframes pgb-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

@keyframes pgb-pulse {
  0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: .7; }
  50%       { transform: translate(-50%,-50%) scale(1.10); opacity: 1; }
}

/* Trust bar — in-flow element, lives outside hero */
.hero-trust-box {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(4,10,30,.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(13,54,168,.38);
  border-radius: 20px;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 12px 32px rgba(0,0,0,.30), var(--glow-blue);
}

.hero-trust-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  border-right: 1px solid rgba(255,255,255,.08);
  transition: background .25s;
}

.hero-trust-item:last-child {
  border-right: none;
}

.hero-trust-item:hover {
  background: rgba(13,54,168,.07);
}

.hero-trust-item img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.hero-trust-item h3 {
  color: var(--blue);
  font-size: 16px;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  margin-bottom: 2px;
  text-shadow: 0 0 14px rgba(13,54,168,.55);
}

.hero-trust-item p {
  color: rgba(255,255,255,.82);
  font-size: 12px;
  line-height: 1.3;
}

.hero-down-btn {
  position: absolute;
  left: 50%;
  bottom: 48px;
  transform: translateX(-50%);
  width: 72px;
  height: 72px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: var(--white);
  font-size: 38px;
  font-weight: 900;
  z-index: 8;
  box-shadow: var(--glow-blue);
  transition: transform .2s, box-shadow .2s;
}

.hero-down-btn:hover {
  transform: translateX(-50%) translateY(-4px);
  box-shadow: 0 0 38px rgba(13,54,168,.70);
}

.section-wave {
  display: none;
}

/* ============================================================
   SECTION DIVIDER — geometric V-cut (replaces wave)
============================================================ */
.section-divider {
  background: #f0f4ff;
  line-height: 0;
  display: block;
  position: relative;
  z-index: 1;
}

.section-divider svg {
  display: block;
  width: 100%;
  height: 70px;
}

/* Trust strip — sits between hero-divider and services */
.hero-trust-section {
  background: #f0f4ff;
  padding: 0 0 40px;
}

/* ============================================================
   5. SERVICES SECTION — LIGHT (nyaman di mata)
============================================================ */
.home-services {
  position: relative;
  background:
    radial-gradient(circle at 5% 8%, rgba(13,54,168,.06), transparent 30%),
    radial-gradient(circle at 95% 85%, rgba(239,68,68,.04), transparent 30%),
    linear-gradient(180deg, #f0f4ff 0%, #eef2fb 100%);
  padding: 88px 0 108px;
  overflow: hidden;
}

/* Decorative top border neon tipis */
.home-services::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--cyan), transparent);
  opacity: .55;
}

/* Section heading */
.services-heading {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 46px;
}

.services-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(13,54,168,.10);
  border: 1px solid rgba(13,54,168,.22);
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.services-heading h2 {
  color: #0a1440;
  font-size: clamp(34px, 5vw, 60px);
  line-height: .95;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -1.5px;
  margin-bottom: 14px;
}

.services-heading p {
  color: var(--text-muted-light);
  font-size: 17px;
  line-height: 1.65;
}

/* Services grid */
.services-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Service card — light with neon accents */
.service-card {
  position: relative;
  isolation: isolate;
  min-height: 320px;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 85%, #fdfeff 100%);
  border: 1px solid var(--light-border2);
  border-radius: 24px;
  color: var(--text-light);
  box-shadow:
    0 6px 0 rgba(13,30,90,.22),
    0 16px 28px rgba(11,28,80,.20);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .28s cubic-bezier(.34,1.56,.64,1), border-color .25s, box-shadow .25s;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(13,54,168,.07), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #ffffff 85%, #fdfeff 100%);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(13,54,168,.40);
  box-shadow:
    0 8px 0 rgba(13,30,90,.24),
    0 24px 40px rgba(11,28,80,.24), var(--glow-blue);
}

.service-card-top,
.service-card-body,
.service-card-bottom {
  position: relative;
  z-index: 2;
}

.service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 20px 0;
  margin-bottom: 16px;
}

/* Icon box */
.service-card-icon {
  width: 92px;
  height: 92px;
  border-radius: 22px;
  background: linear-gradient(135deg, #eef3ff, #f8faff);
  border: 1px solid rgba(13,54,168,.12);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 18px rgba(13,54,168,.10);
  transition: background .25s, box-shadow .25s, transform .25s;
}

.service-card:hover .service-card-icon {
  background: linear-gradient(135deg, #dce9ff, #eef3ff);
  box-shadow: 0 12px 28px rgba(13,54,168,.22), var(--glow-blue);
  transform: scale(1.06);
}

.service-card-icon img {
  width: 66px;
  height: 66px;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(13,54,168,.18));
}

/* Badge */
.service-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(239,68,68,.10);
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.service-badge.blue {
  background: rgba(13,54,168,.10);
  color: var(--blue);
}

.service-badge.yellow {
  background: rgba(245,158,11,.12);
  color: #b45309;
}

.service-badge.red {
  background: rgba(239,68,68,.10);
  color: var(--red);
}

/* Card body */
.service-card-body {
  padding: 0 20px 4px;
  flex: 1;
}

.service-card-body h3 {
  color: #0a1440;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -.3px;
  margin-bottom: 10px;
}

.service-card-body p {
  color: var(--text-muted-light);
  font-size: 14px;
  line-height: 1.6;
}

/* CTA bar */
.service-card-bottom {
  margin: 18px 20px 20px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(13,54,168,.28);
  transition: box-shadow .25s, transform .2s;
}

.service-card:hover .service-card-bottom {
  box-shadow: 0 14px 32px rgba(13,54,168,.42), var(--glow-blue);
}

.service-card-bottom span {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.service-card-bottom strong {
  font-size: 26px;
  line-height: 1;
  margin-top: -2px;
}

/* ============================================================
   6. CATALOG PAGE
============================================================ */

/* Search bar — 3D toy-button, same theme as homepage */
.catalog-search-section {
  background: #f3f6fb;
  padding: 22px 10px 14px;
}

.catalog-search-bar {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 640px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 14px;
  border: 1.5px solid rgba(13,30,90,.16);
  padding: 6px 8px 6px 16px;
  box-shadow:
    0 3px 0 rgba(180,184,214,.65),
    0 3px 8px rgba(0,0,0,.06);
}

.catalog-search-bar::before,
.catalog-search-bar::after {
  display: none;
}

.catalog-search-icon {
  position: relative;
  z-index: 1;
  width: 15px;
  height: 15px;
  opacity: .55;
  flex-shrink: 0;
}

.catalog-search-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  border: 2px solid #0a1440;
  border-radius: 50%;
}

.catalog-search-icon::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 2px;
  height: 7px;
  background: #0a1440;
  border-radius: 1px;
  transform: rotate(45deg);
}

.catalog-search-bar input {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: none;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  color: #0a1440;
}

.catalog-search-bar input::placeholder {
  color: rgba(10,20,64,.40);
}

.catalog-search-btn {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 9px 18px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ffc929, #ffb800);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .4px;
  box-shadow: 0 3px 0 #cc9200;
}

/* Category strip — latar terang, kotak putih 1 layer seperti home */
.catalog-category-section {
  background: #f3f6fb;
  padding: 16px 10px 6px;
}

.catalog-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 10px;
  row-gap: 14px;
}
@media (min-width: 700px) {
  .catalog-category-grid { grid-template-columns: repeat(8, 1fr); }
}

.catalog-category-card {
  position: relative;
  aspect-ratio: 1 / 1;
  min-width: 0;
  overflow: hidden;
  background: #ffffff;
  border-radius: 20px;
  border: 1.5px solid rgba(13,30,90,.09);
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: center;
  justify-items: center;
  text-align: center;
  padding: 10px 6px 12px;
  box-shadow:
    0 4px 0 rgba(180,184,214,.55),
    0 2px 10px rgba(0,0,0,.04);
  transition: transform .2s, box-shadow .2s;
}

.catalog-category-card.active,
.catalog-category-card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 6px 0 rgba(180,184,214,.55),
    0 4px 14px rgba(0,0,0,.08);
}

.catalog-category-card img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  display: block;
  grid-row: 1;
  align-self: center;
}

.catalog-category-card strong {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-row: 2;
  width: 100%;
  color: #0a1440;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  word-break: break-word;
}

.catalog-no-results {
  text-align: center;
  padding: 32px 16px;
  font-size: 14px;
  color: #94a3b8;
  font-weight: 700;
}

/* Product grid — same vertical tray-card language as homepage services */
.catalog-product-section {
  background: #f3f6fb;
  padding: 12px 10px 64px;
}

.catalog-product-heading {
  text-align: center;
  margin-bottom: 20px;
}

.catalog-product-heading h2 {
  color: #0d1e8a;
  font-size: clamp(22px, 5.5vw, 32px);
  line-height: 1.05;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.catalog-product-heading p {
  color: rgba(13,30,90,.55);
  font-size: 13px;
  line-height: 1.5;
}

.catalog-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 700px) {
  .catalog-product-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; }
}

/* Star-level group — sub-section heading above each product grid */
.catalog-star-group {
  margin-bottom: 30px;
}
.catalog-star-group:last-child {
  margin-bottom: 0;
}

.catalog-star-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #0d1e8a;
  font-size: 16px;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.catalog-star-heading::before {
  content: "";
  width: 6px;
  height: 18px;
  border-radius: 4px;
  background: var(--blue);
  flex-shrink: 0;
}

.catalog-product-card {
  position: relative;
  min-width: 0;
  background: #ffffff;
  border: 1.5px solid rgba(13,30,90,.09);
  border-radius: 18px;
  padding: 14px 12px 12px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow:
    0 4px 0 rgba(180,184,214,.55),
    0 2px 10px rgba(0,0,0,.04);
  transition: transform .22s cubic-bezier(.38,0,.18,1), box-shadow .22s cubic-bezier(.38,0,.18,1);
}

.catalog-product-card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 6px 0 rgba(180,184,214,.55),
    0 4px 14px rgba(0,0,0,.08);
}

.catalog-product-img {
  width: 60%;
  aspect-ratio: 1;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}

.catalog-product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.catalog-pill {
  display: none;
}

.catalog-product-body {
  width: 100%;
}

.catalog-product-body h3 {
  color: #0d1e8a;
  font-size: 10px;
  line-height: 1.25;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  margin: 0 0 4px;
  width: 100%;
}

.catalog-product-btn {
  display: block;
  width: 100%;
  padding: 8px 0;
  border-radius: 999px;
  background: #d4140f;
  color: #fff;
  font-size: 9.5px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .3px;
  text-align: center;
  box-shadow: 0 2px 0 #9e0d09;
}

/* Shop product extras — price, qty stepper & cart button for category pages */
.catalog-product-desc {
  display: none;
}

.catalog-product-price {
  color: #0d36a8;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 3px;
}

.catalog-qty-row {
  display: grid;
  grid-template-columns: 22px 1fr 22px;
  gap: 3px;
  width: 100%;
  margin-bottom: 3px;
}

.catalog-qty-btn {
  height: 22px;
  border: none;
  border-radius: 7px;
  background: #eef1ff;
  color: #0d36a8;
  font-weight: 900;
  font-size: 13px;
  cursor: pointer;
}

.catalog-qty-number {
  height: 22px;
  display: grid;
  place-items: center;
  background: #f4f6ff;
  border-radius: 7px;
  font-weight: 900;
  color: #0d1e8a;
  font-size: 10px;
}

.catalog-cart-btn {
  display: block;
  width: 100%;
  padding: 5px 0;
  border-radius: 7px;
  background: #ffb800;
  color: #5c3d00;
  font-size: 9.5px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .3px;
  text-align: center;
  border: none;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 3px 0 rgba(168,108,0,.70);
}

/* ============================================================
   7. FOOTER — royal blue, matches site background
============================================================ */
/* Info accordion boxes (pinfo) — shared across product pages */
.pinfo-section { padding: 8px 10px 40px; }
.pinfo-section .container { display: flex; flex-direction: column; gap: 10px; }
.pinfo-box {
  background: #fff;
  border-radius: 18px;
  border: 1.5px solid rgba(13,30,90,.09);
  box-shadow: 0 4px 0 rgba(180,184,214,.55), 0 2px 10px rgba(0,0,0,.04);
  overflow: hidden;
}
.pinfo-btn {
  width: 100%; background: none; border: none;
  padding: 15px 16px; display: flex; align-items: center;
  justify-content: space-between; gap: 12px; cursor: pointer;
  text-align: left; font-family: 'Nunito', sans-serif;
  font-size: 14px; font-weight: 800; color: #0d1e5a; line-height: 1.4;
}
.pinfo-plus {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: #f0f4ff; border: 1.5px solid rgba(13,54,168,.18);
  color: #0d36a8; font-size: 20px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  transition: .2s; line-height: 1;
}
.pinfo-box.open .pinfo-plus { background: #0E2E96; color: #fff; transform: rotate(45deg); }
.pinfo-body {
  display: none; padding: 0 16px 16px;
  border-top: 1px solid rgba(13,30,90,.08);
}
.pinfo-body p { font-size: 13px; color: #475569; line-height: 1.7; margin: 12px 0 8px; }
.pinfo-body ol, .pinfo-body ul { margin: 12px 0 0; padding-left: 18px; display: flex; flex-direction: column; gap: 8px; }
.pinfo-body li { font-size: 13px; color: #475569; line-height: 1.6; }
.pinfo-box.open .pinfo-body { display: block; }

.footer {
  background: #0E2E96;
  color: rgba(255,255,255,.70);
  padding: 44px 0 0;
  border-top: 3px solid rgba(255,255,255,.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: 32px 24px;
  padding-bottom: 36px;
}

/* Logo in footer: all white */
.footer .brand-text span   { color: rgba(255,255,255,.90); }
.footer .brand-text strong { color: #ffffff; }

.footer a.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-tagline {
  color: rgba(255,255,255,.52);
  font-size: 13px;
  line-height: 1.6;
  margin-top: 6px;
}

.footer h3 {
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff;
  margin-bottom: 14px;
  padding-left: 10px;
  border-left: 3px solid #ffb800;
}

.footer p,
.footer a {
  color: rgba(255,255,255,.58);
  font-size: 13px;
  line-height: 2;
  transition: color .2s;
}

.footer a {
  display: block;
  padding: 1px 0;
}

.footer a:hover {
  color: #ffb800;
  padding-left: 4px;
}

.payment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.payment-list span {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.85);
  padding: 7px 14px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .3px;
}

.copyright {
  text-align: center;
  color: rgba(255,255,255,.38);
  font-size: 12px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.10);
  letter-spacing: .3px;
}

/* ============================================================
   8. CART POPUP
============================================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 99998;
  display: none;
}

.cart-overlay.open {
  display: block;
}

.cart-popup {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) translateY(110%);
  width: min(100%, 720px);
  max-height: 90vh;
  background: var(--light-card);
  color: var(--text-light);
  z-index: 99999;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -14px 40px rgba(11,28,80,.24);
  transition: transform .30s cubic-bezier(.34,1.2,.64,1);
  overflow: hidden;
}

.cart-popup.open {
  transform: translateX(-50%) translateY(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: none;
  background: #0E2E96;
}

.cart-header h2 {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.cart-header button {
  border: none;
  background: linear-gradient(180deg, #ffffff 0%, #f4f6fb 100%);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 22px;
  line-height: 1;
  color: #64748b;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 10px rgba(11,28,80,.16), 0 1px 0 rgba(11,28,80,.04);
  transition: background .2s, color .2s, transform .2s, box-shadow .2s;
}

.cart-header button:hover {
  background: linear-gradient(180deg, #fff5f5 0%, #fee2e2 100%);
  color: var(--red);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(194,13,13,.20);
}

.cart-body {
  max-height: 48vh;
  overflow-y: auto;
  background: var(--light-card);
}

.cart-empty {
  text-align: center;
  padding: 44px 18px;
  display: none;
}

.cart-empty img {
  width: 66px;
  height: 66px;
  margin: 0 auto 14px;
  opacity: .40;
  filter: drop-shadow(0 6px 10px rgba(11,28,80,.18));
}

.cart-empty h3 {
  font-size: 20px;
  font-weight: 800;
  color: #0a1440;
  margin-bottom: 6px;
}

.cart-empty p {
  font-size: 14px;
  color: var(--text-muted-light);
}

.cart-item {
  display: grid;
  grid-template-columns: 86px 1fr auto;
  gap: 16px;
  align-items: start;
  padding: 18px 24px;
  border-bottom: 1px solid var(--light-border2);
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-image {
  width: 86px;
  height: 86px;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 85%, #fdfeff 100%);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(11,28,80,.12);
}

.cart-item-image img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.cart-item-info h3 {
  font-size: 15px;
  line-height: 1.35;
  font-weight: 800;
  color: #0a1440;
  margin-bottom: 12px;
  word-break: break-word;
}

.cart-item-info p {
  display: none;
}

.cart-item-qty {
  display: inline-grid;
  grid-template-columns: 34px 42px 34px;
  height: 36px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f4f6fb 100%);
  box-shadow: 0 3px 8px rgba(11,28,80,.10);
}

.cart-item-qty button {
  border: none;
  background: transparent;
  font-size: 22px;
  font-weight: 700;
  color: var(--blue);
  cursor: pointer;
  transition: background .2s;
}

.cart-item-qty button:hover {
  background: rgba(13,54,168,.10);
}

.cart-item-qty span {
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
  color: #0a1440;
  background: transparent;
}

.cart-item-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  min-height: 86px;
  gap: 10px;
}

.cart-item-price button {
  border: none;
  background: transparent;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  color: #94a3b8;
  transition: color .2s;
}

.cart-item-price button:hover {
  color: var(--red);
}

.cart-item-price strong {
  font-size: 17px;
  font-weight: 800;
  color: var(--green);
  white-space: nowrap;
  margin-top: auto;
}

.cart-footer {
  background: #0E2E96;
  padding: 18px 24px 22px;
}

.cart-footer-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.cart-total-items {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,.80);
}

.cart-total-items span {
  color: #ffd84d;
  font-weight: 800;
}

.cart-subtotal {
  text-align: right;
}

.cart-subtotal small {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,.70);
  margin-bottom: 2px;
  font-weight: 600;
}

.cart-subtotal strong {
  font-size: 22px;
  color: #ffffff;
  font-weight: 900;
}

.cart-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.continue-btn,
.checkout-btn {
  min-height: 54px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: transform .2s, box-shadow .2s;
}

.continue-btn {
  border: none;
  background: linear-gradient(135deg, #ffc929, #ffb800);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 0 #cc9200;
}

.continue-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 #cc9200;
}

.checkout-btn {
  background: #d4140f;
  color: var(--white);
  box-shadow: 0 4px 0 #a00d0a;
}

.checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 #a00d0a;
}

/* ============================================================
   9. BOTTOM NAV — putih lembut sesuai tema, flush full-width
============================================================ */
.bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99997;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  background: #ffffff;
  padding: 10px 6px calc(10px + env(safe-area-inset-bottom));
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -8px 24px rgba(11,28,80,.12);
}

.bottom-nav a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #8a93b8;
  font-size: 10px;
  font-weight: 800;
  min-height: 54px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .4px;
  border-radius: 14px;
  transition: color .2s, background .2s, transform .28s cubic-bezier(.34,1.56,.64,1), box-shadow .2s;
}

.bottom-nav a:hover {
  color: #0E2E96;
  background: rgba(14,46,150,.08);
}

.bottom-nav img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  opacity: .55;
  transition: filter .2s, opacity .2s, transform .2s;
}

.bottom-nav a:hover img {
  opacity: .85;
}

.bottom-nav a.active {
  color: #fff;
  background: #0E2E96;
  min-height: 58px;
  border-radius: 16px;
  transform: translateY(-8px);
  box-shadow: 0 7px 0 #081a5c;
}

.bottom-nav a.active:hover {
  transform: translateY(-8px);
  background: #0E2E96;
  color: #fff;
}

/* tekan = efek 3D mendorong ke bawah */
.bottom-nav a.active:active {
  transform: translateY(-3px);
  box-shadow: 0 2px 0 #081a5c;
}

.bottom-nav a.active img {
  width: 26px;
  height: 26px;
  opacity: 1;
  filter: brightness(0) invert(1);
}

.cart-nav-link {
  position: relative;
}

.cart-count {
  position: absolute;
  top: 4px;
  right: 14px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #ffd966;
  color: #7a3c00;
  font-size: 10px;
  font-weight: 800;
  display: none;
  place-items: center;
  border: 2px solid white;
  box-shadow: 0 2px 6px rgba(0,0,0,.28);
}

.user-nav-badge {
  position: absolute;
  top: 6px;
  right: 12px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ef4444;
  border: 2px solid white;
  box-shadow: 0 2px 6px rgba(239,68,68,.5);
  display: none;
}

/* Bottom nav is a phone-only control — hide on desktop/web viewports */
@media (min-width: 1051px) {
  .bottom-nav { display: none; }
  body { padding-bottom: 0; }
}

/* ============================================================
   10. SHARED UTILITIES
============================================================ */
.main-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 28px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .8px;
  box-shadow: 0 10px 24px rgba(13,54,168,.28);
  transition: transform .2s, box-shadow .2s;
}

.main-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(13,54,168,.45), var(--glow-blue);
}

/* CTA section — dark accent */
.cta-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(13,54,168,.20), transparent 36%),
    linear-gradient(135deg, var(--dark), #06113a);
  color: var(--white);
  padding: 70px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.cta-section p {
  color: rgba(255,255,255,.72);
  font-size: 17px;
  margin-bottom: 28px;
}

/* ============================================================
   11. RESPONSIVE — TABLET (≤1050px)
============================================================ */
@media (max-width: 1050px) {
  .nav-menu,
  .nav-button {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .nav-menu.open {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    background: #ffffff;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(15,23,42,.08);
    box-shadow: 0 18px 40px rgba(15,23,42,.18);
  }

  .nav-menu.open a {
    padding: 12px 16px;
    border-radius: 10px;
    width: 100%;
    color: rgba(15,23,42,.72);
  }

  .nav-menu.open a:hover,
  .nav-menu.open a.active {
    color: var(--blue);
    background: rgba(13,54,168,.08);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .catalog-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   12. RESPONSIVE — MOBILE (≤680px)
============================================================ */
@media (max-width: 680px) {
  body { padding-bottom: 88px; }

  .container { width: min(100% - 24px, 1180px); }

  /* Navbar */
  .nav-inner { min-height: 64px; }
  .brand img { width: 34px; height: 34px; }
  .brand-text span { font-size: 14px; }
  .brand-text strong { font-size: 18px; }
  .menu-button { display: block; width: 40px; height: 40px; font-size: 20px; }
  .nav-menu.open { top: 64px; }

  /* Hero */
  .home-hero {
    background:
      url("hero-bg-mobile.jpg") center top / 100% auto no-repeat,
      var(--dark);
    min-height: 360px;
  }

  .hero-wrap { min-height: 360px; }

  .hero-content {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    padding-top: 44px;
  }

  .hero-text { width: 54%; }

  .hero-text h1 {
    font-size: 30px;
    letter-spacing: -1px;
    margin-bottom: 10px;
  }

  .hero-line { width: 110px; height: 2px; margin-bottom: 10px; }

  .hero-text p {
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 14px;
  }

  /* Order Now mobile */
  .hero-order-btn {
    gap: 7px;
    min-width: 0;
    width: 148px;
    min-height: 40px;
    padding: 0 12px;
    font-size: 15px;
    border-radius: 999px;
  }

  .hero-order-btn span { font-size: 22px; }

  .hero-mascot {
    width: 50%;
    margin-top: -10px;
    flex-shrink: 0;
  }

  .hero-mascot::before { width: 170px; height: 170px; }
  .hero-mascot img { width: 220px; max-width: none; }

  /* Trust box — now in-flow outside hero */
  .hero-trust-box {
    width: 100%;
    border-radius: 14px;
  }

  .hero-trust-item {
    grid-template-columns: 30px 1fr;
    gap: 7px;
    padding: 12px 10px;
  }

  .hero-trust-item img { width: 26px; height: 26px; }
  .hero-trust-item h3 { font-size: 13px; margin-bottom: 1px; }
  .hero-trust-item p { font-size: 10px; line-height: 1.2; }

  /* Scroll button */
  .hero-down-btn {
    width: 42px;
    height: 42px;
    bottom: 30px;
    font-size: 20px;
    z-index: 10;
  }

  /* Section divider on mobile */
  .section-divider svg { height: 44px; }

  /* Services */
  .home-services { padding: 58px 0 100px; }

  .services-heading { max-width: 340px; margin: 0 auto 26px; }
  .services-label { min-height: 28px; padding: 0 12px; font-size: 10px; margin-bottom: 10px; }
  .services-heading h2 { font-size: 32px; }
  .services-heading p { font-size: 13px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .service-card { min-height: 240px; border-radius: 18px; }
  .service-card-top { padding: 14px 14px 0; gap: 8px; margin-bottom: 10px; }
  .service-card-icon { width: 64px; height: 64px; border-radius: 16px; }
  .service-card-icon img { width: 46px; height: 46px; }
  .service-badge { min-height: 22px; padding: 0 8px; font-size: 8px; }
  .service-card-body { padding: 0 14px 4px; }
  .service-card-body h3 { font-size: 14px; margin-bottom: 6px; }
  .service-card-body p { font-size: 11px; line-height: 1.4; }
  .service-card-bottom { margin: 12px 14px 14px; min-height: 38px; border-radius: 11px; padding: 0 10px; }
  .service-card-bottom span { font-size: 10px; }
  .service-card-bottom strong { font-size: 22px; }

  /* Footer */
  .footer { padding: 36px 0 0; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
  }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-grid > div:last-child  { grid-column: 1 / -1; }
  .footer a { display: block; }

  /* Cart */
  .cart-popup { width: 100%; max-height: 90vh; border-radius: 22px 22px 0 0; }
  .cart-header { padding: 18px; }
  .cart-header h2 { font-size: 20px; }
  .cart-item { grid-template-columns: 72px 1fr auto; gap: 12px; padding: 14px 18px; }
  .cart-item-image { width: 72px; height: 72px; }
  .cart-item-image img { width: 50px; height: 50px; }
  .cart-item-info h3 { font-size: 13px; margin-bottom: 10px; }
  .cart-item-price { min-height: 72px; }
  .cart-item-price strong { font-size: 15px; }
  .cart-footer { padding: 14px 18px 18px; }
  .cart-subtotal strong { font-size: 18px; }
  .continue-btn, .checkout-btn { min-height: 50px; font-size: 14px; }

}

/* ============================================================
   13. RESPONSIVE — DESKTOP / WEB (≥1051px)
   Aturan KHUSUS layar desktop. Tampilan mobile & tablet
   (≤1050px) TIDAK terpengaruh blok ini.
   --> Atur 3 angka di bawah ini untuk menyetel cepat:
============================================================ */
@media (min-width: 1051px) {
  :root {
    /* (1) Lebar maksimal konten — konten dibatasi & di-tengah-kan.
           Naikkan untuk lebih lebar, turunkan agar lebih ramping. */
    --desk-max:    1200px;
    /* (2) Jarak konten dari tepi layar (kiri-kanan). */
    --desk-gutter: 48px;
    /* (3) Jumlah kolom grid kartu di desktop. */
    --desk-cols:   4;
  }

  /* ---- (1) Batasi & pusatkan konten ---- */
  .container {
    width: min(var(--desk-max), calc(100% - var(--desk-gutter)));
    margin-inline: auto;
  }

  /* ---- (3) Jumlah kolom grid ---- */
  .services-grid,
  .catalog-product-grid {
    grid-template-columns: repeat(var(--desk-cols), 1fr);
    gap: 24px;
  }
  .catalog-category-grid { grid-template-columns: repeat(8, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1.2fr 1fr; }

  /* ---- (2) Penyesuaian ukuran elemen di desktop ---- */
  /* Hero — jaga agar tidak terlalu besar di layar lebar */
  .hero-content   { gap: 40px; padding-top: 88px; }
  .hero-text      { width: 48%; }
  .hero-text h1   { font-size: clamp(52px, 5vw, 76px); }
  .hero-text p    { font-size: 18px; max-width: 520px; }
  .hero-mascot img { width: min(520px, 100%); }

  /* Heading section layanan */
  .services-heading    { max-width: 720px; margin-inline: auto; }
  .services-heading h2 { font-size: clamp(36px, 3.4vw, 52px); }
  .services-heading p  { font-size: 17px; }

  /* Kartu layanan — proporsi nyaman untuk desktop */
  .service-card { min-height: 340px; }

  /* Interaksi khas desktop (mouse) */
  .service-card:hover { transform: translateY(-6px); }
}

/* ---- Layar sangat lebar (monitor besar) — cegah konten melebar berlebih ---- */
@media (min-width: 1500px) {
  :root { --desk-max: 1280px; }
}
