@charset "UTF-8";

/* ==========================================================================
   BAGJAA - BOLD EDITORIAL / STREETWEAR DESIGN SYSTEM TOKENS
   ========================================================================== */

:root {
  /* Netral */
  --ink:        #0B0B0C;  /* hitam utama: teks, background section gelap */
  --ink-80:     #2A2A2C;
  --ink-50:     #6E6E73;  /* teks sekunder */
  --ink-20:     #D6D3CE;  /* garis, border */
  --paper:      #F6F4F0;  /* off-white hangat, background halaman */
  --paper-pure: #FFFFFF;  /* kartu di atas paper */

  /* Aksen brand */
  --orange:     #F25C1F;  /* aksi utama, harga, aksen */
  --orange-ink: #C4410F;  /* hover state oranye */

  /* Fungsional */
  --ok:         #1B7F4C;  /* stok tersedia */
  --alert:      #C0281F;  /* stok habis, error */
  --wa-green:   #25D366;  /* WhatsApp official color */

  /* Tipografi */
  --font-display: 'Archivo', 'Archivo Black', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Skala Tipografi (clamp, responsif) */
  --fs-hero:   clamp(2.75rem, 8vw, 7rem);     /* headline hero */
  --fs-h1:     clamp(2rem, 5vw, 4.5rem);      /* judul section besar */
  --fs-h2:     clamp(1.5rem, 3.2vw, 2.75rem); /* sub judul / tile */
  --fs-h3:     clamp(1.125rem, 1.8vw, 1.5rem);/* nama produk / quote */
  --fs-body:   1rem;
  --fs-small:  0.875rem;
  --fs-label:  0.75rem;                       /* uppercase, letter-spacing */

  /* Bentuk & Garis */
  --radius: 2px;
  --max-width: 1440px;
  --container-pad: clamp(20px, 4vw, 64px);
  --section-gap: clamp(64px, 8vw, 128px);

  /* Transisi */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --duration-fast: 180ms;
  --duration-normal: 300ms;
}

/* Base resets & typography */
html {
  scroll-behavior: smooth;
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body.editorial-theme {
  background-color: var(--paper) !important;
  color: var(--ink) !important;
  font-family: var(--font-body) !important;
  line-height: 1.55;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Hide legacy floating share buttons on modern editorial layout */
.editorial-theme .floating-share,
.floating-share {
  display: none !important;
}

/* Accessibility focus state */
.editorial-theme a:focus-visible,
.editorial-theme button:focus-visible,
.editorial-theme input:focus-visible {
  outline: 2px solid var(--orange) !important;
  outline-offset: 3px !important;
}

/* Display Font Classes */
.font-display {
  font-family: var(--font-display) !important;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.95;
  font-weight: 800;
}

.text-stroke {
  -webkit-text-stroke: 2px var(--orange);
  color: transparent !important;
}

.text-stroke-dark {
  -webkit-text-stroke: 1.5px var(--ink-80);
  color: transparent !important;
}

.text-orange {
  color: var(--orange) !important;
}

/* Container */
.ed-container {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
  width: 100%;
}

.ed-section {
  padding-top: var(--section-gap);
  padding-bottom: var(--section-gap);
  position: relative;
}

/* Buttons */
.btn-ed {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 700;
  font-size: var(--fs-small);
  letter-spacing: 0.08em;
  padding: 16px 28px;
  border-radius: var(--radius);
  transition: all var(--duration-fast) var(--ease);
  cursor: pointer;
  text-decoration: none !important;
  border: 1px solid transparent;
  min-height: 48px;
}

.btn-ed-primary {
  background-color: var(--orange);
  color: #FFFFFF !important;
  border-color: var(--orange);
}
.btn-ed-primary:hover {
  background-color: var(--orange-ink);
  border-color: var(--orange-ink);
  color: #FFFFFF !important;
  transform: translateY(-2px);
}

.btn-ed-dark {
  background-color: var(--ink);
  color: var(--paper) !important;
  border-color: var(--ink);
}
.btn-ed-dark:hover {
  background-color: var(--orange);
  border-color: var(--orange);
  color: #FFFFFF !important;
  transform: translateY(-2px);
}

.btn-ed-ghost-light {
  background-color: transparent;
  color: var(--paper) !important;
  border: 1px solid var(--paper);
}
.btn-ed-ghost-light:hover {
  background-color: var(--paper);
  color: var(--ink) !important;
  transform: translateY(-2px);
}

.btn-ed-ghost-dark {
  background-color: transparent;
  color: var(--ink) !important;
  border: 1px solid var(--ink);
}
.btn-ed-ghost-dark:hover {
  background-color: var(--ink);
  color: var(--paper) !important;
  transform: translateY(-2px);
}

.btn-ed-whatsapp {
  background-color: var(--wa-green) !important;
  color: #FFFFFF !important;
  border-color: var(--wa-green) !important;
}
.btn-ed-whatsapp:hover {
  background-color: #1ebc57 !important;
  transform: translateY(-2px);
}

/* Skip to content link for accessibility */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--orange);
  color: #FFFFFF !important;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--fs-small);
  padding: 12px 20px;
  z-index: 9999;
  border-radius: var(--radius);
  text-decoration: none !important;
  transition: top var(--duration-fast) var(--ease);
}

.skip-to-content:focus {
  top: 16px;
  outline: 3px solid var(--ink) !important;
}

/* ==========================================================================
   5.1 ANNOUNCEMENT BAR
   ========================================================================== */
.announcement-bar {
  background-color: var(--ink);
  color: var(--paper);
  height: 38px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--ink-80);
  z-index: 1050;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-slide 28s linear infinite;
}

.announcement-bar:hover .marquee-track,
.announcement-bar:focus-within .marquee-track {
  animation-play-state: paused;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-size: var(--fs-label);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  padding: 0 16px;
}

.marquee-item span.accent {
  color: var(--orange);
  font-weight: 800;
}

.marquee-separator {
  margin: 0 14px;
  opacity: 0.4;
}

@keyframes marquee-slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   5.2 HEADER & NAVIGATION
   ========================================================================== */
.editorial-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(246, 244, 240, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--ink-20);
  z-index: 1040;
  transition: height var(--duration-normal) var(--ease), background var(--duration-normal) var(--ease), box-shadow var(--duration-normal) var(--ease);
  height: 80px;
}

.editorial-header.scrolled {
  height: 64px;
  background: rgba(246, 244, 240, 0.98);
  box-shadow: 0 4px 20px rgba(11, 11, 12, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  position: relative;
}

.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  min-height: 44px;
}

.brand-logo img {
  height: 28px;
  width: auto;
  transition: height var(--duration-fast) var(--ease);
}

.editorial-header.scrolled .brand-logo img {
  height: 24px;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link-ed {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-small);
  color: var(--ink);
  text-decoration: none !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 10px 0;
  position: relative;
  transition: color var(--duration-fast) var(--ease);
  cursor: pointer;
  background: none;
  border: none;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

/* Nav Link Underline Behavior */
.nav-link-ed:after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--ink);
  transition: width var(--duration-fast) var(--ease);
}

/* Hover state: grows from left */
.nav-link-ed:hover {
  color: var(--ink);
}

.nav-link-ed:hover:after {
  width: 100%;
}

/* Permanent active state: permanent orange underline */
.nav-link-ed.active:after {
  width: 100%;
  background-color: var(--orange);
}

/* Mega Dropdown for Produk */
.nav-item-dropdown {
  position: static; /* Let dropdown span the full container relative to header-inner */
}

.nav-dropdown-btn {
  gap: 4px;
}

.dropdown-chevron {
  transition: transform var(--duration-fast) var(--ease);
  font-size: 14px;
}

