/* ─── Variables ──────────────────────────────────────────────────────────── */
:root {
  --bg: #f6f4ef;
  --ink: #1c1a17;
  --accent: #c7462b;
  --accent-dark: #9d3520;
  --gold: #c9a76a;
  --soft: #ffffff;
  --muted: #6b6257;
  --line: #e3ddd3;
  --shadow: 0 18px 35px rgba(28, 26, 23, 0.08);
  --radius: 20px;
  --radius-sm: 12px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #fff9f2 0%, var(--bg) 55%, #efe8dd 100%);
  color: var(--ink);
}

a { color: inherit; text-decoration: none; }

.container {
  width: min(1100px, 90vw);
  margin: 0 auto;
}

/* ─── Logo ───────────────────────────────────────────────────────────────── */
.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  text-decoration: none;
}
.logo img { height: 34px; width: auto; display: block; }
.logo-icon { display: block; flex-shrink: 0; border-radius: 9px; }
.logo-text { font-size: 1.3rem; font-weight: 800; letter-spacing: 0.01em; }
.logo-dark { color: #1c1a17; }
.logo-gold { color: var(--gold); }

/* ─── Site Header ────────────────────────────────────────────────────────── */
.site-header {
  background: var(--soft);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.9rem;
}
nav a { color: var(--muted); transition: color 0.15s; }
nav a:hover { color: var(--ink); }
.nav-cta { padding: 0.5rem 1.2rem !important; font-size: 0.88rem !important; }

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.15s;
  background: none;
  font-family: inherit;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn.primary { background: var(--accent); color: white; border-color: var(--accent); }
.btn.primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.btn.ghost { background: transparent; color: var(--accent); }

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  padding: 5rem 0 3rem;
}
.hero-content { max-width: 660px; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0 0 0.5rem;
}
h1 {
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  margin: 0.6rem 0 1rem;
  line-height: 1.15;
}
.lead {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 2rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.tagline {
  font-size: 0.88rem;
  color: var(--muted);
}

/* ─── How it works / Steps ────────────────────────────────────────────────── */
.steps {
  padding: 4rem 0;
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.step-card { position: relative; padding-top: 3rem; }
.step-num {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
}

/* ─── Features ───────────────────────────────────────────────────────────── */
.features {
  padding: 4rem 0;
}
.feature-card {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.feature-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.feature-card h4 { margin: 0 0 0.4rem; font-size: 1rem; }
.feature-card p  { margin: 0; color: var(--muted); font-size: 0.92rem; line-height: 1.5; }

/* ─── Grids ──────────────────────────────────────────────────────────────── */
.grid-3 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.grid-2 {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* ─── Cards ──────────────────────────────────────────────────────────────── */
.card {
  background: var(--soft);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

/* ─── Pricing Section ────────────────────────────────────────────────────── */
.pricing { padding: 4rem 0; background: var(--soft); border-top: 1px solid var(--line); }
.price-card {
  background: var(--bg);
  padding: 2.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  max-width: 480px;
  box-shadow: var(--shadow);
}
.price-highlight {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.price-highlight span {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--muted);
}
.currency-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.8rem 0 1.2rem;
}
.currency-list span {
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
  font-size: 0.82rem;
  color: var(--muted);
}
.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
  display: grid;
  gap: 0.6rem;
}
.price-features li { font-size: 0.95rem; color: var(--ink); }
.price-card .note { font-size: 0.82rem; color: var(--muted); margin-top: 0.5rem; }

/* ─── CTA Banner ─────────────────────────────────────────────────────────── */
.cta-banner {
  padding: 5rem 0;
  text-align: center;
}
.cta-banner h2 { font-size: clamp(1.6rem, 2.5vw, 2.4rem); margin: 0 0 0.8rem; }
.cta-banner p  { color: var(--muted); margin: 0 0 2rem; font-size: 1.05rem; }

/* ─── Forms ──────────────────────────────────────────────────────────────── */
.form-page {
  padding: 3rem 0 4rem;
  max-width: 640px;
}
.form {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}
.form.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
}
.form input,
.form textarea,
.form select {
  padding: 0.8rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: white;
  font-size: 1rem;
  font-family: inherit;
}
.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}
.form .full { grid-column: 1 / -1; }

/* ─── Alerts ─────────────────────────────────────────────────────────────── */
.alert {
  background: #fff2e8;
  border: 1px solid #f1d1bf;
  color: #7a3f2d;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  margin-top: 1rem;
}
.alert-success {
  background: #e3f4dc;
  border-color: #b7dba8;
  color: #296134;
}
.alert-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.helper {
  margin-top: 1rem;
  color: var(--muted);
  display: flex;
  gap: 0.5rem;
}
.verify-reminder { color: #8a4f0a; font-weight: 600; }

/* ─── Badges ─────────────────────────────────────────────────────────────── */
.badge {
  background: #f0e7d8;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
}
.status-badge {
  display: inline-block;
  margin-left: 0.6rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: #f0e7d8;
  color: #5b3b14;
  font-size: 0.75rem;
  font-weight: 700;
}
.status-badge.trial {
  background: #e3f4dc;
  color: #296134;
}

/* ─── Dashboard ──────────────────────────────────────────────────────────── */
.dashboard { padding: 2.5rem 0 4rem; }
.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.5rem;
}
.dash-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.mono {
  font-family: "Courier New", monospace;
  background: #f9f5ee;
  padding: 0.2rem 0.4rem;
  border-radius: 6px;
}

/* ─── Analytics ──────────────────────────────────────────────────────────── */
.analytics { margin: 1.5rem 0; }
.analytics-card h3 { margin-top: 0; }
.analytics-card form { margin-top: 1rem; }
.analytics-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  margin-top: 1rem;
}
.analytics-grid .label { margin: 0; font-size: 0.82rem; color: var(--muted); }
.analytics-grid .value { margin: 0.2rem 0 0; font-size: 1.5rem; font-weight: 700; }

