:root {
  --bg-body: #020617;
  --bg-elevated: #050b1a;
  --bg-card: #060b1e;
  --bg-chip: #0a1025;
  --accent: #ff6a3d;
  --accent-soft: rgba(255, 106, 61, 0.35);
  --accent-alt: #31d7ff;
  --text-main: #f9fafb;
  --text-muted: #9ca3c7;
  --border-soft: rgba(148, 163, 184, 0.25);
  --radius-lg: 20px;
  --radius-xl: 26px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.75);
  --shadow-accent: 0 0 45px rgba(49, 215, 255, 0.35);
  --transition-fast: 0.18s ease-out;
  --transition-med: 0.25s ease;
  --header-height: 78px;
  --container-width: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Inter", sans-serif;
  color: var(--text-main);
  background: radial-gradient(circle at 10% 0, #122349 0, #020617 55%)
      fixed,
    radial-gradient(circle at 90% 100%, #15192f 0, #020617 55%) fixed;
  min-height: 100%;
  scroll-behavior: smooth;
}

/* 4D parallax glow background */
body::before,
body::after {
  content: "";
  position: fixed;
  inset: -20%;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 20%, rgba(49, 215, 255, 0.18) 0, transparent 45%),
    radial-gradient(circle at 80% 80%, rgba(255, 106, 61, 0.16) 0, transparent 50%);
  opacity: 0.9;
  mix-blend-mode: screen;
  z-index: -2;
  animation: floatBg 28s linear infinite alternate;
}
body::after {
  filter: blur(40px);
  opacity: 0.7;
  animation-duration: 36s;
}

@keyframes floatBg {
  0% {
    transform: translate3d(-10px, -6px, 0) scale(1);
  }
  100% {
    transform: translate3d(10px, 8px, 0) scale(1.04);
  }
}

/* Utility */

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 16px;
}

.section {
  padding: 72px 0;
}

.section-header {
  margin-bottom: 32px;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  color: var(--accent-alt);
  font-weight: 600;
  margin-bottom: 8px;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.section-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 560px;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: linear-gradient(
      to bottom,
      rgba(2, 6, 23, 0.96),
      rgba(2, 6, 23, 0.86),
      transparent
    );
  border-bottom: 1px solid rgba(15, 23, 42, 0.9);
}

.header-inner {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #0e1a32 0%, #060b1e 55%);
  border: 1px solid rgba(49, 215, 255, 0.45);
  box-shadow:
    0 0 12px rgba(49, 215, 255, 0.55),
    0 0 22px rgba(49, 215, 255, 0.35) inset;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.brand-logo img {
  width: 82%;
  height: 82%;
  object-fit: contain;
  filter: drop-shadow(0 0 4px rgba(49, 215, 255, 0.65));
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  margin-left: 4px;
}

.brand-name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #6ee7ff, #3abff8, #0284c7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 6px rgba(56, 189, 248, 0.45));
}

.brand-tagline {
  margin-top: 3px;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #9ca3c7;
  font-weight: 500;
  opacity: 0.9;
}

/* Nav */

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 13px;
  text-decoration: none;
  color: var(--text-muted);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--accent-alt), var(--accent));
  box-shadow: 0 0 12px rgba(49, 215, 255, 0.5);
  transition: width var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-main);
}
.nav-link.active {
  color: var(--accent-alt);
}
.nav-link.active::after {
  width: 18px;
}

/* Cart button */

.cart-button {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: radial-gradient(circle at 10% 0, rgba(49, 215, 255, 0.24) 0, transparent 55%),
    radial-gradient(circle at 80% 100%, rgba(255, 106, 61, 0.2) 0, transparent 55%),
    rgba(15, 23, 42, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.9);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
    border-color var(--transition-fast), background-position 0.3s ease;
  background-size: 130% 130%;
}

.cart-button:hover {
  transform: translateY(-1px) scale(1.02);
  border-color: rgba(148, 163, 184, 0.7);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 1), 0 0 30px rgba(49, 215, 255, 0.4);
  background-position: 80% 20%;
}