/* Open state: orange-ink text & rotated chevron */
.nav-item-dropdown.open .nav-dropdown-btn,
.nav-item-dropdown:hover .nav-dropdown-btn {
  color: var(--orange-ink);
}

.nav-item-dropdown.open .dropdown-chevron,
.nav-item-dropdown:hover .dropdown-chevron {
  transform: rotate(180deg);
}

/* Scrim overlay behind dropdown but below header */
.mega-dropdown-scrim {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(11, 11, 12, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms var(--ease), visibility 180ms var(--ease);
  z-index: 1035;
  pointer-events: none;
}

.mega-dropdown-scrim.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Mega Dropdown Container (Full container aligned with header-inner) */
.mega-dropdown-menu {
  position: absolute;
  top: 100%;
  left: var(--container-pad);
  right: var(--container-pad);
  width: calc(100% - (var(--container-pad) * 2));
  max-width: calc(var(--max-width) - (var(--container-pad) * 2));
  margin: 0 auto;
  padding-top: 12px; /* Zero-gap hover bridge buffer */
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 180ms var(--ease), transform 180ms var(--ease), visibility 180ms var(--ease);
  z-index: 1100;
  pointer-events: none;
}

.nav-item-dropdown.open .mega-dropdown-menu,
.nav-item-dropdown:hover .mega-dropdown-menu,
.nav-item-dropdown:focus-within .mega-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mega-dropdown-inner {
  background: var(--paper-pure);
  border: 1px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  border-radius: var(--radius);
  padding: 24px;
}

.mega-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 28px;
}

.mega-col-heading {
  font-family: var(--font-display);
  font-size: var(--fs-label);
  font-weight: 800;
  color: var(--orange-ink) !important; /* WCAG AA compliance (5.1:1 on paper-pure) */
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.category-sublist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  border-top: 1px solid var(--ink-20);
  padding-top: 8px;
}

.category-sublink {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  background: transparent;
  color: var(--ink) !important;
  text-decoration: none !important;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-small);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  border-bottom: 1px solid var(--ink-20);
  transition: background var(--duration-fast) var(--ease), color var(--duration-fast) var(--ease), padding-left var(--duration-fast) var(--ease);
  position: relative;
  min-height: 56px;
}

.cat-thumb-box {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background-color: var(--ink-20);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cat-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cat-thumb-fallback {
  background-color: var(--ink-20);
}

.cat-name {
  flex-grow: 1;
}

.cat-arrow {
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity var(--duration-fast) var(--ease), transform var(--duration-fast) var(--ease);
  font-weight: 800;
}

.category-sublink:hover {
  background: var(--ink);
  color: var(--paper) !important;
  border-color: var(--ink);
  padding-left: 14px;
}

.category-sublink:hover .cat-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--paper);
}

.mega-view-all-link {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: var(--fs-label);
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--orange-ink) !important;
  text-decoration: underline;
  text-transform: uppercase;
  transition: color var(--duration-fast) var(--ease);
}

.mega-view-all-link:hover {
  color: var(--ink) !important;
}

/* Collab Drop Card */
.collab-promo-card {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none !important;
  overflow: hidden;
  border: 1px solid var(--ink);
  transition: transform var(--duration-fast) var(--ease), box-shadow var(--duration-fast) var(--ease), outline var(--duration-fast) var(--ease);
}

.collab-promo-card:hover {
  outline: 2px solid var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11, 11, 12, 0.2);
}

.collab-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  position: relative;
  background-color: var(--ink-80);
  overflow: hidden;
}

.collab-card-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.collab-img-fallback {
  background-color: var(--ink-80);
}

.collab-tag-sm {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--orange);
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius);
}

.collab-card-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
  justify-content: space-between;
}

.collab-card-title {
  font-family: var(--font-display);
  color: #FFFFFF;
  font-size: 16px;
  margin: 0;
  letter-spacing: -0.01em;
  font-weight: 800;
}

.collab-card-desc {
  font-size: 12px;
  color: var(--ink-20);
  line-height: 1.4;
  margin: 0;
}

.collab-cta-text {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--orange) !important;
  text-transform: uppercase;
  display: inline-block;
  margin-top: 4px;
}

/* Header Actions Right */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.action-icon-btn {
  background: none;
  border: none;
  color: var(--ink);
  font-size: 18px;
  position: relative;
  cursor: pointer;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  min-width: 44px;
  min-height: 44px;
  transition: color var(--duration-fast) var(--ease);
}

.action-icon-btn:hover {
  color: var(--orange-ink);
}

.cart-badge-ed {
  position: absolute;
  top: 4px;
  right: 2px;
  background: var(--orange);
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 800;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.btn-header-custom {
  font-family: var(--font-display);
  background: var(--ink);
  color: var(--paper) !important;
  border: 1px solid var(--ink);
  padding: 12px 20px;
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: var(--radius);
  text-decoration: none !important;
  text-transform: uppercase;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-fast) var(--ease);
}

.btn-header-custom:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #FFFFFF !important;
}

/* Hamburger toggle for mobile */
.mobile-menu-trigger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.hamburger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--ink);
  transition: transform var(--duration-fast) var(--ease), opacity var(--duration-fast) var(--ease);
}

/* ==========================================================================
   5.2.1 MOBILE NAVIGATION DRAWER (<1024px)
   ========================================================================== */
.mobile-drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(11, 11, 12, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 280ms var(--ease), visibility 280ms var(--ease);
  z-index: 1200;
}

.mobile-drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(88vw, 420px);
  height: 100vh;
  height: 100dvh;
  background: var(--paper);
  border-left: 1px solid var(--ink);
  box-shadow: -8px 0 32px rgba(11, 11, 12, 0.25);
  transform: translateX(100%);
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1250;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.mobile-nav-drawer.open {
  transform: translateX(0);
}

/* Accessibility: Focus visible styling for drawer and header */
.mobile-nav-drawer button:focus:not(:focus-visible),
.mobile-nav-drawer a:focus:not(:focus-visible),
.mobile-nav-drawer input:focus:not(:focus-visible),
.mobile-menu-trigger:focus:not(:focus-visible) {
  outline: none;
}

.mobile-nav-drawer button:focus-visible,
.mobile-nav-drawer a:focus-visible,
.mobile-nav-drawer input:focus-visible,
.mobile-menu-trigger:focus-visible,
.drawer-close-btn:focus-visible {
  outline: 2px solid var(--orange) !important;
  outline-offset: 3px !important;
}

.drawer-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--ink-20);
  background: var(--paper-pure);
  flex-shrink: 0;
  min-height: 64px;
}

.drawer-logo img {
  height: 24px;
  width: auto;
  display: block;
}

.drawer-close-btn {
  background: none;
  border: 1px solid var(--ink-20);
  font-size: 24px;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  transition: all var(--duration-fast) var(--ease);
}

.drawer-close-btn:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.drawer-scroll-body {
  flex-grow: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 18px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--ink-20) transparent;
}

.drawer-scroll-body::-webkit-scrollbar {
  width: 4px;
}

.drawer-scroll-body::-webkit-scrollbar-track {
  background: transparent;
}

.drawer-scroll-body::-webkit-scrollbar-thumb {
  background: var(--ink-20);
  border-radius: 4px;
}

/* 1. Drawer Search */
.drawer-search-wrap {
  width: 100%;
}

.drawer-search-form {
  display: flex;
  align-items: center;
  border: 1px solid var(--ink-20);
  background: var(--paper-pure);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--duration-fast) var(--ease);
}

.drawer-search-form:focus-within {
  border-color: var(--orange);
}

.drawer-search-submit {
  background: none;
  border: none;
  color: var(--ink);
  padding: 12px 12px 12px 16px;
  cursor: pointer;
  font-size: 15px;
  min-height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--duration-fast) var(--ease);
}