/* ─── Product Cards (Dashboard) ──────────────────────────────────────────── */
.product-card {
  background: var(--soft);
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 1rem;
  display: grid;
  gap: 0.8rem;
}
.product-info h4 { margin: 0; }
.clicks { font-size: 0.85rem; color: var(--muted); }
.product-card .badge.best { display: inline-block; margin-top: 0.4rem; }
.product-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.product-image {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin: 0.6rem 0;
}

/* ─── Storefront ─────────────────────────────────────────────────────────── */
.store-banner { line-height: 0; }
.store-banner img {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  display: block;
}
.store-header {
  padding: 2rem 0 1.5rem;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}
.store-header .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
}
.store-about {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0.4rem 0 0;
  max-width: 520px;
}
.store-grid {
  padding: 2.5rem 0 4rem;
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.store-grid .product-card { display: flex; flex-direction: column; gap: 1rem; }
.store-grid .product-image { max-height: 240px; }
.store-grid .badge {
  align-self: flex-start;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.store-grid .badge.new { background: #ffe7c8; color: #8a4f0a; }
.store-grid .badge.best { background: #e3f4dc; color: #296134; }

/* ─── Top Sellers Shelf ──────────────────────────────────────────────────── */
.top-sellers { margin: 1rem 0 2rem; }
.top-seller-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.top-seller-card {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: var(--soft);
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 0.8rem;
}
.top-seller-card img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

/* ─── Sort Toolbar ───────────────────────────────────────────────────────── */
.store-toolbar {
  display: flex;
  justify-content: flex-end;
  margin: 1.5rem 0 1rem;
}
.sort-group {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.sort-group a {
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid transparent;
}
.sort-group a.active { border-color: var(--accent); color: var(--accent); }
.sort-mobile { display: none; }
.sort-mobile label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--muted);
}
.sort-mobile select {
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: white;
}

/* ─── Price label ────────────────────────────────────────────────────────── */
.price { font-weight: 700; color: var(--accent); }

/* ─── Billing History ────────────────────────────────────────────────────── */
.sub-history {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--muted);
}
.history-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.8rem;
  font-size: 0.9rem;
}
.history-table th,
.history-table td {
  text-align: left;
  padding: 0.4rem 0.2rem;
  border-bottom: 1px solid var(--line);
}

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--soft);
  border-top: 1px solid var(--line);
  padding: 2.5rem 0 2rem;
  color: var(--muted);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 1.5rem;
}
.footer-brand p { margin: 0.4rem 0 0; font-size: 0.85rem; }
.footer-links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  font-size: 0.88rem;
}
.footer-links a:hover { color: var(--ink); }
.footer-copy {
  font-size: 0.82rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  margin: 0;
}