.cart-icon {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.cart-icon::before,
.cart-icon::after {
  content: "";
  position: absolute;
  background: rgba(249, 250, 251, 0.9);
}

.cart-icon::before {
  width: 11px;
  height: 7px;
  border-radius: 4px 4px 3px 3px;
  bottom: 4px;
}
.cart-icon::after {
  width: 7px;
  height: 2px;
  border-radius: 99px;
  top: 3px;
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 16px;
  height: 16px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #ffffff 0, #f97316 25%, #dc2626 100%);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 18px rgba(248, 113, 22, 0.9);
}

/* Mobile nav */

.nav-mobile-toggle {
  display: none;
  border: 1px solid rgba(148, 163, 184, 0.45);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.92);
  color: var(--text-main);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 8px;
}

.nav-mobile-toggle span {
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: #e5e7eb;
  box-shadow: 0 -6px 0 0 #e5e7eb, 0 6px 0 0 #e5e7eb;
}

.nav-mobile-menu {
  display: none;
  background: radial-gradient(circle at 10% 0, rgba(51, 65, 85, 0.65), transparent 60%),
    rgba(2, 6, 23, 0.98);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(30, 64, 175, 0.45);
}

.nav-mobile-menu-inner {
  padding: 10px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-mobile-menu .nav-link {
  padding: 8px 0;
}

/* Hero */

.hero {
  padding: 32px 0 72px;
}

.hero-inner {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.94)),
    url("/img/backgroundzolyn.png")
      center/cover no-repeat;
  min-height: 360px;
  box-shadow: var(--shadow-soft), var(--shadow-accent);
}

.hero-media {
  position: absolute;
  inset: 0;
  mix-blend-mode: luminosity;
  opacity: 0.45;
  background: radial-gradient(circle at 30% 0, rgba(56, 189, 248, 0.35), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(248, 113, 22, 0.28), transparent 45%);
  pointer-events: none;
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 0, rgba(59, 130, 246, 0.38), transparent 55%),
    radial-gradient(circle at 80% 100%, rgba(248, 113, 22, 0.32), transparent 50%);
  mix-blend-mode: screen;
  opacity: 0.7;
  pointer-events: none;
}

.hero-content {
  position: relative;
  padding: 32px 32px 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 32px;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 11px;
  color: var(--accent-alt);
  margin-bottom: 10px;
  font-weight: 600;
}

.hero-title {
  font-size: 32px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.hero-title span {
  display: block;
}

.hero-subtitle {
  font-size: 14px;
  max-width: 440px;
  color: var(--text-muted);
  line-height: 1.6;
}

.hero-highlights {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 11px;
  color: var(--text-muted);
}

.hero-highlight-pill {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: radial-gradient(circle at 0 0, rgba(49, 215, 255, 0.3), transparent 70%),
    rgba(15, 23, 42, 0.85);
}

.hero-cta-row {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-primary {
  position: relative;
  border-radius: 999px;
  border: none;
  padding: 11px 26px;
  background: radial-gradient(circle at 15% 0, #ffffff 0, #fed7aa 12%, #fb923c 30%, #ea580c 60%, #7c2d12 100%);
  color: #0b1020;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 14px 40px rgba(248, 113, 22, 0.9);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
    filter var(--transition-fast);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(248, 113, 22, 0.65);
  mix-blend-mode: soft-light;
  opacity: 0.7;
}

.btn-primary:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 20px 65px rgba(248, 113, 22, 1);
  filter: saturate(1.1);
}

.btn-primary span.arrow {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  background: rgba(255, 247, 237, 0.9);
}

.btn-outline {
  border-radius: 999px;
  padding: 9px 18px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.9);
  color: var(--text-muted);
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: border-color var(--transition-fast), color var(--transition-fast),
    background var(--transition-fast), transform var(--transition-fast);
}

.btn-outline:hover {
  border-color: var(--accent-alt);
  color: var(--accent-alt);
  background: radial-gradient(circle at 10% 0, rgba(56, 189, 248, 0.3), transparent 60%),
    rgba(15, 23, 42, 0.98);
  transform: translateY(-1px);
}

.hero-meta {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-meta-top {
  display: grid;
  gap: 16px;
}

.hero-meta-card {
  border-radius: 18px;
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.92));
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.95);
  font-size: 11px;
}

