:root {
  --primary: #4F46E5;
  --primary-light: #6366F1;
  --blue: #3B82F6;
  --green: #10B981;
  --yellow: #FACC15;
  --red: #F87171;
  --dark: #050816;
  --white: #FFFFFF;
  --text-muted: rgba(255,255,255,0.6);
  --border: rgba(255,255,255,0.1);
  --glass: rgba(255,255,255,0.04);
  --radius: 16px;
  --panel: #0c1024;
  --panel-strong: #111735;
  --soft-shadow: 0 22px 70px rgba(0,0,0,.24);
}

.theme-toggle {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  color: currentColor;
  cursor: pointer;
}
.theme-toggle span,
.theme-toggle span::before,
.theme-toggle span::after {
  display: block;
  content: "";
}
.theme-toggle span {
  width: 15px;
  height: 15px;
  border: 2px solid currentColor;
  border-radius: 50%;
}
.theme-toggle span::before {
  width: 5px;
  height: 5px;
  margin: -5px 0 0 10px;
  border-radius: 50%;
  background: currentColor;
}
.theme-toggle span::after {
  width: 13px;
  height: 13px;
  margin: -8px 0 0 5px;
  border-radius: 50%;
  background: var(--dark);
}
html[data-theme="light"] .theme-toggle {
  background: #fff;
  color: #11172e;
  border-color: rgba(17,23,46,.12);
  box-shadow: 0 12px 28px rgba(15,23,42,.08);
}
html[data-theme="light"] .theme-toggle span::after {
  display: none;
}

/* Registration contact and privacy details */
.store-register-card { max-width: 520px; }
.store-field-help {
  display: block;
  margin-top: 7px;
  color: var(--text-muted);
  font-size: .78rem;
  line-height: 1.45;
}
.store-auth-privacy {
  margin-top: 17px;
  padding: 10px 12px;
  border: 1px solid rgba(34,197,94,.2);
  border-radius: 10px;
  background: rgba(34,197,94,.065);
  color: #ccebd8;
  font-size: .79rem;
  line-height: 1.5;
  text-align: center;
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--dark);
  color: var(--white);
  line-height: 1.6;
}

h1, h2, h3, .store-hero h1, .store-brand, .customer-shell h1, .customer-panel h2 {
  font-family: 'Outfit', 'Inter', system-ui, sans-serif;
}

.customer-copy-email-btn, .store-copy-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  margin-top: 6px;
  border: 1px solid rgba(99, 102, 241, 0.4);
  border-radius: 6px;
  background: rgba(99, 102, 241, 0.15);
  color: #a5b4fc;
  font-size: 0.76rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}
.customer-copy-email-btn:hover, .store-copy-link:hover {
  background: rgba(99, 102, 241, 0.3);
  color: #fff;
  transform: translateY(-1px);
}
.customer-paypal-email {
  display: block;
  word-break: break-all;
  color: #6EE7B7 !important;
  font-family: monospace;
}

.store-wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

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