/* ─── Search ─────────────────────────────────────────────────────────────── */
.search-wrap {
  margin: 1rem 0;
}
.search-input {
  width: 100%;
  max-width: 420px;
  padding: 0.7rem 1rem 0.7rem 2.4rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b6257' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.099zm-5.242 1.856a5.5 5.5 0 1 1 0-11 5.5 5.5 0 0 1 0 11z'/%3E%3C/svg%3E") 0.8rem center / 16px no-repeat;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.search-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(199, 70, 43, 0.12);
}

/* ─── Category Tabs ──────────────────────────────────────────────────────── */
.cat-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}
.cat-tab {
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: white;
  font-size: 0.88rem;
  color: var(--muted);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.cat-tab:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.cat-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
  font-weight: 600;
}

/* ─── Stock Status ───────────────────────────────────────────────────────── */
.stock-status {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  margin: 0.4rem 0;
}
.stock-status.in  { background: #e3f4dc; color: #296134; }
.stock-status.out { background: #fce8e8; color: #8a2a2a; }

/* ─── Cart Drawer ────────────────────────────────────────────────────────── */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 360px;
  max-width: 95vw;
  height: 100vh;
  background: var(--soft);
  border-left: 1px solid var(--line);
  box-shadow: -8px 0 32px rgba(28, 26, 23, 0.14);
  z-index: 999;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
  font-size: 1.05rem;
}
.cart-header button {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--muted);
  padding: 0 0.3rem;
  line-height: 1;
}
.cart-header button:hover { color: var(--ink); }
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
  list-style: none;
  margin: 0;
  display: grid;
  gap: 0.8rem;
}
.cart-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 0.6rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}
.cart-item:last-child { border-bottom: none; }
.cart-item-name { font-weight: 600; }
.cart-item-price { color: var(--accent); font-weight: 700; }
.qty-btn {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 6px;
  width: 28px;
  height: 28px;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: background 0.15s;
}
.qty-btn:hover { background: var(--line); }
.qty-group {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
}
.cart-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.cart-count {
  background: var(--accent);
  color: white;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  position: absolute;
  top: -6px;
  right: -6px;
  line-height: 1;
}

/* ─── Theme Selector ─────────────────────────────────────────────────────── */
.theme-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin: 1.2rem 0;
}
.theme-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem 0.8rem;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  background: white;
}
.theme-option input[type="radio"] { display: none; }
.theme-option:hover { border-color: var(--accent); box-shadow: 0 4px 12px rgba(0,0,0,.07); }
.theme-option.selected { border-color: var(--accent); box-shadow: 0 4px 16px rgba(199,70,43,.18); }
.theme-swatch {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid rgba(0,0,0,.08);
  display: block;
}

/* ─── Category Management ────────────────────────────────────────────────── */
.cat-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: grid;
  gap: 0.6rem;
}
.cat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 1rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
}
.cat-item span { font-weight: 600; }
.cat-item form { display: inline; }