.hero-metrics {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
  font-size: 11px;
}

.hero-metric-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-metric-label {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Tag + metric numbers */

.badge-soft {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 5px 10px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.3), transparent 60%),
    rgba(15, 23, 42, 0.9);
  font-size: 11px;
  color: var(--text-muted);
}

.badge-soft-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 0, #ffffff 0, #22c55e 30%, #166534 100%);
  box-shadow: 0 0 10px rgba(34, 197, 94, 1);
}

.metric-number {
  font-size: 18px;
  font-weight: 700;
}

.metric-sublabel {
  font-size: 11px;
  color: var(--text-muted);
}

/* Section: new arrivals & best seller */

.product-row-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
}

.product-row-scroll::-webkit-scrollbar {
  height: 6px;
}
.product-row-scroll::-webkit-scrollbar-track {
  background: transparent;
}
.product-row-scroll::-webkit-scrollbar-thumb {
  background: rgba(30, 64, 175, 0.6);
  border-radius: 999px;
}

.product-card-small {
  min-width: 190px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

/* Full product card (koleksi) */

.product-card {
  position: relative;
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 0 0, rgba(49, 215, 255, 0.28), transparent 65%),
    radial-gradient(circle at 100% 100%, rgba(255, 106, 61, 0.22), transparent 55%),
    var(--bg-card);
  padding: 14px 16px 16px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.32);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform var(--transition-med), box-shadow var(--transition-med),
    border-color var(--transition-med);
  overflow: hidden;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: -20%;
  opacity: 0;
  background-image: radial-gradient(circle at 20% 0, rgba(56, 189, 248, 0.55), transparent 55%);
  filter: blur(40px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: -1;
}

.product-card:hover {
  transform: translateY(-3px) translateZ(0);
  border-color: rgba(248, 250, 252, 0.14);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 1), 0 0 40px rgba(49, 215, 255, 0.4);
}
.product-card:hover::before {
  opacity: 1;
  transform: translate3d(6px, -4px, 0);
}

.product-tag {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.9);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.product-media {
  border-radius: 16px;
  background: radial-gradient(circle at 30% 0, rgba(15, 23, 42, 0.2), transparent 70%),
    linear-gradient(135deg, #020617, #020617);
  height: 150px;
  margin-bottom: 4px;
  overflow: hidden;
  position: relative;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  transform: scale(1.02);
  transition: transform 0.35s ease;
}
.product-card:hover .product-image {
  transform: scale(1.06);
}

.product-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.product-meta-type {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.product-meta-stock {
  font-size: 11px;
  color: var(--accent-alt);
}

.product-price {
  margin-top: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #f97316;
}

.product-footer {
  margin-top: 10px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
}

.product-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.product-size-label {
  font-size: 11px;
  color: var(--text-muted);
}

.product-size-select {
  background: rgba(2, 6, 23, 0.9);
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  color: var(--text-main);
  padding: 7px 12px;
  font-size: 12px;
  width: 120px;
  outline: none;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #f97316 50%),
    linear-gradient(135deg, #f97316 50%, transparent 50%);
  background-position: calc(100% - 14px) 11px, calc(100% - 9px) 11px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.product-actions {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr;
  gap: 8px;
}

.btn-product-primary {
  border-radius: 999px;
  border: none;
  padding: 9px 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  background: radial-gradient(circle at 10% 0, #ffffff 0, #fed7aa 12%, #fb923c 35%, #ea580c 75%, #7c2d12 100%);
  color: #0b1020;
  box-shadow: 0 12px 30px rgba(248, 113, 22, 0.95);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.btn-product-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(248, 113, 22, 1);
}

.btn-product-secondary {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  padding: 9px 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.3), transparent 60%),
    rgba(15, 23, 42, 0.98);
  color: var(--text-main);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.95);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
    border-color var(--transition-fast), color var(--transition-fast);
}
.btn-product-secondary:hover {
  transform: translateY(-1px);
  border-color: rgba(129, 140, 248, 0.9);
  color: var(--accent-alt);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 1), 0 0 30px rgba(56, 189, 248, 0.5);
}

/* Category chips */

.category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-chip {
  border-radius: 999px;
  padding: 7px 14px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: var(--bg-chip);
  font-size: 12px;
  color: var(--text-muted);
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast),
    border-color var(--transition-fast), box-shadow var(--transition-fast),
    transform var(--transition-fast);
}

