/* ============================================================
   CRYPTOSHOP — MAIN STYLESHEET
   ============================================================ */

/* ── VARIABLES ─────────────────────────────────────────────── */
:root {
  --bg-primary:    #0a0a0a;
  --bg-secondary:  #141414;
  --bg-card:       rgba(255,255,255,0.04);
  --bg-card-hover: rgba(255,255,255,0.07);
  --border:        rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.14);

  --accent-1:  #f26c2a;   /* orange */
  --accent-2:  #e5e7eb;   /* silver */
  --accent-3:  #f97316;   /* lighter orange */
  --accent-grad: linear-gradient(135deg, #f26c2a, #ff8c00);

  --btc:  #f7931a;
  --eth:  #627eea;
  --usdt: #26a17b;
  --sol:  #9945ff;

  --text-1:  #f1f5f9;
  --text-2:  #94a3b8;
  --text-3:  #64748b;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.4);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.5);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.6);
  --shadow-glow: 0 0 40px rgba(242,108,42,0.25);

  --nav-h: 72px;
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-primary);
  color: var(--text-1);
  min-height: 100vh;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(6,6,18,0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled { background: rgba(6,6,18,0.95); box-shadow: var(--shadow-md); }
.nav-container {
  max-width: 1300px; margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex; align-items: center; gap: 2rem;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 1.4rem; font-weight: 800; white-space: nowrap;
}
.brand-logo {
  height: 44px; width: auto; object-fit: contain;
}
.logo-icon {
  width: 38px; height: 38px;
  background: var(--accent-grad);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: white;
}
.logo-accent { color: var(--accent-2); }
.nav-links { display: flex; gap: 0.25rem; margin-left: 1rem; flex: 1; }
.nav-link {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 500; font-size: 0.95rem;
  color: var(--text-2);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--text-1); background: var(--bg-card); }
.nav-actions { display: flex; align-items: center; gap: 1rem; margin-left: auto; }

.crypto-ticker {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.78rem; font-weight: 600;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.35rem 0.85rem;
  white-space: nowrap;
}
.ticker-symbol { font-weight: 800; font-size: 0.75rem; letter-spacing: 0.02em; }
.ticker-symbol.btc-sym { color: #f59e0b; }
.ticker-symbol.sol-sym { color: #c084fc; }
.ticker-symbol.cap-sym { color: var(--accent-1); }
.ticker-symbol.usdt-sym { color: #10b981; }
.ticker-price { color: var(--text-1); font-weight: 600; font-size: 0.78rem; }
.ticker-divider { color: var(--border-strong); opacity: 0.6; }

.cart-btn {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-2);
  transition: var(--transition);
}
.cart-btn:hover { color: var(--text-1); background: var(--bg-card-hover); border-color: var(--border-strong); }
.cart-count {
  position: absolute; top: -6px; right: -6px;
  background: var(--accent-1);
  color: white;
  font-size: 0.7rem; font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.cart-count:empty, .cart-count[data-zero="true"] { display: none; }

.admin-btn {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  background: rgba(242,108,42,0.15);
  border: 1px solid rgba(242,108,42,0.3);
  border-radius: var(--radius-sm);
  color: var(--accent-1);
  transition: var(--transition);
}
.admin-btn:hover { background: rgba(242,108,42,0.25); border-color: var(--accent-1); }

/* ── LANGUAGE SELECTOR ──────────────────────────────────────── */
.lang-selector-wrapper {
  position: relative;
  z-index: 1000;
}
.lang-selector-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.65rem;
  color: var(--text-1);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition);
}
.lang-selector-btn:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent-1);
}
.lang-flag {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.lang-flag-img {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.35);
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}
.lang-code {
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-1);
  line-height: 1;
}
.lang-arrow {
  color: var(--text-3);
  transition: transform 0.2s ease;
  display: inline-flex;
  align-items: center;
}
.lang-dropdown.active ~ .lang-selector-btn .lang-arrow,
.lang-selector-wrapper:hover .lang-arrow {
  transform: rotate(180deg);
}
.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #10101e;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 0.4rem;
  min-width: 175px;
  max-height: 380px;
  overflow-y: auto;
  box-shadow: 0 12px 36px rgba(0,0,0,0.6);
  backdrop-filter: blur(20px);
  display: none;
  flex-direction: column;
  gap: 0.2rem;
  z-index: 1001;
}
.lang-dropdown.active {
  display: flex;
  animation: fadeInDown 0.2s ease;
}
.lang-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.55rem 0.75rem;
  background: transparent;
  border: none;
  border-radius: var(--radius-xs);
  color: var(--text-2);
  font-size: 0.85rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}
.lang-option:hover {
  background: rgba(242,108,42,0.15);
  color: var(--text-1);
}
.lang-option.selected {
  background: rgba(242,108,42,0.25);
  color: var(--accent-1);
  font-weight: 700;
}
.lang-opt-name {
  flex: 1;
  font-size: 0.85rem;
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - var(--nav-h));
  padding-top: calc(var(--nav-h) + 2rem);
  padding-bottom: 4rem;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
}
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: 0.25;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #f26c2a, transparent 70%);
  top: -100px; left: -100px;
  animation: orbFloat1 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #ea580c, transparent 70%);
  top: 50px; right: -50px;
  animation: orbFloat2 10s ease-in-out infinite;
}
.hero-orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #fb923c, transparent 70%);
  bottom: -100px; left: 40%;
  opacity: 0.15;
  animation: orbFloat3 12s ease-in-out infinite;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}
@keyframes orbFloat1 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(40px,-30px) scale(1.05)} }
@keyframes orbFloat2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-30px,40px)} }
@keyframes orbFloat3 { 0%,100%{transform:translate(-50%,0)} 50%{transform:translate(-50%,-20px)} }

