/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple:  #a855f7;
  --cyan:    #06b6d4;
  --pink:    #ec4899;
  --orange:  #f97316;
  --green:   #22c55e;
  --blue:    #3b82f6;
  --yellow:  #facc15;
  --dark:    #0a0a0f;
  --dark2:   #12121e;
  --dark3:   #1a1a2e;
  --text:    #e2e8f0;
  --muted:   #94a3b8;
  --grad: linear-gradient(135deg, var(--purple), var(--cyan));
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Rajdhani', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
}

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

/* ===== GRADIENT TEXT ===== */
.gradient-text {
  background: linear-gradient(90deg, var(--purple), var(--cyan), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(168, 85, 247, 0.25);
}

.nav-brand { display: flex; align-items: center; gap: .5rem; text-decoration: none; }
.nav-logo    { height: 36px; width: auto; display: block; }
.footer-logo { height: 44px; width: auto; display: block; margin-bottom: .25rem; }
.brand-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem; font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.nav-links {
  display: flex; gap: 2rem; list-style: none;
}
.nav-links a {
  color: var(--text); text-decoration: none;
  font-size: 1rem; font-weight: 600; letter-spacing: .05em;
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--grad); transition: width .3s;
}
.nav-links a:hover { color: var(--purple); }
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none; background: none; border: none;
  color: var(--text); font-size: 1.6rem; cursor: pointer;
  z-index: 1100; position: relative;
  width: 36px; height: 36px;
  transition: transform .2s;
}
.nav-toggle.open { transform: rotate(90deg); }

/* Side-drawer overlay — sits below the navbar (z-index 1000) so burger stays visible */
.nav-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, .65);
  backdrop-filter: blur(3px);
  z-index: 999;
  opacity: 0;
  transition: opacity .3s;
}
.nav-overlay.open { display: block; opacity: 1; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block; padding: .75rem 1.75rem;
  border-radius: 50px; font-family: 'Orbitron', sans-serif;
  font-size: .8rem; font-weight: 700; letter-spacing: .08em;
  cursor: pointer; text-decoration: none; transition: all .25s;
  border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: #fff; box-shadow: 0 0 20px rgba(168,85,247,.45);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 35px rgba(168,85,247,.7); }

.btn-outline {
  background: transparent; color: var(--cyan);
  border: 2px solid var(--cyan); box-shadow: 0 0 12px rgba(6,182,212,.25);
}
.btn-outline:hover { background: var(--cyan); color: var(--dark); transform: translateY(-2px); }

.btn-card {
  background: rgba(255,255,255,.1); color: var(--text);
  font-family: 'Rajdhani', sans-serif; font-size: .85rem;
  border: 1px solid rgba(255,255,255,.2); padding: .5rem 1.1rem;
  border-radius: 50px; cursor: pointer; transition: all .2s;
}
.btn-card:hover { background: rgba(255,255,255,.2); transform: translateY(-1px); }

.btn-full { width: 100%; text-align: center; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: space-between;
  padding: 7rem 2rem 4rem;
  background: radial-gradient(ellipse at 70% 50%, rgba(168,85,247,.18) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(6,182,212,.12) 0%, transparent 50%),
              var(--dark);
  gap: 2rem;
  overflow: hidden;
}

.hero-content { flex: 1; max-width: 560px; }
.hero-tagline {
  font-family: 'Orbitron', sans-serif; font-size: .75rem;
  letter-spacing: .3em; color: var(--cyan); margin-bottom: .75rem;
}
.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 900;
  line-height: 1.1; margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: 1.15rem; color: var(--muted);
  line-height: 1.7; margin-bottom: 2rem; max-width: 440px;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* CSS Vape Device */
.hero-visual {
  flex: 0 0 auto; position: relative;
  width: 280px; height: 400px;
  display: flex; align-items: center; justify-content: center;
}

.smoke-ring {
  position: absolute; border-radius: 50%;
  border: 2px solid rgba(168,85,247,.35);
  animation: expand 3s infinite ease-out;
}
.ring1 { width: 120px; height: 120px; animation-delay: 0s; }
.ring2 { width: 180px; height: 180px; animation-delay: 1s; }
.ring3 { width: 240px; height: 240px; animation-delay: 2s; }

@keyframes expand {
  0%   { transform: scale(.5); opacity: .8; }
  100% { transform: scale(2.5); opacity: 0; }
}

.device-body {
  width: 70px; height: 220px;
  background: linear-gradient(170deg, #1e1e3a, #0a0a1a);
  border-radius: 16px;
  border: 1.5px solid rgba(168,85,247,.6);
  box-shadow: 0 0 30px rgba(168,85,247,.4), inset 0 0 20px rgba(168,85,247,.05);
  display: flex; flex-direction: column; align-items: center;
  padding: 12px 8px; position: relative;
}
.device-screen {
  width: 50px; height: 55px;
  background: linear-gradient(135deg, #1a0a2e, #0d1a3e);
  border-radius: 8px;
  border: 1px solid rgba(6,182,212,.5);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 10px rgba(6,182,212,.3);
}
.device-watt {
  font-family: 'Orbitron', sans-serif; font-size: .75rem;
  color: var(--cyan); letter-spacing: .05em;
}
.device-button {
  width: 28px; height: 28px; margin-top: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  box-shadow: 0 0 14px rgba(168,85,247,.6);
  animation: pulse-btn 2s infinite;
}
@keyframes pulse-btn {
  0%, 100% { box-shadow: 0 0 14px rgba(168,85,247,.6); }
  50%       { box-shadow: 0 0 28px rgba(168,85,247,.9), 0 0 50px rgba(236,72,153,.4); }
}

.vapor-cloud {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(168,85,247,.25), transparent 70%);
  animation: float-up 2.5s infinite ease-in-out;
}
.cloud1 { width: 50px; height: 50px; top: -30px; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.cloud2 { width: 35px; height: 35px; top: -55px; left: 40%; animation-delay: .7s; }
.cloud3 { width: 40px; height: 40px; top: -45px; left: 55%; animation-delay: 1.4s; }

@keyframes float-up {
  0%   { opacity: 0; transform: translateY(0) scale(.5); }
  40%  { opacity: .7; }
  100% { opacity: 0; transform: translateY(-60px) scale(1.6); }
}

/* ===== TICKER ===== */
.ticker-wrap {
  background: linear-gradient(90deg, var(--purple), var(--pink), var(--cyan), var(--purple));
  background-size: 300% 100%;
  animation: ticker-bg 6s linear infinite;
  padding: .65rem 0; overflow: hidden;
}
@keyframes ticker-bg { 0%{background-position:0 50%} 100%{background-position:300% 50%} }

.ticker {
  display: flex; gap: 3rem; white-space: nowrap;
  animation: scroll 20s linear infinite;
}
.ticker span {
  font-family: 'Orbitron', sans-serif; font-size: .75rem;
  font-weight: 700; color: #fff; letter-spacing: .1em;
}
@keyframes scroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-label {
  font-family: 'Orbitron', sans-serif; font-size: .7rem;
  letter-spacing: .35em; color: var(--cyan); margin-bottom: .5rem;
}
.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 900;
}

/* ===== SPECIALS ===== */
.specials-section {
  padding: 5rem 0 5rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0d0520 0%, #130a28 50%, #0d0520 100%);
}

/* Animated grid mesh background */
.specials-section::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(168,85,247,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168,85,247,.07) 1px, transparent 1px);
  background-size: 48px 48px;
  animation: grid-scroll 18s linear infinite;
  z-index: 0;
}
@keyframes grid-scroll { from { background-position: 0 0; } to { background-position: 0 48px; } }