.drawer-search-submit:hover {
  color: var(--orange);
}

.drawer-search-input {
  flex-grow: 1;
  border: none;
  background: transparent;
  padding: 12px 14px 12px 4px;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  color: var(--ink);
  min-height: 44px;
}

.drawer-search-input:focus {
  outline: none !important;
}

/* 2. Drawer Custom CTA */
.drawer-custom-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--ink);
  color: var(--paper) !important;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px;
  border-radius: var(--radius);
  text-decoration: none !important;
  min-height: 46px;
  transition: background var(--duration-fast) var(--ease);
}

.drawer-custom-cta-btn:hover {
  background: var(--orange);
  color: #FFFFFF !important;
}

/* 3. Drawer Main Navigation List */
.drawer-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink-20);
}

.drawer-nav-item {
  border-bottom: 1px solid var(--ink-20);
}

.drawer-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 54px;
  padding: 12px 14px;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3.8vw, 1.35rem);
  font-weight: 800;
  color: var(--ink) !important;
  text-decoration: none !important;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  background: none;
  border: none;
  border-left: 3px solid transparent;
  cursor: pointer;
  text-align: left;
  transition: background var(--duration-fast) var(--ease), border-color var(--duration-fast) var(--ease), color var(--duration-fast) var(--ease);
}

.drawer-nav-link:hover {
  background: rgba(11, 11, 12, 0.03);
}

.drawer-nav-link.active {
  border-left-color: var(--orange);
  background: rgba(235, 94, 40, 0.05);
  color: var(--ink) !important;
  font-weight: 900;
}

.accordion-icon {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  margin-left: 8px;
  transition: transform var(--duration-fast) var(--ease);
}

/* Accordion panel */
.drawer-accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms var(--ease);
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
}

.drawer-accordion-panel.open {
  max-height: 800px;
  margin-bottom: 10px;
  padding: 6px 10px;
}

.drawer-category-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.drawer-category-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 8px;
  color: var(--ink) !important;
  text-decoration: none !important;
  border-radius: var(--radius);
  min-height: 44px;
  border-left: 2px solid transparent;
  transition: all var(--duration-fast) var(--ease);
}

.drawer-category-link:hover {
  background: var(--ink);
  color: var(--paper) !important;
}

.drawer-category-link.active {
  border-left-color: var(--orange);
  background: rgba(235, 94, 40, 0.06);
  font-weight: 800;
}

.drawer-cat-thumb {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background-color: var(--ink-20);
}

.drawer-cat-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.drawer-cat-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-small);
  text-transform: uppercase;
}

.drawer-category-all-link {
  display: block;
  padding: 8px 8px 6px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--orange-ink) !important;
  text-decoration: underline;
  text-transform: uppercase;
}

/* 4. Collab Mini Card */
.drawer-collab-card-wrap {
  width: 100%;
}

.drawer-collab-card {
  position: relative;
  display: flex;
  background: var(--ink);
  color: var(--paper) !important;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none !important;
  border: 1px solid var(--ink);
  transition: outline var(--duration-fast) var(--ease);
}

.drawer-collab-card:hover {
  outline: 2px solid var(--orange);
}

.drawer-collab-media {
  width: 88px;
  min-height: 80px;
  flex-shrink: 0;
  background-color: var(--ink-80);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.drawer-collab-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.drawer-collab-block {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 80px;
  background: linear-gradient(135deg, #222226 0%, #111113 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.drawer-collab-monogram {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--paper);
  opacity: 0.85;
}

.drawer-collab-info {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  flex-grow: 1;
}

.drawer-tag-inline {
  position: static !important;
  display: inline-block;
  width: fit-content;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 6px;
  letter-spacing: 0.08em;
  border-radius: var(--radius);
  margin-bottom: 2px;
}

.drawer-collab-title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}

.drawer-collab-cta {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  color: var(--orange) !important;
  letter-spacing: 0.06em;
}

/* 5, 6, 7. Drawer Meta Sections */
.drawer-section {
  border-top: 1px solid var(--ink-20);
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.drawer-section-title {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--ink-50);
  text-transform: uppercase;
}

/* Drawer User Card & Profile */
.drawer-user-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--paper-pure);
  border: 1px solid var(--ink-20);
  border-radius: var(--radius);
  padding: 12px 14px;
}

.drawer-user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.drawer-user-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.drawer-user-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.drawer-user-tier {
  display: flex;
  align-items: center;
}

.drawer-tier-badge {
  display: inline-flex;
  align-items: center;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: var(--ink-10);
  color: var(--ink-70);
  padding: 2px 8px;
  border-radius: 12px;
  border: 1px solid var(--ink-20);
  text-transform: uppercase;
}

/* Drawer Dashboard Navigation */
.drawer-dashboard-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.drawer-dashboard-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink) !important;
  text-decoration: none !important;
  border-left: 3px solid transparent;
  transition: all var(--duration-fast) var(--ease);
  min-height: 44px;
}

.drawer-dashboard-link:hover {
  background: rgba(11, 11, 12, 0.04);
}

.drawer-dashboard-link.active {
  border-left-color: var(--orange);
  background: rgba(235, 94, 40, 0.08);
  color: var(--ink) !important;
  font-weight: 800;
}

.drawer-dash-icon {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  stroke-width: 2;
}

.drawer-dash-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--orange);
  margin-left: auto;
  flex-shrink: 0;
}

.drawer-account-actions {
  margin-top: 4px;
}

.drawer-btn-ghost-logout {
  width: 100%;
  background: transparent;
  color: #c84030 !important;
  border: 1px solid rgba(200, 64, 48, 0.3);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 10px;
  border-radius: var(--radius);
  text-decoration: none !important;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--duration-fast) var(--ease);
}

.drawer-btn-ghost-logout:hover {
  background: rgba(200, 64, 48, 0.08);
  border-color: #c84030;
}

.drawer-user-info {
  font-size: 13px;
  color: var(--ink);
  display: flex;
  align-items: center;
}

.drawer-unpaid-alert {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(235, 94, 40, 0.08);
  border: 1px solid rgba(235, 94, 40, 0.3);
  padding: 8px 12px;
  border-radius: var(--radius);
  color: var(--ink) !important;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none !important;
  transition: all var(--duration-fast) var(--ease);
}

.drawer-unpaid-alert:hover {
  background: rgba(235, 94, 40, 0.15);
  border-color: var(--orange);
}

.drawer-unpaid-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--orange);
  flex-shrink: 0;
  display: inline-block;
}

.drawer-unpaid-arrow {
  margin-left: auto;
  color: var(--orange);
  font-weight: 800;
}

.drawer-account-links {
  display: flex;
  gap: 8px;
}

.drawer-btn-secondary {
  flex: 1;
  background: var(--ink);
  color: var(--paper) !important;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 10px;
  border-radius: var(--radius);
  text-decoration: none !important;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.drawer-btn-ghost {
  flex: 1;
  background: transparent;
  color: var(--ink) !important;
  border: 1px solid var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 10px;
  border-radius: var(--radius);
  text-decoration: none !important;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.drawer-contact-item {
  font-size: 12px;
  color: var(--ink);
  display: flex;
  align-items: flex-start;
  line-height: 1.4;
}

.drawer-contact-item a {
  color: var(--ink) !important;
  font-weight: 600;
  text-decoration: none !important;
}

.drawer-contact-item a:hover {
  color: var(--orange-ink) !important;
}

.drawer-social-icons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.drawer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none !important;
  transition: background var(--duration-fast) var(--ease);
}

.drawer-social-btn:hover {
  background: var(--orange);
}

/* ==========================================================================
   5.3 HERO SECTION (SINGLE-SCREEN EDITORIAL)
   ========================================================================== */
.hero-editorial {
  min-height: 88vh;
  position: relative;
  background-color: var(--ink);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.hero-slider-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
  background-size: cover;
  background-position: center;
  background-image: var(--bg-desktop);
}

@media (max-width: 767px) {
  .hero-slide {
    background-image: var(--bg-mobile, var(--bg-desktop)) !important;
    background-position: center top !important;
  }
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(11,11,12,.88) 0%, rgba(11,11,12,.55) 55%, rgba(11,11,12,0.15) 100%);
  z-index: 2;
}

