/* =========================================================
   DESIGN TOKENS - Gaya Neobrutalism
   ========================================================= */
:root {
  --ink: #14171a;
  --paper: #fdfcf6;
  --line: #14171a;

  --mint: #52D9C4;
  --mint-dark: #2FB89F;
  --yellow: #FFD54A;
  --yellow2: #FFC93C;
  --pink: #FF7FB0;
  --green: #7BE38B;
  --green2: #8FE38B;
  --cyan: #63D9F2;
  --purple: #C6A8FF;
  --orange: #FF9F5A;

  --color-success: #2FB89F;
  --color-danger: #b3402f;

  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --bw: 3px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --shadow: 6px 6px 0 var(--ink);
  --shadow-sm: 4px 4px 0 var(--ink);
  --shadow-hover: 8px 8px 0 var(--ink);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 3px solid var(--ink); outline-offset: 2px; }
svg { width: 100%; height: 100%; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* Warna kategori (dipakai lewat class c-*) */
.c-yellow { background: var(--yellow); color: var(--ink); }
.c-yellow2 { background: var(--yellow2); color: var(--ink); }
.c-pink { background: var(--pink); color: var(--ink); }
.c-green { background: var(--green); color: var(--ink); }
.c-green2 { background: var(--green2); color: var(--ink); }
.c-cyan { background: var(--cyan); color: var(--ink); }
.c-purple { background: var(--purple); color: var(--ink); }
.c-orange { background: var(--orange); color: var(--ink); }

.tilt-a { transform: rotate(-2deg); }
.tilt-b { transform: rotate(1.5deg); }
.tilt-c { transform: rotate(-1deg); }
.tilt-d { transform: rotate(2deg); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 12px;
  z-index: 40;
  padding: 0 16px;
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  background: var(--paper);
  border: var(--bw) solid var(--ink);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  padding: 10px 10px 10px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  white-space: nowrap;
}
.header-nav {
  display: flex;
  gap: 4px;
  background: #f1efe4;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 4px;
}
.header-nav a {
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
}
.header-nav a:hover { background: var(--yellow); }

.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--paper);
  border: var(--bw) solid var(--ink);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: transform 0.12s ease;
  flex-shrink: 0;
}
.cart-btn:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow-sm); }
.cart-badge {
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  background: var(--mint);
  border-bottom: var(--bw) solid var(--ink);
  padding: 56px 20px 64px;
  overflow: hidden;
}
.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.7fr;
  gap: 40px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 5px 14px;
  margin: 0 0 18px;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.08;
  margin: 0 0 16px;
}
.hero-sub {
  font-size: 1.05rem;
  font-weight: 500;
  max-width: 42ch;
  margin: 0 0 26px;
}
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 700;
  padding: 14px 26px;
  border-radius: 999px;
  border: var(--bw) solid var(--ink);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-hero:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow); background: var(--yellow); color: var(--ink); }