.category-chip.active {
  color: #0b1020;
  border-color: rgba(251, 146, 60, 0.9);
  background: radial-gradient(circle at 10% 0, #ffffff 0, #fed7aa 10%, #fb923c 35%, #ea580c 100%);
  box-shadow: 0 12px 32px rgba(248, 113, 22, 0.95);
  transform: translateY(-1px);
}

/* Mobile category select */

.category-select-mobile-wrapper {
  display: none;
  margin-bottom: 16px;
}

.category-select-toggle {
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  background: rgba(15, 23, 42, 0.96);
  color: var(--text-main);
  padding: 10px 14px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.category-select-menu {
  margin-top: 8px;
  border-radius: 18px;
  border: 1px solid rgba(30, 64, 175, 0.8);
  background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.36), transparent 70%),
    rgba(15, 23, 42, 0.98);
  padding: 6px;
  display: none;
}

.category-select-menu.open {
  display: block;
}

/* =============================== */
/*     SUPER PREMIUM INFO PILL     */
/* =============================== */

.info-bar {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.info-pill {
  position: relative;
  padding: 22px 26px;
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(12px);

  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 12px 30px rgba(0, 0, 0, 0.45);

  overflow: hidden;
  transition: transform .25s ease, box-shadow .35s ease, border-color .25s ease;
}

/* Glow biru & oranye */
.info-pill::before {
  content: "";
  position: absolute;
  inset: -35%;
  background:
    radial-gradient(circle at 20% 20%, rgba(56, 189, 248, 0.20), transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(251, 146, 60, 0.18), transparent 65%);
  opacity: 0;
  transition: opacity .35s ease, transform .35s ease;
  z-index: -1;
}

.info-pill:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.55);
  box-shadow:
    0 18px 45px rgba(15, 23, 42, 0.95),
    0 0 28px rgba(56, 189, 248, 0.40);
}

.info-pill:hover::before {
  opacity: 1;
  transform: scale(1.05);
}

/* LABEL */
.info-pill-top {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #9ca3c7;
  margin-bottom: 6px;
}

/* VALUE */
.info-pill-bottom {
  font-size: 10px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
}

/* RESPONSIVE TABLET */
@media(max-width: 960px){
  .info-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

/* RESPONSIVE HP */
@media(max-width: 540px){
  .info-bar {
    grid-template-columns: 1fr;
  }

  .info-pill {
    padding: 18px 20px;
  }

  .info-pill-bottom {
    font-size: 18px;
  }
}


/* Outfit choices */

.outfit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.outfit-card {
  border-radius: 18px;
  padding: 14px 16px;
  background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.3), transparent 55%),
    rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
    border-color var(--transition-fast);
}

.outfit-card:hover {
  transform: translateY(-2px);
  border-color: rgba(251, 146, 60, 0.9);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 1), 0 0 30px rgba(251, 146, 60, 0.6);
}

.outfit-title {
  font-size: 13px;
  font-weight: 600;
}

.outfit-desc {
  font-size: 11px;
  color: var(--text-muted);
}

/* Cart panel */

.cart-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 10% 0, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.96));
  backdrop-filter: blur(18px);
  display: flex;
  justify-content: flex-end;
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-med);
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-panel {
  width: 380px;
  max-width: 100%;
  background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.2), transparent 65%),
    rgba(2, 6, 23, 0.98);
  box-shadow: var(--shadow-soft), var(--shadow-accent);
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  border-radius: 26px 0 0 26px;
  transform: translateX(20px);
  opacity: 0;
  transition: transform var(--transition-med), opacity var(--transition-med);
}