.hero-content-wrapper {
  position: relative;
  z-index: 3;
  padding-top: clamp(60px, 8vw, 120px);
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
}

.hero-text-block {
  max-width: 760px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: var(--fs-label);
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-title {
  font-size: var(--fs-hero);
  color: var(--paper);
  margin: 0 0 20px 0;
  line-height: 0.92;
}

.hero-subtitle {
  font-size: var(--fs-h3);
  color: rgba(246, 244, 240, 0.85);
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 32px;
  max-width: 620px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* Hero Manual Controller (01 / 03) */
.hero-controls {
  position: absolute;
  bottom: 84px;
  right: var(--container-pad);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(11, 11, 12, 0.7);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border: 1px solid var(--ink-80);
}

.hero-index {
  font-family: var(--font-display);
  font-size: var(--fs-small);
  color: var(--paper);
  letter-spacing: 0.1em;
}

.hero-nav-btn {
  background: none;
  border: none;
  color: var(--paper);
  cursor: pointer;
  padding: 4px 8px;
  font-size: 14px;
  transition: color var(--duration-fast) var(--ease);
}

.hero-nav-btn:hover {
  color: var(--orange);
}

/* Trust Strip */
.trust-strip {
  position: relative;
  z-index: 3;
  background-color: var(--ink);
  border-top: 1px solid var(--ink-80);
  border-bottom: 1px solid var(--ink-80);
  color: var(--paper);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 16px;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.02em;
  border-right: 1px solid var(--ink-80);
  text-align: center;
}

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

.trust-item i {
  color: var(--orange);
  font-size: 16px;
}

/* ==========================================================================
   5.4 DUA JALUR PEMBELI (50/50 BLOCK)
   ========================================================================== */
.split-buyer-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  border-bottom: 1px solid var(--ink-20);
}

.buyer-path-card {
  padding: clamp(32px, 6vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  text-decoration: none !important;
  transition: transform var(--duration-normal) var(--ease);
}

.buyer-path-card.path-retail {
  background-color: var(--paper-pure);
  color: var(--ink);
  border-right: 1px solid var(--ink-20);
}

.buyer-path-card.path-custom {
  background-color: var(--ink);
  color: var(--paper);
}

.path-heading {
  font-size: var(--fs-h1);
  margin-bottom: 12px;
}

.path-desc {
  font-size: var(--fs-body);
  max-width: 440px;
  line-height: 1.5;
  margin-bottom: 32px;
  opacity: 0.85;
}

.path-image-preview {
  margin-top: auto;
  position: relative;
  height: 220px;
  overflow: hidden;
  border-radius: var(--radius);
}

.path-image-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-normal) var(--ease);
}

.buyer-path-card:hover .path-image-preview img {
  transform: scale(1.05);
}

.path-action-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-small);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 24px;
}

.path-retail .path-action-link {
  color: var(--ink);
}

.path-custom .path-action-link {
  color: var(--orange);
}

/* ==========================================================================
   5.5 KATEGORI - BENTO GRID ASIMETRIS
   ========================================================================== */
.bento-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 12px;
}

.bento-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  text-decoration: none !important;
  display: block;
}

.bento-tile.tile-large {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-tile.tile-medium {
  grid-column: span 2;
  grid-row: span 1;
}

.bento-tile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-normal) var(--ease);
}

.bento-tile-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(11,11,12,0.6) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity var(--duration-fast) var(--ease), background var(--duration-fast) var(--ease);
}

.bento-tile:hover .bento-tile-overlay {
  opacity: 1;
}

.bento-tile-label {
  font-family: var(--font-display);
  font-size: var(--fs-label);
  font-weight: 800;
  color: var(--paper);
  background: rgba(11,11,12,0.85);
  backdrop-filter: blur(4px);
  padding: 6px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.15);
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.bento-arrow {
  color: var(--orange);
  transition: transform var(--duration-fast) var(--ease);
}

.bento-tile:hover .bento-arrow {
  transform: translateX(3px);
}

.bento-bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background-color: var(--orange);
  transition: width var(--duration-fast) var(--ease);
}

.bento-tile:hover .bento-tile-img {
  transform: scale(1.05);
}

.bento-tile:hover .bento-arrow {
  opacity: 1;
  transform: translateX(0);
}

.bento-tile:hover .bento-bottom-bar {
  width: 100%;
}

.bento-tile-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  background: rgba(11, 11, 12, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 12px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--duration-fast) var(--ease);
  z-index: 2;
}

.bento-badge-text {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.bento-badge-arrow {
  font-size: 13px;
  font-weight: 800;
  color: var(--orange);
  transition: transform var(--duration-fast) var(--ease);
}

.bento-tile:hover .bento-tile-badge {
  background: var(--orange);
  border-color: var(--orange);
}

.bento-tile:hover .bento-badge-arrow {
  color: #FFFFFF;
  transform: translateX(3px);
}

/* ==========================================================================
   5.6 COLLAB SERIES — ADEN BAJAJ ★ (SHOWSTOPPER SECTION)
   ========================================================================== */
.section-collab {
  background-color: var(--ink);
  color: var(--paper);
  padding-top: clamp(80px, 12vw, 160px);
  padding-bottom: clamp(80px, 12vw, 160px);
  overflow: hidden;
  position: relative;
}

.collab-marquee {
  width: 100%;
  overflow: hidden;
  margin-bottom: clamp(32px, 6vw, 64px);
  border-top: 1px solid var(--ink-80);
  border-bottom: 1px solid var(--ink-80);
  padding: 12px 0;
}

.collab-marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-reverse 35s linear infinite;
}

@keyframes marquee-reverse {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.collab-marquee-text {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  -webkit-text-stroke: 1px var(--ink-50);
  color: transparent;
  white-space: nowrap;
  padding: 0 20px;
}

.collab-main-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 6vw, 64px);
  align-items: center;
  margin-bottom: 64px;
}

.collab-media-wrap {
  position: relative;
}

.collab-portrait-box {
  width: 100%;
  height: clamp(380px, 45vw, 560px);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--ink-80);
  box-shadow: 8px 8px 0 rgba(242, 92, 31, 0.4);
  position: relative;
}

.collab-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collab-badge-drop {
  display: inline-block;
  background-color: var(--orange);
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--fs-label);
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: var(--radius);
  margin-bottom: 16px;
}

.collab-artist-name {
  font-size: var(--fs-h1);
  line-height: 0.9;
  margin-bottom: 8px;
  color: var(--paper);
}

.collab-cross-bagjaa {
  font-size: var(--fs-h2);
  color: var(--orange);
  margin-bottom: 24px;
}

.collab-story {
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--ink-20);
  margin-bottom: 32px;
  max-width: 500px;
}

/* Collab Rail (Scroll-snap horizontal) */
.collab-rail-wrap {
  position: relative;
}

.collab-rail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--ink-80);
  padding-bottom: 12px;
}

.collab-rail {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 16px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--orange) var(--ink-80);
}

.collab-rail::-webkit-scrollbar {
  height: 6px;
}
.collab-rail::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: var(--radius);
}

.collab-product-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background-color: var(--ink-80);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none !important;
  color: var(--paper);
  transition: transform var(--duration-fast) var(--ease), border-color var(--duration-fast) var(--ease);
}