/* Radial glow blobs */
.specials-section::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 40% at 20% 50%, rgba(168,85,247,.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 35% at 80% 50%, rgba(236,72,153,.10) 0%, transparent 70%);
  z-index: 0;
}

.specials-section .container { position: relative; z-index: 1; }

/* Pulsing label */
.specials-section .section-label {
  color: var(--pink);
  font-size: .75rem;
  letter-spacing: .4em;
  animation: label-glow 2s ease-in-out infinite alternate;
}
@keyframes label-glow {
  from { text-shadow: 0 0 8px rgba(236,72,153,.4); }
  to   { text-shadow: 0 0 24px rgba(236,72,153,.9), 0 0 48px rgba(236,72,153,.4); }
}

/* "DEAL" flash tag before title */
.specials-section .section-title::before {
  content: '🔥';
  margin-right: .4rem;
  animation: fire-shake 1.8s ease-in-out infinite;
  display: inline-block;
}
@keyframes fire-shake {
  0%,100% { transform: rotate(-8deg) scale(1);   }
  50%      { transform: rotate( 8deg) scale(1.15); }
}

/* Grid */
.specials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

/* ---- Card base ---- */
.special-card {
  background: linear-gradient(145deg, #1c0d35 0%, #1a1a2e 100%);
  border-radius: 24px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(168,85,247,.25);
  box-shadow: 0 8px 40px rgba(0,0,0,.4);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex; flex-direction: column;
}
.special-card:hover { transform: translateY(-10px) scale(1.02); }

/* Shimmer sweep */
.special-card::before {
  content: '';
  position: absolute; top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.05), transparent);
  transform: skewX(-20deg);
  animation: card-shimmer 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes card-shimmer {
  0%   { left: -75%; }
  60%,100% { left: 150%; }
}

/* Glowing top edge strip */
.special-card::after {
  content: '';
  position: absolute; top: 0; left: 5%; right: 5%; height: 3px;
  background: var(--card-accent, var(--purple));
  box-shadow: 0 0 20px 4px var(--card-accent, var(--purple));
  border-radius: 0 0 6px 6px;
  animation: strip-pulse 2s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes strip-pulse {
  from { opacity: .7; box-shadow: 0 0 12px 2px var(--card-accent, var(--purple)); }
  to   { opacity: 1;  box-shadow: 0 0 28px 8px var(--card-accent, var(--purple)); }
}

/* Badge */
.special-badge {
  display: inline-block;
  background: linear-gradient(90deg, var(--pink), var(--orange));
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  font-size: .62rem; font-weight: 900; letter-spacing: .18em;
  padding: .3rem 1rem; border-radius: 30px;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 20px rgba(236,72,153,.55);
  animation: badge-breathe 2.5s ease-in-out infinite alternate;
  align-self: flex-start;
}
@keyframes badge-breathe {
  from { box-shadow: 0 4px 16px rgba(236,72,153,.45); transform: scale(1);    }
  to   { box-shadow: 0 6px 28px rgba(249,115,22,.70);  transform: scale(1.04); }
}

/* Emoji */
.special-emoji {
  font-size: 3.5rem; display: block; margin-bottom: 1rem;
  filter: drop-shadow(0 0 14px rgba(168,85,247,.6));
  animation: emoji-float 3s ease-in-out infinite;
}
@keyframes emoji-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* Title */
.special-title {
  font-family: 'Orbitron', sans-serif; font-size: 1.1rem; font-weight: 700;
  margin-bottom: .6rem;
  background: linear-gradient(90deg, var(--text) 30%, var(--card-accent, var(--purple)));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* Description */
.special-desc { color: var(--muted); font-size: .93rem; line-height: 1.65; margin-bottom: 1.5rem; flex: 1; }

/* Footer */
.special-footer {
  display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: .75rem;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.25rem; margin-top: auto;
}

/* Price */
.special-price { display: flex; flex-direction: column; gap: .15rem; }
.special-now {
  font-family: 'Orbitron', sans-serif; font-size: 1.75rem; font-weight: 900; line-height: 1;
  color: var(--card-accent, var(--purple));
  text-shadow: 0 0 24px var(--card-accent, var(--purple));
}
.special-was {
  font-size: .85rem; font-weight: 600;
  color: #f87171;
  text-decoration: line-through; text-decoration-color: #f87171;
  text-decoration-thickness: 2px;
  opacity: .85;
}

/* Expiry */
.special-expires {
  font-family: 'Orbitron', sans-serif; font-size: .68rem; font-weight: 700;
  letter-spacing: .06em; color: var(--orange);
  animation: expiry-pulse 2s ease-in-out infinite;
}
@keyframes expiry-pulse {
  0%,100% { opacity: 1; }
  50%      { opacity: .55; }
}

/* ---- Colour variants ---- */
.special-purple {
  --card-accent: var(--purple);
  border-color: rgba(168,85,247,.35);
  box-shadow: 0 8px 40px rgba(168,85,247,.2), inset 0 1px 0 rgba(168,85,247,.08);
}
.special-purple:hover { box-shadow: 0 20px 60px rgba(168,85,247,.4), inset 0 1px 0 rgba(168,85,247,.15); }

.special-cyan {
  --card-accent: var(--cyan);
  border-color: rgba(6,182,212,.35);
  box-shadow: 0 8px 40px rgba(6,182,212,.2), inset 0 1px 0 rgba(6,182,212,.08);
}
.special-cyan:hover { box-shadow: 0 20px 60px rgba(6,182,212,.4), inset 0 1px 0 rgba(6,182,212,.15); }

.special-pink {
  --card-accent: var(--pink);
  border-color: rgba(236,72,153,.35);
  box-shadow: 0 8px 40px rgba(236,72,153,.2), inset 0 1px 0 rgba(236,72,153,.08);
}
.special-pink:hover { box-shadow: 0 20px 60px rgba(236,72,153,.4), inset 0 1px 0 rgba(236,72,153,.15); }

.special-orange {
  --card-accent: var(--orange);
  border-color: rgba(249,115,22,.35);
  box-shadow: 0 8px 40px rgba(249,115,22,.2), inset 0 1px 0 rgba(249,115,22,.08);
}
.special-orange:hover { box-shadow: 0 20px 60px rgba(249,115,22,.4), inset 0 1px 0 rgba(249,115,22,.15); }

.special-green {
  --card-accent: var(--green);
  border-color: rgba(34,197,94,.35);
  box-shadow: 0 8px 40px rgba(34,197,94,.2), inset 0 1px 0 rgba(34,197,94,.08);
}
.special-green:hover { box-shadow: 0 20px 60px rgba(34,197,94,.4), inset 0 1px 0 rgba(34,197,94,.15); }

.special-blue {
  --card-accent: var(--blue);
  border-color: rgba(59,130,246,.35);
  box-shadow: 0 8px 40px rgba(59,130,246,.2), inset 0 1px 0 rgba(59,130,246,.08);
}
.special-blue:hover { box-shadow: 0 20px 60px rgba(59,130,246,.4), inset 0 1px 0 rgba(59,130,246,.15); }

/* ===== PRODUCTS ===== */
.products {
  padding: 6rem 0;
  background: var(--dark2);
}

/* Wider container just for the products section */
.products .container {
  max-width: 1700px;
}

/* ===== FILTER BAR ===== */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.filter-btn {
  padding: .5rem 1.25rem;
  border-radius: 50px;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.12);
  color: var(--muted);
  font-family: 'Orbitron', sans-serif;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .08em;
  cursor: pointer;
  transition: background .18s, border-color .18s, color .18s, transform .15s;
  white-space: nowrap;
}
.filter-btn:hover {
  background: rgba(168,85,247,.12);
  border-color: rgba(168,85,247,.4);
  color: var(--text);
  transform: translateY(-1px);
}
.filter-btn.active {
  background: rgba(168,85,247,.2);
  border-color: var(--purple);
  color: var(--purple);
  box-shadow: 0 0 14px rgba(168,85,247,.3);
}

/* Brand tag on product card */
.card-brand {
  display: inline-block;
  font-family: 'Orbitron', sans-serif;
  font-size: .58rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid rgba(6,182,212,.35);
  background: rgba(6,182,212,.08);
  border-radius: 50px;
  padding: .18rem .6rem;
  margin-bottom: .4rem;
  line-height: 1;
}

/* Variant pills on product card */
.variant-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin: .45rem 0 .2rem;
}
.variant-pill {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--text);
  border-radius: 20px;
  padding: .22rem .75rem;
  font-size: .8rem;
  font-family: inherit;
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s;
  line-height: 1.4;
}
.variant-pill.active {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
  font-weight: 600;
}
.variant-pill:hover:not(.active) {
  background: rgba(168,85,247,.18);
  border-color: var(--purple);
}
.cart-disabled .variant-pill { pointer-events: none; opacity: .5; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}

