/* ════════════════════════════════════════════════
   GKP Store – style.css
   Palette: Mauve · Lilac · Soft Purple · White · Dark Plum
   ════════════════════════════════════════════════ */

/* ── RESET & BASE ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --plum: #3d1a4f;
  --purple: #7c3aed;
  --mauve: #9b59b6;
  --lilac: #c084fc;
  --soft-lilac: #e9d5ff;
  --lavender: #f3e8ff;
  --blush: #fdf4ff;
  --white: #ffffff;
  --off-white: #faf8fe;
  --muted: #78716c;
  --text: #1c1317;
  --text-light: #6b7280;
  --border: #ede9f7;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;

  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(60, 20, 80, 0.08);
  --shadow: 0 4px 24px rgba(60, 20, 80, 0.12);
  --shadow-lg: 0 12px 48px rgba(60, 20, 80, 0.18);
  --shadow-xl: 0 24px 72px rgba(60, 20, 80, 0.22);

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-h: 72px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TYPOGRAPHY ── */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--plum);
}
.section-title em {
  font-style: italic;
  color: var(--mauve);
}
.section-desc {
  margin-top: 14px;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 520px;
}
.section-header {
  margin-bottom: 52px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
  border: none;
}
.btn-primary {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.35);
}
.btn-primary:hover {
  background: var(--plum);
  box-shadow: 0 8px 28px rgba(61, 26, 79, 0.4);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

.btn-katalog {
  background: linear-gradient(135deg, var(--purple), var(--mauve));
  color: var(--white);
  font-size: 0.82rem;
  padding: 10px 20px;
  box-shadow: 0 2px 12px rgba(124, 58, 237, 0.3);
}
.btn-katalog:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-outline-purple {
  background: transparent;
  color: var(--purple);
  border: 1.5px solid var(--purple);
  padding: 12px 28px;
}
.btn-outline-purple:hover {
  background: var(--purple);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--plum);
  padding: 13px 28px;
}
.btn-white:hover {
  background: var(--lavender);
  transform: translateY(-2px);
}

/* ════════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(0px);
  transition:
    background var(--transition),
    box-shadow var(--transition),
    backdrop-filter var(--transition);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(60, 20, 80, 0.1);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-img {
  height: 42px;
  width: 42px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--soft-lilac);
}
.logo-fallback-icon {
  font-size: 22px;
  color: var(--mauve);
  flex-shrink: 0;
}
.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.nav-brand-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--plum);
  letter-spacing: 0.01em;
}
.nav-brand-sub {
  font-size: 0.62rem;
  color: var(--mauve);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--plum);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition);
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--mauve);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav-link:hover {
  color: var(--mauve);
}
.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--plum);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: var(--nav-h);
  background: linear-gradient(145deg, #fdf4ff 0%, #f3e8ff 40%, #ede9f7 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* background blobs */
.hero-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  pointer-events: none;
}
.blob-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #c084fc, transparent);
  top: -200px;
  right: -100px;
}
.blob-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #7c3aed55, transparent);
  bottom: -100px;
  left: -80px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}

/* ── HERO LEFT ── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(192, 132, 252, 0.18);
  border: 1px solid rgba(192, 132, 252, 0.4);
  color: var(--plum);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 22px;
}
.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--mauve);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--plum);
  margin-bottom: 22px;
}
.hero-headline em {
  font-style: italic;
  color: var(--mauve);
  position: relative;
}
.hero-headline em::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--lilac), var(--soft-lilac));
  border-radius: 3px;
  z-index: -1;
  opacity: 0.5;
}

.hero-sub {
  color: #5c4a6e;
  font-size: 1rem;
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--plum);
  line-height: 1;
}
.stat span {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 2px;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ── HERO RIGHT ── */
.hero-visuals {
  position: relative;
  height: 520px;
}

.hero-img-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 62%;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.hero-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.hero-img-main:hover img {
  transform: scale(1.04);
}

.hero-img-row {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 72%;
  display: flex;
  gap: 12px;
  align-items: flex-end;
}
.hero-img-sm {
  flex: 1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.hero-img-sm img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.hero-img-tall img {
  height: 210px;
}

.img-badge-float {
  position: absolute;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}
.badge-float-1 {
  top: 12px;
  left: 12px;
  background: var(--white);
  color: var(--plum);
  padding: 5px 10px;
  box-shadow: var(--shadow);
}
.badge-float-2 {
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--plum);
  color: var(--white);
  padding: 5px 12px;
  white-space: nowrap;
}

.hero-floating-card {
  position: absolute;
  bottom: 80px;
  right: -10px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.card-icon {
  font-size: 1.6rem;
}
.card-title {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--plum);
}
.card-sub {
  font-size: 0.75rem;
  color: var(--muted);
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--mauve), transparent);
  animation: scroll-drop 1.5s infinite;
}
@keyframes scroll-drop {
  0% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 1;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
  }
  100% {
    transform: scaleY(1);
    transform-origin: bottom;
    opacity: 0;
  }
}

