:root {
  --bg: #F7F3EC;
  --bg-alt: #EDE8DE;
  --fg: #1A1612;
  --fg-muted: #6B6259;
  --accent: #C94A0A;
  --accent-light: #E8702A;
  --surface: #FFFFFF;
  --border: #D8D0C4;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.05em;
  color: var(--accent);
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* HERO */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px 60px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}
.hero-overline {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 10vw, 120px);
  line-height: 0.9;
  letter-spacing: 0.01em;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 400px;
  font-weight: 300;
  line-height: 1.7;
}
.hero-image-block {
  position: relative;
}
.hero-img-frame {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 20px 60px rgba(26,22,18,0.15);
}
.hero-product {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--accent);
  color: #fff;
  padding: 16px 20px;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.badge-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.08em;
}
.badge-sub {
  font-size: 11px;
  font-weight: 400;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}
.stat {
  flex: 1;
  text-align: center;
  padding: 0 40px;
}
.stat:first-child { padding-left: 0; }
.stat-num {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--fg);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
  display: block;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

/* SECTION LABELS */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  color: var(--fg);
  letter-spacing: 0.01em;
}

/* DROPS */
.drops {
  background: var(--bg-alt);
  padding: 100px 40px;
}
.drops-header {
  max-width: 1200px;
  margin: 0 auto 60px;
}
.drops-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.drop-card {
  background: var(--surface);
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.drop-img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.drop-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.drop-card:hover .drop-img { transform: scale(1.04); }
.drop-cat {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--accent);
  padding: 16px 16px 4px;
}
.drop-desc {
  font-size: 13px;
  color: var(--fg-muted);
  padding: 4px 16px 16px;
  font-weight: 300;
}

/* WHY */
.why {
  padding: 100px 40px;
}
.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.why-body {
  font-size: 16px;
  color: var(--fg-muted);
  font-weight: 300;
  line-height: 1.8;
  margin-top: 20px;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.why-item { }
.why-icon {
  font-size: 20px;
  color: var(--accent);
  display: block;
  margin-bottom: 10px;
}
.why-item h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}
.why-item p {
  font-size: 14px;
  color: var(--fg-muted);
  font-weight: 300;
  line-height: 1.6;
}

/* PROCESS */
.process {
  background: var(--fg);
  color: var(--bg);
  padding: 100px 40px;
}
.process .section-label { color: var(--accent-light); }
.process .section-title { color: var(--bg); }
.process-steps {
  max-width: 1000px;
  margin: 60px auto 0;
  display: flex;
  align-items: center;
}
.step {
  flex: 1;
}
.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 16px;
}
.step-content h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  color: var(--bg);
}
.step-content p {
  font-size: 13px;
  color: #A09890;
  font-weight: 300;
  line-height: 1.6;
}
.step-connector {
  width: 40px;
  height: 1px;
  background: #3A322C;
  margin: 0 16px;
  flex-shrink: 0;
}

/* CLOSING */
.closing {
  background: var(--accent);
  padding: 100px 40px;
  text-align: center;
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
}
.closing-quote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin-bottom: 28px;
}
.closing-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  font-weight: 300;
  line-height: 1.7;
}

/* FOOTER */
.footer {
  padding: 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.05em;
  color: var(--accent);
}
.footer-note {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 300;
}

/* ADMIN TRACKER */
.admin-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 40px;
}
.admin-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;
}
.admin-header h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  letter-spacing: 0.01em;
  color: var(--fg);
}
.admin-meta {
  font-size: 13px;
  color: var(--fg-muted);
}
.admin-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: opacity 0.15s;
}
.btn:hover { opacity: 0.85; }
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-secondary {
  background: var(--surface);
  color: var(--fg);
  border: 1px solid var(--border);
}
.sort-tabs {
  display: flex;
  gap: 4px;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.sort-tab {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  background: var(--surface);
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}
.sort-tab.active {
  background: var(--fg);
  color: var(--bg);
}
.sort-tab:hover:not(.active) { background: var(--bg-alt); }
.tracker-table-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.tracker-table {
  width: 100%;
  border-collapse: collapse;
}
.tracker-table th {
  padding: 12px 20px;
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.tracker-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--fg);
  vertical-align: middle;
}
.tracker-table tr:last-child td { border-bottom: none; }
.tracker-table tr:hover td { background: var(--bg); }
.td-rank {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--fg-muted);
  width: 48px;
}
.td-title {
  font-weight: 500;
  max-width: 320px;
}
.td-price { color: var(--fg-muted); }
.td-orders {
  font-weight: 600;
  color: var(--accent);
}
.td-revenue {
  font-weight: 700;
  font-size: 15px;
}
.product-img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 2px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  display: block;
}
.no-img {
  width: 48px;
  height: 48px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--fg-muted);
}
.sync-note {
  font-size: 12px;
  color: var(--fg-muted);
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.empty-state {
  text-align: center;
  padding: 80px 40px;
  color: var(--fg-muted);
}
.empty-state h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 0.05em;
  color: var(--fg);
  margin-bottom: 12px;
}
.empty-state p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 28px;
}
.loading-row {
  text-align: center;
  padding: 32px;
  color: var(--fg-muted);
  font-size: 14px;
}

/* MOBILE */
@media (max-width: 768px) {
  .nav { padding: 16px 20px; }
  .hero { padding: 40px 20px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-headline { font-size: 72px; }
  .hero-stats { flex-direction: column; gap: 32px; }
  .stat { padding: 0; text-align: left; }
  .stat-divider { width: 40px; height: 1px; }
  .drops { padding: 60px 20px; }
  .drops-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .why { padding: 60px 20px; }
  .why-inner { grid-template-columns: 1fr; gap: 40px; }
  .process { padding: 60px 20px; }
  .process-steps { flex-direction: column; gap: 32px; }
  .step-connector { width: 40px; height: 1px; margin: 0; transform: rotate(90deg); }
  .closing { padding: 60px 20px; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}