.product-card {
  background: var(--dark3);
  border-radius: 20px; padding: 1.75rem;
  position: relative; overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  border: 1px solid rgba(255,255,255,.07);
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); }

.card-badge {
  position: absolute; top: 1rem; right: 1rem;
  font-family: 'Orbitron', sans-serif; font-size: .6rem;
  font-weight: 700; letter-spacing: .1em;
  padding: .25rem .65rem; border-radius: 50px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: #fff;
}
.new-badge { background: linear-gradient(135deg, var(--cyan), var(--blue)) !important; }

.product-emoji { font-size: 3rem; margin-bottom: .75rem; display: block; }

/* Product / Special image (replaces emoji when one is uploaded) */
.product-img-wrap {
  margin-bottom: .75rem;
  border-radius: 12px;
  overflow: hidden;
  height: 160px;
  background: rgba(0,0,0,.3);
}
.product-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .35s ease;
}
.product-card:hover .product-img,
.special-card:hover .product-img { transform: scale(1.04); }
.product-card h3 {
  font-family: 'Orbitron', sans-serif; font-size: 1.05rem;
  margin-bottom: .5rem;
}
.product-card p { color: var(--muted); font-size: .95rem; line-height: 1.6; margin-bottom: 1.25rem; }

/* .card-footer defined in cart controls section below */
.price { font-family: 'Orbitron', sans-serif; font-size: 1.1rem; font-weight: 700; }

/* card accent colours */
.card-purple { box-shadow: 0 4px 30px rgba(168,85,247,.15); border-color: rgba(168,85,247,.3); }
.card-purple .price { color: var(--purple); }
.card-cyan    { box-shadow: 0 4px 30px rgba(6,182,212,.15);  border-color: rgba(6,182,212,.3); }
.card-cyan .price    { color: var(--cyan); }
.card-pink    { box-shadow: 0 4px 30px rgba(236,72,153,.15); border-color: rgba(236,72,153,.3); }
.card-pink .price    { color: var(--pink); }
.card-orange  { box-shadow: 0 4px 30px rgba(249,115,22,.15); border-color: rgba(249,115,22,.3); }
.card-orange .price  { color: var(--orange); }
.card-green   { box-shadow: 0 4px 30px rgba(34,197,94,.15);  border-color: rgba(34,197,94,.3); }
.card-green .price   { color: var(--green); }
.card-blue    { box-shadow: 0 4px 30px rgba(59,130,246,.15); border-color: rgba(59,130,246,.3); }
.card-blue .price    { color: var(--blue); }

/* ===== ABOUT / FEATURES ===== */
.about {
  padding: 6rem 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(6,182,212,.1) 0%, transparent 50%),
              var(--dark);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px; padding: 2rem 1.5rem;
  text-align: center;
  transition: transform .25s, border-color .25s;
}
.feature-card:hover { transform: translateY(-4px); border-color: rgba(168,85,247,.4); }

.feature-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.feature-card h3 {
  font-family: 'Orbitron', sans-serif; font-size: .95rem;
  margin-bottom: .75rem; color: #fff;
}
.feature-card p { color: var(--muted); font-size: .95rem; line-height: 1.65; }