.hero-container {
  position: relative; z-index: 2;
  max-width: 1300px; width: 100%;
  margin: 0 auto; padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}
@media(max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.hero-content {
  display: flex; flex-direction: column;
  gap: 1.5rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(242,108,42,0.15);
  border: 1px solid rgba(242,108,42,0.4);
  color: #f97316;
  font-size: 0.85rem; font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  width: fit-content;
  animation: fadeInDown 0.6s ease;
}
.badge-dot {
  width: 8px; height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1; transform:scale(1)} 50%{opacity:0.6; transform:scale(1.3)} }

.hero-title {
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  animation: fadeInDown 0.7s ease 0.1s both;
}
.gradient-text {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.15rem; color: var(--text-2);
  max-width: 520px; line-height: 1.7;
  animation: fadeInDown 0.7s ease 0.2s both;
}
.hero-actions {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  animation: fadeInDown 0.7s ease 0.3s both;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--accent-grad);
  color: white;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 700; font-size: 1rem;
  border: none; cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(242,108,42,0.4);
  text-decoration: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(242,108,42,0.55);
  filter: brightness(1.1);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--bg-card);
  color: var(--text-1);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 600; font-size: 1rem;
  border: 1px solid var(--border-strong);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-secondary:hover { background: var(--bg-card-hover); border-color: var(--accent-1); }

/* ── CRYPTO BADGES (HERO) ───────────────────────────────────── */
.hero-crypto-logos {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
  animation: fadeInDown 0.7s ease 0.4s both;
}
.crypto-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.45rem 0.95rem;
  font-size: 0.88rem;
  font-weight: 600;
  height: 38px;
  box-sizing: border-box;
  transition: var(--transition);
}
.crypto-badge:hover {
  transform: translateY(-2px);
  border-color: var(--border-strong);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.crypto-badge span {
  font-size: 1.15rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.badge-token-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  border-radius: 50%;
  object-fit: cover;
  display: inline-block;
  vertical-align: middle;
  border: none;
  box-shadow: 0 0 0 1.5px rgba(242, 108, 42, 0.5);
  background: #000;
}
.crypto-badge.btc span { color: var(--btc); }
.crypto-badge.cap span { color: var(--accent-1); }
.crypto-badge.usdt span { color: var(--usdt); }
.crypto-badge.sol span { color: var(--sol); }

.footer-crypto-glyph {
  font-size: 1.1rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  text-align: center;
}
.footer-token-icon {
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
}

/* ── HERO VISUAL (RIGHT COLUMN) ─────────────────────────────── */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  animation: fadeInDown 0.8s ease 0.2s both;
}

.welcome-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0,0,0,0.5);
  backdrop-filter: blur(16px);
  padding: 1.75rem 2rem;
}
.welcome-card-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.6) 100%),
    url('https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?q=80&w=1000&auto=format&fit=crop') center right / cover no-repeat;
  opacity: 0.4;
  pointer-events: none;
}
.welcome-card-content {
  position: relative; z-index: 2;
}
.welcome-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--text-1);
}
.welcome-title .accent {
  color: var(--accent-1);
}
.welcome-text {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.6;
}
.welcome-text strong {
  color: #fff;
}

