/* ══════════════════════════════════════════════════════
   THE FULLZ SHOP v2 — Premium Dark Marketplace Theme
   ══════════════════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg-primary: #0a0a0b;
  --bg-secondary: #111113;
  --bg-card: #161618;
  --bg-card-hover: #1c1c1e;
  --bg-elevated: #1e1e20;
  
  --accent: #ff0040;
  --accent-hover: #e00038;
  --accent-glow: rgba(255, 0, 64, 0.25);
  
  --green: #00ff41;
  --green-dim: #00cc34;
  --gold: #ffd700;
  --gold-dim: #e6c200;
  
  --text: #e0e0e0;
  --text-secondary: #888;
  --text-dim: #555;
  
  --border: #222;
  --border-light: #333;
  
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 30px var(--accent-glow);
  
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'JetBrains Mono', 'Fira Code', monospace;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--green); text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.85; }

img { max-width: 100%; }
code { font-family: var(--mono); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

.highlight { color: var(--accent); }

/* ── Trust Bar ── */
.trust-bar {
  background: linear-gradient(90deg, #0d0d0f, #111113);
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-secondary);
  white-space: nowrap;
}

.trust-icon { font-size: 0.9rem; }

.trust-item strong { color: var(--green); font-weight: 600; }

/* ── Header ── */
.site-header {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  position: sticky;
  top: 34px;
  z-index: 99;
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon { font-size: 1.8rem; }

.logo-text { display: flex; flex-direction: column; }

.logo-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.08em;
}

.logo-sub {
  font-size: 0.65rem;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.verified-badge {
  background: linear-gradient(135deg, #00cc34, #009926);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-left: 0.25rem;
}

/* ── Navigation ── */
.nav-list {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-list li a {
  display: block;
  padding: 0.4rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.nav-list li a:hover {
  color: #fff;
  background: rgba(255,255,255,0.05);
}

.nav-list li a.active {
  color: var(--accent);
  background: rgba(255,0,64,0.1);
  border: 1px solid rgba(255,0,64,0.2);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── Ticker ── */
.ticker-wrap {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 0.4rem 0;
}

.ticker {
  display: flex;
  gap: 3rem;
  animation: ticker 40s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.ticker-item strong { color: var(--gold); }

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Main Content ── */
.main-content { min-height: 60vh; }

/* ── Hero Section ── */
.hero-section {
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(255,0,64,0.03) 0%, transparent 60%),
              radial-gradient(circle at 70% 30%, rgba(0,255,65,0.02) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text { position: relative; z-index: 1; }

.hero-rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; }
.rating-text { color: var(--text-secondary); font-size: 0.85rem; }

.hero-text h1 {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.2rem;
  letter-spacing: -0.03em;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.hero-stat { text-align: center; }

.hs-value {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.hs-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.3rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Hero Visual ── */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-glow {
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255,0,64,0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 1; }
}

.hero-cards-preview {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.preview-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow);
  animation: card-float 3s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.3s);
  min-width: 240px;
}

.preview-card span:nth-child(2) { flex: 1; font-weight: 600; color: #fff; }
.preview-card span:nth-child(3) { color: var(--gold); font-weight: 700; font-size: 1.1rem; }

@keyframes card-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #cc0033);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255,0,64,0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-hover), #b8002e);
  box-shadow: 0 6px 24px rgba(255,0,64,0.4);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-light);
}

.btn-outline:hover {
  border-color: var(--text);
  background: rgba(255,255,255,0.03);
}

.btn-secondary {
  background: var(--bg-elevated);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-light);
}

.btn-lg { padding: 0.9rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.4rem 0.8rem; font-size: 0.8rem; }
.btn-block { width: 100%; }

/* ── Section ── */
.section {
  padding: 4rem 0;
}

.section-dark {
  background: var(--bg-secondary);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ── Categories Grid (Home) ── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.category-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--green));
  opacity: 0;
  transition: opacity 0.3s;
}

.category-card:hover {
  border-color: var(--border-light);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.category-card:hover::before { opacity: 1; }

.cat-icon { font-size: 2rem; margin-bottom: 0.8rem; }

.category-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.category-card p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1rem;
}

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

.cat-arrow {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  font-size: 1.2rem;
  color: var(--text-dim);
  transition: all 0.3s;
}

.category-card:hover .cat-arrow {
  color: var(--accent);
  right: 1.2rem;
}

/* ── Steps ── */
.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  flex: 1;
  max-width: 280px;
}