.hero-stack {
  position: relative;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stack-card {
  position: absolute;
  width: 110px;
  height: 110px;
  border: var(--bw) solid var(--ink);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}
.stack-card:nth-child(1) { top: 10px; left: 20%; }
.stack-card:nth-child(2) { top: 70px; right: 10%; width: 130px; height: 130px; padding: 34px; }
.stack-card:nth-child(3) { bottom: 0; left: 5%; }

/* =========================================================
   LACAK PESANAN
   ========================================================= */
.track-order {
  background: #f1efe4;
  border-bottom: var(--bw) solid var(--ink);
  padding: 26px 20px;
}
.track-order-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.track-order-inner h3 { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; margin: 0 0 4px; }
.track-order-inner p { font-size: 0.85rem; font-weight: 500; margin: 0 0 16px; color: #6b6b63; }
.track-order-form { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.track-order-form input {
  flex: 1;
  min-width: 220px;
  padding: 12px 16px;
  border: var(--bw) solid var(--ink);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.9rem;
}
.track-order-form input:focus { outline: none; box-shadow: var(--shadow-sm); }
.track-order-form .btn-hero { padding: 12px 22px; }
.track-order-result {
  margin-top: 18px;
  background: var(--paper);
  border: var(--bw) solid var(--ink);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 18px 20px;
  text-align: left;
}
.track-order-result .tr-row { display: flex; justify-content: space-between; padding: 5px 0; font-size: 0.88rem; font-weight: 600; }
.track-order-result .tr-error { color: #b3402f; font-weight: 700; text-align: center; }

/* =========================================================
   TICKER
   ========================================================= */
.ticker-wrap {
  background: var(--ink);
  border-bottom: var(--bw) solid var(--ink);
  overflow: hidden;
  padding: 14px 0;
}
.ticker-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: ticker-scroll 24s linear infinite;
  width: max-content;
}
.ticker-track span {
  color: var(--yellow);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.ticker-track span.dot { color: var(--paper); }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================================================
   FITUR
   ========================================================= */
.features { padding: 56px 20px 20px; }
.features-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.feature-card {
  border: var(--bw) solid var(--ink);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 24px;
  transition: transform 0.15s ease;
}
.feature-card:hover { transform: translateY(-4px) rotate(0deg) !important; }
.feature-card svg { width: 30px; height: 30px; margin-bottom: 14px; }
.feature-card h3 { font-family: var(--font-display); font-size: 1.05rem; margin: 0 0 6px; }
.feature-card p { font-size: 0.88rem; font-weight: 500; margin: 0; opacity: 0.85; }

/* =========================================================
   STATS
   ========================================================= */
.stats { padding: 40px 20px; }
.stats-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.stat-box {
  border: var(--bw) solid var(--ink);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 26px 20px;
  text-align: center;
}
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.2rem;
  line-height: 1;
}
.stat-label {
  display: block;
  margin-top: 8px;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* =========================================================
   CARA ORDER
   ========================================================= */
.how-it-works { padding: 30px 20px 60px; }
.how-inner { max-width: 1180px; margin: 0 auto; }
.section-eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--mint-dark);
  margin: 0 0 8px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin: 0 0 32px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.step-card {
  border: var(--bw) solid var(--ink);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 26px 22px;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-weight: 700;
  margin-bottom: 14px;
}
.step-card h3 { font-family: var(--font-display); font-size: 1.05rem; margin: 0 0 6px; }
.step-card p { font-size: 0.88rem; font-weight: 500; margin: 0; opacity: 0.85; }

/* =========================================================
   KATEGORI
   ========================================================= */
.category-bar {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
.category-bar::-webkit-scrollbar { display: none; }
.category-chip {
  flex-shrink: 0;
  background: var(--paper);
  border: 2px solid var(--ink);
  color: var(--ink);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.12s ease;
}
.category-chip.active,
.category-chip:hover {
  background: var(--ink);
  color: var(--paper);
}

/* =========================================================
   ETALASE / GRID PRODUK
   ========================================================= */
.shop-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 20px 90px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 24px;
  margin-top: 10px;
}
.empty-state { text-align: center; color: #7a8079; padding: 60px 20px; font-weight: 600; }

.product-card {
  border: var(--bw) solid var(--ink);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  background: var(--paper);
}
.product-card:hover { transform: translate(-3px, -3px) rotate(0deg) !important; box-shadow: var(--shadow-hover); }

.product-image {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: var(--bw) solid var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
}
.product-image img { width: 100%; height: 100%; object-fit: cover; }

.product-body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; background: var(--paper); }
.product-category {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 3px 10px;
  border-radius: 999px;
  border: 2px solid var(--ink);
}
.product-name {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.28;
}
.product-stock { font-size: 0.76rem; font-weight: 600; color: #6b6b63; margin-top: -4px; }
.product-stock.low { color: #b3402f; }

.product-footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 8px; flex-wrap: wrap; }

.price-tag {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid var(--ink);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  background: var(--yellow);
}
.price-mono { font-family: var(--font-mono); font-weight: 600; }

.qty-stepper {
  display: flex;
  align-items: center;
  border: 2px solid var(--ink);
  border-radius: 999px;
  overflow: hidden;
}
.qty-stepper button {
  background: var(--paper);
  border: none;
  width: 28px;
  height: 28px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}
.qty-stepper button:hover { background: var(--yellow); }
.qty-stepper span { width: 30px; text-align: center; font-family: var(--font-mono); font-size: 0.85rem; font-weight: 600; }

.btn-add {
  width: 100%;
  background: var(--ink);
  color: var(--paper);
  border: 2px solid var(--ink);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
  transition: background 0.12s ease;
}
.btn-add:hover { background: var(--mint-dark); }
.btn-add:disabled { background: #c7c2b1; border-color: #c7c2b1; cursor: not-allowed; }

/* =========================================================
   FOOTER + WHATSAPP FLOAT + TOAST
   ========================================================= */
.site-footer {
  text-align: center;
  padding: 26px 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #6b6b63;
  border-top: var(--bw) solid var(--ink);
}

.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border: var(--bw) solid var(--ink);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  z-index: 50;
  transition: transform 0.15s ease;
}
.whatsapp-float:hover { transform: translate(-2px, -2px); }

.proof-toast {
  position: fixed;
  bottom: 22px;
  left: 22px;
  z-index: 50;
  background: var(--paper);
  border: var(--bw) solid var(--ink);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 280px;
  animation: proof-in 0.3s ease;
}
@keyframes proof-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.proof-icon {
  width: 30px; height: 30px;
  background: var(--green);
  border: 2px solid var(--ink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}
.proof-title { font-size: 0.8rem; font-weight: 700; margin: 0; }
.proof-sub { font-size: 0.74rem; font-weight: 500; color: #6b6b63; margin: 2px 0 0; }
.proof-close { background: none; border: none; font-size: 1rem; color: #6b6b63; position: absolute; top: 6px; right: 8px; }

/* =========================================================
   OVERLAY / DRAWER / MODAL
   ========================================================= */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 23, 26, 0.5);
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.overlay.visible { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(400px, 100%);
  background: var(--paper);
  border-left: var(--bw) solid var(--ink);
  z-index: 70;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.25s ease;
}
.cart-drawer.open { transform: translateX(0); }

.cart-drawer-header {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: var(--bw) solid var(--ink);
}
.cart-drawer-header h2 { font-family: var(--font-display); font-size: 1.2rem; margin: 0; }
.icon-btn { background: none; border: none; font-size: 1.6rem; line-height: 1; color: var(--ink); }

.cart-items { flex: 1; overflow-y: auto; padding: 12px 20px; }
.cart-empty-msg { color: #8a8f86; text-align: center; margin-top: 40px; font-weight: 600; }

.cart-item { display: flex; gap: 12px; padding: 14px 0; border-bottom: 2px solid #eee7d5; }
.cart-item-thumb { width: 56px; height: 56px; background: var(--yellow); border: 2px solid var(--ink); border-radius: var(--radius-sm); flex-shrink: 0; overflow: hidden; }
.cart-item-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-info .name { font-weight: 700; font-size: 0.9rem; margin: 0 0 4px; }
.cart-item-info .unit-price { font-family: var(--font-mono); font-size: 0.78rem; color: #7a8079; }
.cart-item-controls { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.remove-item-btn { background: none; border: none; color: #b3402f; font-size: 0.78rem; font-weight: 700; }

.cart-footer { padding: 18px 20px; border-top: var(--bw) solid var(--ink); }
.cart-total-row { display: flex; justify-content: space-between; align-items: center; font-weight: 700; margin-bottom: 14px; font-size: 1.05rem; }

.btn-primary {
  background: var(--yellow);
  color: var(--ink);
  border: var(--bw) solid var(--ink);
  padding: 13px 20px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.95rem;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.btn-primary:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow-sm); }
.btn-primary:disabled { background: #ddd6c2; color: #a29c88; border-color: #ddd6c2; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-secondary {
  display: block;
  text-align: center;
  background: var(--paper);
  color: var(--ink);
  border: 2px solid var(--ink);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.btn-block { width: 100%; }

.modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -46%);
  width: min(460px, 92vw);
  max-height: 88vh;
  overflow-y: auto;
  background: var(--paper);
  border: var(--bw) solid var(--ink);
  border-radius: var(--radius-lg);
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: var(--shadow-hover);
}
.modal.open { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%); }

.modal-header { padding: 20px 22px 0; display: flex; align-items: center; justify-content: space-between; }
.modal-header h2 { font-family: var(--font-display); font-size: 1.25rem; margin: 0; }

.modal-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 14px; }
.modal-body label { font-size: 0.85rem; font-weight: 700; display: flex; flex-direction: column; gap: 6px; }
.modal-body input, .modal-body textarea {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 400;
  padding: 10px 12px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  background: var(--paper);
  resize: vertical;
}
.modal-body input:focus, .modal-body textarea:focus { outline: none; box-shadow: var(--shadow-sm); }

.checkout-summary { background: var(--yellow); border: 2px solid var(--ink); padding: 12px 14px; border-radius: var(--radius-sm); }
.form-error { background: #fbeae7; border: 2px solid #b3402f; color: #b3402f; padding: 10px 12px; border-radius: var(--radius-sm); font-size: 0.85rem; margin: 0; font-weight: 600; }

.modal-confirm { text-align: center; }
.confirm-body { align-items: center; padding-top: 22px; }
.confirm-icon {
  width: 52px; height: 52px;
  border-radius: 999px;
  background: var(--green);
  border: 2px solid var(--ink);
  color: var(--ink);
  font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 6px;
}
.modal-confirm h2 { font-family: var(--font-display); margin: 0 0 4px; }
.order-number-mono {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  background: var(--yellow);
  border: 2px solid var(--ink);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.03em;
}
.confirm-hint { font-size: 0.8rem; color: #7a8079; margin: 0 0 8px; font-weight: 500; }

.qr-total-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  margin: 4px 0 14px;
  font-size: 0.8rem;
  font-weight: 700;
}
.qr-total-amount { font-size: 1.3rem; }
.qr-image {
  width: 220px;
  height: 220px;
  object-fit: contain;
  border: var(--bw) solid var(--ink);
  border-radius: var(--radius-sm);
  background: #fff;
  margin: 0 auto 14px;
}
.qr-instruction {
  text-align: left;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.7;
  background: #f1efe4;
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin: 0 0 16px;
}

/* =========================================================
   RESPONSIF
   ========================================================= */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-stack { height: 180px; margin-top: 10px; }
  .features-inner, .steps-grid, .stats-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .site-header { top: 8px; padding: 0 12px; }
  .header-inner { padding: 8px 8px 8px 16px; }
  .header-nav { display: none; }
  .cart-btn span:not(.cart-badge) { display: none; }
  .hero { padding: 40px 16px 44px; }
  .features, .stats, .how-it-works { padding-left: 16px; padding-right: 16px; }
  .features-inner, .steps-grid, .stats-inner { grid-template-columns: 1fr; }
  .shop-main { padding: 16px 16px 80px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-body { padding: 10px 10px 12px; }
  .product-name { font-size: 0.88rem; }
  .cart-drawer { width: 100%; }
  .whatsapp-float { bottom: 16px; right: 16px; width: 50px; height: 50px; }
  .proof-toast { left: 12px; right: 12px; bottom: 12px; max-width: none; }
  .tilt-a, .tilt-b, .tilt-c, .tilt-d { transform: none; }
}

@media (min-width: 1400px) {
  .product-grid { grid-template-columns: repeat(5, 1fr); }
}