/* ─── Storefront Store-header cart button row ─────────────────────────────── */
.store-actions {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HOMEPAGE (hp-*)  — all styles prefixed hp- to avoid dashboard conflicts
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hp-hero {
  background: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0 4.5rem;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.hp-hero-decoration {
  position: absolute;
  top: -200px;
  right: -120px;
  width: 680px;
  height: 680px;
  background: radial-gradient(circle, rgba(199,70,43,.055) 0%, transparent 68%);
  pointer-events: none;
  border-radius: 50%;
}
.hp-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Eyebrow chip */
.hp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #fff4f2;
  border: 1px solid #ffd5cc;
  color: var(--accent);
  padding: 0.32rem 0.9rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0 0 1.4rem;
  text-transform: uppercase;
}
.hp-h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin: 0 0 1.2rem;
  color: var(--ink);
}
.hp-accent-word {
  font-style: normal;
  background: linear-gradient(135deg, #f4a261, #c7462b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hp-lead {
  font-size: 1.08rem;
  line-height: 1.72;
  color: var(--muted);
  margin: 0 0 2rem;
  max-width: 460px;
}
.hp-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}
.hp-play-btn {
  color: var(--muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.15s;
  white-space: nowrap;
}
.hp-play-btn:hover { color: var(--ink); }
.hp-trust-small {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--muted);
}
.hp-trust-small span { white-space: nowrap; }
.hp-flags {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.03em;
  margin-top: 0.5rem;
}