.step-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 0.5rem;
}

.step-card h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.step-card p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
}

.step-connector {
  font-size: 2rem;
  color: var(--text-dim);
  padding: 0 1rem;
}

/* ── Reviews ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1rem;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.rc-stars { color: var(--gold); font-size: 1rem; margin-bottom: 0.75rem; letter-spacing: 2px; }

.rc-text {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-style: italic;
}

.rc-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rc-date { font-size: 0.75rem; color: var(--text-dim); }
.rc-verified { font-size: 0.7rem; color: var(--green); font-weight: 600; }

/* ── FAQ ── */
.faq-grid {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 0.25rem 0;
}

.faq-q {
  padding: 1.2rem 0;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
}

.faq-toggle {
  font-size: 1.3rem;
  color: var(--accent);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.open .faq-toggle { transform: rotate(45deg); }

.faq-a {
  padding: 0 0 1.2rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  display: none;
}

.faq-item.open .faq-a { display: block; }

/* ── Contact CTA ── */
.contact-cta {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
}

.contact-cta h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
}

.contact-cta p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.contact-methods {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-or { color: var(--text-dim); font-size: 0.85rem; }

/* ── Product Page ── */
.page-hero {
  padding: 3rem 0 2rem;
  text-align: center;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.75rem;
}

.hero-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 600;
  background: rgba(0,255,65,0.1);
  color: var(--green);
  border-radius: 4px;
  letter-spacing: 0.02em;
}

.badge-lg {
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

/* ── Product Grid ── */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
  align-items: start;
}

.product-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
  position: relative;
}