.market-overview-card {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  box-shadow: 0 16px 36px rgba(0,0,0,0.5);
  backdrop-filter: blur(16px);
}
.market-header {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  margin-bottom: 1.5rem;
}
.market-logo-link {
  display: inline-flex;
  text-decoration: none;
  transition: var(--transition);
}
.market-logo {
  height: 42px;
  width: auto;
  max-width: 145px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: rgba(0,0,0,0.5);
  padding: 4px 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  transition: var(--transition);
}
.market-logo-link:hover .market-logo {
  border-color: var(--accent-1);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(242, 108, 42, 0.3);
}
.market-header-text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.market-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-1);
  line-height: 1.1;
  margin: 0;
}
.market-site-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-1);
  background: rgba(242, 108, 42, 0.1);
  border: 1px solid rgba(242, 108, 42, 0.28);
  border-radius: 100px;
  padding: 0.2rem 0.65rem;
  text-decoration: none;
  width: fit-content;
  transition: var(--transition);
}
.market-site-badge:hover {
  background: rgba(242, 108, 42, 0.22);
  border-color: var(--accent-1);
  color: #fff;
  transform: translateX(2px);
}
.nav-link-external {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--text-2);
}
.nav-link-external:hover {
  color: var(--accent-1);
}
.market-rows {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.market-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
}
.market-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.row-label {
  font-size: 0.95rem;
  color: var(--text-2);
  font-weight: 500;
}
.row-value.supply-val {
  font-family: monospace;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-1);
}
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.35rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-1);
}
.holders-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.holders-count {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-1);
}
.sparkline {
  display: block;
}
@keyframes floatPhone { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-18px)} }
.phone-screen { width: 100%; flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; }
.phone-header { font-size: 0.8rem; font-weight: 700; color: var(--accent-2); }
.phone-order-icon { font-size: 2.5rem; background: rgba(16,185,129,0.2); width: 60px; height: 60px; border-radius: 50%; display:flex; align-items:center; justify-content:center; color: #10b981; font-weight:bold; }
.phone-order-text { font-weight: 700; font-size: 0.9rem; }
.phone-order-sub { font-size: 0.75rem; color: var(--text-2); }
.phone-amount { font-size: 1.1rem; font-weight: 800; color: var(--btc); }

/* ── SECTIONS ────────────────────────────────────────────────── */
.section-container { max-width: 1300px; margin: 0 auto; padding: 5rem 2rem; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
  display: inline-block;
  background: rgba(242,108,42,0.12);
  border: 1px solid rgba(242,108,42,0.3);
  color: #f97316;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 0.75rem; }
.section-subtitle { font-size: 1rem; color: var(--text-2); }

/* ── HOW IT WORKS ──────────────────────────────────────────── */
.how-it-works { background: var(--bg-secondary); }
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: var(--transition);
}
.step-card:hover { transform: translateY(-6px); border-color: var(--accent-1); box-shadow: 0 8px 40px rgba(242,108,42,0.15); }
.step-number {
  font-size: 3.5rem; font-weight: 900;
  color: rgba(242,108,42,0.15);
  line-height: 1;
  position: absolute; top: 1rem; right: 1.25rem;
}
.step-icon { font-size: 2rem; margin-bottom: 1rem; }
.step-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.step-card p { font-size: 0.9rem; color: var(--text-2); line-height: 1.6; }

/* ── PRODUCTS GRID ──────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.products-loading {
  grid-column: 1 / -1;
  display: flex; flex-direction: column;
  align-items: center; gap: 1rem;
  padding: 4rem;
  color: var(--text-3);
}
.loading-spinner {
  width: 40px; height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--accent-1);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  display: flex; flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.product-image {
  width: 100%; height: 220px;
  object-fit: cover;
  background: var(--bg-secondary);
}
.product-image-placeholder {
  width: 100%; height: 220px;
  background: linear-gradient(135deg, var(--bg-secondary), rgba(242,108,42,0.1));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.product-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.5rem; }
.product-category {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--accent-2);
}
.product-name { font-size: 1rem; font-weight: 700; line-height: 1.4; }
.product-description { font-size: 0.85rem; color: var(--text-2); line-height: 1.5; flex: 1; }
.product-footer {
  padding: 0 1.25rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 0.75rem;
}
.product-price { font-size: 1.25rem; font-weight: 800; color: var(--text-1); }
.product-price-crypto { font-size: 0.78rem; color: var(--btc); font-weight: 600; }
.product-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; padding: 0 1.25rem 1rem; }
.product-tag {
  font-size: 0.7rem; font-weight: 600;
  background: rgba(242,108,42,0.1);
  color: #f97316;
  border: 1px solid rgba(242,108,42,0.2);
  padding: 0.2rem 0.5rem;
  border-radius: 100px;
}
.add-to-cart-btn {
  display: flex; align-items: center; gap: 0.4rem;
  background: var(--accent-grad);
  color: white;
  border: none; cursor: pointer;
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-sm);
  font-weight: 700; font-size: 0.85rem;
  transition: var(--transition);
}
.add-to-cart-btn:hover { transform: scale(1.05); filter: brightness(1.1); }

.section-cta { text-align: center; margin-top: 3rem; }

/* ── DIGITAL SERVICES PROMO SECTION ─────────────────────────── */
.services-promo-section {
  padding: 3rem 0;
  position: relative;
}
.services-promo-card {
  background: linear-gradient(135deg, rgba(20, 20, 24, 0.95), rgba(30, 22, 18, 0.92));
  border: 1.5px solid rgba(242, 108, 42, 0.35);
  border-radius: var(--radius-xl);
  padding: 3.5rem 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(242, 108, 42, 0.12);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.services-promo-card::before {
  content: '';
  position: absolute;
  top: -150px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 300px;
  background: radial-gradient(circle, rgba(242, 108, 42, 0.22) 0%, transparent 70%);
  pointer-events: none;
}
.services-promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(242, 108, 42, 0.15);
  color: #f97316;
  border: 1px solid rgba(242, 108, 42, 0.35);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.services-promo-title {
  font-size: 2.3rem;
  font-weight: 900;
  color: var(--text-1);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.services-promo-subtitle {
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 800px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}
.services-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.75rem;
  text-align: left;
}
@media(max-width: 850px) {
  .services-features-grid { grid-template-columns: 1fr; }
  .services-promo-card { padding: 2.5rem 1.5rem; }
  .services-promo-title { font-size: 1.8rem; }
}
.service-feature-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: var(--transition);
}
.service-feature-item:hover {
  border-color: rgba(242, 108, 42, 0.4);
  background: rgba(242, 108, 42, 0.04);
  transform: translateY(-4px);
}
.service-feature-icon {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}
.service-feature-item h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-1);
  margin-bottom: 0.5rem;
}
.service-feature-item p {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.5;
}
.services-promo-cta {
  display: flex;
  justify-content: center;
}
.btn-services-glow {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
  font-weight: 800;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(242, 108, 42, 0.4);
  transition: var(--transition);
}
.btn-services-glow:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 15px 40px rgba(242, 108, 42, 0.6);
}