/* Browser-frame mockup */
.hp-hero-mockup {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}
.hp-browser-frame {
  width: 100%;
  max-width: 500px;
  background: white;
  border-radius: 14px;
  box-shadow: 0 28px 70px rgba(0,0,0,.14), 0 0 0 1px rgba(0,0,0,.07);
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.hp-browser-bar {
  background: #efefef;
  padding: 9px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid #e0e0e0;
}
.hp-dot { width: 11px; height: 11px; border-radius: 50%; display: block; flex-shrink: 0; }
.hp-dot-r { background: #ff5f57; }
.hp-dot-y { background: #febc2e; }
.hp-dot-g { background: #28c840; }
.hp-browser-url {
  background: white;
  border-radius: 5px;
  padding: 3px 10px;
  font-size: 0.7rem;
  color: #888;
  flex: 1;
  max-width: 210px;
  border: 1px solid #ddd;
  font-family: "Courier New", monospace;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin: 0 auto;
}
.hp-bc-header {
  background: #1c1a17;
  padding: 11px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hp-bc-store-name { color: white; font-weight: 700; font-size: 0.82rem; letter-spacing: .01em; }
.hp-bc-wa-badge {
  background: #25d366;
  color: white;
  font-size: 0.62rem;
  padding: 3px 9px;
  border-radius: 999px;
  font-weight: 700;
}
.hp-bc-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 10px;
  background: #f6f4ef;
}
.hp-bc-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #ede8e0;
}
.hp-bc-card img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  display: block;
}
.hp-bc-card-info { padding: 6px 7px 7px; }
.hp-bc-card-info span   { font-size: 0.62rem; font-weight: 600; color: #1c1a17; display: block; line-height: 1.3; }
.hp-bc-card-info strong { font-size: 0.64rem; color: #c7462b; font-weight: 700; display: block; margin-top: 2px; }
.hp-bc-footer {
  background: white;
  padding: 9px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #ede8e0;
}
.hp-bc-order-btn {
  background: #c7462b;
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 999px;
  white-space: nowrap;
}
.hp-bc-stat { font-size: 0.65rem; color: #aaa; }

/* Floating badge on mockup */
.hp-hero-badge {
  position: absolute;
  bottom: 22px;
  left: -14px;
  background: white;
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: 0 12px 32px rgba(0,0,0,.13);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
  border: 1px solid var(--line);
}
.hp-hero-badge-icon { font-size: 1.5rem; line-height: 1; }
.hp-hero-badge strong { display: block; font-size: 0.88rem; color: var(--ink); line-height: 1.3; }
.hp-hero-badge span   { font-size: 0.72rem; color: var(--muted); }

/* ─── Trust strip ────────────────────────────────────────────────────────── */
.hp-trust {
  background: #f7f8fa;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.4rem 0;
}
.hp-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.hp-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.hp-trust-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.hp-trust-item > span:last-child {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.hp-trust-divider { width: 1px; height: 44px; background: var(--line); }

/* ─── Section shared typography ──────────────────────────────────────────── */
.hp-section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  color: var(--accent);
  margin: 0 0 0.6rem;
  font-weight: 700;
}
.hp-section-title {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin: 0 0 2.5rem;
  color: var(--ink);
  max-width: 620px;
}

/* ─── How it works ───────────────────────────────────────────────────────── */
.hp-steps { padding: 5rem 0; background: #ffffff; }
.hp-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.hp-step-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hp-step-card:hover { transform: translateY(-5px); box-shadow: 0 28px 50px rgba(28,26,23,.12); }
.hp-step-img-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
}
.hp-step-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.hp-step-card:hover .hp-step-img-wrap img { transform: scale(1.05); }
.hp-step-num {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 38px;
  height: 38px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 4px 14px rgba(199,70,43,.45);
}
.hp-step-body { padding: 1.5rem; }
.hp-step-body h3 { margin: 0 0 0.5rem; font-size: 1.1rem; }
.hp-step-body p  { margin: 0; color: var(--muted); font-size: 0.92rem; line-height: 1.65; }

/* ─── Demo video ─────────────────────────────────────────────────────────── */
.hp-demo {
  padding: 5rem 0;
  background: #0f0e0b;
  text-align: center;
  color: white;
}
.hp-demo .hp-section-eyebrow { color: var(--gold); }
.hp-demo .hp-section-title   { color: white; margin-left: auto; margin-right: auto; }
.hp-video-wrap {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.55);
  aspect-ratio: 16 / 9;
  background: #1c1c1e;
}
.hp-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.hp-demo-note { margin-top: 1.2rem; font-size: 0.78rem; color: #555; }
.hp-demo-note code { color: #888; background: #1c1c1e; padding: 1px 5px; border-radius: 4px; }

/* ─── Feature split ──────────────────────────────────────────────────────── */
.hp-feature-split { padding: 5rem 0; background: white; }
.hp-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
.hp-split-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(28,26,23,.1);
}
.hp-split-img img { width: 100%; height: 500px; object-fit: cover; display: block; }
.hp-feat-list {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
  display: grid;
  gap: 1.4rem;
}
.hp-feat-list li { display: flex; gap: 1rem; align-items: flex-start; }
.hp-feat-icon   { font-size: 1.5rem; flex-shrink: 0; margin-top: 0.1rem; }
.hp-feat-list b { display: block; margin: 0 0 0.25rem; font-size: 1rem; }
.hp-feat-list p { margin: 0; color: var(--muted); font-size: 0.9rem; line-height: 1.55; }

/* ─── Gallery ────────────────────────────────────────────────────────────── */
.hp-gallery { padding: 5rem 0; background: #f7f8fa; }
.hp-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 210px 210px;
  gap: 1rem;
}
.hp-gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
}
.hp-gallery-tall { grid-row: span 2; }
.hp-gallery-wide { grid-column: span 2; }
.hp-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.hp-gallery-item:hover img { transform: scale(1.06); }
.hp-gallery-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.8rem 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,.62));
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
}

/* ─── Testimonials ───────────────────────────────────────────────────────── */
.hp-testimonials { padding: 5rem 0; background: white; }
.hp-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.hp-testi-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow 0.2s;
}
.hp-testi-card:hover { box-shadow: var(--shadow); }
.hp-testi-stars { color: #f4b942; font-size: 1rem; letter-spacing: 0.05em; }
.hp-testi-quote {
  font-size: 0.95rem;
  line-height: 1.72;
  color: var(--ink);
  flex: 1;
  margin: 0;
  font-style: italic;
}
.hp-testi-author { display: flex; align-items: center; gap: 0.8rem; }
.hp-testi-author img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.hp-testi-author strong { display: block; font-size: 0.9rem; }
.hp-testi-author span   { font-size: 0.78rem; color: var(--muted); }

/* ─── Pricing ────────────────────────────────────────────────────────────── */
.hp-pricing { padding: 5rem 0; background: #f7f8fa; text-align: center; }
.hp-pricing .hp-section-title { margin-left: auto; margin-right: auto; }
.hp-price-wrap { display: flex; justify-content: center; }
.hp-price-card {
  background: white;
  border-radius: var(--radius);
  border: 2px solid var(--accent);
  padding: 2.5rem;
  max-width: 500px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 60px rgba(199,70,43,.12);
  text-align: left;
}
.hp-price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.3rem 1.1rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  white-space: nowrap;
}
.hp-price-amount { font-size: 2.6rem; font-weight: 800; color: var(--ink); margin-bottom: 0.4rem; }
.hp-price-amount span { font-size: 1rem; font-weight: 400; color: var(--muted); }
.hp-price-sub { color: var(--muted); margin: 0 0 1rem; font-size: 0.9rem; }
.hp-currency-chips { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.4rem; }
.hp-currency-chips span {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-size: 0.78rem;
  color: var(--muted);
}
.hp-price-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.7rem;
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
}
.hp-price-list li { font-size: 0.95rem; color: var(--ink); }