.store-header {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  position: sticky;
  top: 0;
  background: rgba(5,8,22,0.9);
  backdrop-filter: blur(12px);
  z-index: 10;
}
.store-header .store-wrap { display: flex; justify-content: space-between; align-items: center; }
.store-brand { font-weight: 800; font-size: 1.2rem; }

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
}
.store-btn-primary { background: linear-gradient(135deg, var(--primary), var(--blue)); color: #fff; box-shadow: 0 12px 28px rgba(79,70,229,0.28); }
.store-btn-usdt { background: rgba(16,185,129,0.13); color: #6EE7B7; border: 1px solid rgba(16,185,129,0.34); }
.store-btn-tg { background: rgba(41,168,232,0.12); color: #29A8E8; border: 1px solid rgba(41,168,232,0.3); }
.store-btn-block { width: 100%; justify-content: center; }
.store-btn-outline { background: transparent; color: #fff; border: 1px solid var(--border); }
.store-header-actions { display: flex; align-items: center; gap: 14px; }
.store-link { color: var(--primary-light); font-weight: 700; }
.store-link-button { padding: 0; border: 0; background: transparent; cursor: pointer; }

.store-hero { padding: 60px 0 30px; text-align: center; }
.store-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 900; margin-bottom: 12px; letter-spacing: -1px; }
.store-hero p { color: var(--text-muted); max-width: 560px; margin: 0 auto; }

.store-main { padding: 20px 0 80px; }

.store-back { display: inline-block; margin-bottom: 24px; color: var(--text-muted); }
.store-back:hover { color: #fff; }

.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.store-product-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: block;
  transition: all 0.25s ease;
}
.store-product-card:hover { border-color: rgba(99,102,241,0.4); transform: translateY(-4px); }
.store-product-name { font-weight: 700; font-size: 1.05rem; margin-bottom: 8px; }
.store-product-desc { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 14px; }
.store-product-price { font-size: 1.6rem; font-weight: 900; margin-bottom: 14px; background: linear-gradient(135deg, var(--primary-light), var(--blue)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.store-badge { display: inline-block; padding: 5px 14px; border-radius: 99px; font-size: 0.75rem; font-weight: 700; }
.store-badge-out { background: rgba(245,101,101,0.15); color: var(--red); border: 1px solid rgba(245,101,101,0.3); }

.store-empty { text-align: center; padding: 60px 0; color: var(--text-muted); }

.store-product-detail { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: start; }
.store-product-detail h1 { font-size: 1.8rem; font-weight: 900; margin-bottom: 12px; }
.store-detail-price { font-size: 2.2rem; font-weight: 900; margin: 20px 0; }
.store-detail-price span { font-size: 1rem; color: var(--text-muted); font-weight: 500; }

.store-order-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.store-order-card h2 { margin-bottom: 18px; font-size: 1.2rem; }

.store-order-form label, .store-order-status-card label { display: block; margin-bottom: 14px; font-size: 0.85rem; color: var(--text-muted); }
.store-order-form input, .store-order-form textarea, .store-order-form select, select {
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  background: #0B0E26 !important;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: #fff !important;
  font-size: 0.95rem;
  font-family: inherit;
}
select option, option {
  background-color: #0B0E26 !important;
  color: #ffffff !important;
  padding: 10px 14px;
}
.store-order-form input:focus, .store-order-form textarea:focus, .store-order-form select:focus, select:focus { outline: none; border-color: var(--primary-light); }
.store-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.store-error { background: rgba(245,101,101,0.12); border: 1px solid rgba(245,101,101,0.3); color: #FCA5A5; padding: 10px 14px; border-radius: 10px; margin-bottom: 14px; font-size: 0.85rem; }
.store-success { background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.3); color: #6EE7B7; padding: 12px 16px; border-radius: 10px; margin-bottom: 16px; }
.store-notice { background: rgba(250,204,21,0.1); border: 1px solid rgba(250,204,21,0.25); color: #FDE68A; padding: 12px 16px; border-radius: 10px; }
.store-auth-card { max-width: 440px; margin: 50px auto; padding: 30px; background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius); }
.store-auth-card h1 { margin-bottom: 8px; }
.store-auth-card .store-muted { margin-bottom: 20px; }
.store-auth-link { text-align: center; margin-top: 16px; color: var(--text-muted); }
.store-auth-link a { color: var(--primary-light); }
.store-account-head { display: flex; justify-content: space-between; gap: 20px; align-items: center; margin: 20px 0 26px; }
.store-credit-card { min-width: 190px; padding: 18px 22px; background: linear-gradient(135deg,rgba(79,70,229,.2),rgba(59,130,246,.12)); border: 1px solid rgba(99,102,241,.35); border-radius: 14px; }
.store-credit-card span { display: block; color: var(--text-muted); font-size: .8rem; }
.store-credit-card strong { display: block; font-size: 2rem; margin-top: 4px; }
.store-panel { background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; margin-bottom: 20px; }
.store-panel h2 { font-size: 1.1rem; margin-bottom: 8px; }
.store-panel-head { display: flex; justify-content: space-between; gap: 12px; align-items: center; margin-bottom: 14px; }
.store-inline-form { display: flex; gap: 10px; margin-top: 18px; }
.store-inline-form input { flex: 1; min-width: 0; padding: 12px 14px; background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: 10px; color: #fff; text-transform: uppercase; }
.store-table-wrap { overflow-x: auto; }
.store-table { width: 100%; border-collapse: collapse; font-size: .86rem; }
.store-table th,.store-table td { padding: 11px 9px; text-align: left; border-bottom: 1px solid var(--border); }
.store-table th { color: var(--text-muted); font-size: .75rem; text-transform: uppercase; }
.store-balance-line { display: flex; justify-content: space-between; padding: 12px 0 18px; margin-bottom: 12px; border-bottom: 1px solid var(--border); }

.store-order-status-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}
.store-order-status-card h1 { margin: 10px 0; font-size: 1.4rem; }
.store-kv { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.store-kv span { color: var(--text-muted); }

.store-badge-status-pending_payment { background: rgba(250,204,21,0.15); color: var(--yellow); border: 1px solid rgba(250,204,21,0.3); }
.store-badge-status-paid, .store-badge-status-fulfilling { background: rgba(59,130,246,0.15); color: var(--blue); border: 1px solid rgba(59,130,246,0.3); }
.store-badge-status-fulfilled { background: rgba(16,185,129,0.15); color: var(--green); border: 1px solid rgba(16,185,129,0.3); }
.store-badge-status-failed, .store-badge-status-cancelled { background: rgba(245,101,101,0.15); color: var(--red); border: 1px solid rgba(245,101,101,0.3); }

.store-payment-box, .store-codes-box { margin-top: 24px; padding: 20px; background: rgba(255,255,255,0.03); border-radius: 12px; border: 1px solid var(--border); }
.store-payment-box h2, .store-codes-box h2 { font-size: 1rem; margin-bottom: 10px; }
.store-payment-box code { overflow-wrap: anywhere; white-space: normal; }
.store-usdt-form { margin-top: 18px; }
.store-usdt-form input { width: 100%; margin-top: 6px; padding: 12px 14px; background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 10px; color: #fff; font-size: 0.9rem; font-family: inherit; }
.store-usdt-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.store-code-list { list-style: none; margin-top: 10px; }
.store-code-list li { padding: 10px; background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.25); border-radius: 8px; margin-bottom: 8px; }
.store-code-list code { color: var(--green); font-size: 0.95rem; word-break: break-all; }

.store-footer { border-top: 1px solid var(--border); padding: 30px 0; text-align: center; color: var(--text-muted); font-size: 0.85rem; }
.store-muted { color: var(--text-muted); }

@media (max-width: 800px) {
  .store-product-detail { grid-template-columns: 1fr; }
  .store-account-head { align-items: stretch; flex-direction: column; }
  .store-inline-form { flex-direction: column; }
}

/* Ecommerce storefront */
body { background: radial-gradient(circle at 80% -10%,rgba(79,70,229,.18),transparent 32%),#060817; }
.store-wrap { max-width: 1240px; }
.store-nav { min-height: 56px; }
.store-brand { display:flex;align-items:center;gap:11px;line-height:1.15; }
.store-brand-mark { display:grid;place-items:center;width:38px;height:38px;border-radius:11px;box-shadow:0 8px 30px rgba(79,70,229,.35);overflow:hidden; }
.store-brand-mark img { display:block;width:100%;height:100%; }
.store-brand small { display:block;margin-top:3px;color:var(--text-muted);font-size:.62rem;font-weight:500;letter-spacing:.2px; }
.store-main-nav { display:flex;align-items:center;gap:28px;margin-left:auto;margin-right:36px; }
.store-main-nav a { position:relative;color:rgba(255,255,255,.72);font-size:.88rem;font-weight:650; }
.store-main-nav a:hover,.store-main-nav a.active { color:#fff; }
.store-main-nav a.active::after { position:absolute;left:0;right:0;bottom:-20px;height:2px;border-radius:99px;background:linear-gradient(90deg,var(--primary-light),var(--blue));content:''; }
.store-main-nav b,.store-cart-link b { display:inline-grid;place-items:center;min-width:19px;height:19px;margin-left:5px;padding:0 5px;border-radius:99px;background:var(--primary);font-size:.66rem;color:#fff; }
.store-cart-link,.store-icon-link { position:relative;display:flex;align-items:center;gap:8px;color:#fff;font-size:.85rem;font-weight:750; }
.store-cart-icon { position:relative;width:18px;height:16px;border:2px solid currentColor;border-top:0;border-radius:0 0 5px 5px; }
.store-cart-icon::before { position:absolute;left:2px;right:2px;top:-7px;height:8px;border:2px solid currentColor;border-bottom:0;border-radius:8px 8px 0 0;content:''; }
.store-icon-dot { width:11px;height:11px;border:2px solid #fff;border-radius:50%;box-shadow:9px 0 0 -2px #fff; }
.store-icon-label { display:inline; }
.store-avatar { display:grid;place-items:center;width:38px;height:38px;border:1px solid rgba(99,102,241,.4);border-radius:11px;background:rgba(79,70,229,.16);font-weight:800; }
.store-eyebrow { display:block;margin-bottom:12px;color:#8ea2ff;font-size:.72rem;font-weight:800;letter-spacing:1.6px;text-transform:uppercase; }
.store-hero { padding:72px 0 58px;text-align:left;overflow:hidden; }
.store-hero-grid { display:grid;grid-template-columns:1.03fr .97fr;gap:70px;align-items:center; }
.store-hero-copy h1 { max-width:680px;font-size:clamp(2.7rem,5.6vw,5.1rem);line-height:1.03;letter-spacing:-3.6px; }
.store-hero-copy h1 em { color:transparent;background:linear-gradient(90deg,#8b8fff,#53c8ff);background-clip:text;-webkit-background-clip:text;font-style:normal; }
.store-hero-copy>p { max-width:600px;margin:24px 0;color:rgba(255,255,255,.66);font-size:1.05rem; }
.store-hero-actions { display:flex;gap:12px;margin:30px 0 25px; }
.store-trust-row { display:flex;gap:22px;flex-wrap:wrap;color:rgba(255,255,255,.54);font-size:.78rem; }
.store-hero-art { position:relative; }
.store-hero-art>img { display:block;width:100%;aspect-ratio:1/1;object-fit:contain;background:#050718;border:1px solid rgba(113,120,255,.26);border-radius:30px;box-shadow:0 34px 100px rgba(0,0,0,.45); }
.store-floating-card { position:absolute;padding:12px 15px;border:1px solid rgba(255,255,255,.13);border-radius:13px;background:rgba(12,16,43,.88);backdrop-filter:blur(14px);box-shadow:0 12px 35px rgba(0,0,0,.35); }
.store-floating-card strong,.store-floating-card span { display:block; }.store-floating-card strong{font-size:.78rem}.store-floating-card span{color:var(--text-muted);font-size:.66rem}
.store-floating-one { left:-28px;bottom:30px; }.store-floating-two{right:-20px;top:28px}
.store-benefits { border-top:1px solid var(--border);border-bottom:1px solid var(--border);background:rgba(255,255,255,.018); }
.store-benefit-grid { display:grid;grid-template-columns:repeat(3,1fr); }
.store-benefit-grid article { display:flex;gap:15px;padding:25px 30px;border-right:1px solid var(--border); }.store-benefit-grid article:last-child{border:0}
.store-benefit-grid b { color:#7585ff;font-size:.72rem; }.store-benefit-grid strong{font-size:.86rem}.store-benefit-grid p{margin-top:3px;color:var(--text-muted);font-size:.73rem;line-height:1.45}
.store-catalog { padding-top:76px; }
.store-section-heading,.store-page-heading { display:flex;justify-content:space-between;gap:30px;align-items:end;margin-bottom:30px; }
.store-section-heading h2,.store-page-heading h1 { font-size:clamp(1.8rem,3vw,2.65rem);letter-spacing:-1.3px; }.store-section-heading p,.store-page-heading p{color:var(--text-muted)}
.store-search { display:flex;width:min(100%,330px);border:1px solid var(--border);border-radius:13px;background:rgba(255,255,255,.04);overflow:hidden; }
.store-search input { flex:1;min-width:0;padding:12px 15px;border:0;outline:0;background:transparent;color:#fff; }.store-search button{width:48px;border:0;background:transparent;color:#fff;font-size:1.25rem;cursor:pointer}
.store-category-tabs { display:flex;gap:8px;overflow:auto;margin-bottom:28px;padding-bottom:3px; }.store-category-tabs a{white-space:nowrap;padding:8px 15px;border:1px solid var(--border);border-radius:99px;color:var(--text-muted);font-size:.76rem;font-weight:700}.store-category-tabs a.active,.store-category-tabs a:hover{border-color:rgba(99,102,241,.55);background:rgba(79,70,229,.14);color:#fff}
.store-grid { grid-template-columns:repeat(3,minmax(0,1fr));gap:24px; }
.store-product-card { position:relative;padding:0;overflow:hidden;background:#0c1024;border-color:rgba(255,255,255,.08);box-shadow:0 15px 40px rgba(0,0,0,.18); }
.store-product-card:hover { box-shadow:0 22px 60px rgba(0,0,0,.34); }
.store-product-image { display:block;position:relative;aspect-ratio:4/3;overflow:hidden;background:#10152d; }.store-product-image img{width:100%;height:100%;object-fit:cover;transition:transform .4s ease}.store-product-card:hover .store-product-image img{transform:scale(1.035)}
.store-product-badge { position:absolute;top:14px;left:14px;padding:6px 11px;border-radius:99px;background:rgba(8,11,27,.8);backdrop-filter:blur(8px);font-size:.64rem;font-weight:800;text-transform:uppercase;letter-spacing:.7px; }
.store-favorite-form { position:absolute;z-index:2;top:12px;right:12px; }.store-favorite-btn{display:grid;place-items:center;width:37px;height:37px;border:1px solid rgba(255,255,255,.16);border-radius:50%;background:rgba(7,10,25,.76);color:#fff;font-size:1.2rem;cursor:pointer;backdrop-filter:blur(8px)}.store-favorite-btn.active{color:#fb7185}
.store-product-body { padding:20px; }.store-product-meta{display:flex;justify-content:space-between;gap:10px;align-items:center;margin-bottom:10px;color:#7f91e9;font-size:.67rem;font-weight:750;text-transform:uppercase;letter-spacing:.55px}.store-stock{font-size:.62rem}.store-stock.in{color:#4ade80}.store-stock.out{color:#fb7185}
.store-product-name { min-height:2.7em;margin-bottom:8px;font-size:1.03rem;line-height:1.35; }.store-product-desc{height:3.8em;overflow:hidden;margin-bottom:18px;line-height:1.55}.store-product-bottom{display:flex;justify-content:space-between;align-items:end;gap:12px}.store-product-price{display:block;margin:0;font-size:1.35rem}.store-product-bottom small{display:block;color:var(--text-muted);font-size:.64rem}
.store-add-btn { display:inline-flex;align-items:center;justify-content:center;padding:9px 13px;border:1px solid rgba(99,102,241,.35);border-radius:10px;background:rgba(79,70,229,.14);color:#b7baff;font-size:.72rem;font-weight:800;cursor:pointer; }
.store-cta { display:flex;justify-content:space-between;align-items:center;gap:30px;margin:80px 0 0;padding:36px 40px;border:1px solid rgba(99,102,241,.23);border-radius:22px;background:linear-gradient(110deg,rgba(79,70,229,.17),rgba(59,130,246,.07)); }.store-cta h2{max-width:700px;font-size:clamp(1.4rem,3vw,2.2rem);line-height:1.2}
.store-breadcrumb { display:flex;gap:10px;margin:10px 0 26px;color:var(--text-muted);font-size:.78rem; }
.store-product-detail { grid-template-columns:1fr 1fr;gap:62px; }.store-detail-image{position:relative;overflow:hidden;border:1px solid var(--border);border-radius:24px}.store-detail-image img{display:block;width:100%;aspect-ratio:4/3;object-fit:cover}.store-gallery-note{display:flex;justify-content:space-between;gap:10px;padding:16px 4px;color:var(--text-muted);font-size:.68rem}.store-detail-copy h1{margin:12px 0;font-size:clamp(2rem,4vw,3.2rem);line-height:1.08;letter-spacing:-2px}.store-detail-rating{display:flex;gap:12px;align-items:center}.store-detail-rating span{color:#facc15;letter-spacing:2px}.store-detail-rating small{color:var(--text-muted)}.store-detail-description{margin:22px 0;color:rgba(255,255,255,.66);line-height:1.8}.store-detail-price-row{display:flex;gap:16px;align-items:baseline;padding:18px 0;border-top:1px solid var(--border);border-bottom:1px solid var(--border)}.store-detail-price-row strong{font-size:2rem}.store-detail-price-row span{color:var(--text-muted);font-size:.78rem}.store-feature-list{display:grid;grid-template-columns:1fr 1fr;gap:11px;margin:24px 0;list-style:none;font-size:.78rem}.store-feature-list li:before{content:'✓';margin-right:8px;color:#4ade80}.store-purchase-box{padding:19px;border:1px solid var(--border);border-radius:15px;background:rgba(255,255,255,.025)}.store-detail-cart-form{display:grid;grid-template-columns:95px 1fr;gap:10px;margin-bottom:10px}.store-detail-cart-form label{font-size:.66rem;color:var(--text-muted)}.store-detail-cart-form input{display:block;width:100%;margin-top:3px;padding:9px;border:1px solid var(--border);border-radius:9px;background:#080b1d;color:#fff}.store-info-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:70px}.store-info-grid article{padding:24px;border:1px solid var(--border);border-radius:15px;background:rgba(255,255,255,.025)}.store-info-grid span{color:#7e8fff;font-size:.65rem;text-transform:uppercase;font-weight:800}.store-info-grid h2{margin:8px 0;font-size:1rem}.store-info-grid p{color:var(--text-muted);font-size:.77rem;line-height:1.6}
.store-cart-layout { display:grid;grid-template-columns:minmax(0,1fr) 350px;gap:26px;align-items:start}.store-cart-list{display:grid;gap:13px}.store-cart-item{display:grid;grid-template-columns:110px minmax(0,1fr) 110px 34px;gap:18px;align-items:center;padding:14px;border:1px solid var(--border);border-radius:15px;background:rgba(255,255,255,.025)}.store-cart-item>img{width:110px;aspect-ratio:4/3;object-fit:cover;border-radius:11px}.store-cart-copy h2{font-size:.93rem}.store-cart-copy p{color:var(--text-muted);font-size:.7rem}.store-cart-copy strong{font-size:.76rem;color:#8ea2ff}.store-cart-qty label{font-size:.65rem;color:var(--text-muted)}.store-cart-qty input{display:block;width:70px;margin:3px 0;padding:7px;border:1px solid var(--border);border-radius:8px;background:#080b1d;color:#fff}.store-remove-btn{width:30px;height:30px;border:0;border-radius:50%;background:rgba(248,113,113,.1);color:#fb7185;font-size:1.2rem;cursor:pointer}.store-cart-summary{position:sticky;top:100px;padding:24px;border:1px solid var(--border);border-radius:18px;background:#0c1024}.store-cart-summary h2{margin-bottom:18px}.store-summary-row{display:flex;justify-content:space-between;padding:10px 0;color:var(--text-muted);font-size:.8rem}.store-summary-row strong{color:#fff}.store-summary-total{margin-top:8px;padding-top:17px;border-top:1px solid var(--border);font-size:.95rem}.store-balance-panel{display:flex;justify-content:space-between;margin:15px 0;padding:13px;border-radius:10px;background:rgba(79,70,229,.12);font-size:.77rem}.store-cart-summary .store-notice{margin:12px 0;font-size:.72rem}.store-checkout-actions{display:grid;gap:10px}.store-payment-note{color:var(--text-muted);font-size:.67rem;line-height:1.45}.store-trust-list{display:grid;gap:6px;margin-top:18px;color:var(--text-muted);font-size:.65rem}.store-empty-state{padding:70px 25px;text-align:center;border:1px dashed rgba(255,255,255,.14);border-radius:18px;background:rgba(255,255,255,.02)}.store-empty-icon{margin-bottom:10px;font-size:2.2rem}.store-empty-state p{margin:7px 0 20px;color:var(--text-muted)}
.store-footer { margin-top:80px;padding:45px 0 20px;text-align:left;background:rgba(0,0,0,.12) }.store-footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr;gap:50px}.store-footer-grid strong{font-size:1.1rem}.store-footer-grid p,.store-footer-grid a{display:block;margin-top:7px;color:var(--text-muted);font-size:.74rem}.store-footer-grid span{font-size:.72rem;font-weight:800;text-transform:uppercase;letter-spacing:.7px}.store-footer-bottom{margin-top:30px;padding-top:18px;border-top:1px solid var(--border);color:var(--text-muted);font-size:.68rem}
@media(max-width:980px){.store-main-nav{display:none}.store-hero-grid{grid-template-columns:1fr}.store-hero-art{max-width:680px}.store-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.store-product-detail{grid-template-columns:1fr}.store-cart-layout{grid-template-columns:1fr}.store-cart-summary{position:static}.store-benefit-grid{grid-template-columns:1fr}.store-benefit-grid article{border-right:0;border-bottom:1px solid var(--border)}}
@media(max-width:650px){.store-wrap{padding:0 16px}.store-header{padding:10px 0}.store-brand small,.store-cart-link span{display:none}.store-header-actions{gap:9px}.store-header-actions>.store-link{display:none}.store-hero{padding:45px 0}.store-hero-copy h1{letter-spacing:-2px}.store-hero-actions{flex-direction:column;align-items:stretch}.store-hero-actions .store-btn{justify-content:center}.store-floating-card{display:none}.store-section-heading,.store-page-heading,.store-cta{align-items:stretch;flex-direction:column}.store-search{width:100%}.store-grid{grid-template-columns:1fr}.store-product-card{max-width:470px;margin:auto}.store-feature-list,.store-info-grid{grid-template-columns:1fr}.store-gallery-note{flex-wrap:wrap}.store-cart-item{grid-template-columns:80px minmax(0,1fr) 30px}.store-cart-item>img{width:80px}.store-cart-qty{grid-column:2}.store-cart-item>form:last-child{grid-column:3;grid-row:1}.store-footer-grid{grid-template-columns:1fr;gap:25px}}

/* Production UI refinement */
html { color-scheme: dark; scroll-behavior: smooth; }
body { min-width: 320px; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
button, input, textarea, select { font: inherit; }
a, button, input, textarea, select { transition: border-color .2s ease, background-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible { outline: 3px solid rgba(96,165,250,.55); outline-offset: 3px; }
.store-btn:hover, .store-add-btn:hover { transform: translateY(-1px); filter: brightness(1.08); }
.store-mobile-shop, .store-mobile-favorite, .store-join-short { display: none; }
.store-product-card { height: 100%; display: flex; flex-direction: column; }
.store-product-body { display: flex; flex: 1; flex-direction: column; }
.store-product-bottom { margin-top: auto; }
.store-product-image img { background: #0d1228; }
.store-notice { line-height: 1.65; overflow-wrap: anywhere; }
.store-order-form input, .store-order-form textarea, .store-inline-form input { min-height: 46px; }
.store-delivery-link { display: grid; gap: 4px; color: #fff; }
.store-delivery-link span { font-weight: 800; color: #6ee7b7; }
.store-delivery-link small { color: rgba(255,255,255,.62); overflow-wrap: anywhere; }

@media (max-width: 980px) {
  .store-hero-grid { gap: 42px; }
  .store-hero-copy h1 { font-size: clamp(2.75rem, 9vw, 4.35rem); }
}

@media (max-width: 650px) {
  .store-header { padding: 8px 0; }
  .store-nav { min-height: 52px; gap: 10px; }
  .store-brand { min-width: 0; gap: 8px; }
  .store-brand-mark { width: 34px; height: 34px; border-radius: 10px; flex: 0 0 34px; }
  .store-brand-copy { max-width: 124px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: .94rem; }
  .store-brand small { display: none; }
  .store-header-actions { margin-left: auto; gap: 8px; flex: 0 0 auto; }
  .store-theme-toggle { width: 34px; height: 34px; flex-basis: 34px; }
  .store-signin-link { display: inline-flex !important; font-size: .78rem; white-space: nowrap; }
  .store-join-btn { min-height: 38px; padding: 8px 15px; font-size: .78rem; box-shadow: 0 5px 18px rgba(79,70,229,.3); }
  .store-join-full { display: none; }
  .store-join-short, .store-mobile-shop, .store-mobile-favorite { display: inline-flex; }
  .store-mobile-shop { color: #aeb6ff; font-size: .75rem; font-weight: 800; }
  .store-mobile-favorite { position: relative; align-items: center; font-size: 1.3rem; }
  .store-mobile-favorite b { position: absolute; top: -4px; right: -7px; display: grid; place-items: center; min-width: 16px; height: 16px; padding: 0 4px; border-radius: 99px; background: var(--primary); color: #fff; font-size: .58rem; }
  .store-avatar { width: 34px; height: 34px; }
  .store-hero { padding: 42px 0 34px; }
  .store-hero-grid { gap: 38px; }
  .store-hero-copy h1 { font-size: clamp(2.5rem, 13vw, 3.5rem); line-height: 1.02; letter-spacing: -2.4px; }
  .store-hero-copy>p { margin: 18px 0; font-size: .98rem; }
  .store-hero-actions { margin: 24px 0 20px; }
  .store-trust-row { gap: 10px 18px; }
  .store-hero-art>img { border-radius: 20px; }
  .store-benefit-grid article { padding: 20px 16px; }
  .store-catalog { padding-top: 52px; }
  .store-section-heading, .store-page-heading { gap: 18px; margin-bottom: 22px; }
  .store-section-heading h2, .store-page-heading h1 { font-size: 2rem; line-height: 1.15; }
  .store-product-body { padding: 18px; }
  .store-product-name { min-height: 0; font-size: 1.08rem; }
  .store-product-desc { height: auto; max-height: 4.7em; }
  .store-cta { margin-top: 54px; padding: 26px 22px; }
  .store-main { padding-top: 16px; }
  .store-breadcrumb { margin: 4px 0 18px; }
  .store-product-detail { gap: 24px; }
  .store-detail-image { border-radius: 18px; }
  .store-gallery-note { padding: 12px 2px 2px; font-size: .65rem; }
  .store-detail-copy h1 { margin: 8px 0; font-size: 2.05rem; letter-spacing: -1.2px; }
  .store-detail-description { margin: 16px 0; }
  .store-detail-price-row { padding: 14px 0; flex-wrap: wrap; }
  .store-feature-list { margin: 18px 0; }
  .store-info-grid { margin-top: 42px; }
  .store-auth-card { margin: 26px auto; padding: 24px 20px; }
  .store-account-head { margin-top: 8px; }
  .store-panel { padding: 20px 16px; }
  .store-inline-form .store-btn { width: 100%; justify-content: center; }
  .store-order-status-card { padding: 24px 18px; }
  .store-cart-item { gap: 12px; padding: 12px; }
  .store-cart-summary { padding: 20px 16px; }
  .store-footer { margin-top: 54px; }
}

@media (max-width: 370px) {
  .store-brand-copy { max-width: 98px; }
  .store-signin-link { display: none !important; }
  .store-mobile-shop { display: none; }
}

/* Order status and private delivery */
.store-order-status-card { max-width: 760px; padding: 38px; background: linear-gradient(145deg,rgba(17,21,43,.98),rgba(11,14,32,.98)); box-shadow: 0 28px 80px rgba(0,0,0,.28); }
.store-order-status-head { display: grid; grid-template-columns: 54px minmax(0,1fr); gap: 18px; align-items: start; margin-bottom: 24px; }
.store-order-status-head h1 { margin: 11px 0 4px; font-size: clamp(1.45rem,3vw,2rem); letter-spacing: -.6px; overflow-wrap: anywhere; }
.store-order-status-icon { display: grid; place-items: center; width: 54px; height: 54px; border: 1px solid rgba(16,185,129,.35); border-radius: 16px; background: rgba(16,185,129,.12); color: #34d399; font-size: 1.45rem; font-weight: 900; }
.store-order-status-card>.store-kv { padding: 13px 0; }
.store-order-status-card>.store-kv strong { text-align: right; }
.store-codes-box { margin-top: 28px; padding: 24px; background: rgba(255,255,255,.025); }
.store-delivery-heading { display: flex; justify-content: space-between; gap: 20px; align-items: center; margin-bottom: 18px; }
.store-delivery-heading .store-eyebrow { margin-bottom: 4px; }
.store-delivery-heading h2 { margin: 0; font-size: 1.2rem; }
.store-delivery-count { flex: 0 0 auto; padding: 5px 10px; border-radius: 99px; background: rgba(16,185,129,.12); color: #6ee7b7; font-size: .68rem; font-weight: 800; }
.store-code-list { display: grid; gap: 11px; margin: 0; }
.store-code-list li { margin: 0; padding: 0; border: 0; background: transparent; }
.store-delivery-item { display: flex; justify-content: space-between; gap: 18px; align-items: center; padding: 16px; border: 1px solid rgba(52,211,153,.2); border-radius: 13px; background: rgba(16,185,129,.06); }
.store-delivery-item-copy { min-width: 0; display: grid; gap: 4px; }
.store-delivery-item-copy strong { font-size: .9rem; }
.store-delivery-item-copy small { color: rgba(255,255,255,.52); font-size: .7rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.store-delivery-item-copy code { color: #6ee7b7; overflow-wrap: anywhere; }
.store-delivery-actions { display: flex; flex: 0 0 auto; gap: 8px; }
.store-copy-link, .store-open-link { display: inline-flex; align-items: center; justify-content: center; min-height: 38px; padding: 8px 13px; border-radius: 9px; font-size: .72rem; font-weight: 800; cursor: pointer; white-space: nowrap; }
.store-copy-link { border: 1px solid rgba(255,255,255,.13); background: rgba(255,255,255,.05); color: #fff; }
.store-copy-link:hover { background: rgba(255,255,255,.1); }
.store-copy-link.copied { border-color: rgba(16,185,129,.45); color: #6ee7b7; }
.store-open-link { border: 1px solid rgba(99,102,241,.35); background: linear-gradient(135deg,#4f46e5,#3b82f6); color: #fff; }
.store-delivery-help { margin-top: 16px; color: rgba(255,255,255,.5); font-size: .72rem; }

/* Customer trust and recovery refinements. */
.store-detail-rating span { color: #4ade80; font-weight: 900; letter-spacing: 0; }
.store-auth-help { margin-top: 12px; color: var(--text-muted); font-size: .75rem; text-align: center; }
.store-auth-help a { color: #9ba9ff; font-weight: 750; }
.store-auth-help a:hover { color: #fff; }

/* Square product artwork: preserve the full promotional composition. */
.store-product-image { aspect-ratio: 1 / 1; }
.store-product-image img { object-fit: contain; }
.store-detail-image img { aspect-ratio: 1 / 1; object-fit: contain; }
.store-detail-price-row span::after { content: " · 2 private links included"; color: #6ee7b7; }

@media (max-width: 650px) {
  .store-order-status-card { padding: 22px 16px; }
  .store-order-status-head { grid-template-columns: 42px minmax(0,1fr); gap: 12px; }
  .store-order-status-icon { width: 42px; height: 42px; border-radius: 12px; font-size: 1.1rem; }
  .store-order-status-head h1 { font-size: 1.28rem; }
  .store-order-status-card>.store-kv { gap: 16px; align-items: start; }
  .store-order-status-card>.store-kv strong { max-width: 62%; }
  .store-codes-box { padding: 18px 13px; }
  .store-delivery-heading { align-items: flex-start; }
  .store-delivery-item { align-items: stretch; flex-direction: column; gap: 13px; }
  .store-delivery-actions { width: 100%; }
  .store-copy-link, .store-open-link { flex: 1; }
}

/* Customer account dashboard */
.account-page { padding-top: 28px; }
.account-hero { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 30px; overflow: hidden; margin-bottom: 22px; padding: 28px 30px; border: 1px solid rgba(99,102,241,.28); border-radius: 22px; background: linear-gradient(115deg,rgba(79,70,229,.2),rgba(13,18,46,.94) 48%,rgba(59,130,246,.12)); box-shadow: 0 24px 70px rgba(0,0,0,.22); }
.account-hero::after { position: absolute; right: -60px; bottom: -90px; width: 260px; height: 220px; border-radius: 50%; background: rgba(59,130,246,.2); filter: blur(70px); content: ''; }
.account-identity { position: relative; z-index: 1; display: flex; min-width: 0; align-items: center; gap: 18px; }
.account-avatar-large { display: grid; width: 66px; height: 66px; flex: 0 0 66px; place-items: center; border: 1px solid rgba(147,158,255,.42); border-radius: 19px; background: linear-gradient(145deg,#5b50e6,#2778f4); box-shadow: 0 14px 35px rgba(48,75,226,.3); font-size: 1.55rem; font-weight: 900; }
.account-identity .store-eyebrow { margin-bottom: 5px; }
.account-identity h1 { font-size: clamp(1.5rem,3vw,2.15rem); line-height: 1.13; letter-spacing: -.8px; }
.account-identity p { margin-top: 5px; color: rgba(255,255,255,.58); font-size: .8rem; overflow-wrap: anywhere; }
.account-contact-line { display: flex; flex-wrap: wrap; gap: 5px 15px; }
.account-contact-line span + span::before { margin-right: 8px; color: rgba(255,255,255,.28); content: '•'; }
.account-hero-actions { position: relative; z-index: 1; display: flex; flex: 0 0 auto; gap: 10px; }
.account-alert { margin-bottom: 18px; }

.account-stat-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.account-stat { display: flex; align-items: center; gap: 15px; min-height: 126px; padding: 21px; border: 1px solid var(--border); border-radius: 17px; background: linear-gradient(145deg,rgba(18,23,52,.94),rgba(10,13,32,.96)); }
.account-stat-primary { border-color: rgba(99,102,241,.32); background: linear-gradient(145deg,rgba(69,59,189,.25),rgba(14,19,49,.97)); }
.account-stat-icon { display: grid; width: 47px; height: 47px; flex: 0 0 47px; place-items: center; border: 1px solid rgba(113,128,255,.32); border-radius: 14px; background: rgba(79,70,229,.16); color: #9da8ff; }
.account-stat-icon-green { border-color: rgba(52,211,153,.28); background: rgba(16,185,129,.11); color: #5ee6b3; }
.account-stat-icon svg { width: 25px; height: 25px; }
.account-stat small { display: block; color: var(--text-muted); font-size: .67rem; font-weight: 750; letter-spacing: .5px; text-transform: uppercase; }
.account-stat strong { display: block; margin-top: 3px; font-size: 1.65rem; line-height: 1.1; }
.account-stat strong em { color: #aeb6ff; font-size: .72rem; font-style: normal; font-weight: 700; }
.account-stat p { margin-top: 6px; color: rgba(255,255,255,.45); font-size: .67rem; }

.account-content-grid { display: grid; grid-template-columns: minmax(0,1.55fr) minmax(290px,.65fr); gap: 20px; margin-bottom: 20px; }
.account-card { border: 1px solid var(--border); border-radius: 19px; background: linear-gradient(145deg,rgba(16,20,44,.96),rgba(9,12,29,.98)); box-shadow: 0 18px 50px rgba(0,0,0,.15); }
.account-payment-card { padding: 27px; }
.account-card-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.account-title-with-icon { display: flex; min-width: 0; align-items: center; gap: 14px; }
.account-title-with-icon .store-eyebrow { margin-bottom: 3px; }
.account-title-with-icon h2, .account-card-head h2 { font-size: 1.15rem; }
.account-payment-icon, .account-security-icon { display: grid; width: 48px; height: 48px; flex: 0 0 48px; place-items: center; border: 1px solid rgba(99,102,241,.34); border-radius: 14px; background: rgba(79,70,229,.15); color: #9da8ff; }
.account-payment-icon svg, .account-security-icon svg { width: 26px; height: 26px; }
.account-live-status { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 7px; padding: 6px 10px; border: 1px solid rgba(250,204,21,.27); border-radius: 99px; background: rgba(250,204,21,.09); color: #fde68a; font-size: .63rem; font-weight: 800; text-transform: uppercase; }
.account-live-status i { width: 7px; height: 7px; border-radius: 50%; background: currentColor; box-shadow: 0 0 8px currentColor; }
.account-live-status.is-live { border-color: rgba(52,211,153,.3); background: rgba(16,185,129,.1); color: #6ee7b7; }
.account-payment-summary { display: grid; grid-template-columns: minmax(0,1.35fr) minmax(180px,.65fr); gap: 12px; margin: 23px 0 19px; }
.account-payment-summary>div { display: grid; align-content: center; min-height: 96px; padding: 17px 18px; border: 1px solid rgba(255,255,255,.09); border-radius: 13px; background: rgba(255,255,255,.025); }
.account-payment-summary>div:last-child { border-color: rgba(250,204,21,.2); background: rgba(250,204,21,.055); }
.account-payment-summary small { color: var(--text-muted); font-size: .65rem; font-weight: 750; text-transform: uppercase; }
.account-payment-summary strong { margin-top: 5px; font-size: 1rem; overflow-wrap: anywhere; }
.account-payment-summary>div:last-child strong { color: #fde047; font-size: 1.45rem; }
.account-payment-summary strong em { font-size: .65rem; font-style: normal; }
.account-payment-summary span { color: rgba(255,255,255,.5); font-size: .64rem; }
.account-payment-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; margin: 0; padding: 0; list-style: none; }
.account-payment-steps li { display: flex; min-width: 0; gap: 10px; padding: 13px; border: 1px solid rgba(255,255,255,.07); border-radius: 11px; background: rgba(255,255,255,.018); }
.account-payment-steps b { display: grid; width: 27px; height: 27px; flex: 0 0 27px; place-items: center; border-radius: 9px; background: rgba(79,70,229,.22); color: #acb5ff; font-size: .67rem; }
.account-payment-steps span { min-width: 0; }
.account-payment-steps strong { display: block; font-size: .7rem; }
.account-payment-steps small { display: block; margin-top: 3px; color: rgba(255,255,255,.45); font-size: .59rem; line-height: 1.45; }
.account-redeem-form { margin-top: 20px; padding-top: 19px; border-top: 1px solid var(--border); }
.account-redeem-form>label { display: block; margin-bottom: 7px; color: #dce0f1; font-size: .72rem; font-weight: 750; }
.account-redeem-controls { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 10px; }
.account-redeem-controls input { min-width: 0; min-height: 48px; padding: 11px 14px; border: 1px solid rgba(99,102,241,.32); border-radius: 11px; outline: 0; background: #080b1d; color: #fff; font: inherit; letter-spacing: 1.3px; text-transform: uppercase; }
.account-redeem-controls input:focus { border-color: #6875ff; box-shadow: 0 0 0 3px rgba(99,102,241,.14); }
.account-redeem-form>small { display: block; margin-top: 7px; color: rgba(255,255,255,.42); font-size: .64rem; }

.account-guide-card { padding: 27px 23px; }
.account-guide-card h2 { font-size: 1.25rem; }
.account-guide-list { display: grid; gap: 3px; margin: 18px 0 21px; list-style: none; }
.account-guide-list li { display: grid; grid-template-columns: 31px minmax(0,1fr); gap: 11px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.065); }
.account-guide-list li>span { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 9px; background: rgba(79,70,229,.17); color: #9da8ff; font-size: .63rem; font-weight: 850; }
.account-guide-list strong { display: block; font-size: .76rem; }
.account-guide-list small { display: block; margin-top: 3px; color: rgba(255,255,255,.45); font-size: .63rem; line-height: 1.45; }

.account-orders-card { margin-bottom: 20px; padding: 27px; }
.account-orders-head { margin-bottom: 15px; }
.account-orders-head .store-eyebrow { margin-bottom: 3px; }
.account-orders-table .store-table td { vertical-align: middle; }
.account-orders-table .store-table td:first-child { color: #dce1ff; font-size: .78rem; }
.account-orders-table .store-badge { padding: 4px 9px; font-size: .62rem; text-transform: capitalize; }
.account-order-list { display: none; }
.account-empty-orders { padding: 45px 18px 30px; text-align: center; }
.account-empty-orders>span { display: grid; width: 52px; height: 52px; margin: 0 auto 12px; place-items: center; border-radius: 15px; background: rgba(79,70,229,.15); color: #a8b0ff; font-size: 1.4rem; }
.account-empty-orders h3 { font-size: 1rem; }
.account-empty-orders p { margin: 6px 0 18px; color: var(--text-muted); font-size: .75rem; }

.account-security-card { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 25px; }
.account-security-icon { border-color: rgba(52,211,153,.24); background: rgba(16,185,129,.08); color: #6ee7b7; }
.account-security-card p { margin-top: 4px; color: var(--text-muted); font-size: .7rem; }

@media (max-width: 980px) {
  .account-content-grid { grid-template-columns: 1fr; }
  .account-guide-list { grid-template-columns: repeat(2,1fr); gap: 0 18px; }
}

@media (max-width: 760px) {
  .account-hero { align-items: stretch; flex-direction: column; padding: 23px 20px; }
  .account-hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .account-stat-grid { grid-template-columns: 1fr 1fr; }
  .account-stat-primary { grid-column: 1 / -1; }
  .account-payment-summary { grid-template-columns: 1fr; }
  .account-payment-steps { grid-template-columns: 1fr; }
  .account-payment-steps li { align-items: center; }
  .account-orders-table { display: none; }
  .account-order-list { display: grid; gap: 11px; }
  .account-order-item { padding: 16px; border: 1px solid rgba(255,255,255,.08); border-radius: 13px; background: rgba(255,255,255,.02); }
  .account-order-item-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
  .account-order-item-head>strong { font-size: .72rem; overflow-wrap: anywhere; }
  .account-order-item .store-badge { padding: 4px 8px; font-size: .58rem; text-transform: capitalize; }
  .account-order-item h3 { margin: 12px 0 6px; font-size: .9rem; }
  .account-order-meta { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 14px; color: var(--text-muted); font-size: .65rem; }
}

@media (max-width: 560px) {
  .account-page { padding-top: 14px; }
  .account-identity { align-items: flex-start; }
  .account-avatar-large { width: 49px; height: 49px; flex-basis: 49px; border-radius: 14px; font-size: 1.15rem; }
  .account-identity h1 { font-size: 1.35rem; }
  .account-contact-line { display: grid; gap: 3px; }
  .account-contact-line span + span::before { display: none; }
  .account-hero-actions { grid-template-columns: 1fr; }
  .account-stat-grid { grid-template-columns: 1fr; }
  .account-stat-primary { grid-column: auto; }
  .account-stat { min-height: 104px; padding: 17px; }
  .account-payment-card, .account-guide-card, .account-orders-card { padding: 19px 15px; }
  .account-card-head { align-items: flex-start; flex-direction: column; }
  .account-title-with-icon { align-items: flex-start; }
  .account-payment-summary { margin-top: 18px; }
  .account-redeem-controls { grid-template-columns: 1fr; }
  .account-redeem-controls .store-btn { width: 100%; }
  .account-guide-list { grid-template-columns: 1fr; }
  .account-security-card { align-items: stretch; flex-direction: column; padding: 20px 16px; }
  .account-security-card .store-btn { width: 100%; justify-content: center; }
}

/* Cart stock correction states */
.store-cart-item-warning {
  border-color: rgba(245,158,11,.38);
  background: rgba(245,158,11,.05);
}
.store-cart-unavailable {
  padding: 7px 10px;
  border: 1px solid rgba(248,113,113,.22);
  border-radius: 9px;
  color: #fb7185;
  background: rgba(248,113,113,.08);
  font-size: .72rem;
  font-weight: 800;
  text-align: center;
}

/* Customer auth experience */
.auth-page { padding-top: 34px; }
.auth-shell {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .72fr);
  gap: 22px;
  align-items: stretch;
  max-width: 1060px;
  margin: 0 auto;
}
.auth-aside,
.auth-panel {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(16,20,44,.96), rgba(9,12,29,.98));
  box-shadow: var(--soft-shadow);
}
.auth-aside {
  display: grid;
  align-content: end;
  min-height: 560px;
  padding: 34px;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(145deg, rgba(79,70,229,.25), rgba(9,12,29,.96) 52%),
    url("../images/products/gemini-pro-18m-v2.webp") center 42px / min(72%, 420px) auto no-repeat,
    #0b1025;
}
.auth-aside::after {
  position: absolute;
  inset: auto 30px 30px 30px;
  height: 44%;
  background: linear-gradient(180deg, transparent, rgba(8,10,26,.96) 52%);
  content: "";
  pointer-events: none;
}
.auth-aside > * { position: relative; z-index: 1; }
.auth-aside h1 {
  max-width: 560px;
  font-size: clamp(2rem, 4.8vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -2px;
}
.auth-aside p {
  max-width: 560px;
  margin-top: 18px;
  color: rgba(255,255,255,.66);
  font-size: .98rem;
}
.auth-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}
.auth-benefits span {
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.78);
  font-size: .72rem;
  font-weight: 800;
}
.auth-panel {
  align-self: center;
  padding: 30px;
}
.auth-panel-head { margin-bottom: 20px; }
.auth-panel-head .store-eyebrow { margin-bottom: 6px; }
.auth-panel-head h2 { font-size: clamp(1.6rem, 3vw, 2.15rem); letter-spacing: -.8px; }
.auth-panel-head p { margin-top: 5px; color: var(--text-muted); font-size: .86rem; }
.auth-form label { margin-bottom: 15px; color: rgba(255,255,255,.72); font-weight: 750; }
.auth-form input {
  min-height: 48px;
  border-color: rgba(99,102,241,.24);
  background: #080b1d;
}
.auth-form input:focus {
  border-color: #7280ff;
  box-shadow: 0 0 0 3px rgba(99,102,241,.13);
}
.auth-shell-register .auth-aside { background-position: center 32px; }

@media (max-width: 900px) {
  .auth-shell { grid-template-columns: 1fr; }
  .auth-aside { min-height: 390px; background-size: min(58%, 330px) auto; }
}

@media (max-width: 650px) {
  .store-main-nav a.active::after { display: none; }
  .store-icon-label { display: none; }
  .store-cart-link, .store-icon-link { font-size: .78rem; }
  .auth-page { padding-top: 18px; }
  .auth-aside { min-height: 330px; padding: 24px 20px; background-size: min(78%, 280px) auto; border-radius: 16px; }
  .auth-aside h1 { font-size: 2rem; letter-spacing: -1.2px; }
  .auth-aside p { font-size: .9rem; }
  .auth-panel { padding: 23px 18px; border-radius: 16px; }
}

/* Storefront light mode */
html[data-theme="light"] {
  --dark: #eef3f8;
  --white: #10152a;
  --text-muted: rgba(17,23,46,.62);
  --border: rgba(17,23,46,.1);
  --glass: #ffffff;
}
html[data-theme="light"] body:not(.customer-dashboard-body) {
  background:
    radial-gradient(circle at 82% -12%, rgba(79,70,229,.1), transparent 32%),
    #eef3f8;
  color: #10152a;
}
html[data-theme="light"] .store-header {
  background: rgba(255,255,255,.88);
  border-bottom-color: rgba(17,23,46,.08);
  box-shadow: 0 12px 30px rgba(15,23,42,.05);
}
html[data-theme="light"] .store-main-nav a,
html[data-theme="light"] .store-cart-link,
html[data-theme="light"] .store-icon-link,
html[data-theme="light"] .store-mobile-shop,
html[data-theme="light"] .store-brand-copy {
  color: #10152a;
}
html[data-theme="light"] .store-brand small,
html[data-theme="light"] .store-hero-copy > p,
html[data-theme="light"] .store-section-heading p,
html[data-theme="light"] .store-page-heading p,
html[data-theme="light"] .store-product-desc,
html[data-theme="light"] .store-detail-description,
html[data-theme="light"] .store-gallery-note,
html[data-theme="light"] .store-footer-grid p,
html[data-theme="light"] .store-footer-grid a,
html[data-theme="light"] .store-footer-bottom,
html[data-theme="light"] .store-muted,
html[data-theme="light"] .store-auth-link,
html[data-theme="light"] .store-auth-help {
  color: rgba(17,23,46,.62);
}
html[data-theme="light"] .store-product-card,
html[data-theme="light"] .store-order-card,
html[data-theme="light"] .store-panel,
html[data-theme="light"] .store-cart-summary,
html[data-theme="light"] .store-empty-state,
html[data-theme="light"] .store-purchase-box,
html[data-theme="light"] .store-info-grid article,
html[data-theme="light"] .store-payment-box,
html[data-theme="light"] .store-codes-box,
html[data-theme="light"] .auth-panel,
html[data-theme="light"] .store-auth-card {
  background: #fff;
  border-color: rgba(17,23,46,.09);
  color: #10152a;
  box-shadow: 0 18px 42px rgba(15,23,42,.07);
}
html[data-theme="light"] .store-product-image,
html[data-theme="light"] .store-hero-art > img,
html[data-theme="light"] .store-detail-image,
html[data-theme="light"] .store-cart-item,
html[data-theme="light"] .store-benefits,
html[data-theme="light"] .store-payment-summary > div {
  background: #fff;
  border-color: rgba(17,23,46,.09);
}
html[data-theme="light"] .store-hero-art > img,
html[data-theme="light"] .store-detail-image {
  box-shadow: 0 20px 60px rgba(15,23,42,.12);
}
html[data-theme="light"] .store-floating-card,
html[data-theme="light"] .store-cta {
  background: rgba(255,255,255,.9);
  border-color: rgba(17,23,46,.1);
  color: #10152a;
}
html[data-theme="light"] .store-search,
html[data-theme="light"] .store-order-form input,
html[data-theme="light"] .store-order-form textarea,
html[data-theme="light"] .store-inline-form input,
html[data-theme="light"] .store-usdt-form input,
html[data-theme="light"] .store-cart-qty input,
html[data-theme="light"] .store-detail-cart-form input,
html[data-theme="light"] .auth-form input {
  background: #f8fafc;
  border-color: rgba(17,23,46,.11);
  color: #10152a;
}
html[data-theme="light"] .store-search input {
  color: #10152a;
}
html[data-theme="light"] .store-footer {
  background: rgba(255,255,255,.58);
  border-top-color: rgba(17,23,46,.08);
}
html[data-theme="light"] .auth-aside {
  background:
    linear-gradient(145deg, rgba(79,70,229,.18), rgba(255,255,255,.9) 58%),
    url("../images/products/gemini-pro-18m-v2.webp") center 42px / min(72%, 420px) auto no-repeat,
    #fff;
  border-color: rgba(17,23,46,.09);
}
html[data-theme="light"] .auth-aside::after {
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.94) 58%);
}
html[data-theme="light"] .auth-aside h1,
html[data-theme="light"] .auth-panel h2,
html[data-theme="light"] .store-product-name,
html[data-theme="light"] .store-section-heading h2,
html[data-theme="light"] .store-page-heading h1,
html[data-theme="light"] .store-detail-copy h1,
html[data-theme="light"] .store-cart-copy h2,
html[data-theme="light"] .store-cart-summary h2 {
  color: #10152a;
}
html[data-theme="light"] .auth-aside p {
  color: rgba(17,23,46,.62);
}
html[data-theme="light"] .auth-benefits span {
  background: rgba(17,23,46,.04);
  border-color: rgba(17,23,46,.1);
  color: rgba(17,23,46,.7);
}

/* Customer console dashboard - Rich Dark Theme */
.customer-dashboard-body {
  min-height: 100vh;
  background: #080A1A;
  color: #f8f9ff;
}
.customer-dashboard-body .store-error,
.customer-dashboard-body .store-success,
.customer-dashboard-body .store-notice {
  color: inherit;
}
.customer-shell {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  width: calc(100% - 32px);
  max-width: 1400px;
  min-height: calc(100vh - 32px);
  margin: 16px auto;
  overflow: hidden;
  border-radius: 16px;
  background: #0B0E26;
  border: 1px solid rgba(123, 113, 255, 0.22);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.6);
}
.customer-sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px 16px;
  background: #07091B;
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.customer-sidebar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  margin-bottom: 12px;
  font-size: .85rem;
  font-weight: 850;
  color: #fff;
}
.customer-sidebar-brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  flex: 0 0 36px;
}
.customer-sidebar-brand span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.customer-sidebar-nav,
.customer-sidebar-footer {
  display: grid;
  gap: 8px;
}
.customer-sidebar-footer {
  margin-top: auto;
}
.customer-sidebar-nav a,
.customer-sidebar-footer a,
.customer-sidebar-footer button {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 42px;
  padding: 10px 14px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #a1a7c4;
  font-size: .78rem;
  font-weight: 750;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
}
.customer-sidebar-nav a.active,
.customer-sidebar-nav a:hover,
.customer-sidebar-footer a:hover,
.customer-sidebar-footer button:hover {
  background: linear-gradient(135deg, #7c3aed, #2563eb);
  color: #fff;
  box-shadow: 0 8px 22px rgba(124, 58, 237, 0.35);
}
.customer-sidebar-nav b {
  display: grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  margin-left: auto;
  padding: 0 6px;
  border-radius: 99px;
  background: rgba(255,255,255,0.2);
  font-size: .6rem;
  color: #fff;
}
.nav-ico {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}
.nav-ico::before,
.nav-ico::after {
  position: absolute;
  content: "";
}
.nav-ico-dashboard::before { inset: 2px; border: 2px solid currentColor; border-radius: 50%; }
.nav-ico-dashboard::after { left: 7px; top: 1px; width: 2px; height: 7px; background: currentColor; transform-origin: bottom; transform: rotate(45deg); }
.nav-ico-shop::before { left: 2px; right: 2px; bottom: 1px; height: 9px; border: 2px solid currentColor; border-radius: 2px; }
.nav-ico-shop::after { left: 4px; top: 0; width: 6px; height: 6px; border: 2px solid currentColor; border-bottom: 0; border-radius: 7px 7px 0 0; }
.nav-ico-cart::before { left: 1px; right: 1px; top: 3px; height: 8px; border: 2px solid currentColor; border-radius: 2px; transform: skewX(-8deg); }
.nav-ico-cart::after { left: 4px; bottom: 0; width: 3px; height: 3px; border-radius: 50%; background: currentColor; box-shadow: 6px 0 0 currentColor; }
.nav-ico-fav::before { inset: 2px; border: 2px solid currentColor; border-radius: 50%; box-shadow: 8px 0 0 -3px currentColor; }
.nav-ico-orders::before { inset: 1px 3px; border: 2px solid currentColor; border-radius: 2px; }
.nav-ico-orders::after { left: 5px; right: 5px; top: 5px; height: 2px; background: currentColor; box-shadow: 0 4px 0 currentColor; }
.nav-ico-wallet::before { inset: 3px 1px; border: 2px solid currentColor; border-radius: 3px; }
.nav-ico-wallet::after { right: 1px; top: 6px; width: 5px; height: 4px; border: 2px solid currentColor; border-right: 0; border-radius: 4px 0 0 4px; }
.nav-ico-api::before { inset: 2px; border: 2px solid currentColor; border-radius: 4px; }
.nav-ico-info::before { inset: 1px; border: 2px solid currentColor; border-radius: 50%; }
.nav-ico-info::after { left: 7px; top: 6px; width: 2px; height: 5px; background: currentColor; box-shadow: 0 -4px 0 currentColor; }
.nav-ico-logout::before { left: 1px; top: 2px; width: 8px; height: 10px; border: 2px solid currentColor; border-right: 0; border-radius: 2px; }
.nav-ico-logout::after { right: 0; top: 6px; width: 8px; height: 2px; background: currentColor; box-shadow: 3px -3px 0 -1px currentColor, 3px 3px 0 -1px currentColor; }

.customer-workspace {
  min-width: 0;
  padding: 26px 30px;
  background: #090C23;
}
.customer-topbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 320px) 42px;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}
.customer-topbar h1 {
  margin: 4px 0 2px;
  color: #ffffff;
  font-size: 1.65rem;
  font-weight: 850;
}
.customer-topbar p,
.customer-muted {
  color: #a1a7c4;
  font-size: .8rem;
}
.customer-section-kicker {
  color: #a78bfa;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.customer-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 38px;
  height: 44px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: #0E1235;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.customer-search input {
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 16px;
  color: #ffffff;
  background: transparent;
  font-size: .82rem;
}
.customer-search button {
  position: relative;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.customer-search button::before {
  position: absolute;
  inset: 13px;
  border: 2px solid #a78bfa;
  border-radius: 50%;
  content: "";
}
.customer-search button::after {
  position: absolute;
  right: 10px;
  bottom: 11px;
  width: 6px;
  height: 2px;
  background: #a78bfa;
  transform: rotate(45deg);
  content: "";
}
.customer-alert {
  margin-bottom: 16px;
}
.customer-dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 22px;
  align-items: start;
}
.customer-main-column,
.customer-side-column {
  display: grid;
  gap: 22px;
  min-width: 0;
}
.customer-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.customer-stat-card,
.customer-panel,
.customer-profile-card {
  border-radius: 14px;
  background: #0E1235;
  border: 1px solid rgba(123, 113, 255, 0.22);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}
.customer-stat-card {
  display: grid;
  gap: 6px;
  min-height: 110px;
  padding: 18px;
}
.customer-stat-card small {
  color: #a1a7c4;
  font-size: .72rem;
  font-weight: 800;
}
.customer-stat-card strong {
  color: #ffffff;
  font-size: 1.45rem;
  line-height: 1.1;
  font-weight: 900;
}
.customer-stat-card em {
  color: var(--muted);
  font-size: .7rem;
  font-style: normal;
}
.stat-symbol {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 4px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.25);
  color: #a78bfa;
}
.stat-symbol::before {
  display: block;
  width: 13px;
  height: 13px;
  border: 2px solid currentColor;
  border-radius: 3px;
  content: "";
}
.stat-symbol-wallet::before { border-radius: 50%; }
.stat-symbol-orders::before { border-radius: 2px; box-shadow: inset 0 4px 0 rgba(255,255,255,.35); }
.stat-symbol-usdt::before { border-radius: 50%; box-shadow: inset 0 0 0 3px #0E1235; background: currentColor; }
.stat-symbol-pending::before { border-radius: 50%; border-top-color: transparent; }

.customer-panel {
  padding: 22px;
}
.customer-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}
.customer-panel-head.compact {
  margin-bottom: 14px;
}
.customer-panel h2 {
  margin: 3px 0 0;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 850;
}
.customer-mini-link,
.customer-table-button {
  border: 0;
  background: transparent;
  color: #a78bfa;
  font-size: .78rem;
  font-weight: 850;
  cursor: pointer;
}
.customer-mini-link:hover { color: #fff; text-decoration: underline; }

.customer-chart {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: end;
  gap: 18px;
  height: 190px;
  padding: 20px 12px 6px;
  border-radius: 12px;
  background: #090C23;
  border: 1px solid rgba(255,255,255,0.06);
}
.customer-chart-bar {
  display: grid;
  grid-template-rows: minmax(0, 1fr) 20px;
  gap: 8px;
  height: 100%;
  align-items: end;
  justify-items: center;
}
.customer-chart-bar span {
  display: block;
  width: min(100%, 24px);
  min-height: 12px;
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, #7c3aed, #2563eb);
  box-shadow: 0 10px 20px rgba(124, 58, 237, 0.4);
}
.customer-chart-bar:nth-child(even) span {
  background: linear-gradient(180deg, #3b82f6, #1d4ed8);
}
.customer-chart-bar small {
  color: #a1a7c4;
  font-size: .7rem;
}

.customer-order-table {
  overflow-x: auto;
}
.customer-order-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 650px;
}
.customer-order-table th,
.customer-order-table td {
  padding: 14px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #e5e7eb;
  font-size: .8rem;
  text-align: left;
  vertical-align: middle;
}
.customer-order-table th {
  color: #a78bfa;
  font-size: .7rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.customer-order-table td strong {
  color: #ffffff;
}

.customer-profile-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
}
.customer-profile-avatar {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed, #2563eb);
  color: #fff;
  font-weight: 900;
  font-size: 1.2rem;
}

.customer-ring {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 16px auto;
  border-radius: 50%;
  background: conic-gradient(#7c3aed calc(var(--value, 0) * 1%), rgba(255,255,255,0.08) 0);
  display: grid;
  place-items: center;
}
.customer-ring::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: #0E1235;
}
.customer-ring span {
  position: relative;
  z-index: 2;
  font-size: 1.2rem;
  font-weight: 900;
  color: #ffffff;
}

.customer-ring-legend {
  display: flex;
  justify-content: center;
  gap: 16px;
  font-size: 0.76rem;
  color: var(--muted);
  margin-top: 10px;
}
.customer-ring-legend i {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 6px;
}
.legend-delivered { background: #7c3aed; }
.legend-pending { background: rgba(255,255,255,0.3); }

.customer-payment-target {
  background: #090C23;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(124, 58, 237, 0.3);
  text-align: center;
  margin-bottom: 16px;
}
.customer-payment-target small { color: var(--muted); font-size: 0.72rem; display: block; }
.customer-payment-target strong { color: #6EE7B7; font-size: 0.95rem; font-family: monospace; display: block; margin: 4px 0; }
.customer-payment-target span { color: #a78bfa; font-size: 0.8rem; font-weight: 800; display: block; }

.customer-redeem-form label { display: block; font-size: 0.78rem; font-weight: 700; color: #a1a7c4; margin-bottom: 6px; }
.customer-redeem-form input {
  width: 100%;
  padding: 10px 14px;
  background: #090C23;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: #fff;
  font-size: 0.85rem;
  font-family: monospace;
  margin-bottom: 12px;
}

.customer-timeline ol { list-style: none; padding: 0; }
.customer-timeline li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px; font-size: 0.8rem; }
.customer-timeline time { background: rgba(124, 58, 237, 0.2); color: #a78bfa; padding: 2px 8px; border-radius: 6px; font-weight: 900; font-size: 0.72rem; }
.customer-timeline strong { display: block; color: #fff; }
.customer-last-order { display: block; margin-top: 14px; padding: 10px; background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 8px; font-size: 0.78rem; text-align: center; }
html[data-theme="dark"] .theme-toggle span::after {
  background: #101526;
}
html[data-theme="light"] .customer-sidebar {
  background: #0b0f27;
}
html[data-theme="light"] .customer-workspace {
  background: #fbfcff;
}
.customer-empty {
  padding: 28px 10px 18px;
  text-align: center;
}
.customer-empty h3 {
  color: #11172e;
  font-size: 1rem;
}
.customer-empty p {
  margin: 5px auto 16px;
  max-width: 340px;
  color: #8b92a7;
  font-size: .76rem;
}
.customer-profile-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px;
}
.customer-profile-avatar {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 50%;
  background: linear-gradient(145deg, #f7d66e, #9c5bff);
  color: #fff;
  font-weight: 900;
}
.customer-profile-card strong,
.customer-profile-card span {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.customer-profile-card strong {
  color: #11172e;
  font-size: .74rem;
}
.customer-profile-card span {
  color: #8b92a7;
  font-size: .6rem;
}
.customer-progress-panel {
  text-align: center;
}
.customer-ring {
  display: grid;
  place-items: center;
  width: 120px;
  height: 120px;
  margin: 4px auto 13px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #fff 0 52%, transparent 53%),
    conic-gradient(#8c4dff calc(var(--value) * 1%), #13173d 0);
  box-shadow: inset 0 0 0 1px #eef1f7;
}
.customer-ring span {
  color: #11172e;
  font-size: .95rem;
  font-weight: 900;
}
.customer-ring-legend {
  display: grid;
  gap: 7px;
  color: #747b8f;
  font-size: .66rem;
  text-align: left;
}
.customer-ring-legend span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.customer-ring-legend i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.legend-delivered { background: #8c4dff; }
.legend-pending { background: #13173d; }
.customer-payment-target {
  display: grid;
  gap: 5px;
  margin-bottom: 13px;
  padding: 12px;
  border-radius: 8px;
  background: #f5f7fb;
}
.customer-payment-target small {
  color: #8b92a7;
  font-size: .62rem;
  font-weight: 850;
}
.customer-payment-target strong {
  color: #11172e;
  font-size: .72rem;
  overflow-wrap: anywhere;
}
.customer-payment-target span {
  color: #6c43e8;
  font-size: .72rem;
  font-weight: 900;
}
.customer-redeem-form {
  display: grid;
  gap: 9px;
}
.customer-redeem-form label {
  color: #6a7183;
  font-size: .64rem;
  font-weight: 850;
}
.customer-redeem-form input {
  width: 100%;
  min-height: 42px;
  padding: 10px 11px;
  border: 1px solid #e3e7f1;
  border-radius: 8px;
  outline: 0;
  color: #11172e;
  background: #fff;
  font-size: .74rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.customer-redeem-form input:focus {
  border-color: #8c4dff;
  box-shadow: 0 0 0 3px rgba(140,77,255,.12);
}
.customer-timeline ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.customer-timeline li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 9px;
  padding: 10px;
  border-radius: 8px;
  background: #f7f8fc;
}
.customer-timeline time {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #11142d;
  color: #fff;
  font-size: .62rem;
  font-weight: 900;
  grid-row: span 2;
}
.customer-timeline strong {
  color: #11172e;
  font-size: .72rem;
}
.customer-timeline span {
  color: #8b92a7;
  font-size: .62rem;
}
.customer-last-order {
  display: grid;
  gap: 2px;
  margin-top: 12px;
  padding: 11px;
  border-radius: 8px;
  background: #fff3e6;
  color: #8a4800;
}
.customer-last-order span {
  font-size: .62rem;
  font-weight: 850;
}
.customer-last-order strong {
  overflow-wrap: anywhere;
  font-size: .7rem;
}

@media (max-width: 1080px) {
  .customer-shell {
    grid-template-columns: 132px minmax(0, 1fr);
    width: calc(100% - 24px);
  }
  .customer-dashboard-grid {
    grid-template-columns: 1fr;
  }
  .customer-side-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .customer-shell {
    display: block;
    margin: 12px auto;
    border-radius: 10px;
  }
  .customer-sidebar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
  }
  .customer-sidebar-nav {
    display: flex;
    overflow-x: auto;
    padding-bottom: 2px;
  }
  .customer-sidebar-nav a {
    flex: 0 0 auto;
  }
  .customer-sidebar-footer {
    display: none;
  }
  .customer-workspace {
    padding: 18px 14px 20px;
  }
  .customer-topbar {
    grid-template-columns: 1fr;
  }
  .customer-theme-toggle {
    justify-self: start;
  }
  .customer-stats,
  .customer-side-column {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .customer-shell {
    width: 100%;
    min-height: 100vh;
    margin: 0;
    border-radius: 0;
  }
  .customer-sidebar-brand span {
    max-width: 190px;
  }
  .customer-stats,
  .customer-side-column {
    grid-template-columns: 1fr;
  }
  .customer-chart {
    gap: 9px;
    height: 170px;
  }
  .customer-panel {
    padding: 15px;
  }
}

/* Customer pricing overrides */
.store-original-price {
  display: inline-block;
  margin-left: 8px;
  color: var(--text-muted);
  font-size: .82rem;
  font-weight: 800;
  text-decoration: line-through;
  -webkit-text-fill-color: currentColor;
}
.store-special-note {
  display: block;
  margin-top: 4px;
  color: #7dd3fc;
  font-size: .73rem;
  font-weight: 850;
}
.store-detail-price-row em {
  display: block;
  width: 100%;
  margin-top: 6px;
  color: #7dd3fc;
  font-size: .82rem;
  font-style: normal;
  font-weight: 850;
}
html[data-theme="light"] .store-special-note,
html[data-theme="light"] .store-detail-price-row em {
  color: #2563eb;
}

/* PWA App Install Banner */
.pwa-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 480px;
  z-index: 99999;
  background: rgba(15, 23, 42, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(124, 58, 237, 0.4);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(124, 58, 237, 0.25);
  animation: pwaSlideUp 0.4s ease-out;
}
@keyframes pwaSlideUp {
  from { transform: translate(-50%, 100%); opacity: 0; }
  to { transform: translate(-50%, 0); opacity: 1; }
}
.pwa-banner-content {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pwa-banner-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #7C3AED, #2563EB);
  font-size: 1.2rem;
  flex: 0 0 42px;
}
.pwa-banner-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}
.pwa-banner-text strong {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
}
.pwa-banner-text span {
  color: #94a3b8;
  font-size: 0.74rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pwa-banner-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}
.pwa-btn-install {
  padding: 8px 14px;
  background: linear-gradient(135deg, #10B981, #059669);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
  transition: transform 0.15s ease;
}
.pwa-btn-install:active {
  transform: scale(0.96);
}
.pwa-btn-close {
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 1rem;
  padding: 4px 8px;
  cursor: pointer;
}

/* Deep Mobile Responsiveness Enhancements */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  .store-cart-layout {
    grid-template-columns: 1fr !important;
  }
  .store-cart-item {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 12px;
  }
  .store-cart-item img {
    width: 50px !important;
    height: 50px !important;
  }
  .store-cart-qty {
    width: 100%;
    justify-content: space-between;
  }
  .customer-topbar {
    grid-template-columns: 1fr !important;
    gap: 10px;
  }
  .customer-workspace {
    padding: 16px 12px !important;
  }
  .store-delivery-actions {
    flex-wrap: wrap;
  }
  .store-btn {
    min-height: 44px;
  }
}

@media (max-width: 480px) {
  .pwa-banner {
    width: calc(100% - 20px);
    bottom: 10px;
    padding: 12px;
  }
  .pwa-banner-text span {
    display: none;
  }
}