/* Digital Service Product Card Badges */
.product-cat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.product-digital-badge {
  font-size: 0.68rem;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(242, 108, 42, 0.2), rgba(234, 179, 8, 0.2));
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.4);
  padding: 0.15rem 0.5rem;
  border-radius: 100px;
  white-space: nowrap;
}
.service-card-item {
  border-color: rgba(242, 108, 42, 0.25);
  background: linear-gradient(180deg, var(--bg-card), rgba(30, 20, 16, 0.4));
}
.service-card-item:hover {
  border-color: var(--accent-1);
  box-shadow: 0 16px 48px rgba(242, 108, 42, 0.2);
}
.service-placeholder {
  background: linear-gradient(135deg, rgba(30, 20, 16, 0.8), rgba(242, 108, 42, 0.15)) !important;
}
.btn-service-add {
  background: linear-gradient(135deg, #f97316, #ea580c) !important;
}

/* ── STATS ──────────────────────────────────────────────────── */
.stats-section { background: var(--bg-secondary); }
.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
.stat-item { text-align: center; }
.stat-number {
  font-size: 3.5rem; font-weight: 900;
  background: var(--accent-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.stat-label { font-size: 0.95rem; color: var(--text-2); margin-top: 0.5rem; font-weight: 500; }

/* ── PAGE HERO ──────────────────────────────────────────────── */
.page-hero {
  padding-top: var(--nav-h);
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}
.page-hero-content {
  max-width: 1300px; margin: 0 auto;
  padding: 3rem 2rem;
}
.page-hero-content h1 { font-size: 2.5rem; font-weight: 800; }
.page-hero-content p { color: var(--text-2); margin-top: 0.5rem; }

/* ── SHOP ───────────────────────────────────────────────────── */
.shop-section { padding: 2rem 0 4rem; }
.shop-container {
  max-width: 1300px; margin: 0 auto;
  padding: 0 2rem;
  display: grid; grid-template-columns: 260px 1fr;
  gap: 2rem;
  align-items: start;
}
@media(max-width: 900px) {
  .shop-container { grid-template-columns: 1fr; gap: 1.5rem; }
  .shop-sidebar { display: flex; flex-direction: column; gap: 1rem; }
  .sidebar-card:not(:first-child) { display: none; }
  .category-list {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    gap: 0.5rem;
    -webkit-overflow-scrolling: touch;
  }
  .cat-btn { white-space: nowrap; }
}

.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1rem;
}
.sidebar-card h3 { font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-2); margin-bottom: 0.75rem; }
.category-list { display: flex; flex-direction: column; gap: 0.3rem; }
.cat-btn {
  text-align: left; padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem; font-weight: 500;
  color: var(--text-2);
  transition: var(--transition);
  background: none; border: none; cursor: pointer;
}
.cat-btn:hover { background: var(--bg-card-hover); color: var(--text-1); }
.cat-btn.active { background: rgba(242,108,42,0.15); color: #f97316; font-weight: 700; }

.range-input { width: 100%; accent-color: var(--accent-1); cursor: pointer; }
.price-labels { display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--text-3); margin-top: 0.5rem; }

.sort-select {
  width: 100%; padding: 0.6rem; border-radius: var(--radius-sm);
  background: var(--bg-secondary); color: var(--text-1);
  border: 1px solid var(--border); font-size: 0.9rem;
  appearance: none; cursor: pointer;
}
.sort-select:focus { outline: none; border-color: var(--accent-1); }

.shop-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.5rem; gap: 1rem;
}
.search-bar {
  display: flex; align-items: center; gap: 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.6rem 1rem;
  flex: 1;
  color: var(--text-3);
}
.search-bar input {
  background: none; border: none; outline: none;
  color: var(--text-1); font-size: 0.95rem; width: 100%;
}
.search-bar input::placeholder { color: var(--text-3); }
.results-count { font-size: 0.85rem; color: var(--text-3); white-space: nowrap; }

.empty-state {
  grid-column: 1 / -1;
  text-align: center; padding: 4rem;
}
.empty-icon { font-size: 3rem; margin-bottom: 1rem; }
.empty-state h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.5rem; }
.empty-state p { color: var(--text-2); }

/* ── CART ──────────────────────────────────────────────────── */
.cart-section { padding: 2rem 0 4rem; }
.cart-container {
  max-width: 1100px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1fr 380px;
  gap: 2rem; align-items: start;
}
@media(max-width: 900px) { .cart-container { grid-template-columns: 1fr; } }

.cart-empty {
  grid-column: 1 / -1;
  text-align: center; padding: 5rem 2rem;
}
.cart-empty .empty-icon { font-size: 4rem; margin-bottom: 1.5rem; }
.cart-empty h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.75rem; }
.cart-empty p { color: var(--text-2); margin-bottom: 2rem; }