/* ===== AGE BANNER ===== */
.age-banner {
  background: linear-gradient(90deg, rgba(249,115,22,.15), rgba(236,72,153,.1));
  border-top: 1px solid rgba(249,115,22,.3);
  border-bottom: 1px solid rgba(249,115,22,.3);
  padding: 1rem 0;
}
.age-banner .container {
  display: flex; align-items: center; gap: .75rem; justify-content: center;
}
.age-icon { font-size: 1.5rem; }
.age-banner p { color: var(--orange); font-size: .9rem; font-weight: 600; text-align: center; }

/* ===== CONTACT ===== */
.contact {
  padding: 6rem 0;
  background: var(--dark2);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 1.75rem; }

.info-item { display: flex; align-items: flex-start; gap: 1rem; }
.info-icon { font-size: 1.5rem; flex-shrink: 0; }
.info-item h4 {
  font-family: 'Orbitron', sans-serif; font-size: .8rem;
  color: var(--cyan); margin-bottom: .25rem;
}
.info-item p { color: var(--muted); font-size: .95rem; }

.social-links h4 {
  font-family: 'Orbitron', sans-serif; font-size: .8rem;
  color: var(--cyan); margin-bottom: .9rem;
}
.socials { display: flex; gap: .75rem; flex-wrap: wrap; }