.collab-product-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
}

.collab-card-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.collab-card-body {
  padding: 16px;
}

.collab-card-title {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  margin: 0 0 8px 0;
  color: var(--paper);
}

.collab-card-price {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--fs-body);
  color: var(--orange);
}

/* ==========================================================================
   5.7 PRODUK TERLARIS & GRID
   ========================================================================== */
.section-header-editorial {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 16px;
}

.section-title-ed {
  font-size: var(--fs-h1);
  margin: 0;
  color: var(--ink);
}

.section-subtitle-ed {
  font-size: var(--fs-small);
  color: var(--ink-50);
  margin-top: 6px;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.ed-divider-line {
  height: 2px;
  background-color: var(--ink);
  width: 100%;
  margin-bottom: 36px;
}

.product-grid-ed {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Product Card Editorial */
.product-card-ed {
  background: var(--paper-pure);
  border: 1px solid var(--ink-20);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none !important;
  position: relative;
  transition: border-color var(--duration-fast) var(--ease), transform var(--duration-fast) var(--ease);
}

.product-card-ed:hover {
  border-color: var(--ink);
  transform: translateY(-4px);
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--paper);
  overflow: hidden;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-normal) var(--ease);
}

.product-card-ed:hover .product-img-wrap img {
  transform: scale(1.05);
}

/* Single Badge Rules */
.product-badge-ed {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: var(--radius);
  z-index: 2;
}

.product-badge-ed.badge-discount {
  background-color: var(--orange);
  color: #fff;
}

.product-badge-ed.badge-outline {
  background-color: var(--paper-pure);
  color: var(--ink);
  border: 1px solid var(--ink);
}

.product-hover-action {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 12px;
  transform: translateY(100%);
  transition: transform var(--duration-fast) var(--ease);
  z-index: 3;
}

.product-card-ed:hover .product-hover-action {
  transform: translateY(0);
}

.product-info-ed {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
  display: block;
}

.product-name-ed {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.25;
  margin: 0 0 10px;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-snippet-ed {
  font-size: var(--fs-small);
  color: var(--ink-50);
  margin: 0 0 12px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-pricing-ed {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: auto;
}

.price-normal {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--fs-body);
  color: var(--ink);
}

.price-strike {
  font-size: var(--fs-small);
  color: var(--ink-50);
  text-decoration: line-through;
}

.price-discount {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: var(--fs-body);
  color: var(--orange);
}

/* ==========================================================================
   5.8 CARA PESAN CUSTOM - 4 LANGKAH
   ========================================================================== */
.section-custom-steps {
  background-color: var(--paper-pure);
  border-top: 1px solid var(--ink-20);
  border-bottom: 1px solid var(--ink-20);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink-20);
  border-bottom: 1px solid var(--ink-20);
  margin-top: 40px;
  margin-bottom: 40px;
}

.step-card {
  padding: clamp(24px, 4vw, 40px) 24px;
  border-right: 1px solid var(--ink-20);
  position: relative;
  display: flex;
  flex-direction: column;
}

.step-card:last-child {
  border-right: none;
}

.step-num-bg {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  color: var(--orange);
  line-height: 1;
  margin-bottom: 12px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.step-title {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  color: var(--ink);
  margin-bottom: 8px;
}

.step-desc {
  font-size: var(--fs-small);
  color: var(--ink-50);
  margin: 0;
  line-height: 1.5;
}

/* ==========================================================================
   5.9 ANGKA & DINDING KOMUNITAS (10.500 COUNTER)
   ========================================================================== */
.section-community-stat {
  background-color: var(--ink);
  color: var(--paper);
  text-align: center;
  overflow: hidden;
  padding: clamp(48px, 6vw, 80px) 0 clamp(40px, 5vw, 60px);
}

.stat-giant-num {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 12vw, 9rem);
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 2px var(--orange);
  margin: 0 0 12px 0;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-shadow: 0 0 30px rgba(235, 94, 40, 0.25);
}

.stat-label {
  font-family: var(--font-display);
  font-size: var(--fs-small);
  letter-spacing: 0.14em;
  color: var(--paper-80);
  text-transform: uppercase;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}

.community-marquee-wrap {
  overflow: hidden;
  width: 100%;
  padding: 8px 0;
}

.community-marquee-row {
  display: flex;
  width: max-content;
  gap: 16px;
  margin-bottom: 14px;
}

.marquee-left {
  animation: marquee-slide 30s linear infinite;
}

.marquee-right {
  animation: marquee-reverse 30s linear infinite;
}

.community-pill-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 18px;
  border-radius: 30px;
  color: var(--paper-80);
  font-size: 13px;
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all var(--duration-fast) var(--ease);
}

.community-pill-item:hover {
  background: var(--orange);
  color: #FFFFFF;
  border-color: var(--orange);
}

.community-logo-item {
  height: 48px;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%) opacity(60%);
  transition: all var(--duration-fast) var(--ease);
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.community-logo-item:hover {
  filter: grayscale(0%) opacity(100%);
  transform: scale(1.08);
  border-color: var(--orange);
}

/* ==========================================================================
   5.10 TESTIMONI
   ========================================================================== */
.testimonial-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card-ed {
  background: var(--paper-pure);
  border: 1px solid var(--ink-20);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-giant-mark {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 1;
  color: var(--ink-20);
  pointer-events: none;
}

.testimonial-stars {
  color: var(--orange);
  margin-bottom: 16px;
  font-size: 14px;
}

.testimonial-quote {
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.testimonial-author {
  font-family: var(--font-display);
  font-size: var(--fs-small);
  color: var(--ink);
  margin-bottom: 2px;
  font-weight: 700;
}

.testimonial-community {
  font-size: var(--fs-label);
  color: var(--ink-50);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ==========================================================================
   5.11 ARTIKEL
   ========================================================================== */
.articles-grid-ed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.article-card-ed {
  background: var(--paper-pure);
  border: 1px solid var(--ink-20);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none !important;
  transition: border-color var(--duration-fast) var(--ease), transform var(--duration-fast) var(--ease);
}

.article-card-ed:hover {
  border-color: var(--ink);
  transform: translateY(-4px);
}

.article-thumb-wrap {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ink-20);
}

.article-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-normal) var(--ease);
}

.article-card-ed:hover .article-thumb-wrap img {
  transform: scale(1.06);
}

.article-body-ed {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.article-meta-ed {
  font-size: var(--fs-label);
  color: var(--ink-50);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-title-ed {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  color: var(--ink);
  margin: 0 0 10px 0;
  line-height: 1.25;
  transition: color var(--duration-fast) var(--ease);
}

.article-card-ed:hover .article-title-ed {
  color: var(--orange);
  text-decoration: underline;
}

.article-excerpt-ed {
  font-size: var(--fs-small);
  color: var(--ink-50);
  line-height: 1.5;
  margin: 0;
}

/* ==========================================================================
   5.12 PITA CTA PENUTUP
   ========================================================================== */
.section-closing-cta {
  background-color: var(--orange);
  color: var(--ink);
  padding-top: clamp(60px, 8vw, 100px);
  padding-bottom: clamp(60px, 8vw, 100px);
}

.closing-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}

.closing-cta-title {
  font-size: var(--fs-h1);
  color: var(--ink);
  margin: 0;
  line-height: 0.95;
  max-width: 680px;
}

.closing-cta-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==========================================================================
   5.13 FOOTER EDITORIAL (PROMPT 13 REDESIGN)
   ========================================================================== */
.footer-editorial {
  background-color: var(--ink);
  color: var(--paper);
  padding-top: 96px;
  padding-bottom: 48px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--ink-80);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
  align-items: start;
}

/* Kolom 1: Brand */
.footer-col-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 16px;
  text-decoration: none;
}

