*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0d0d0d;
  --surface: #1a1a1a;
  --surface2: #242424;
  --gold: #c9a96e;
  --gold-light: #e8c97a;
  --purple: #7c3aed;
  --text: #f0f0f0;
  --text-muted: #888;
  --radius: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* Header */
.header {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1230 100%);
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
  padding: 20px 16px 16px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.logo-eclipse { color: var(--text); }
.logo-prime { color: var(--gold); margin-left: 4px; }

.header-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Hero */
.hero {
  padding: 32px 20px 24px;
  text-align: center;
  background: linear-gradient(180deg, #1a1230 0%, var(--bg) 100%);
}

.hero-badge {
  display: inline-block;
  background: rgba(201, 169, 110, 0.12);
  color: var(--gold);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 16px;
}

.hero-title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #fff 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 320px;
  margin: 0 auto;
}

/* Products */
.products {
  padding: 24px 16px 32px;
}

.section-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

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

.product-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
  transition: transform 0.2s, border-color 0.2s;
}

.product-card:active { transform: scale(0.98); }

.product-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(13,13,13,0.85);
  border: 1px solid rgba(201,169,110,0.3);
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
  z-index: 1;
}

.product-img-wrap {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--surface2);
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

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

.product-info {
  padding: 10px 10px 12px;
}

.product-name {
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 6px;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price {
  margin-bottom: 10px;
}

.price-old {
  display: block;
  font-size: 0.68rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-now {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
}

.btn-shopee {
  display: block;
  background: linear-gradient(135deg, #ee4d2d 0%, #d63518 100%);
  color: #fff;
  text-decoration: none;
  text-align: center;
  padding: 8px 6px;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: opacity 0.15s;
}

.btn-shopee:active { opacity: 0.85; }

/* Trust bar */
.trust-bar {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  padding: 20px 16px;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: var(--surface);
}

.trust-item {
  font-size: 0.72rem;
  color: var(--text-muted);
  padding: 6px 12px;
  text-align: center;
}

/* Footer */
.footer {
  text-align: center;
  padding: 20px 16px;
  font-size: 0.68rem;
  color: var(--text-muted);
}

/* Desktop */
@media (min-width: 600px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-title { font-size: 2.2rem; }
}

@media (min-width: 900px) {
  .product-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .products { padding: 32px 24px 48px; max-width: 1200px; margin: 0 auto; }
}