.social-btn {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn:hover { transform: translateY(-3px); }

.social-btn.ig { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color:#fff; }
.social-btn.ig:hover { box-shadow: 0 6px 20px rgba(220,39,67,.5); }
.social-btn.tt { background: #010101; color:#fff; border:1px solid rgba(255,255,255,.15); }
.social-btn.tt:hover { box-shadow: 0 6px 20px rgba(105,201,208,.5); }
.social-btn.fb { background: #1877f2; color:#fff; }
.social-btn.fb:hover { box-shadow: 0 6px 20px rgba(24,119,242,.5); }
.social-btn.yt { background: #ff0000; color:#fff; }
.social-btn.yt:hover { box-shadow: 0 6px 20px rgba(255,0,0,.5); }
.social-btn.tw { background: #000; color:#fff; border:1px solid rgba(255,255,255,.15); }
.social-btn.tw:hover { box-shadow: 0 6px 20px rgba(255,255,255,.2); }

/* Contact Form */
.contact-form {
  background: var(--dark3);
  border: 1px solid rgba(168,85,247,.25);
  border-radius: 20px; padding: 2rem;
  display: flex; flex-direction: column; gap: 1.25rem;
}

.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label {
  font-family: 'Orbitron', sans-serif; font-size: .7rem;
  letter-spacing: .1em; color: var(--cyan);
}
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(168,85,247,.3);
  border-radius: 10px; padding: .75rem 1rem;
  color: var(--text); font-family: 'Rajdhani', sans-serif; font-size: 1rem;
  transition: border-color .2s, box-shadow .2s; outline: none; resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(168,85,247,.2);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }

.form-notice {
  font-size: .9rem; text-align: center; min-height: 1.2em;
  color: var(--green); font-weight: 600;
}

/* ===== FOOTER ===== */
.footer {
  background: #060609;
  border-top: 1px solid rgba(168,85,247,.2);
  padding: 3.5rem 0 1.5rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand .brand-icon { font-size: 2rem; }
.footer-brand .brand-name { font-size: 1.3rem; display: block; margin-top: .25rem; margin-bottom: .5rem; }
.footer-brand p { color: var(--muted); font-size: .9rem; }

.footer-links h4 {
  font-family: 'Orbitron', sans-serif; font-size: .75rem;
  color: var(--cyan); letter-spacing: .1em; margin-bottom: 1rem;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-links a {
  color: var(--muted); text-decoration: none; font-size: .95rem;
  transition: color .2s;
}
.footer-links a:hover { color: var(--purple); }

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 1.5rem;
  color: var(--muted); font-size: .85rem;
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.whatsapp-float {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: transform .25s, box-shadow .25s;
  text-decoration: none;
}
.whatsapp-float svg { width: 28px; height: 28px; color: #fff; }
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.07);
  box-shadow: 0 8px 30px rgba(37,211,102,.65);
}
.whatsapp-float::before {
  content: '';
  position: absolute; width: 100%; height: 100%; border-radius: 50%;
  background: #25d366; opacity: .4;
  animation: wa-pulse 2.5s infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: .4; }
  70%  { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* ===== NO PRODUCTS MESSAGE ===== */
.no-products {
  text-align: center; color: var(--muted);
  padding: 3rem 1rem; font-size: 1.1rem; grid-column: 1 / -1;
}

/* ===== WHATSAPP SOCIAL BUTTON ===== */
.social-btn.wa { background: #25d366; color: #fff; }
.social-btn.wa:hover { box-shadow: 0 6px 20px rgba(37,211,102,.5); }

/* ===== MAINTENANCE PAGE ===== */
.maintenance-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
}
.maintenance-wrap {
  text-align: center; max-width: 480px;
}
.maintenance-icon  { font-size: 4rem; margin-bottom: 1.5rem; display: block; }
.maintenance-title {
  font-family: 'Orbitron', sans-serif; font-size: 2rem; font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 1rem;
}
.maintenance-msg {
  color: var(--muted); font-size: 1.05rem; line-height: 1.7;
}

/* Logo + store name row at the top of the maintenance page */
.maintenance-logo-row {
  display: flex; align-items: center; justify-content: center;
  gap: .85rem; margin-bottom: 2.5rem;
}
.maintenance-logo-img {
  height: 52px; width: auto;
}
.maintenance-store-name {
  font-family: 'Orbitron', sans-serif; font-size: 1.5rem; font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  letter-spacing: .04em;
}

/* Keep the old .maintenance-brand selector as a no-op fallback */
.maintenance-brand {
  font-family: 'Orbitron', sans-serif; font-size: .85rem; letter-spacing: .12em;
  color: var(--muted); text-transform: uppercase;
}

/* ===== CARD FOOTER ===== */
/* Cards are now click-to-open-modal tiles — footer just shows price + hint */
.card-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto; gap: .5rem;
}
.card-hint {
  font-size: .78rem; color: var(--purple); font-weight: 700;
  opacity: 0; transition: opacity .2s;
  white-space: nowrap; letter-spacing: .03em;
}
.product-card:hover .card-hint { opacity: 1; }

/* ===== FLOATING CART BUTTON ===== */
.cart-float {
  position: fixed;
  bottom: 6.25rem; right: 1.75rem;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(168,85,247,.5);
  z-index: 900;
  transition: transform .2s, box-shadow .2s;
}
.cart-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(168,85,247,.7); }
.cart-badge {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--pink);
  color: #fff;
  font-size: .7rem; font-weight: 700;
  min-width: 20px; height: 20px;
  border-radius: 50px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
  border: 2px solid var(--dark);
}

/* ===== CHECKOUT OVERLAY ===== */
.checkout-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(6px);
  z-index: 1500;
  display: flex; align-items: flex-start; justify-content: center;
  padding: 1.5rem 1rem;
  overflow-y: auto;
}

/* ===== SHARED SPINNER (main site) ===== */
@keyframes fv-spin {
  to { transform: rotate(360deg); }
}
.fv-spinner {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 50%;
  border: 3px solid rgba(168,85,247,.2);
  border-top-color: var(--purple);
  border-right-color: var(--cyan);
  animation: fv-spin .75s linear infinite;
}
.fv-spinner-lg { width: 56px; height: 56px; border-width: 4px; }
.loader-label {
  font-family: 'Orbitron', sans-serif;
  font-size: .75rem; letter-spacing: .12em;
  color: var(--muted); margin-top: .85rem;
  text-align: center;
}

/* Checkout loader — overlays the whole modal while placing order */
.co-loader {
  display: none; /* shown via JS */
  position: absolute; inset: 0;
  border-radius: 20px;
  background: rgba(10,10,15,.88);
  backdrop-filter: blur(8px);
  flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 20;
}

.checkout-wrap {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 20px;
  width: 100%; max-width: 900px;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
  overflow: hidden;
  position: relative;
  margin: auto;
}

.checkout-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 1.75rem 2rem 1.25rem;
  border-bottom: 1px solid var(--border);
  gap: 1rem;
}
.checkout-header h2 {
  font-family: 'Orbitron', sans-serif; font-size: 1.3rem;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.checkout-sub { color: var(--muted); font-size: .9rem; margin-top: .2rem; }
.checkout-close {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--text); border-radius: 8px;
  width: 34px; height: 34px;
  font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .18s;
}
.checkout-close:hover { background: rgba(239,68,68,.2); color: var(--red); }

.checkout-body {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 0;
}

/* ---- LEFT PANEL ---- */
.checkout-left {
  padding: 2rem;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 1.5rem;
}

.co-summary-card,
.co-banking-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(168,85,247,.15);
  border-radius: 14px;
  padding: 1.5rem;
}
.co-summary-card h3,
.co-banking-card h3 {
  font-family: 'Orbitron', sans-serif; font-size: 1rem;
  color: var(--purple); margin-bottom: 1.1rem;
  letter-spacing: .04em;
}

.co-items { display: flex; flex-direction: column; gap: .85rem; margin-bottom: 1.1rem; }
.co-item {
  display: flex; align-items: center; gap: .85rem;
  font-size: 1rem;
}
.co-item-thumb {
  width: 44px; height: 44px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  background: rgba(255,255,255,.06);
}
.co-item-thumb img { width: 100%; height: 100%; object-fit: cover; }
.co-item-name { flex: 1; color: var(--text); font-size: 1rem; }
.co-item-variant { color: var(--purple); font-size: .82rem; font-weight: 600; margin-left: .2rem; }
.co-item-qty  { color: var(--muted); font-size: .95rem; }
.co-item-price { font-weight: 700; color: var(--purple); font-size: 1rem; white-space: nowrap; }

.co-totals { border-top: 1px solid rgba(255,255,255,.08); padding-top: .9rem; display: flex; flex-direction: column; gap: .5rem; }
.co-total-row {
  display: flex; justify-content: space-between;
  font-size: 1rem; color: var(--muted);
}
.co-grand {
  font-size: 1.2rem; font-weight: 700;
  color: var(--text);
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: .65rem; margin-top: .3rem;
}
.co-grand span:last-child { color: var(--purple); font-family: 'Orbitron', sans-serif; }

.co-banking-ref { font-size: .9rem; color: var(--muted); margin-bottom: .85rem; line-height: 1.6; }
.co-banking-list { display: flex; flex-direction: column; gap: .5rem; }
.co-bank-row {
  display: flex; justify-content: space-between;
  font-size: .97rem;
}
.co-bank-row span  { color: var(--muted); }
.co-bank-row strong{ color: var(--text); }

/* Banking card when placed inline inside the form (right panel) */
.co-banking-inline {
  margin-top: .25rem;
  margin-bottom: .5rem;
  border-color: rgba(168,85,247,.3);
  background: rgba(168,85,247,.07);
  animation: fadeSlideDown .2s ease;
}
.co-banking-inline h3 {
  font-size: .9rem;
  margin-bottom: .85rem;
}
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- RIGHT PANEL ---- */
.checkout-right {
  padding: 2rem;
  overflow-y: auto;
}
/* Give every form field / row a consistent vertical gap */
.checkout-right form {
  display: flex; flex-direction: column; gap: 1.25rem;
}
.co-form-title {
  font-family: 'Orbitron', sans-serif; font-size: 1rem;
  color: var(--text); margin-bottom: .25rem; letter-spacing: .04em;
}
.co-form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: .85rem;
}
.co-label {
  display: block;
  font-size: .78rem; font-weight: 700;
  color: var(--muted); letter-spacing: .08em;
  margin-bottom: .4rem;
}
.co-input {
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(168,85,247,.25);
  border-radius: 10px;
  padding: .75rem 1rem;
  color: var(--text);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.05rem;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.co-input:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(168,85,247,.15);
}
.co-textarea { resize: vertical; min-height: 90px; }

/* Method toggle buttons */
.co-method-row {
  display: flex; gap: .75rem; flex-wrap: wrap;
}
.co-method-btn {
  flex: 1; min-width: 130px;
  display: flex; flex-direction: column; align-items: center; gap: .3rem;
  padding: 1rem .75rem;
  background: rgba(255,255,255,.05);
  border: 2px solid rgba(255,255,255,.1);
  border-radius: 12px;
  color: var(--muted);
  cursor: pointer;
  transition: border-color .18s, background .18s, color .18s;
}
.co-method-btn.active {
  border-color: var(--purple);
  background: rgba(168,85,247,.12);
  color: var(--text);
}
.co-method-icon { font-size: 1.5rem; }
.co-method-name { font-size: .95rem; font-weight: 700; }
.co-method-note { font-size: .75rem; color: var(--muted); }
.co-method-btn.active .co-method-note { color: var(--purple); }