.footer-brand-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: var(--fs-h3, 1.5rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--orange);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.footer-brand-desc {
  font-size: var(--fs-small);
  color: var(--ink-20, rgba(255, 255, 255, 0.75));
  line-height: 1.6;
  max-width: 42ch;
  margin-bottom: 24px;
}

.footer-social-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--ink-80);
  border-radius: var(--radius);
  background: transparent;
  color: var(--paper);
  text-decoration: none !important;
  transition: background-color var(--duration-fast) var(--ease),
              color var(--duration-fast) var(--ease),
              border-color var(--duration-fast) var(--ease),
              transform var(--duration-fast) var(--ease);
}

.footer-social-btn svg {
  display: block;
  transition: transform var(--duration-fast) var(--ease);
}

.footer-social-btn:hover {
  background-color: var(--paper);
  border-color: var(--paper);
  color: var(--ink);
  transform: translateY(-2px);
}

/* Kolom 2 & 3: Navigasi Links */
.footer-col-nav {
  display: flex;
  flex-direction: column;
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: var(--fs-small);
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 20px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

.footer-nav-body {
  display: block;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links li:last-child {
  margin-bottom: 0;
}

.footer-links a {
  color: var(--ink-20, rgba(255, 255, 255, 0.75));
  font-size: var(--fs-small);
  text-decoration: none !important;
  display: inline-block;
  transition: color var(--duration-fast) var(--ease),
              text-decoration var(--duration-fast) var(--ease);
}

.footer-links a:hover {
  color: var(--paper);
  text-decoration: underline !important;
  text-underline-offset: 4px;
}

.footer-view-all-item {
  margin-top: 16px !important;
  padding-top: 12px;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
}

.footer-view-all-link {
  color: var(--orange) !important;
  font-weight: 700;
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
}

.footer-view-all-link:hover {
  color: var(--paper) !important;
}

/* Kolom 4: Hubungi Kami */
.footer-col-contact {
  display: flex;
  flex-direction: column;
}

.footer-contact-heading {
  margin-bottom: 20px;
}

.footer-address {
  font-style: normal;
  font-size: var(--fs-small);
  color: var(--ink-20, rgba(255, 255, 255, 0.75));
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.footer-addr-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-icon-inline {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--orange);
}

.footer-hours-block,
.footer-wa-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-sub-label {
  font-weight: 700;
  color: var(--paper);
  font-size: var(--fs-small);
}

.footer-sub-text {
  color: var(--ink-20, rgba(255, 255, 255, 0.75));
}

.footer-wa-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-wa-link {
  color: var(--paper) !important;
  text-decoration: underline !important;
  text-underline-offset: 3px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--duration-fast) var(--ease);
}

.footer-wa-link:hover {
  color: var(--orange) !important;
}

.footer-icon-inline-wa {
  color: #25D366;
  flex-shrink: 0;
}

.footer-wa-sep {
  color: var(--ink-50);
}

/* CTA Full-Width Solid WhatsApp Button */
.footer-wa-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 48px;
  padding: 0 20px;
  background-color: #25D366;
  color: #FFFFFF !important;
  font-family: var(--font-display);
  font-size: var(--fs-small);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none !important;
  border-radius: var(--radius);
  border: none;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
  transition: background-color var(--duration-fast) var(--ease),
              transform var(--duration-fast) var(--ease),
              box-shadow var(--duration-fast) var(--ease);
}

.footer-wa-cta-btn svg {
  flex-shrink: 0;
}

.footer-wa-cta-btn:hover {
  background-color: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  color: #FFFFFF !important;
}

.footer-wa-cta-btn:active {
  transform: translateY(0);
}

/* ==========================================================================
   BARIS MARKETPLACE
   ========================================================================== */
.footer-marketplace-section {
  border-top: 1px solid var(--ink-80);
  padding-top: 32px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-marketplace-label {
  font-family: var(--font-display);
  font-size: var(--fs-label, 11px);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-50);
}

.footer-marketplace-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-market-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: transparent;
  border: 1px solid var(--ink-80);
  border-radius: var(--radius);
  color: var(--paper);
  font-size: var(--fs-small);
  font-weight: 600;
  text-decoration: none !important;
  transition: border-color var(--duration-fast) var(--ease),
              background-color var(--duration-fast) var(--ease),
              transform var(--duration-fast) var(--ease);
}

.footer-market-badge svg {
  flex-shrink: 0;
  color: var(--paper);
  transition: transform var(--duration-fast) var(--ease);
}

.footer-market-badge:hover {
  border-color: var(--paper);
  background-color: rgba(255, 255, 255, 0.06);
  color: var(--paper);
  transform: translateY(-2px);
}

/* ==========================================================================
   GIANT WORDMARK BAGJAA
   ========================================================================== */
.footer-giant-wordmark-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 48px;
  margin-bottom: -15px;
  display: flex;
  justify-content: center;
}

.footer-giant-wordmark {
  font-family: var(--font-display);
  font-size: clamp(5rem, 19vw, 18rem);
  font-weight: 900;
  line-height: 0.75;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px var(--ink-80);
  text-align: center;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  text-transform: uppercase;
}

/* ==========================================================================
   BOTTOM BAR (COPYRIGHT)
   ========================================================================== */
.footer-bottom-bar {
  border-top: 1px solid var(--ink-80);
  padding-top: 24px;
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--fs-small);
  color: var(--ink-50);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  color: var(--ink-50);
}

.footer-bottom-tagline {
  letter-spacing: 0.1em;
  color: var(--ink-80);
  font-size: var(--fs-label, 11px);
}

/* ==========================================================================
   DESKTOP ACCORDION RESET (ALWAYS OPEN ON DESKTOP)
   ========================================================================== */
@media (min-width: 640px) {
  .footer-accordion summary {
    pointer-events: none;
    cursor: default;
    list-style: none;
  }
  .footer-accordion summary::-webkit-details-marker {
    display: none;
  }
  .footer-accordion .footer-accordion-icon {
    display: none !important;
  }
}

/* ==========================================================================
   5.14 FLOATING WHATSAPP BUTTON (REFINED)
   ========================================================================== */
.floating-wa-ed {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background-color: var(--wa-green);
  color: #FFFFFF !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  z-index: 1060;
  text-decoration: none !important;
  transition: all var(--duration-fast) var(--ease);
}

.floating-wa-ed:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
  color: #FFFFFF !important;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (EDITORIAL MOBILE REDESIGN)
   ========================================================================== */