.product-card:hover {
  border-color: var(--border-light);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.card-badge {
  background: var(--bg-elevated);
  padding: 0.6rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.card-body { padding: 1.25rem; }

.card-price {
  text-align: center;
  margin-bottom: 1rem;
}

.price-currency {
  font-size: 1rem;
  color: var(--text-secondary);
  vertical-align: top;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.price-per {
  display: block;
  font-size: 0.7rem;
  color: var(--text-dim);
  margin-top: 0.15rem;
}

.card-meta {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 1.25rem;
}

.meta-item {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.card-body .btn { margin-top: auto; }

/* ── Product Sidebar ── */
.product-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-card, .reviews-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.info-card h3, .reviews-card h3 {
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.data-format {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.data-tag {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  font-size: 0.7rem;
  font-family: var(--mono);
  background: rgba(0,255,65,0.06);
  color: var(--green-dim);
  border: 1px solid rgba(0,255,65,0.15);
  border-radius: 4px;
}

.review-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.review-item:last-child { border-bottom: none; padding-bottom: 0; }

.review-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 0.3rem; }
.review-text { font-size: 0.8rem; color: var(--text-secondary); font-style: italic; line-height: 1.5; }
.review-date { font-size: 0.7rem; color: var(--text-dim); }

.payment-methods-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.pm-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
}

.pm-icon { font-size: 1.2rem; }

.pm-note {
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ── Trust Grid ── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}

.tc-icon { font-size: 2rem; margin-bottom: 0.75rem; }

.trust-card h3 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.trust-card p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── Footer ── */
.site-footer {
  background: #080809;
  border-top: 1px solid var(--border);
  padding-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.footer-col p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a {
  font-size: 0.82rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--text); }

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.footer-badges .badge {
  background: rgba(255,255,255,0.04);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.footer-contact p {
  font-size: 0.82rem;
  margin-bottom: 0.3rem;
}

.footer-contact a { color: var(--green); }

.live-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
}

.stat-label {
  font-size: 0.65rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* ══════════════════════════════════════════════════════
   MODALS
   ══════════════════════════════════════════════════════ */

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.open { display: flex; }

.modal {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  animation: modal-in 0.3s ease;
}

.modal-lg { max-width: 500px; }
.modal-xl { max-width: 640px; }

@keyframes modal-in {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.modal-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.modal-close {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
}

.modal-close:hover { color: var(--text); }

.modal-body { padding: 1.5rem; }

/* ── Checkout Steps ── */
.checkout-step { display: none; }
.checkout-step.active { display: block; }

.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 2rem;
}

.step {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  background: var(--bg-elevated);
  color: var(--text-dim);
  border: 2px solid var(--border);
}

.step.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 0 16px rgba(255,0,64,0.3);
}

.step.completed {
  background: var(--green);
  color: #000;
  border-color: var(--green);
}

.step-line {
  width: 60px;
  height: 2px;
  background: var(--border);
}

.checkout-step h3 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 1rem;
  text-align: center;
}

.order-summary {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin-bottom: 1.25rem;
}

.os-row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  font-size: 0.9rem;
}

.os-row:last-child {
  border-top: 1px solid var(--border);
  margin-top: 0.4rem;
  padding-top: 0.8rem;
  font-weight: 700;
  color: var(--gold);
}

.os-label { color: var(--text-secondary); }
.os-value { color: #fff; }

/* ── Form Elements ── */
.form-group { margin-bottom: 1rem; }

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.9rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,0,64,0.1);
}

.form-group textarea { resize: vertical; min-height: 80px; }

/* ── Payment Options ── */
.payment-options {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.payment-option {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}

.payment-option:hover {
  border-color: var(--border-light);
  background: var(--bg-card-hover);
}

.payment-option.active {
  border-color: var(--accent);
  background: rgba(255,0,64,0.08);
  color: var(--accent);
}

.po-icon { font-size: 1.3rem; }

.payment-address-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
}

.pay-label {
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.pay-label strong { color: var(--gold); }

.address-display {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.address-display code {
  flex: 1;
  padding: 0.6rem 0.8rem;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  word-break: break-all;
  color: var(--green);
}

.qr-container {
  margin: 1rem auto;
  max-width: 180px;
}

.qr-container img { width: 100%; border-radius: var(--radius-sm); }

.pay-warning {
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.5;
  margin-top: 0.5rem;
}

/* ── New Elements: Bulk Pricing, Samples, Tables, SEO ── */
.section-subheader {
  margin-bottom: 1rem;
}
.section-subheader h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.bulk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.bulk-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem;
  text-align: center;
  transition: all 0.2s;
}
.bulk-card:hover {
  border-color: var(--border-light);
  box-shadow: var(--shadow);
}
.bulk-qty {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.bulk-label {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin: 0.3rem 0;
}
.bulk-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}
.bulk-per {
  font-size: 0.7rem;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}

.sample-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.sample-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 1rem;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-secondary);
}
.sample-data {
  margin: 0;
  padding: 1rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  line-height: 1.6;
  color: var(--green);
  background: var(--bg-primary);
  overflow-x: auto;
  white-space: pre-wrap;
  word-break: break-all;
}
.sample-data code {
  font-family: inherit;
  color: inherit;
}