/* ─── Final CTA ──────────────────────────────────────────────────────────── */
.hp-cta {
  padding: 6.5rem 0;
  background: #0f0e0b;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.hp-cta::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(199,70,43,.18) 0%, transparent 70%);
  pointer-events: none;
}
.hp-cta h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); margin: 0 0 0.8rem; color: white; position: relative; }
.hp-cta p  { color: #aaa; font-size: 1.05rem; max-width: 500px; margin: 0 auto 2.2rem; position: relative; }
.hp-cta-actions { display: flex; flex-direction: column; align-items: center; gap: 0.8rem; position: relative; }
.hp-cta-btn {
  font-size: 1.05rem;
  padding: 1rem 2.4rem;
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}
.hp-cta-note { font-size: 0.82rem; color: #555; }

/* ─── HP Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hp-hero-inner      { grid-template-columns: 1fr; text-align: center; }
  .hp-hero-mockup     { justify-content: center; margin-top: 2.5rem; }
  .hp-browser-frame   { max-width: 400px; }
  .hp-hero-badge      { display: none; }
  .hp-lead            { margin-left: auto; margin-right: auto; }
  .hp-trust-small     { justify-content: center; }
  .hp-actions         { justify-content: center; }
  .hp-flags           { text-align: center; }
  .hp-split-inner     { grid-template-columns: 1fr; }
  .hp-split-img       { display: none; }
  .hp-steps-grid      { grid-template-columns: 1fr; gap: 1.5rem; }
  .hp-testi-grid      { grid-template-columns: 1fr; }
  .hp-gallery-grid    { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .hp-gallery-tall    { grid-row: auto; }
  .hp-gallery-wide    { grid-column: auto; }
  .hp-trust-divider   { display: none; }
}
@media (max-width: 600px) {
  .hp-hero            { padding: 3rem 0 2.5rem; }
  .hp-h1              { font-size: 2.1rem; }
  .hp-hero-mockup     { display: none; }
  .hp-steps-grid      { grid-template-columns: 1fr; }
  .hp-gallery-grid    { grid-template-columns: 1fr; }
  .hp-actions         { flex-direction: column; align-items: center; }
  .hp-price-card      { padding: 2rem 1.5rem; }
}

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 720px) {
  .site-header .container { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
  nav { flex-wrap: wrap; gap: 0.8rem; font-size: 0.85rem; }
  .dash-header { flex-direction: column; }
  .store-header .container { flex-direction: column; align-items: flex-start; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .store-toolbar { justify-content: flex-start; }
  .sort-group { display: none; }
  .sort-mobile { display: block; }
  .footer-inner { flex-direction: column; }
  .dash-actions { flex-direction: row; flex-wrap: wrap; }
  h1 { font-size: 2rem; }
  .price-highlight { font-size: 1.8rem; }
  .cart-drawer { width: 100vw; }
  .theme-grid { grid-template-columns: repeat(2, 1fr); }
  .search-input { max-width: 100%; }
  .cat-tabs { gap: 0.4rem; }
  .cat-tab { font-size: 0.82rem; padding: 0.35rem 0.8rem; }
}