@media (max-width: 1023px) {
  .editorial-header {
    height: 64px !important;
  }
  .nav-desktop {
    display: none !important;
  }
  .btn-header-custom {
    display: none !important;
  }
  .action-icon-btn.d-lg-flex {
    display: none !important;
  }
  .mobile-menu-trigger {
    display: flex !important;
  }
  .split-buyer-paths {
    grid-template-columns: 1fr;
  }
  .buyer-path-card.path-retail {
    border-right: none;
    border-bottom: 1px solid var(--ink-20);
  }
  .bento-categories {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    gap: 12px;
  }
  .bento-tile {
    aspect-ratio: 1 / 1;
    height: auto;
  }
  .bento-tile.tile-large {
    grid-column: span 2;
    aspect-ratio: 16 / 9;
    height: auto;
  }
  .collab-main-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .product-grid-ed {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .step-card {
    border: 1px solid var(--ink-20) !important;
    border-radius: var(--radius);
  }
  .testimonial-rail {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 8px 16px 20px !important;
    margin: 0 -16px;
    scrollbar-width: thin;
    scrollbar-color: var(--orange) rgba(0, 0, 0, 0.05);
  }
  .testimonial-rail::-webkit-scrollbar {
    height: 4px;
  }
  .testimonial-rail::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
  }
  .testimonial-rail::-webkit-scrollbar-thumb {
    background: var(--orange);
    border-radius: 4px;
  }
  .testimonial-card-ed {
    flex: 0 0 85vw !important;
    max-width: 330px !important;
    scroll-snap-align: start;
    padding: 24px 20px;
  }
  .articles-grid-ed {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 639px) {
  /* Hero Mobile Redesign */
  .hero-editorial {
    min-height: 540px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
  }
  .hero-gradient-overlay {
    background: linear-gradient(180deg, rgba(11, 11, 12, 0.45) 0%, rgba(11, 11, 12, 0.7) 45%, rgba(11, 11, 12, 0.96) 100%) !important;
  }
  .hero-content-wrapper {
    padding-top: 48px;
    padding-bottom: 24px;
    justify-content: flex-end;
    flex-grow: 1;
    z-index: 3;
  }
  .hero-text-block {
    max-width: 100%;
  }
  .hero-eyebrow {
    font-size: 11px;
    letter-spacing: 0.12em;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--orange);
    display: inline-block;
  }
  .hero-title {
    font-size: clamp(2.3rem, 10vw, 2.9rem);
    letter-spacing: -0.02em;
    line-height: 0.95;
    margin: 0 0 10px 0;
  }
  .hero-subtitle {
    font-size: 13.5px;
    line-height: 1.45;
    color: rgba(246, 244, 240, 0.9);
    margin-bottom: 20px;
    max-width: 100%;
  }
  .hero-cta-group {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .hero-cta-group .btn-ed {
    width: 100%;
    justify-content: center;
    min-height: 48px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.05em;
  }
  
  /* Trust Strip Mobile 2x2 */
  .trust-strip {
    background: rgba(11, 11, 12, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    position: relative;
    z-index: 4;
  }
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-item {
    padding: 11px 10px;
    font-size: 11px;
    font-weight: 700;
    gap: 8px;
    color: #FFFFFF;
  }
  .trust-item i {
    color: var(--orange);
    font-size: 13px;
  }
  .trust-item:nth-child(2) {
    border-right: none;
  }
  .trust-item:nth-child(1),
  .trust-item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  /* Split Buyer Paths Mobile */
  .split-buyer-paths {
    grid-template-columns: 1fr;
  }
  .buyer-path-card {
    padding: 20px 16px;
    gap: 16px;
  }
  .path-heading {
    font-size: 22px;
    margin-bottom: 6px;
  }
  .path-desc {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 12px;
  }
  .path-image-preview {
    height: 150px;
    border-radius: var(--radius);
    overflow: hidden;
  }
  .path-image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Bento Categories 2-Column Mobile Grid */
  .bento-categories {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    gap: 10px;
  }
  .bento-tile {
    aspect-ratio: 1 / 1;
    height: auto;
    border-radius: var(--radius);
  }
  .bento-tile.tile-large {
    grid-column: span 2;
    aspect-ratio: 16 / 9;
    height: auto;
  }
  .bento-tile-badge {
    bottom: 8px;
    left: 8px;
    right: 8px;
    padding: 6px 10px;
    border-radius: var(--radius);
  }
  .bento-badge-text {
    font-size: 11px;
    font-weight: 800;
  }
  .bento-badge-arrow {
    font-size: 12px;
  }

  /* Collab Section Mobile */
  .section-collab {
    padding: 40px 0;
  }
  .collab-marquee-text {
    font-size: 26px;
  }
  .collab-main-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .collab-portrait-box {
    aspect-ratio: 16 / 10;
    max-height: 220px;
    border-radius: var(--radius);
    overflow: hidden;
  }
  .collab-artist-name {
    font-size: clamp(2rem, 9vw, 2.75rem);
    line-height: 0.95;
  }
  .collab-cross-bagjaa {
    font-size: 20px;
    margin-bottom: 8px;
  }
  .collab-story {
    font-size: 13px;
    line-height: 1.45;
    margin-bottom: 16px;
  }
  .collab-rail {
    gap: 10px;
    padding-bottom: 10px;
  }
  .collab-product-card {
    width: 170px;
  }

  /* Product Grid Mobile 2-Col */
  .product-grid-ed {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  /* Steps Grid Mobile 2x2 */
  .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .step-card {
    padding: 16px 14px;
    border: 1px solid var(--ink-20) !important;
    border-radius: var(--radius);
    background: var(--paper-pure);
    position: relative;
  }
  .step-num-bg {
    font-size: 26px;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 8px;
    opacity: 1;
    position: static;
  }
  .step-title {
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--ink);
  }
  .step-desc {
    font-size: 11.5px;
    line-height: 1.4;
    color: var(--ink-80);
  }

  /* Social Proof Counter */
  .stat-giant-num {
    font-size: clamp(3rem, 13vw, 4.5rem);
  }
  .stat-label {
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  /* Articles & Footer */
  .articles-grid-ed {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .footer-editorial {
    padding-top: 56px;
    padding-bottom: 32px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 32px;
  }
  .footer-accordion {
    border-bottom: 1px solid var(--ink-80);
    padding-bottom: 12px;
  }
  .footer-accordion summary.footer-col-title {
    cursor: pointer;
    margin-bottom: 0;
    padding: 8px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .footer-accordion summary::-webkit-details-marker {
    display: none;
  }
  .footer-accordion[open] summary.footer-col-title {
    margin-bottom: 16px;
  }
  .footer-accordion .footer-accordion-icon::after {
    content: '+';
    font-family: monospace;
    font-size: 20px;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
  }
  .footer-accordion[open] .footer-accordion-icon::after {
    content: '−';
  }
  .footer-marketplace-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 24px;
  }
  .footer-marketplace-badges {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .footer-market-badge {
    justify-content: center;
    padding: 10px 12px;
  }
  .footer-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .hero-controls {
    display: none;
  }
  .floating-wa-ed {
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    font-size: 22px;
    z-index: 1000;
  }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .marquee-track,
  .collab-marquee-track,
  .marquee-left,
  .marquee-right {
    animation: none !important;
  }
}

/* ==========================================================================
   MINI CART DRAWER (Editorial Design Token)
   ========================================================================== */

.cart-drawer-root {
  position: fixed;
  inset: 0;
  z-index: 1050;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 280ms var(--ease);
}

.cart-drawer-root.is-open {
  visibility: visible;
  pointer-events: auto;
}

/* Scrim / Backdrop */
.cart-drawer-scrim {
  position: absolute;
  inset: 0;
  background-color: rgba(11, 11, 12, 0.5);
  opacity: 0;
  transition: opacity 280ms cubic-bezier(0.22, 1, 0.36, 1);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.cart-drawer-root.is-open .cart-drawer-scrim {
  opacity: 1;
}

/* Drawer Panel (Slide from Right) */
.cart-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(92vw, 440px);
  height: 100%;
  background-color: var(--paper);
  border-left: 1px solid var(--ink);
  box-shadow: -10px 0 30px rgba(11, 11, 12, 0.15);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
  outline: none;
  z-index: 2;
}

.cart-drawer-root.is-open .cart-drawer-panel {
  transform: translateX(0);
}

/* Drawer Header (Fixed 72px) */
.cart-drawer-header {
  height: 72px;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-bottom: 1px solid var(--ink);
  background-color: var(--paper);
}

.cart-drawer-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-drawer-title {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin: 0;
  line-height: 1;
}

.cart-drawer-count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  background-color: var(--ink);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: var(--fs-small);
  font-weight: 700;
  border-radius: 11px;
}

/* Close Button (SVG 44x44px Touch Target) */
.btn-cart-drawer-close {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid transparent;
  color: var(--ink);
  cursor: pointer;
  border-radius: var(--radius);
  transition: background-color var(--duration-fast) var(--ease), border-color var(--duration-fast) var(--ease);
}

.btn-cart-drawer-close:hover {
  background-color: var(--ink-10, #EBE9E4);
  border-color: var(--ink-20);
}

.btn-cart-drawer-close:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

/* Toast Message */
.cart-drawer-toast {
  position: absolute;
  top: 76px;
  left: 20px;
  right: 20px;
  padding: 10px 16px;
  background-color: var(--ink);
  color: var(--paper);
  font-size: var(--fs-small);
  font-weight: 600;
  border-radius: var(--radius);
  z-index: 10;
  display: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  animation: drawerToastSlide 200ms var(--ease);
}

@keyframes drawerToastSlide {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scrollable Body / Item List */
.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 0 24px;
  background-color: var(--paper);
}

.cart-drawer-list-inner {
  display: flex;
  flex-direction: column;
}

/* Cart Line Item Component */
.cart-line-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--ink-20);
  transition: background-color 1.2s ease, opacity var(--duration-normal) var(--ease);
  position: relative;
}

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

.cart-line-item.is-new-item {
  background-color: rgba(224, 90, 36, 0.08);
  border-radius: var(--radius);
  padding: 16px 12px;
  margin: 4px 0;
}

/* Cart Item Thumbnail */
.cart-line-thumb-wrap {
  width: 72px;
  height: 90px;
  flex-shrink: 0;
  border: 1px solid var(--ink-20);
  border-radius: var(--radius);
  background-color: var(--paper-pure);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-line-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.cart-line-thumb-svg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-line-thumb-svg .wrapper-image-produk {
  width: 100%;
  height: 100%;
}

.cart-line-thumb-svg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Details info */
.cart-line-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cart-line-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.cart-line-title {
  font-family: var(--font-display);
  font-size: var(--fs-body);
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--duration-fast) var(--ease);
}

.cart-line-title:hover {
  color: var(--orange);
}

/* Delete button */
.btn-cart-line-delete {
  background: none;
  border: none;
  padding: 6px;
  margin-right: -6px;
  margin-top: -4px;
  color: var(--ink-50);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-radius: var(--radius);
  transition: color var(--duration-fast) var(--ease), background-color var(--duration-fast) var(--ease);
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
}

.btn-cart-line-delete .delete-text {
  font-size: var(--fs-small);
  font-weight: 500;
}

.btn-cart-line-delete:hover {
  color: var(--alert);
  background-color: rgba(217, 45, 32, 0.06);
}

.btn-cart-line-delete:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

/* Variant chips */
.cart-line-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 6px 0 10px 0;
}

.cart-chip {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  font-size: var(--fs-label);
  line-height: 1.2;
  border: 1px solid var(--ink-20);
  background-color: var(--paper-pure);
  color: var(--ink-70, #4A4A4D);
  border-radius: 2px;
  font-weight: 500;
}

.cart-chip.cart-chip-color {
  border: 1px solid var(--ink);
  color: var(--ink);
  font-weight: 700;
  background-color: var(--paper);
}

/* Footer row (Qty & Price) */
.cart-line-footer-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
}

.cart-line-qty-wrap {
  display: flex;
  align-items: center;
}

.cart-line-qty-text {
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--ink-50);
  background-color: var(--ink-10, #EBE9E4);
  padding: 4px 10px;
  border-radius: var(--radius);
}

/* Stepper inside cart drawer */
.cart-qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--ink-20);
  border-radius: var(--radius);
  background: var(--paper-pure);
  height: 32px;
}