.cart-item {
  display: flex; gap: 1.25rem; align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1rem;
  transition: var(--transition);
}
.cart-item:hover { border-color: var(--border-strong); }
.cart-item-image {
  width: 90px; height: 90px; border-radius: var(--radius-sm);
  object-fit: cover; background: var(--bg-secondary);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
}
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 700; font-size: 1rem; margin-bottom: 0.25rem; }
.cart-item-cat { font-size: 0.8rem; color: var(--accent-2); font-weight: 600; margin-bottom: 0.5rem; }
.cart-item-price { font-size: 1.1rem; font-weight: 800; }
.cart-item-actions { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.75rem; }
.qty-btn {
  width: 30px; height: 30px;
  background: var(--bg-secondary); border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-1); font-size: 1.1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); cursor: pointer;
}
.qty-btn:hover { background: var(--bg-card-hover); border-color: var(--accent-1); }
.qty-display { font-weight: 700; font-size: 1rem; min-width: 24px; text-align: center; }
.remove-btn {
  margin-left: auto; color: var(--text-3);
  background: none; border: none; cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center;
}
.remove-btn:hover { color: #ef4444; }

.order-summary {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: sticky; top: calc(var(--nav-h) + 1rem);
}
.order-summary h2 { font-size: 1.2rem; font-weight: 800; margin-bottom: 1.25rem; }
.summary-rows { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; }
.summary-row { display: flex; justify-content: space-between; font-size: 0.95rem; color: var(--text-2); }
.summary-row.total-row {
  font-size: 1.15rem; font-weight: 800; color: var(--text-1);
  border-top: 1px solid var(--border); padding-top: 0.75rem; margin-top: 0.25rem;
}
.free-ship { color: #10b981; font-weight: 700; }

.crypto-select-section h3 { font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-2); margin-bottom: 0.75rem; }
.crypto-options { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.crypto-option { cursor: pointer; }
.crypto-option input { display: none; }
.crypto-option-content {
  display: flex; align-items: center; gap: 0.75rem;
  background: var(--bg-secondary);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  transition: var(--transition);
}
.crypto-option input:checked + .crypto-option-content {
  border-color: var(--accent-1);
  background: rgba(242,108,42,0.08);
}
.crypto-option-content:hover { border-color: var(--border-strong); }
.crypto-option-symbol { font-size: 1.3rem; font-weight: 800; width: 32px; text-align: center; }
.crypto-option-info { flex: 1; }
.crypto-option-name { display: block; font-weight: 700; font-size: 0.9rem; }
.crypto-option-ticker { display: block; font-size: 0.75rem; color: var(--text-3); }
.crypto-option-amount { font-size: 0.8rem; font-weight: 700; color: var(--text-2); }
.btc-color { color: var(--btc); } .cap-color { color: var(--accent-1); } .usdt-color { color: var(--usdt); } .sol-color { color: var(--sol); }

.btn-checkout { width: 100%; justify-content: center; }
.continue-shopping { display: block; text-align: center; margin-top: 1rem; font-size: 0.85rem; color: var(--text-3); transition: var(--transition); }
.continue-shopping:hover { color: var(--text-1); }

/* ── CHECKOUT ───────────────────────────────────────────────── */
.checkout-section { padding: 2rem 0 4rem; }
.checkout-container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }

.checkout-steps {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-bottom: 2.5rem;
}
.checkout-step { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; }
.step-circle {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--bg-card); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; color: var(--text-3);
  transition: var(--transition);
}
.checkout-step.active .step-circle { border-color: var(--accent-1); color: var(--accent-1); background: rgba(242,108,42,0.1); }
.checkout-step.completed .step-circle { background: var(--accent-1); border-color: var(--accent-1); color: white; }
.checkout-step span { font-size: 0.8rem; color: var(--text-3); font-weight: 500; }
.checkout-step.active span { color: var(--text-1); }
.step-line { flex: 1; height: 2px; background: var(--border); min-width: 60px; margin: 0 0.5rem 20px; }
.step-line.active { background: var(--accent-1); }

.checkout-layout {
  display: grid; grid-template-columns: 1fr 340px;
  gap: 2rem; align-items: start;
}
@media(max-width: 900px) { .checkout-layout { grid-template-columns: 1fr; } }

.checkout-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}
.checkout-card h2 { font-size: 1.2rem; font-weight: 800; margin-bottom: 1.5rem; }

.shipping-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media(max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text-2); }
.form-group input, .form-group textarea, .form-group select {
  background: var(--bg-secondary);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-1);
  padding: 0.7rem 0.9rem;
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--accent-1);
}

/* Payment Panel */
.payment-crypto-header {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.25rem;
}
.payment-crypto-icon {
  width: 54px; height: 54px; border-radius: var(--radius-sm);
  background: rgba(247,147,26,0.15); color: var(--btc);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; font-weight: 800;
  flex-shrink: 0;
}
.payment-crypto-details { flex: 1; min-width: 0; }
.payment-crypto-title-row {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.2rem;
}
.payment-crypto-name { font-size: 1.15rem; font-weight: 800; color: var(--text-1); }

.crypto-rate-badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  font-size: 0.8rem; font-weight: 700;
  color: var(--accent-1);
  letter-spacing: 0.02em;
}
.crypto-rate-badge .rate-dot {
  font-size: 0.55rem; color: #10b981;
  animation: pulse-dot 2s infinite ease-in-out;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.payment-amount-display { font-size: 1.6rem; font-weight: 900; color: var(--accent-1); margin: 0.15rem 0; }

.payment-rate-info {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(242,108,42,0.06);
  border: 1px dashed rgba(242,108,42,0.25);
  border-radius: 6px;
  padding: 0.3rem 0.6rem;
  font-size: 0.82rem; color: var(--text-2);
  margin-top: 0.3rem;
}
.payment-rate-info strong { color: var(--text-1); }

.recap-crypto-rate {
  font-size: 0.82rem; color: var(--text-3);
  margin-top: 0.4rem; padding-top: 0.4rem;
  border-top: 1px dashed rgba(255,255,255,0.08);
}
.recap-crypto-rate strong { color: var(--accent-1); }

.payment-warning {
  display: flex; gap: 0.75rem; align-items: flex-start;
  background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.3);
  border-radius: var(--radius-sm); padding: 0.85rem;
  font-size: 0.85rem; color: #fbbf24; margin-bottom: 1.25rem;
}

.wallet-section { margin-bottom: 1.25rem; }
.wallet-section label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-2); margin-bottom: 0.5rem; }
.wallet-address-box {
  display: flex; align-items: center; gap: 0.75rem;
  background: var(--bg-secondary); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); padding: 0.75rem 1rem;
}
.wallet-address { font-family: monospace; font-size: 0.8rem; color: var(--text-1); flex: 1; word-break: break-all; }
.copy-btn {
  display: flex; align-items: center; gap: 0.4rem;
  background: rgba(242,108,42,0.15); color: var(--accent-1);
  border: 1px solid rgba(242,108,42,0.3); border-radius: 6px;
  padding: 0.4rem 0.75rem; font-size: 0.8rem; font-weight: 600;
  cursor: pointer; white-space: nowrap; transition: var(--transition);
}
.copy-btn:hover { background: rgba(242,108,42,0.25); }
.copy-btn.copied { color: #10b981; border-color: #10b981; background: rgba(16,185,129,0.1); }

.qr-section { margin-bottom: 1.25rem; }
.qr-section label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-2); margin-bottom: 0.75rem; }
.qr-container {
  width: 200px; height: 200px;
  background: white; border-radius: var(--radius-md);
  padding: 12px;
  display: flex; align-items: center; justify-content: center;
}
#qrCanvas { width: 176px; height: 176px; }