.table-wrap {
  overflow-x: auto;
  margin-bottom: 1.5rem;
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.data-table th {
  background: var(--bg-elevated);
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.6rem 0.8rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.7rem;
}
.data-table td {
  padding: 0.5rem 0.8rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.data-table tr:hover td {
  background: rgba(255,255,255,0.02);
}
.data-table .mono {
  font-family: var(--mono);
  font-size: 0.75rem;
}

.mono { font-family: var(--mono); }

.feature-list {
  list-style: none;
  padding: 0;
}
.feature-list li {
  font-size: 0.82rem;
  color: var(--text-secondary);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
}
.feature-list li:last-child { border-bottom: none; }

.detail-list { }
.detail-row-mini {
  display: flex;
  justify-content: space-between;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
}
.detail-row-mini:last-child { border-bottom: none; }
.dl-label { color: var(--text-secondary); }
.dl-value { color: #fff; font-weight: 500; }

.contact-sidebar p {
  font-size: 0.82rem;
  margin-bottom: 0.3rem;
  color: var(--text);
}
.contact-sidebar a { color: var(--green); }

.review-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 0.3rem;
}
.review-verified {
  font-size: 0.65rem;
  color: var(--green);
  font-weight: 600;
}

.hero-subtitle {
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.seo-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.seo-content h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}
.seo-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.seo-content strong { color: var(--text); }
.seo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.seo-tag {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  font-size: 0.7rem;
  color: var(--text-dim);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 4px;
}

/* ── Status Display ── */
.status-container { text-align: center; padding: 1rem 0; }

.status-icon { font-size: 3rem; margin-bottom: 1rem; }

#statusTitle {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: var(--bg-elevated);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  border-radius: 3px;
  transition: width 3s ease;
}

.status-details { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }

/* ── Inline BTC Payment Display ── */
.payment-container {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}
.payment-header {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.payment-amount-box {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}
.pa-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}
.pa-btc {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  font-family: var(--mono);
}
.pa-btc-label {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.pa-usd {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-top: 0.3rem;
}
.payment-address-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin-bottom: 1rem;
}
.pa-addr-row {
  display: flex;
  gap: 0.5rem;
}
.pa-addr-input {
  flex: 1;
  padding: 0.6rem 0.8rem;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.78rem;
  cursor: default;
}
.payment-qr {
  margin-bottom: 1.25rem;
}
.qr-img {
  width: 180px;
  height: 180px;
  border-radius: var(--radius-sm);
  background: #fff;
  padding: 8px;
}
.qr-hint {
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-top: 0.4rem;
}
.payment-status-box {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin-bottom: 0.75rem;
}
.ps-row {
  display: flex;
  justify-content: space-between;
  padding: 0.35rem 0;
  font-size: 0.82rem;
  border-bottom: 1px solid var(--border);
}
.ps-row:last-child { border-bottom: none; }
.ps-label { color: var(--text-secondary); }
.ps-value { color: #fff; font-weight: 500; }
.timer-value { font-family: var(--mono); letter-spacing: 0.05em; }
.payment-note {
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.6;
  text-align: center;
  margin-top: 0.5rem;
}
.payment-note p { margin-bottom: 0.3rem; }

/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */

.desktop-only { display: block; }

@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .hero-text h1 { font-size: 2.4rem; }
  .hero-stats { justify-content: center; }
  .hero-cta { justify-content: center; }
  .hero-visual { display: none; }
  .product-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { flex-direction: column; }
  .step-connector { transform: rotate(90deg); padding: 1rem 0; }
  .step-card { max-width: 100%; }
}

@media (max-width: 768px) {
  .desktop-only { display: none; }
  
  .nav-list { display: none; }
  .nav-list.open { display: flex; flex-direction: column; width: 100%; padding-top: 1rem; }
  
  .mobile-menu-btn { display: flex; }
  
  .header-inner { flex-wrap: wrap; }
  
  .hero-text h1 { font-size: 1.8rem; }
  .hero-sub { font-size: 0.9rem; }
  .hero-stats { gap: 1.5rem; }
  .hs-value { font-size: 1.4rem; }
  
  .section { padding: 2.5rem 0; }
  .section-header h2 { font-size: 1.5rem; }
  
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .category-card { padding: 1rem; }
  .cat-icon { font-size: 1.5rem; }
  .category-card h3 { font-size: 0.85rem; }
  .category-card p { display: none; }
  
  .footer-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .product-cards { grid-template-columns: repeat(2, 1fr); }
  
  .payment-options { flex-direction: column; }
  .modal-xl { margin: 0; max-height: 100vh; border-radius: 0; }
  
  .ticker-wrap { display: none; }
  
  .contact-methods { flex-direction: column; }
}

@media (max-width: 480px) {
  .trust-bar-inner { gap: 0.75rem; }
  .trust-item { font-size: 0.7rem; }
  .product-cards { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr; }
  .price-amount { font-size: 2rem; }
}