.cart-overlay.open .cart-panel {
  transform: translateX(0);
  opacity: 1;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-title {
  font-size: 18px;
  font-weight: 700;
}

.cart-close {
  border-radius: 999px;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(15, 23, 42, 0.96);
}

.cart-body {
  margin-top: 14px;
  flex: 1;
  overflow-y: auto;
  padding-right: 4px;
  font-size: 13px;
}

.cart-empty {
  margin-top: 40px;
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
}

.cart-item {
  border-radius: 16px;
  border: 1px solid rgba(30, 64, 175, 0.6);
  background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.3), transparent 70%),
    rgba(15, 23, 42, 0.98);
  padding: 10px 12px;
  margin-bottom: 10px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.cart-item-title {
  font-size: 13px;
  font-weight: 600;
}

.cart-item-meta {
  font-size: 11px;
  color: var(--text-muted);
}

.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  overflow: hidden;
  background: rgba(15, 23, 42, 0.96);
}

.qty-btn {
  width: 24px;
  height: 24px;
  border: none;
  background: transparent;
  color: var(--text-main);
  font-size: 14px;
  cursor: pointer;
}

.qty-value {
  min-width: 24px;
  text-align: center;
  font-size: 12px;
}

.cart-item-remove {
  font-size: 11px;
  border: none;
  background: transparent;
  color: #f97316;
  cursor: pointer;
}

.cart-item-price {
  font-size: 12px;
  font-weight: 600;
}

.cart-footer {
  margin-top: 10px;
  border-top: 1px solid rgba(15, 23, 42, 0.9);
  padding-top: 10px;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  margin-bottom: 10px;
}

.cart-total-label {
  color: var(--text-muted);
}

.cart-total-value {
  font-weight: 700;
}

.cart-checkout-all {
  width: 100%;
  border-radius: 999px;
  border: none;
  padding: 11px 16px;
  background: radial-gradient(circle at 15% 0, #ffffff 0, #fed7aa 12%, #fb923c 35%, #ea580c 70%, #7c2d12 100%);
  color: #0b1020;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 16px 40px rgba(248, 113, 22, 1);
}

/* Footer */

.site-footer {
  padding: 26px 0 32px;
  border-top: 1px solid rgba(15, 23, 42, 0.96);
  margin-top: 40px;
  font-size: 11px;
  color: var(--text-muted);
}

.site-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 12px;
}

/* Page: Koleksi */

.page-header {
  padding: 32px 0 18px;
}

.page-title {
  font-size: 26px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.page-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 520px;
}

.page-kicker {
  font-size: 11px;
  color: var(--accent-alt);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

/* Page: Tentang */

.content-card {
  border-radius: 24px;
  background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.24), transparent 60%),
    rgba(2, 6, 23, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: var(--shadow-soft);
  padding: 24px 22px;
}

.content-card h2 {
  margin-top: 0;
  font-size: 22px;
}

.content-card h3 {
  font-size: 16px;
  margin-top: 24px;
}

.content-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.content-card ul {
  margin: 8px 0 16px 18px;
  padding: 0;
  color: var(--text-muted);
  font-size: 14px;
}

.map-wrapper {
  margin-top: 22px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(30, 64, 175, 0.8);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 1);
}

.map-inner {
  position: relative;
  padding-bottom: 60%;
  height: 0;
}

.map-inner iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Legal pages */

.legal-section {
  padding: 32px 0 60px;
}

.legal-card {
  border-radius: 24px;
  background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.24), transparent 60%),
    rgba(2, 6, 23, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: var(--shadow-soft);
  padding: 26px 22px 30px;
}

.legal-card h1 {
  font-size: 24px;
  margin-top: 0;
}

.legal-card h2 {
  font-size: 18px;
  margin-top: 22px;
}

