:root {
  --void-0: #020208;
  --void-1: #05050f;
  --void-2: #08081a;
  --void-3: #0c0c22;
  --void-4: #10102c;
  --void-5: #141436;
  --glass: rgba(8, 8, 26, .72);
  --glass-light: rgba(255,255,255,.035);
  --glass-border: rgba(255,255,255,.08);
  --indigo: #6366f1;
  --violet: #8b5cf6;
  --cyan: #06b6d4;
  --teal: #14b8a6;
  --rose: #f43f5e;
  --amber: #f59e0b;
  --green: #22c55e;
  --red: #ef4444;
  --text-100: #fff;
  --text-200: #f1f5f9;
  --text-300: #cbd5e1;
  --text-400: #94a3b8;
  --text-500: #64748b;
  --grad-aurora: linear-gradient(135deg, #6366f1 0%, #8b5cf6 36%, #06b6d4 72%, #14b8a6 100%);
  --grad-text: linear-gradient(135deg, #818cf8, #a78bfa, #22d3ee, #5eead4);
  --grad-border: conic-gradient(from var(--angle, 0deg), #6366f1, #8b5cf6, #06b6d4, #14b8a6, #f43f5e, #6366f1);
  --shadow-md: 0 8px 32px rgba(0,0,0,.48), inset 0 1px 0 rgba(255,255,255,.04);
  --shadow-lg: 0 24px 74px rgba(0,0,0,.58), inset 0 1px 0 rgba(255,255,255,.06);
  --shadow-glow: 0 0 40px rgba(99,102,241,.24), 0 0 86px rgba(6,182,212,.12);
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;
  --r-pill: 999px;
  --font-display: "Syne", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
}

@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text-200);
  background: var(--void-0);
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 16% 8%, rgba(99,102,241,.24), transparent 32rem),
    radial-gradient(circle at 82% 12%, rgba(244,63,94,.16), transparent 28rem),
    radial-gradient(circle at 58% 88%, rgba(6,182,212,.16), transparent 32rem),
    linear-gradient(180deg, var(--void-0), var(--void-1));
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button, input, select, textarea { font: inherit; }
#auroraCanvas {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .62;
}
.vault-shell { position: relative; z-index: 1; }
.shell,
.container-xl,
.container-fluid {
  width: min(1220px, calc(100% - 30px));
  margin-inline: auto;
}
.top-ribbon {
  overflow: hidden;
  border-bottom: 1px solid var(--glass-border);
  background: rgba(2,2,8,.78);
}
.ribbon-track {
  width: max-content;
  display: flex;
  gap: 42px;
  padding-block: 10px;
  color: var(--text-300);
  font-size: 12px;
  font-weight: 800;
  animation: marquee 34s linear infinite;
}
.vault-nav {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid var(--glass-border);
  background: rgba(5,5,15,.72);
  backdrop-filter: blur(22px);
}
.vault-nav.is-scrolled { box-shadow: var(--shadow-lg); }
.nav-grid {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto minmax(240px, 1fr) auto;
  align-items: center;
  gap: 18px;
}
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.brand-orb {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: var(--grad-aurora);
  color: #020208;
  font-family: var(--font-display);
  font-weight: 900;
  box-shadow: var(--shadow-glow);
}
.brand-lockup strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
}
.brand-lockup small {
  display: block;
  color: var(--text-400);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.nav-search {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(99,102,241,.22);
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.045);
  padding-inline: 16px;
}
.nav-search span {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.nav-search input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--text-100);
  background: transparent;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a,