.cart-qty-stepper .btn-qty-step {
  width: 32px;
  height: 30px;
  border: none;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--duration-fast) var(--ease);
}

.cart-qty-stepper .btn-qty-step:hover {
  background: var(--ink-10, #EBE9E4);
}

.cart-qty-stepper .input-qty-val {
  min-width: 28px;
  text-align: center;
  font-size: var(--fs-small);
  font-weight: 700;
  color: var(--ink);
}

.cart-line-price-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.cart-line-strike-price {
  font-size: var(--fs-small);
  color: var(--ink-50);
  text-decoration: line-through;
  line-height: 1.2;
}

.cart-line-final-price {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
}

.cart-line-unit-breakdown {
  font-size: var(--fs-label);
  color: var(--ink-50);
  margin-top: 2px;
}

/* Promo Nudge (Kode BANYAK) */
.cart-drawer-promo-nudge {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background-color: var(--orange);
  color: var(--ink);
  font-size: var(--fs-small);
  font-weight: 600;
  border-top: 1px solid rgba(11, 11, 12, 0.1);
  border-bottom: 1px solid rgba(11, 11, 12, 0.1);
}

.cart-drawer-promo-nudge.active {
  display: flex;
}

.cart-drawer-promo-nudge .promo-icon {
  flex-shrink: 0;
}

.cart-drawer-promo-nudge .promo-text {
  line-height: 1.35;
}

/* Fixed Footer */
.cart-drawer-footer {
  border-top: 1px solid var(--ink);
  background-color: var(--paper-pure);
  padding: 20px 24px calc(20px + env(safe-area-inset-bottom));
}

.cart-drawer-subtotal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.subtotal-label {
  font-family: var(--font-display);
  font-size: var(--fs-body);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.subtotal-amount {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 800;
  color: var(--orange-ink, #C4410F);
}

.cart-drawer-shipping-note {
  font-size: var(--fs-small);
  color: var(--ink-50);
  margin: 0 0 16px 0;
}

/* Footer Action Buttons */
.cart-drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-drawer-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 56px;
  background-color: var(--ink);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: var(--fs-body);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: var(--radius);
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: background-color var(--duration-fast) var(--ease), color var(--duration-fast) var(--ease);
}

.btn-drawer-checkout:hover {
  background-color: var(--orange);
  color: var(--ink);
  border-color: var(--orange);
}

.btn-drawer-checkout:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.btn-drawer-continue-shopping {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  background-color: transparent;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.04em;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color var(--duration-fast) var(--ease), color var(--duration-fast) var(--ease);
}

.btn-drawer-continue-shopping:hover {
  background-color: var(--ink-10, #EBE9E4);
}

.btn-drawer-continue-shopping:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

/* Empty Cart State */
.cart-drawer-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 16px;
  height: 100%;
}

.cart-drawer-empty-icon {
  color: var(--ink-20);
  margin-bottom: 20px;
}

.cart-drawer-empty-title {
  font-size: var(--fs-h3);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 8px;
}

.cart-drawer-empty-desc {
  font-size: var(--fs-body);
  color: var(--ink-50);
  font-style: italic;
  margin-bottom: 28px;
}

.btn-cart-empty-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 280px;
  height: 52px;
  background-color: var(--ink);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: var(--fs-body);
  font-weight: 800;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background-color var(--duration-fast) var(--ease), color var(--duration-fast) var(--ease);
}

.btn-cart-empty-cta:hover {
  background-color: var(--orange);
  color: var(--ink);
}

/* Mobile Adjustments (<640px) */
@media (max-width: 640px) {
  .cart-drawer-panel {
    width: 100vw;
    border-left: none;
  }

  .cart-drawer-header {
    padding: 0 16px;
  }

  .cart-drawer-body {
    padding: 0 16px;
  }

  .cart-drawer-footer {
    padding: 16px 16px calc(16px + env(safe-area-inset-bottom));
  }

  .cart-line-thumb-wrap {
    width: 64px;
    height: 80px;
  }

  .cart-line-title {
    font-size: var(--fs-small);
  }

  .cart-chip {
    font-size: 11px;
    padding: 2px 6px;
  }
}

/* Motion Preferences */
@media (prefers-reduced-motion: reduce) {
  .cart-drawer-panel,
  .cart-drawer-scrim,
  .cart-drawer-root {
    transition: none !important;
  }
}