.legal-card p,
.legal-card li {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.legal-card ul {
  margin: 8px 0 16px 18px;
  padding: 0;
}

/* Responsive */

@media (max-width: 960px) {
  .hero-content {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-meta {
    border-top: 1px solid rgba(15, 23, 42, 0.9);
    padding-top: 16px;
  }
  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .outfit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .info-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }
  .nav-mobile-toggle {
    display: inline-flex;
  }
  .nav-mobile-menu.open {
    display: block;
  }
  .hero-content {
    padding: 24px 18px 22px;
  }
  .hero-title {
    font-size: 26px;
  }
  .section {
    padding: 56px 0;
  }
  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .section-title {
    font-size: 22px;
  }
  .category-chips {
    display: none;
  }
  .category-select-mobile-wrapper {
    display: block;
  }
  .site-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-overlay {
    align-items: flex-end;
    justify-content: center;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.96), transparent);
  }

  .cart-panel {
    width: 100%;
    max-width: 560px;
    border-radius: 24px 24px 0 0;
    transform: translateY(30px);
    max-height: 60vh;
  }

  .cart-overlay.open .cart-panel {
    transform: translateY(0);
  }
}

@media (max-width: 540px) {
  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-highlights {
    flex-direction: column;
  }
  .hero-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .product-media {
    height: 140px;
  }
}




/* === PRODUCT GRID SUPER RESPONSIVE === */

.products-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  padding: 10px 0;
}

/* MOBILE FIX — PAKSA MENJADI 2 KOLOM */
@media screen and (max-width: 600px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }
}

.product-card {
  background: rgba(10, 20, 40, 0.75);
  border-radius: 18px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  height: 100%;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.06);
}

/* GAMBAR PRODUK */
.product-img {
  width: 100%;
  height: 150px;
  border-radius: 14px;
  object-fit: cover;
  background: #000;
}

/* TITLE */
.product-name {
  margin: 10px 0 4px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  min-height: 34px;
}

/* PRICE */
.product-price {
  color: #ff9d55;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 15px;
}

/* UKURAN SELECT */
.product-size {
  width: 100%;
  padding: 8px;
  border-radius: 10px;
  background: #0e1628;
  border: 1px solid #2d3b52;
  color: #fff;
  font-size: 13px;
  margin-bottom: 12px;
}

/* BUTTON AREA */
.product-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* BUTTON STYLES */
.btn-checkout,
.btn-cart {
  width: 100%;
  padding: 10px;
  border-radius: 20px;
  border: none;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-checkout {
  background: #1c273d;
}

.btn-cart {
  background: linear-gradient(90deg, #ff8b4c, #ff5f23);
}

/* === HEADER MOBILE FIX === */
@media (max-width: 600px) {
  header {
    padding: 10px 14px !important;
  }

  .header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo-area img {
    height: 32px;
  }

  .cart-btn {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #ff5f23;
    color: white;
    width: 18px;
    height: 18px;
    font-size: 11px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}


.zolyn-alert-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: none;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(4px);
  z-index: 99999;
}

.zolyn-alert-box {
  background: rgba(15, 23, 42, 0.95);
  padding: 24px 32px;
  border-radius: 20px;
  text-align: center;
  width: 90%;
  max-width: 360px;
  border: 1px solid rgba(56,189,248,0.4);
  box-shadow: 0 0 35px rgba(56,189,248,0.3);
  animation: zoomIn .25s ease;
}

@keyframes zoomIn {
  from { transform: scale(.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.zolyn-alert-title {
  font-size: 18px;
  font-weight: 700;
  color: #7dd3fc;
  margin-bottom: 10px;
}

.zolyn-alert-message {
  color: #e2e8f0;
  font-size: 15px;
  margin-bottom: 20px;
}

.zolyn-alert-btn {
  background: linear-gradient(90deg, #ff944c, #ff5e20);
  color: #0f172a;
  padding: 10px 22px;
  border-radius: 999px;
  border: none;
  font-weight: 700;
  cursor: pointer;
}