.nav-drop,
.nav-toggle,
.btn-vault,
.btn,
.btn-primary,
.btn-glass,
.btn-primary-soft,
.btn-outline-light {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  color: var(--text-200);
  background: transparent;
  padding: 10px 15px;
  cursor: pointer;
  font-weight: 800;
  transition: transform .2s, border-color .2s, background .2s, box-shadow .2s;
}
.nav-links a:hover,
.nav-links a.active,
.nav-drop:hover,
.btn-ghost,
.btn-glass,
.btn-outline-light {
  border-color: rgba(255,255,255,.12);
  background: rgba(255,255,255,.055);
}
.btn-primary,
.btn-primary-soft,
.btn-vault.btn-primary {
  border: 0;
  background: var(--grad-aurora);
  color: white;
  box-shadow: 0 10px 30px rgba(99,102,241,.28);
}
.btn:hover,
.btn-vault:hover,
.nav-links a:hover,
.nav-drop:hover { transform: translateY(-2px); }
.cart-chip b {
  min-width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #020208;
  background: var(--cyan);
}
.nav-toggle { display: none; }
.mega-vault {
  border-top: 1px solid var(--glass-border);
  background: rgba(5,5,15,.92);
}
.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 18px 0;
}
.mega-card,
.vault-card,
.product-card,
.content-card,
.summary-card,
.checkout-card,
.cart-card,
.auth-card,
.hero-card,
.category-tile,
.feature-box,
.why-panel,
.empty-state,
.notes-box,
.gallery-main,
.plan-option,
.accordion-item {
  position: relative;
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  background:
    linear-gradient(160deg, rgba(99,102,241,.08), transparent 48%, rgba(6,182,212,.05)),
    rgba(12,12,34,.78);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
}
.mega-card {
  display: grid;
  gap: 8px;
  min-height: 128px;
  padding: 18px;
}
.holo-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #020208;
  font-weight: 950;
  background: var(--grad-aurora);
}
.mega-card small,
.muted,
.product-body p,
.feature-box p,
.why-panel p,
.summary-product small,
.order-line small {
  color: var(--text-400);
}
.row {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}
.g-3 { gap: 14px; }
.g-4 { gap: 22px; }
.g-5 { gap: 34px; }
.align-items-center { align-items: center; }
.align-items-stretch { align-items: stretch; }
.justify-content-center { justify-content: center; }
.col-12 { grid-column: span 12; }
.col-6 { grid-column: span 6; }
.col-md-6 { grid-column: span 6; }
.col-lg-2 { grid-column: span 2; }
.col-lg-4 { grid-column: span 4; }
.col-lg-5 { grid-column: span 5; }
.col-lg-6 { grid-column: span 6; }
.col-lg-7 { grid-column: span 7; }
.col-lg-8 { grid-column: span 8; }
.col-xl-3 { grid-column: span 3; }
.col-xl-4 { grid-column: span 4; }
.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-3 { gap: 12px; }
.w-100 { width: 100%; }
.h-100 { height: 100%; }
.mt-1 { margin-top: 4px; }
.mt-3 { margin-top: 16px; }
.mt-4 { margin-top: 24px; }
.mb-0 { margin-bottom: 0; }
.page-hero,
.hero-section {
  padding: clamp(64px, 10vw, 116px) 0;
}
.hero-section h1,
.page-hero h1,
.product-detail h1,
.auth-card h1 {
  max-width: 900px;
  margin: 10px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(42px, 8vw, 82px);
  line-height: .9;
  letter-spacing: 0;
}
.lead {
  color: var(--text-300);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.7;
}
.eyebrow {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.section-pad { padding: clamp(62px, 8vw, 92px) 0; }
.bg-soft { background: rgba(255,255,255,.018); }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}
.section-head h2,
.content-card h2,
.why-panel h2 {
  margin: 6px 0 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 54px);
  line-height: .95;
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}
.trust-row div,
.mini-product,
.payment-methods label,
.credential-box span,
.status-pill,
.coupon-row,
.summary-line,
.summary-total,
.summary-product,
.order-line {
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  background: rgba(255,255,255,.045);
}
.trust-row div { padding: 16px; }
.trust-row strong { display: block; color: var(--text-100); font-size: 26px; }
.trust-row span { color: var(--text-400); }
.hero-card { padding: 22px; }
.hero-card-top,
.product-meta,
.product-bottom,
.summary-line,
.summary-total,
.summary-product,
.order-line,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.mini-product {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  margin-top: 12px;
}
.mini-logo {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #020208;
  font-family: var(--font-display);
  font-weight: 950;
  background: var(--grad-aurora);
}
.mini-product small { display: block; color: var(--text-400); }
.mini-product i { margin-left: auto; }
.mini-product em {
  margin-left: auto;
  color: var(--cyan);
  font-style: normal;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.product-card {
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.product-card:hover {
  border-color: rgba(6,182,212,.32);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}
.product-media {
  position: relative;
  display: block;
  overflow: hidden;
}
.product-media img {
  width: 100%;
  height: 210px;
  display: block;
  object-fit: cover;
}
.badge-row {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.badge-row span,
.status-pill {
  display: inline-flex;
  width: max-content;
  border-radius: var(--r-pill);
  padding: 6px 10px;
  color: var(--text-100);
  background: rgba(2,2,8,.76);
  font-size: 11px;
  font-weight: 900;
}
.product-body,
.content-card,
.summary-card,
.checkout-card,
.cart-card,
.auth-card,
.category-tile,
.feature-box,
.why-panel,
.empty-state,
.notes-box { padding: 22px; }
.product-body small { color: var(--text-400); font-weight: 850; }
.product-body h3 {
  min-height: 48px;
  margin: 8px 0;
  font-family: var(--font-display);
  font-size: 22px;
}
.product-meta {
  color: var(--text-400);
  margin: 14px 0;
  font-size: 13px;
}
.category-tile,
.feature-box { display: grid; gap: 8px; min-height: 150px; }
.category-tile i,
.feature-box i {
  color: var(--cyan);
  font-size: 28px;
}
.tile-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #020208;
  background: var(--grad-aurora);
  font-family: var(--font-display);
  font-weight: 950;
}
.why-panel {
  background:
    radial-gradient(circle at top right, rgba(99,102,241,.22), transparent 20rem),
    rgba(12,12,34,.82);
}
.catalog-toolbar,
.track-box {
  display: grid;
  grid-template-columns: 1fr 220px 190px auto auto;
  gap: 12px;
  margin-bottom: 28px;
}
.form-control,
.form-select,
input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(99,102,241,.22);
  border-radius: var(--r-md);
  color: var(--text-100);
  background: rgba(20,20,54,.82);
  outline: 0;
  padding: 12px 14px;
}
select option { background: var(--void-4); color: var(--text-100); }
textarea { min-height: 120px; resize: vertical; }
input:focus,
select:focus,
textarea:focus {
  border-color: rgba(6,182,212,.55);
  box-shadow: 0 0 0 4px rgba(6,182,212,.12);
}
.gallery-main { overflow: hidden; }
.gallery-main img {
  width: 100%;
  aspect-ratio: 1 / .78;
  display: block;
  object-fit: cover;
}
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}
.gallery-thumbs img {
  height: 110px;
  width: 100%;
  object-fit: cover;
  border-radius: var(--r-md);
  border: 1px solid var(--glass-border);
  cursor: pointer;
}
.plan-picker { margin-top: 24px; }
.plan-option {
  height: 100%;
  display: grid;
  gap: 8px;
  padding: 16px;
  cursor: pointer;
}
.plan-option input { width: auto; min-height: 0; }
.plan-option small { display: block; color: var(--text-400); }
.plan-option strong { color: var(--cyan); }
.feature-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.feature-list i { color: var(--green); margin-right: 8px; }
.check-dot {
  display: inline-grid;
  place-items: center;
  min-width: 30px;
  height: 24px;
  margin-right: 9px;
  border-radius: var(--r-pill);
  color: #020208;
  background: var(--green);
  font-size: 10px;
  font-weight: 950;
}
.cart-row {
  display: grid;
  grid-template-columns: 80px 1fr 96px 120px auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--glass-border);
}
.cart-row img {
  width: 80px;
  height: 80px;
  border-radius: var(--r-md);
  object-fit: cover;
}
.qty-input { max-width: 96px; }
.coupon-row,
.summary-line,
.summary-total,
.summary-product,
.order-line {
  padding: 12px;
  margin-bottom: 10px;
}
.summary-total {
  color: var(--text-100);
  font-size: 21px;
  font-weight: 900;
}
.sticky-summary { position: sticky; top: 110px; }
.checkout-card { display: grid; gap: 14px; }
.payment-methods { display: grid; gap: 10px; }
.payment-methods label {
  display: flex;
  gap: 12px;
  padding: 14px;
}
.payment-methods input { width: auto; min-height: 0; }
.payment-methods b { display: block; color: var(--cyan); }
.auth-section {
  min-height: 72vh;
  display: grid;
  place-items: center;
  padding: 70px 0;
}
.auth-card {
  width: min(540px, calc(100% - 28px));
}
.auth-card form {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}
.track-box { grid-template-columns: 1fr auto; }
.credential-box {
  display: grid;
  gap: 8px;
}
.credential-box span {
  padding: 13px;
  font-family: var(--font-mono);
}
.alert-vault {
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  background: rgba(255,255,255,.06);
}
.alert-success { color: #bbf7d0; border-color: rgba(34,197,94,.32); }
.alert-warning { color: #fde68a; border-color: rgba(245,158,11,.32); }
.alert-danger { color: #fecaca; border-color: rgba(239,68,68,.32); }
.accordion { display: grid; gap: 12px; }
.accordion-item { overflow: hidden; }
.accordion-button {
  width: 100%;
  min-height: 62px;
  justify-content: space-between;
  border: 0;
  color: var(--text-100);
  background: transparent;
  padding: 18px 20px;
  text-align: left;
  font-weight: 900;
  cursor: pointer;
}
.accordion-body {
  padding: 0 20px 18px;
  color: var(--text-300);
}
.collapse:not(.show) { display: block; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, .75fr);
  gap: 28px;
}
.vault-footer {
  padding: 64px 0 28px;
  border-top: 1px solid var(--glass-border);
  background: rgba(2,2,8,.82);
}
.vault-footer p,
.vault-footer a,
.vault-footer span { color: var(--text-400); }
.vault-footer h4 { color: var(--text-100); }
.footer-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-actions a {
  border: 1px solid var(--glass-border);
  border-radius: var(--r-pill);
  padding: 8px 12px;
}
.footer-bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--glass-border);
}
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor-dot {
  width: 10px;
  height: 10px;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
}
.cursor-ring {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(103,232,249,.45);
  transition: width .2s, height .2s, border-color .2s;
}
body.is-hovering .cursor-ring {
  width: 58px;
  height: 58px;
  border-color: rgba(167,139,250,.75);
}
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes borderRotate { to { --angle: 360deg; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  #auroraCanvas, .cursor-dot, .cursor-ring { display: none; }
}
@media (max-width: 1120px) {
  .nav-grid { grid-template-columns: auto 1fr auto; }
  .nav-search { grid-column: 1 / -1; order: 3; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: 82px;
    left: 15px;
    right: 15px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--glass-border);
    border-radius: var(--r-lg);
    background: rgba(5,5,15,.96);
  }
  .nav-links.open { display: flex; }
  .mega-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 880px) {
  .row,
  .catalog-toolbar,
  .track-box,
  .footer-grid,
  .trust-row,
  .cart-row {
    grid-template-columns: 1fr;
  }
  .col-6,
  .col-12,
  .col-md-6,
  .col-lg-2,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-xl-3,
  .col-xl-4 {
    grid-column: span 1;
  }
  .section-head,
  .footer-bottom {
    display: grid;
    align-items: start;
  }
  .hero-section h1,
  .page-hero h1,
  .product-detail h1,
  .auth-card h1 { font-size: 42px; }
  .cursor-dot, .cursor-ring { display: none; }
}