.timer-section { text-align: center; }
.timer-label { font-size: 0.8rem; color: var(--text-3); margin-bottom: 0.4rem; }
.timer-display { font-size: 2rem; font-weight: 900; color: var(--accent-1); font-family: monospace; margin-bottom: 0.5rem; }
.timer-bar { height: 4px; background: var(--border); border-radius: 100px; overflow: hidden; }
.timer-bar-fill { height: 100%; background: var(--accent-grad); width: 100%; transition: width 1s linear; }

/* ── TX HASH INPUT & CONFIRM BUTTON ────────────────────────── */
.tx-hash-section {
  margin-top: 1.5rem;
  background: rgba(242, 108, 42, 0.05);
  border: 1.5px dashed rgba(242, 108, 42, 0.35);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}
.tx-hash-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 0.6rem;
}
.tx-badge-req {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
  padding: 0.15rem 0.5rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.tx-input-container { margin-bottom: 0.5rem; }
.tx-input {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg-secondary);
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  color: var(--text-1);
  font-family: monospace;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}
.tx-input:focus {
  border-color: var(--accent-1);
  box-shadow: 0 0 0 3px rgba(242, 108, 42, 0.15);
}
.tx-hint {
  font-size: 0.8rem;
  color: var(--text-3);
  line-height: 1.5;
  margin: 0;
}

.btn-confirm {
  width: 100%;
  justify-content: center;
  margin-top: 1.5rem;
  font-size: 1.05rem;
  padding: 1rem 1.5rem;
  transition: var(--transition);
}
.btn-confirm.disabled,
.btn-primary:disabled,
.btn-confirm:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
  background: #374151 !important;
  border-color: #4b5563 !important;
  color: #9ca3af !important;
  box-shadow: none !important;
  transform: none !important;
}

.order-recap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1rem;
}
.order-recap h3 { font-size: 1rem; font-weight: 800; margin-bottom: 1rem; }
.recap-items { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1rem; }
.recap-item { display: flex; justify-content: space-between; align-items: center; }
.recap-item-name { font-size: 0.9rem; flex: 1; }
.recap-item-qty { font-size: 0.8rem; color: var(--text-3); margin: 0 0.5rem; }
.recap-item-price { font-weight: 700; font-size: 0.9rem; }
.recap-total {
  display: flex; justify-content: space-between;
  font-weight: 800; font-size: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
}
.recap-crypto-total { text-align: center; margin-top: 0.5rem; font-weight: 700; color: var(--accent-3); font-size: 0.95rem; }

.security-badges { display: flex; flex-direction: column; gap: 0.5rem; }
.sec-badge {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 0.6rem 1rem;
  font-size: 0.85rem; font-weight: 500; color: var(--text-2);
  text-align: center;
}