/* ════════════════════════════════════════════════
   TRUST STRIP
   ════════════════════════════════════════════════ */
.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--plum);
}
.trust-item svg {
  color: var(--mauve);
  flex-shrink: 0;
}
.trust-sep {
  color: var(--lilac);
  font-size: 0.7rem;
}

/* ════════════════════════════════════════════════
   TOKO ONLINE
   ════════════════════════════════════════════════ */
.toko-online {
  padding: 100px 0;
  background: var(--off-white);
}

.toko-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.toko-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 180px;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  box-shadow: var(--shadow);
}
.toko-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.toko-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) saturate(0.6);
  transition:
    transform 0.5s ease,
    filter 0.5s ease;
}
.toko-card:hover .toko-bg-img {
  transform: scale(1.05);
  filter: brightness(0.28) saturate(0.5);
}

.toko-card-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.6) 0%,
    transparent 60%
  );
  z-index: 1;
}

.toko-card-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px;
  width: 100%;
}

.toko-logo-wrap img,
.toko-logo-wrap svg {
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.toko-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}
.toko-info p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 2px;
}
.toko-rating {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.toko-arrow {
  margin-left: auto;
  color: var(--white);
  background: rgba(255, 255, 255, 0.2);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background var(--transition),
    transform var(--transition);
}
.toko-card:hover .toko-arrow {
  background: rgba(255, 255, 255, 0.4);
  transform: translateX(3px);
}

.toko-cta-wrap {
  text-align: center;
}

/* ════════════════════════════════════════════════
   PRODUK POPULER
   ════════════════════════════════════════════════ */
.produk {
  padding: 100px 0;
  background: var(--lavender);
}

/* Filter Tabs */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.filter-tab {
  background: var(--white);
  color: var(--text-light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  padding: 8px 22px;
  font-size: 0.84rem;
  font-weight: 500;
  transition: all var(--transition);
}
.filter-tab:hover {
  border-color: var(--lilac);
  color: var(--purple);
}
.filter-tab.active {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.3);
}

/* Product Grid */
.produk-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.produk-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  position: relative;
}
.produk-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.produk-card.hidden {
  display: none;
}

.produk-img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: linear-gradient(135deg, #e9d5ff 0%, #c084fc 100%);
}
.produk-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  position: relative;
  z-index: 1;
}
.produk-card:hover .produk-img-wrap img {
  transform: scale(1.07);
}

.produk-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--plum);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
}
.badge-new {
  background: var(--purple);
}
.badge-sale {
  background: #e11d48;
}

.produk-wish {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.85);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}
.produk-wish:hover {
  color: #e11d48;
  background: var(--white);
  transform: scale(1.1);
}
.produk-wish.active {
  color: #e11d48;
}

.produk-info {
  padding: 14px 16px 18px;
}
.produk-cat {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 4px;
}
.produk-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--plum);
  line-height: 1.3;
  margin-bottom: 6px;
}
.produk-rating {
  font-size: 0.75rem;
  color: #f59e0b;
  margin-bottom: 8px;
}
.produk-rating span {
  color: var(--text-light);
}
.produk-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.produk-price {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--plum);
}
.produk-old {
  font-size: 0.78rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.produk-more {
  text-align: center;
}

/* ════════════════════════════════════════════════
   PROMO BANNER
   ════════════════════════════════════════════════ */
.promo-banner {
  background: linear-gradient(
    135deg,
    var(--plum) 0%,
    #6b21a8 50%,
    var(--mauve) 100%
  );
  overflow: hidden;
}
.promo-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
}

.promo-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lilac);
  margin-bottom: 12px;
}
.promo-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
}
.promo-text h2 em {
  font-style: italic;
  color: var(--lilac);
}
.promo-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.promo-imgs {
  position: relative;
  width: 300px;
  height: 280px;
  flex-shrink: 0;
}
.promo-img {
  position: absolute;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-xl);
}
.promo-img-1 {
  width: 200px;
  height: 220px;
  top: 0;
  left: 0;
}
.promo-img-2 {
  width: 160px;
  height: 180px;
  bottom: 0;
  right: 0;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

/* ════════════════════════════════════════════════
   KONTAK & LOKASI
   ════════════════════════════════════════════════ */
.kontak {
  padding: 100px 0;
  background: var(--off-white);
}

.kontak-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}

/* Info Cards */
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 14px;
  transition: box-shadow var(--transition);
}
.info-card:hover {
  box-shadow: var(--shadow);
}
.info-icon {
  width: 42px;
  height: 42px;
  background: var(--lavender);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mauve);
  flex-shrink: 0;
}
.info-card h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mauve);
  margin-bottom: 4px;
}
.info-card p,
.info-card a {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}
.info-card a:hover {
  color: var(--purple);
}

.kontak-socials {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}
.social-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: var(--radius);
  font-size: 0.84rem;
  font-weight: 500;
  transition: all var(--transition);
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text);
}
.social-btn:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
.social-tiktok:hover {
  border-color: #010101;
  color: #010101;
}
.social-ig:hover {
  border-color: #e1306c;
  color: #e1306c;
}

