:root {
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --amber-400: #fbbf24;
  --font-display: "Baloo 2", sans-serif;
  --font-sans: "Inter", sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--slate-100);
  font-family: var(--font-sans);
  color: var(--slate-900);
  -webkit-font-smoothing: antialiased;
}

.page {
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
  background: var(--slate-50);
  box-shadow: 0 0 40px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}

.hero {
  text-align: center;
  padding: 32px 40px 8px;
}

.hero .logo {
  display: block;
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 0 auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.content {
  flex: 1;
  padding: 24px 20px 8px;
}

.promo-banner {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  margin-bottom: 24px;
}

.shopee-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff7337, #ee4d2d);
  color: white;
  text-decoration: none;
  margin-bottom: 28px;
  box-shadow: 0 10px 24px rgba(238,77,45,0.28);
  transition: transform 0.15s;
}
.shopee-cta:hover { transform: translateY(-2px); }

.shopee-cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
}
.shopee-cta-icon svg { width: 24px; height: 24px; }

.shopee-cta-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.shopee-cta-text strong {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
}
.shopee-cta-text small {
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.arrow-up-right {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.9;
}

.instagram-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff7337, #ee4d2d);
  color: white;
  text-decoration: none;
  margin-top: 8px;
  box-shadow: 0 10px 24px rgba(238,77,45,0.28);
  transition: transform 0.15s;
}
.instagram-cta:hover { transform: translateY(-2px); }

.instagram-cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: white;
  color: var(--slate-800);
  flex-shrink: 0;
}
.instagram-cta-icon svg { width: 22px; height: 22px; }

.instagram-cta-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}
.instagram-cta-text small {
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.9;
}
.instagram-cta-text strong {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.section { margin-bottom: 28px; }

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--slate-900);
}

.badge {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--slate-950);
  color: var(--amber-400);
  letter-spacing: 0.025em;
}

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

.product-card {
  display: block;
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s, box-shadow 0.15s;
}
.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15,23,42,0.08);
}

.product-img {
  aspect-ratio: 1 / 1;
  width: 100%;
  background-color: var(--slate-100);
  background-size: cover;
  background-position: center;
}

.product-body { padding: 8px 10px 10px; }

.product-name {
  margin: 0 0 4px;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--slate-800);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.shopee-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ee4d2d;
}
.shopee-link svg { width: 13px; height: 13px; }

.footer {
  text-align: center;
  padding: 20px 20px 32px;
  font-size: 0.75rem;
  color: var(--slate-400);
}

@media (max-width: 480px) {
  .page { box-shadow: none; }
}