.co-error { color: var(--red); font-size: .9rem; min-height: 1.2em; }
.co-submit { margin-top: .25rem; }

/* ---- CONFIRMATION ---- */
.co-confirm-wrap {
  padding: 3rem 2rem;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.co-confirm-icon  { font-size: 3.5rem; }
.co-confirm-title { font-family: 'Orbitron', sans-serif; font-size: 1.4rem; color: var(--green); }
.co-confirm-ref   { color: var(--muted); font-size: .95rem; }
.co-confirm-ref strong { color: var(--purple); font-size: 1.1rem; }
.co-confirm-msg   { color: var(--muted); font-size: .9rem; max-width: 320px; line-height: 1.6; }
.co-track-btn     { text-decoration: none; }

/* ===== TRACK ORDER MODAL ===== */
.track-wrap {
  padding: 2rem;
  max-width: 560px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  max-height: 90vh;
  overflow-y: auto;
}
.track-modal-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.25rem;
  color: var(--purple);
}
.track-modal-sub { color: var(--muted); font-size: .9rem; margin-top: -.3rem; }

.track-search-row { display: flex; gap: .6rem; }
.track-ref-input {
  flex: 1;
  background: var(--dark3);
  border: 1px solid rgba(168,85,247,.35);
  border-radius: 10px;
  color: var(--text);
  font-family: 'Orbitron', sans-serif;
  font-size: .9rem;
  letter-spacing: .06em;
  padding: .65rem .9rem;
  outline: none;
  text-transform: uppercase;
  transition: border-color .2s;
}
.track-ref-input::placeholder { font-family: 'Rajdhani', sans-serif; font-size: .95rem; text-transform: none; letter-spacing: 0; color: var(--muted); }
.track-ref-input:focus { border-color: var(--purple); }
.track-search-btn { white-space: nowrap; }

.track-error-msg {
  background: rgba(239,68,68,.1);
  border: 1px solid rgba(239,68,68,.3);
  border-radius: 8px;
  padding: .65rem .9rem;
  color: #fca5a5;
  font-size: .9rem;
}

/* Result */
.track-result-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: .75rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  flex-wrap: wrap;
}
.track-result-ref  { font-family: 'Orbitron', sans-serif; font-size: 1.05rem; color: var(--purple); font-weight: 700; }
.track-result-date { font-size: .82rem; color: var(--muted); margin-top: .2rem; }
.track-status-badge {
  border-radius: 50px;
  padding: .3rem .85rem;
  font-size: .88rem;
  font-weight: 700;
  white-space: nowrap;
}