/* Map */
.kontak-map {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 500px;
}
.kontak-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.85);
}
.map-open-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--white);
  color: var(--plum);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  z-index: 2;
}
.map-open-btn:hover {
  background: var(--purple);
  color: var(--white);
}

/* ════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════ */
.footer {
  background: var(--plum);
  color: rgba(255, 255, 255, 0.8);
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 24px 52px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo-img {
  height: 52px;
  width: 52px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(192, 132, 252, 0.4);
  flex-shrink: 0;
}
.footer-logo-icon-fallback {
  font-size: 28px;
  color: var(--lilac);
}
.footer-logo-texts {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  display: block;
}
.footer-logo-texts small {
  font-size: 0.72rem;
  color: var(--lilac);
  display: block;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 20px;
}
.footer-socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75);
  transition: all var(--transition);
}
.footer-socials a:hover {
  background: var(--mauve);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-links-col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lilac);
  margin-bottom: 18px;
}
.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links-col a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
}
.footer-links-col a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}
.heart {
  color: #f472b6;
}

/* ════════════════════════════════════════════════
   WA FLOAT BUTTON
   ════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 54px;
  height: 54px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: all var(--transition);
}
.wa-float:hover {
  background: #1ebe5d;
  transform: scale(1.1);
}
.wa-tooltip {
  position: absolute;
  right: calc(100% + 10px);
  background: var(--plum);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(6px);
  transition: all var(--transition);
}
.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ════════════════════════════════════════════════
   RESPONSIVE MEDIA QUERIES
   ════════════════════════════════════════════════ */

/* ── TABLET (≤ 1024px) ── */
@media (max-width: 1024px) {
  .produk-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .promo-inner {
    gap: 32px;
  }
  .promo-imgs {
    width: 240px;
    height: 220px;
  }
  .promo-img-1 {
    width: 160px;
    height: 180px;
  }
  .promo-img-2 {
    width: 130px;
    height: 145px;
  }
}

/* ── SMALL TABLET (≤ 860px) ── */
@media (max-width: 860px) {
  :root {
    --nav-h: 64px;
  }

  /* Hamburger */
  .hamburger {
    display: flex;
  }
  .btn-katalog {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 20px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-110%);
    transition: transform var(--transition);
    z-index: 999;
  }
  .nav-links.open {
    transform: translateY(0);
  }
  .nav-link {
    font-size: 1.05rem;
    padding: 8px 0;
  }

  /* Hero */
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 60px 24px 100px;
    gap: 40px;
  }
  .hero-headline {
    font-size: clamp(2.5rem, 8vw, 4rem);
  }
  .hero-sub {
    margin: 0 auto 32px;
  }
  .hero-badge {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }

  .hero-visuals {
    height: 360px;
  }
  .hero-img-main {
    width: 55%;
    height: 260px;
    right: 0;
  }
  .hero-img-row {
    width: 75%;
  }
  .hero-img-sm img {
    height: 130px;
  }
  .hero-img-tall img {
    height: 175px;
  }
  .hero-floating-card {
    display: none;
  }

  /* Toko */
  .toko-cards {
    grid-template-columns: 1fr;
  }

  /* Produk */
  .produk-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Kontak */
  .kontak-grid {
    grid-template-columns: 1fr;
  }
  .kontak-map {
    height: 320px;
    border-radius: var(--radius-lg);
  }

  /* Promo */
  .promo-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .promo-imgs {
    display: none;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ── MOBILE (≤ 540px) ── */
@media (max-width: 540px) {
  .section-title {
    font-size: 1.8rem;
  }

  .hero-grid {
    padding: 48px 16px 80px;
  }
  .hero-headline {
    font-size: 2.8rem;
  }
  .hero-visuals {
    height: 280px;
  }
  .hero-img-main {
    width: 60%;
    height: 200px;
  }
  .hero-img-sm img {
    height: 100px;
  }
  .hero-img-tall img {
    height: 130px;
  }
  .hero-img-row {
    width: 78%;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .produk-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .produk-name {
    font-size: 0.9rem;
  }
  .produk-price {
    font-size: 0.88rem;
  }

  .trust-items {
    flex-direction: column;
    gap: 12px;
  }
  .trust-sep {
    display: none;
  }

  .filter-tabs {
    gap: 8px;
  }
  .filter-tab {
    padding: 7px 16px;
    font-size: 0.8rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-socials a {
    width: 32px;
    height: 32px;
  }

  .kontak-map {
    height: 280px;
    border-radius: var(--radius);
  }

  .promo-text h2 {
    font-size: 1.6rem;
  }

  .toko-card {
    min-height: 150px;
  }
  .toko-info h3 {
    font-size: 1.2rem;
  }

  .wa-float {
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
  }
}

/* ── VERY SMALL (≤ 380px) ── */
@media (max-width: 380px) {
  .hero-headline {
    font-size: 2.3rem;
  }
  .hero-img-main {
    height: 170px;
  }
  .produk-name {
    font-size: 0.82rem;
  }
  .section-title {
    font-size: 1.6rem;
  }
}