/* Malik Digital Store polish */
.hero-section h1::after {
  content: "Fast, friendly, no digital drama.";
  display: block;
  margin-top: 12px;
  color: var(--cyan);
  font-family: var(--font-body);
  font-size: clamp(14px, 2.4vw, 18px);
  font-weight: 800;
}
.product-actions-inline {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.product-actions-inline .btn {
  min-height: 38px;
  padding: 8px 12px;
  font-size: 13px;
}
.plan-option:hover {
  border-color: rgba(6,182,212,.35);
  box-shadow: var(--shadow-glow);
}
.plan-option .btn {
  align-self: end;
}
@media (max-width: 880px) {
  .hero-section,
  .page-hero,
  .product-detail,
  .section-pad { padding-block: 44px; }
  .product-media img { height: 180px; }
  .product-body { padding: 16px; }
  .product-body h3 { min-height: auto; font-size: 20px; }
  .product-bottom {
    align-items: stretch;
    flex-direction: column;
  }
  .product-actions-inline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: stretch;
  }
  .product-actions-inline .btn,
  .plan-option .btn,
  .btn-lg { width: 100%; }
  .nav-grid { gap: 10px; }
  .brand-orb { width: 42px; height: 42px; }
  .brand-lockup strong { font-size: 15px; }
  .brand-lockup small { font-size: 9px; }
  .gallery-thumbs img { height: 82px; }
  .content-card,
  .summary-card,
  .checkout-card,
  .cart-card,
  .auth-card,
  .category-tile,
  .feature-box,
  .why-panel,
  .empty-state,
  .notes-box { padding: 18px; }
}