/* Timeline */
.track-timeline {
  display: flex;
  align-items: center;
  gap: 0;
  padding: .6rem 0;
}
.tl-step {
  display: flex; flex-direction: column; align-items: center; gap: .3rem;
  flex: 1; position: relative;
}
.tl-step:not(:first-child)::before {
  content: '';
  position: absolute; top: 13px; right: 50%;
  width: 100%; height: 2px;
  background: rgba(255,255,255,.1);
  z-index: 0;
  transform: translateX(-50%);
}
.tl-step.done:not(:first-child)::before,
.tl-step.active:not(:first-child)::before { background: var(--purple); }
.tl-dot {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--dark3); border: 2px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; position: relative; z-index: 1;
}
.tl-step.done .tl-dot,
.tl-step.active .tl-dot { background: var(--purple); border-color: var(--purple); }
.tl-step.active .tl-dot { box-shadow: 0 0 0 4px rgba(168,85,247,.25); }
.tl-label { font-size: .72rem; color: var(--muted); text-align: center; }
.tl-step.done .tl-label, .tl-step.active .tl-label { color: var(--text); }
.tl-step.tl-cancelled .tl-dot { background: rgba(239,68,68,.2); border-color: #ef4444; }
.tl-step.tl-cancelled .tl-label { color: #fca5a5; }

/* Details grid */
.track-details {
  display: grid; grid-template-columns: 1fr 1fr; gap: .5rem .75rem;
  background: var(--dark3); border-radius: 10px; padding: .75rem 1rem;
}
.tr-detail-row { display: flex; flex-direction: column; gap: .1rem; }
.tr-detail-row span  { font-size: .73rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.tr-detail-row strong{ font-size: .92rem; }

/* Items */
.track-items { display: flex; flex-direction: column; gap: 0; }
.tr-section-title { font-size: .73rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .4rem; }
.tr-item-row {
  display: flex; align-items: center; gap: .6rem;
  padding: .45rem 0; border-bottom: 1px solid rgba(255,255,255,.06);
}
.tr-item-row:last-child { border-bottom: none; }
.tr-item-emoji { font-size: 1.15rem; }
.tr-item-name  { flex: 1; font-size: .93rem; }
.tr-item-qty   { color: var(--muted); font-size: .88rem; }
.tr-item-price { font-weight: 700; color: var(--purple); white-space: nowrap; font-size: .93rem; }

/* Totals */
.track-totals { display: flex; flex-direction: column; gap: .35rem; padding-top: .4rem; border-top: 1px solid rgba(255,255,255,.08); }
.tr-total-row { display: flex; justify-content: space-between; font-size: .93rem; color: var(--muted); }
.tr-grand { color: var(--text); font-weight: 700; font-size: 1rem; }
.tr-grand span:last-child { color: var(--purple); }

/* Nav track button */
.nav-track-btn {
  background: none; border: 1px solid rgba(168,85,247,.4);
  color: var(--purple); border-radius: 20px;
  padding: .3rem .85rem; font-family: inherit;
  font-size: .92rem; font-weight: 600; cursor: pointer;
  transition: background .2s, border-color .2s;
}
.nav-track-btn:hover { background: rgba(168,85,247,.12); border-color: var(--purple); }

@media (max-width: 600px) {
  .track-details { grid-template-columns: 1fr; }
  .track-search-row { flex-direction: column; }
}

/* ===== AUTH MODAL ===== */
.auth-overlay {
  position: fixed; inset: 0; z-index: 2100;
  background: rgba(0,0,0,.8); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
}
.auth-wrap {
  background: var(--dark2); border-radius: 20px;
  border: 1px solid var(--border);
  width: 100%; max-width: 420px;
  padding: 2rem 2rem 2.25rem;
  position: relative;
  box-shadow: 0 28px 80px rgba(0,0,0,.65);
}
.auth-close {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(255,255,255,.08); border: none; color: var(--text);
  width: 34px; height: 34px; border-radius: 50%; font-size: .95rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.auth-close:hover { background: rgba(255,255,255,.18); }
.auth-logo {
  display: flex; align-items: center; gap: .6rem;
  margin-bottom: 1.5rem;
}
.auth-logo-img { width: 28px; height: 28px; }
.auth-brand    { font-family: 'Orbitron', sans-serif; font-size: .95rem; font-weight: 700; color: var(--purple); }
.auth-tabs {
  display: flex; gap: 0; margin-bottom: 1.5rem;
  background: var(--dark3); border-radius: 10px; padding: .25rem;
}
.auth-tab {
  flex: 1; background: none; border: none; color: var(--muted);
  padding: .5rem; border-radius: 8px; font-family: inherit;
  font-size: .9rem; font-weight: 700; cursor: pointer;
  transition: background .2s, color .2s;
}
.auth-tab.active {
  background: var(--purple); color: #fff;
}
.auth-form { display: flex; flex-direction: column; gap: .9rem; }
.auth-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; }
.auth-error {
  font-size: .85rem; color: #fca5a5; min-height: 1.1rem; margin: 0;
}
.auth-hint { font-size: .78rem; color: var(--muted); font-weight: 400; }

/* ── Password field with show/hide toggle ── */
.pw-field-wrap {
  position: relative; display: flex; align-items: center;
}
.pw-field-wrap .co-input { flex: 1; padding-right: 2.6rem; }
.pw-toggle {
  position: absolute; right: .65rem;
  background: none; border: none; color: var(--muted);
  font-size: .95rem; cursor: pointer; padding: .2rem;
  line-height: 1; transition: color .2s;
}
.pw-toggle:hover { color: var(--text); }

/* ── Password strength bar ── */
.pw-strength {
  display: flex; align-items: center; gap: .6rem; margin-top: .35rem;
}
.pw-strength-bar {
  flex: 1; height: 4px; background: rgba(255,255,255,.1);
  border-radius: 2px; overflow: hidden;
}
.pw-strength-fill {
  height: 100%; width: 0; border-radius: 2px;
  transition: width .3s ease, background .3s ease;
}
.pw-strength-label {
  font-size: .75rem; font-weight: 700;
  min-width: 72px; text-align: right; white-space: nowrap;
}

/* ── Requirement pills ── */
.pw-reqs {
  display: flex; flex-wrap: wrap; gap: .3rem; margin-top: .4rem;
}
.pw-req {
  font-size: .72rem; font-weight: 600;
  padding: .18rem .5rem; border-radius: 20px;
  background: rgba(255,255,255,.06); color: var(--muted);
  border: 1px solid rgba(255,255,255,.1);
  transition: background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.pw-req.pw-req-ok {
  background: rgba(34,197,94,.12); color: #4ade80;
  border-color: rgba(34,197,94,.3);
}

.auth-switch {
  font-size: .83rem; color: var(--muted); text-align: center; margin: 0;
}
.auth-switch-link {
  background: none; border: none; color: var(--purple);
  font-size: inherit; font-weight: 700; cursor: pointer; padding: 0;
  font-family: inherit;
}
.auth-switch-link:hover { text-decoration: underline; }

/* Nav auth button */
.nav-auth-btn {
  background: var(--purple); color: #fff;
  border: none; border-radius: 20px;
  padding: .3rem .9rem; font-family: inherit;
  font-size: .88rem; font-weight: 700; cursor: pointer;
  transition: opacity .2s;
}
.nav-auth-btn:hover { opacity: .85; }

/* Nav user dropdown */
.nav-user-wrap { position: relative; }
.nav-user-btn {
  background: rgba(168,85,247,.15);
  border: 1px solid rgba(168,85,247,.35);
  color: var(--purple); border-radius: 20px;
  padding: .3rem .9rem; font-family: inherit;
  font-size: .88rem; font-weight: 700; cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}
.nav-user-btn:hover { background: rgba(168,85,247,.25); }
.nav-user-dropdown {
  position: absolute; top: calc(100% + .4rem); right: 0; z-index: 1200;
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: 12px; padding: .4rem;
  min-width: 170px;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
  display: none; flex-direction: column; gap: .1rem;
}
.nav-user-dropdown.open { display: flex; }
.nav-user-dropdown a,
.nav-user-dropdown button {
  display: block; width: 100%; text-align: left;
  padding: .55rem .9rem; border-radius: 8px;
  font-size: .88rem; color: var(--text);
  background: none; border: none; font-family: inherit;
  cursor: pointer; text-decoration: none;
  transition: background .15s;
}
.nav-user-dropdown a:hover,
.nav-user-dropdown button:hover { background: rgba(168,85,247,.12); color: var(--purple); }

/* Wishlist heart on product cards */
.product-card { position: relative; }
.card-wishlist-btn {
  position: absolute; top: .6rem; right: .6rem; z-index: 2;
  background: rgba(10,10,15,.65); border: none;
  width: 32px; height: 32px; border-radius: 50%;
  font-size: .95rem; cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  transition: transform .15s, background .15s;
  backdrop-filter: blur(4px);
}
.card-wishlist-btn:hover  { transform: scale(1.15); background: rgba(10,10,15,.9); }

/* PDP wishlist button */
.pdp-top-row {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: .5rem;
}
.pdp-wishlist-btn {
  position: relative;
  background: var(--dark3); border: 1px solid var(--border);
  width: 40px; height: 40px; border-radius: 50%;
  font-size: 1.1rem; cursor: pointer; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: transform .15s, background .15s;
}
.pdp-wishlist-btn:hover  { transform: scale(1.1); background: rgba(255,255,255,.08); }
.pdp-wishlist-btn.in-wishlist { background: rgba(236,72,153,.15); border-color: rgba(236,72,153,.4); }

/* Tooltip */
.pdp-wishlist-btn::after {
  content: attr(title);
  position: absolute;
  bottom: calc(100% + 7px);
  left: 50%; transform: translateX(-50%);
  background: rgba(15,15,25,.92);
  color: #e2e8f0;
  font-family: 'Rajdhani', sans-serif;
  font-size: .78rem; font-weight: 600;
  white-space: nowrap;
  padding: .3rem .65rem;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.1);
  pointer-events: none;
  opacity: 0;
  transition: opacity .15s;
}
.pdp-wishlist-btn:hover::after { opacity: 1; }

@media (max-width: 480px) {
  .auth-form-row { grid-template-columns: 1fr; }
  .auth-wrap { padding: 1.5rem 1.25rem 1.75rem; }
}

/* ===== PRODUCT DETAIL MODAL ===== */
.pdp-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.78); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
}
.pdp-wrap {
  background: var(--dark2); border-radius: 20px;
  border: 1px solid var(--border);
  width: 100%; max-width: 860px;
  max-height: 92vh; overflow-y: auto;
  position: relative;
  box-shadow: 0 28px 90px rgba(0,0,0,.65);
}
.pdp-close {
  position: absolute; top: 1rem; right: 1rem; z-index: 10;
  background: rgba(255,255,255,.08); border: none; color: var(--text);
  width: 38px; height: 38px; border-radius: 50%;
  font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.pdp-close:hover { background: rgba(255,255,255,.18); }
.pdp-inner {
  display: grid; grid-template-columns: 1fr 1fr;
}
.pdp-media {
  background: var(--dark3); border-radius: 20px 0 0 20px;
  display: flex; align-items: center; justify-content: center;
  min-height: 340px; padding: 2.5rem; overflow: hidden;
}
.pdp-media .pdp-emoji { font-size: 7rem; line-height: 1; }
.pdp-media .pdp-img   { width: 100%; max-height: 400px; object-fit: contain; border-radius: 10px; }
.pdp-info {
  padding: 2rem 2rem 1.75rem;
  display: flex; flex-direction: column; gap: .6rem;
}
.pdp-brand {
  font-size: .75rem; color: var(--purple);
  text-transform: uppercase; letter-spacing: .1em; font-weight: 700;
}
.pdp-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.35rem; font-weight: 700; line-height: 1.2; margin: 0;
}
.pdp-desc {
  font-size: .93rem; color: var(--muted); line-height: 1.65; margin: 0;
}
.pdp-variants-section { display: flex; flex-direction: column; gap: .5rem; margin-top: .15rem; }
.pdp-variants-label   { font-size: .75rem; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); }
.pdp-variant-pills    { display: flex; flex-wrap: wrap; gap: .4rem; }
.pdp-variant-pill {
  background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.12);
  color: var(--text); border-radius: 20px;
  padding: .35rem .85rem; font-size: .85rem; cursor: pointer;
  transition: background .15s, border-color .15s;
  font-family: inherit;
}
.pdp-variant-pill:hover  { background: rgba(168,85,247,.15); border-color: rgba(168,85,247,.4); }
.pdp-variant-pill.active { background: rgba(168,85,247,.25); border-color: var(--purple); color: #fff; }
.pdp-variant-error { font-size: .82rem; color: #fca5a5; margin: 0; }
.pdp-price {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.75rem; font-weight: 700; color: var(--purple);
  margin-top: .2rem;
}
.pdp-price s { color: var(--muted); font-size: 1.05rem; font-weight: 400; margin-right: .4rem; }
.pdp-footer {
  display: flex; align-items: center; gap: .65rem;
  margin-top: auto; padding-top: 1rem; flex-wrap: wrap;
}
.pdp-qty-ctrl {
  display: flex; align-items: center;
  background: var(--dark3); border-radius: 10px; overflow: hidden;
  border: 1px solid var(--border);
}
.pdp-qty-btn {
  background: none; border: none; color: var(--text);
  width: 36px; height: 38px; font-size: 1.2rem; cursor: pointer;
  transition: background .15s;
}
.pdp-qty-btn:hover { background: rgba(168,85,247,.18); }
.pdp-qty-num {
  min-width: 34px; text-align: center; font-weight: 700; font-size: .95rem;
}
.pdp-add-btn   { flex: 1; min-width: 130px; }
.pdp-added-msg { font-size: .82rem; color: #4ade80; font-weight: 600; display: none; }

/* Cards are fully clickable tiles */
.product-card { cursor: pointer; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1400px) {
  .product-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1050px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .hero { flex-direction: column; text-align: center; padding-top: 6rem; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }

  .contact-wrapper { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .navbar { padding: .85rem 1.25rem; }

  .nav-toggle { display: flex; align-items: center; justify-content: center; }

  .nav-links {
    display: flex; flex-direction: column; gap: 0; list-style: none;
    position: fixed; top: 0; right: 0;
    width: min(280px, 80vw); height: 100dvh;
    background: rgba(10, 10, 15, .97);
    backdrop-filter: blur(16px);
    border-left: 1px solid rgba(168, 85, 247, .25);
    padding: 5rem 0 2rem;
    z-index: 1001;
    transform: translateX(100%);
    transition: transform .3s cubic-bezier(.4, 0, .2, 1);
    box-shadow: -8px 0 40px rgba(0, 0, 0, .5);
  }
  .nav-links.open { transform: translateX(0); }

  .nav-links li a {
    display: block; padding: 1rem 2rem;
    font-size: 1.1rem; font-weight: 600; letter-spacing: .07em;
    border-bottom: 1px solid rgba(168, 85, 247, .08);
    transition: background .2s, color .2s;
  }
  .nav-links li a:hover { background: rgba(168, 85, 247, .1); color: var(--purple); }
  .nav-links a::after { display: none; }

  /* Close × button inside drawer */
  .nav-links::before {
    content: '✕';
    position: absolute; top: 1.25rem; right: 1.25rem;
    font-size: 1.3rem; color: var(--muted); cursor: pointer;
    font-family: sans-serif; line-height: 1;
  }

  .hero-visual { width: 200px; height: 280px; margin: 0 auto; }
  .ring1 { width: 80px;  height: 80px; }
  .ring2 { width: 120px; height: 120px; }
  .ring3 { width: 160px; height: 160px; }

  .product-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .product-card  { padding: 1rem .875rem; }
  .product-card h3 { font-size: .85rem; }
  .product-card p  { font-size: .8rem; margin-bottom: .75rem; }
  .product-emoji   { font-size: 2rem; margin-bottom: .5rem; }
  .product-img-wrap { height: 120px; }
  .specials-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }

  .checkout-body { grid-template-columns: 1fr; }
  .checkout-left { border-right: none; border-bottom: 1px solid var(--border); }
  .co-form-row   { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; }

  /* PDP modal — stack on mobile */
  .pdp-inner  { grid-template-columns: 1fr; }
  .pdp-media  { border-radius: 20px 20px 0 0; min-height: 200px; padding: 1.75rem; }
  .pdp-media .pdp-emoji { font-size: 5rem; }
  .pdp-info   { padding: 1.25rem 1.25rem 1.5rem; }
  .pdp-name   { font-size: 1.1rem; }
  .pdp-price  { font-size: 1.45rem; }
  .pdp-footer { gap: .5rem; }
}