/* ── SUCCESS OVERLAY ─────────────────────────────────────────── */
.success-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(6,6,18,0.95); backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
}
.success-card {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 3rem;
  max-width: 480px; width: 90%;
  animation: successPop 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes successPop { from { transform: scale(0.7); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.success-icon { font-size: 4rem; margin-bottom: 1.25rem; }
.success-card h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 0.75rem; }
.success-card p { color: var(--text-2); line-height: 1.6; margin-bottom: 1.5rem; }
.order-id-display {
  background: var(--bg-secondary); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 0.6rem 1rem;
  font-family: monospace; font-size: 0.9rem; color: var(--accent-2);
  margin-bottom: 1.5rem; display: inline-block;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer { background: var(--bg-secondary); border-top: 1px solid var(--border); padding-top: 3rem; }
.footer-container {
  max-width: 1300px; margin: 0 auto; padding: 0 2rem 2rem;
  display: flex; gap: 4rem; flex-wrap: wrap;
}
.footer-brand { flex: 1; min-width: 200px; }
.footer-brand .nav-logo { display: flex; align-items: center; gap: 0.5rem; font-size: 1.2rem; font-weight: 800; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.9rem; color: var(--text-3); margin-top: 0.5rem; }
.footer-links { display: flex; gap: 3rem; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-2); margin-bottom: 0.25rem; }
.footer-col a { font-size: 0.9rem; color: var(--text-3); transition: var(--transition); }
.footer-col a:hover { color: var(--text-1); }
.footer-col span { font-size: 0.9rem; color: var(--text-3); display: flex; align-items: center; gap: 0.45rem; }
.footer-bottom { border-top: 1px solid var(--border); text-align: center; padding: 1.25rem 2rem; font-size: 0.85rem; color: var(--text-3); }
.admin-discreet-link {
  color: var(--text-3);
  opacity: 0.25;
  text-decoration: none;
  font-size: 0.8rem;
  margin-left: 0.5rem;
  display: inline-block;
  vertical-align: middle;
  transition: opacity 0.2s, color 0.2s, transform 0.2s;
}
.admin-discreet-link:hover {
  opacity: 0.9;
  color: var(--accent-1);
  transform: scale(1.15);
}

/* ── TOAST ──────────────────────────────────────────────────── */
.toast-container {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  z-index: 9999; display: flex; flex-direction: column; gap: 0.6rem;
}
.toast {
  display: flex; align-items: center; gap: 0.75rem;
  background: var(--bg-secondary); border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.25rem;
  box-shadow: var(--shadow-lg);
  font-size: 0.9rem; font-weight: 500;
  animation: toastIn 0.3s cubic-bezier(0.34,1.56,0.64,1);
  max-width: 320px;
}
.toast.success { border-left: 3px solid #10b981; }
.toast.error   { border-left: 3px solid #ef4444; }
.toast.info    { border-left: 3px solid var(--accent-2); }
@keyframes toastIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes toastOut { to { transform: translateX(120%); opacity: 0; } }

/* ── HIDE NETLIFY BADGE / DRAWER ────────────────────────────── */
iframe[src*="netlify"],
[data-netlify-drawer],
#netlify-drawer,
.netlify-drawer,
div[class*="netlify-drawer"],
div[id*="netlify-drawer"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE & MOBILE OPTIMIZATIONS ─────────────────────── */
@media(max-width: 768px) {
  .crypto-ticker { display: none; }
  .footer-container { flex-direction: column; gap: 2rem; }
  .hero-content { text-align: center; align-items: center; }
  .hero-crypto-logos { justify-content: center; }
  .nav-container { padding: 0 1rem; gap: 1rem; }
  .nav-links { gap: 0.1rem; }
  .nav-link { padding: 0.4rem 0.6rem; font-size: 0.9rem; }
  .brand-logo { height: 36px; }
  .hero-container { padding: 0 1rem; }
  .welcome-card, .market-overview-card { padding: 1.25rem 1.25rem; }
  .welcome-title { font-size: 1.5rem; }
  .welcome-text { font-size: 0.95rem; }
}

@media(max-width: 480px) {
  .hero-title { font-size: 2.3rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions a { width: 100%; justify-content: center; text-align: center; }
  .cart-item { flex-direction: column; align-items: flex-start; }
  .cart-item-image { width: 60px; height: 60px; }
  .cart-item-actions { width: 100%; justify-content: space-between; }
  .wallet-address-box { flex-direction: column; align-items: stretch; gap: 0.5rem; }
  .wallet-address { word-break: break-all; font-size: 0.8rem; }
}

/* ── ORDERS TRACKING PAGE ───────────────────────────────────── */
.orders-section { padding: 2rem 0 5rem; }
.orders-container { max-width: 960px; margin: 0 auto; padding: 0 1.5rem; display: flex; flex-direction: column; gap: 2rem; }

/* Search Card */
.order-search-card {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.order-search-card h2 { font-size: 1.4rem; font-weight: 800; margin-bottom: 0.5rem; }
.order-search-card p { font-size: 0.92rem; color: var(--text-2); margin-bottom: 1.25rem; line-height: 1.5; }
.order-search-card code { background: var(--bg-secondary); padding: 0.2rem 0.4rem; border-radius: 4px; color: var(--accent-1); font-family: monospace; }

.order-search-form { width: 100%; }
.order-search-input-wrap {
  display: flex; gap: 0.75rem; align-items: stretch;
}
@media(max-width: 600px) {
  .order-search-input-wrap { flex-direction: column; }
}
.order-search-input {
  flex: 1;
  padding: 0.9rem 1.25rem;
  background: var(--bg-secondary);
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  color: var(--text-1);
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
}
.order-search-input:focus {
  border-color: var(--accent-1);
  box-shadow: 0 0 0 3px rgba(242, 108, 42, 0.15);
}
.btn-search-order {
  padding: 0.9rem 1.75rem;
  white-space: nowrap;
  font-size: 0.95rem;
}

.order-quick-actions {
  display: flex; gap: 0.75rem; align-items: center; margin-top: 1rem; flex-wrap: wrap;
}
.quick-filter-btn {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.35rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-2);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 0.35rem;
}
.quick-filter-btn:hover, .quick-filter-btn.active {
  background: rgba(242,108,42,0.12);
  border-color: rgba(242,108,42,0.35);
  color: var(--accent-1);
}

/* Results */
.orders-results-wrapper { display: flex; flex-direction: column; gap: 1.25rem; }
.orders-results-header {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 0.5rem; border-bottom: 1px solid var(--border);
}
.orders-results-header h3 { font-size: 1.15rem; font-weight: 800; color: var(--text-1); margin: 0; }
.results-count { font-size: 0.85rem; color: var(--text-3); font-weight: 600; }

.orders-list { display: flex; flex-direction: column; gap: 1.5rem; }

.orders-loading {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; padding: 4rem 2rem; color: var(--text-3);
}

.orders-empty-state {
  text-align: center; background: var(--bg-card); border: 1px dashed var(--border-strong);
  border-radius: var(--radius-lg); padding: 3.5rem 2rem;
}
.orders-empty-state .empty-icon { font-size: 3rem; margin-bottom: 1rem; }
.orders-empty-state h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 0.5rem; }
.orders-empty-state p { font-size: 0.9rem; color: var(--text-3); max-width: 440px; margin: 0 auto 1.5rem; line-height: 1.5; }

/* Customer Order Card */
.customer-order-card {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: 1.5rem;
  animation: fadeInDown 0.4s ease;
}
.customer-order-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border);
}
.order-id-info { display: flex; flex-direction: column; gap: 0.35rem; }
.order-id-badge {
  display: flex; align-items: center; gap: 0.5rem; font-family: monospace; font-size: 1.05rem;
}
.order-id-badge span { color: var(--text-3); font-size: 0.85rem; font-family: inherit; }
.order-id-badge strong { color: var(--accent-1); }
.btn-copy-id {
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: 4px; padding: 0.2rem 0.45rem; color: var(--text-2);
  cursor: pointer; transition: var(--transition); font-size: 0.75rem;
}
.btn-copy-id:hover { background: rgba(242,108,42,0.15); color: var(--accent-1); }
.btn-copy-id.copied { color: #10b981; border-color: #10b981; }
.order-date { font-size: 0.82rem; color: var(--text-3); }

.order-status-badge {
  padding: 0.4rem 0.9rem; border-radius: 100px;
  font-size: 0.82rem; font-weight: 700; display: inline-flex; align-items: center; gap: 0.4rem;
}
.status-pending   { background: rgba(245,158,11,0.15); color: #f59e0b; border: 1px solid rgba(245,158,11,0.3); }
.status-confirmed { background: rgba(16,185,129,0.15); color: #10b981; border: 1px solid rgba(16,185,129,0.3); }
.status-shipped   { background: rgba(59,130,246,0.15); color: #3b82f6; border: 1px solid rgba(59,130,246,0.3); }
.status-delivered { background: rgba(168,85,247,0.15); color: #a855f7; border: 1px solid rgba(168,85,247,0.3); }

/* Tracking Stepper */
.tracking-stepper-wrap {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
}
.tracking-stepper {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; position: relative;
}
@media(max-width: 650px) {
  .tracking-stepper { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .track-line { display: none; }
  .track-step { width: 100%; flex-direction: row; gap: 0.75rem; text-align: left; }
}
.track-step {
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem; text-align: center;
  z-index: 2; position: relative; min-width: 80px;
}
.track-dot {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--bg-secondary); border: 2px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 800; color: var(--text-3); transition: var(--transition);
}
.track-step.active .track-dot {
  border-color: var(--accent-1); color: var(--accent-1); background: rgba(242,108,42,0.15);
  box-shadow: 0 0 12px rgba(242,108,42,0.35);
}
.track-step.completed .track-dot {
  background: #10b981; border-color: #10b981; color: #fff;
}
.track-info { display: flex; flex-direction: column; }
.track-title { font-size: 0.82rem; font-weight: 700; color: var(--text-1); }
.track-desc { font-size: 0.72rem; color: var(--text-3); margin-top: 0.1rem; }

.track-line {
  flex: 1; height: 3px; background: var(--border);
  margin: 0 0.5rem; margin-bottom: 22px; z-index: 1; transition: var(--transition);
}
.track-line.completed { background: #10b981; }

/* Body details */
.customer-order-body {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 1.5rem;
}
@media(max-width: 768px) {
  .customer-order-body { grid-template-columns: 1fr; }
}
.order-box {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.box-title {
  font-size: 0.85rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--text-2); margin: 0;
}
.order-products-list { display: flex; flex-direction: column; gap: 0.5rem; }
.order-product-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.88rem; padding: 0.35rem 0; border-bottom: 1px dashed rgba(255,255,255,0.06);
}
.order-product-row:last-child { border-bottom: none; }
.op-name { display: flex; align-items: baseline; gap: 0.4rem; }
.op-qty { color: var(--text-3); font-size: 0.8rem; }
.op-price { font-weight: 700; }

.order-total-summary {
  margin-top: auto; padding-top: 0.75rem; border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 0.35rem; font-size: 0.9rem;
}
.summary-row { display: flex; justify-content: space-between; align-items: center; }
.summary-row.crypto-row { color: var(--accent-3); font-size: 0.95rem; font-weight: 800; }

.shipping-info-grid { display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.85rem; }
.s-row { display: flex; align-items: baseline; gap: 0.5rem; }
.s-label { color: var(--text-3); font-size: 0.78rem; min-width: 85px; flex-shrink: 0; }
.s-val { color: var(--text-1); word-break: break-word; }

.order-tx-info {
  margin-top: 0.5rem; padding-top: 0.75rem; border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 0.4rem;
}
.tx-row-wrap { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.tx-hash-snippet {
  font-family: monospace; font-size: 0.75rem; background: var(--bg-secondary);
  padding: 0.25rem 0.5rem; border-radius: 4px; border: 1px solid var(--border);
  color: #38bdf8; word-break: break-all; max-width: 260px;
}
.btn-explorer-link {
  font-size: 0.75rem; font-weight: 700; color: var(--accent-1);
  background: rgba(242,108,42,0.12); padding: 0.25rem 0.6rem;
  border-radius: 4px; text-decoration: none; transition: var(--transition);
  border: 1px solid rgba(242,108,42,0.25);
}
.btn-explorer-link:hover { background: rgba(242,108,42,0.25); }
.tx-none { font-size: 0.8rem; color: var(--text-3); font-style: italic; }

.customer-order-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 0.5rem; flex-wrap: wrap; gap: 1rem;
}
.btn-print-receipt {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 0.5rem 1rem;
  font-size: 0.85rem; font-weight: 600; color: var(--text-2); cursor: pointer;
  transition: var(--transition);
}
.btn-print-receipt:hover { background: var(--bg-secondary); color: var(--text-1); border-color: var(--border-strong); }
.btn-order-again { font-size: 0.88rem; font-weight: 700; color: var(--accent-1); text-decoration: none; }
.btn-order-again:hover { text-decoration: underline; }

/* Print Mode */
@media print {
  .navbar, .footer, .order-search-card, .orders-results-header, .page-hero, .btn-print-receipt, .btn-order-again, .toast-container {
    display: none !important;
  }
  body { background: #fff !important; color: #000 !important; }
  .customer-order-card {
    border: 1px solid #ccc !important; box-shadow: none !important;
    background: #fff !important; color: #000 !important; page-break-inside: avoid;
  }
  .order-box, .tracking-stepper-wrap { background: #f9f9f9 !important; border: 1px solid #ddd !important; }
  .order-id-badge strong, .summary-row strong, .s-val, .op-price { color: #000 !important; }
}

