/*
 * LexiNexiAI — Website Redesign CSS
 * Design: Vibrant Colorful (Deep navy + Naruto orange + Electric cyan + Vivid accents)
 *
 * Import order in base.html: after bootstrap.css, BEFORE module CSS files
 */

/* ═══════════════════════════════════════════════════════════════
   DESIGN SYSTEM — CSS CUSTOM PROPERTIES
   ═══════════════════════════════════════════════════════════════ */
:root {
  /* Core palette */
  --bg-dark:      #0d1117;    /* Deep space black — primary background */
  --bg-card:      #161b22;    /* Card / section background */
  --bg-section:   #0d1117;    /* Alternate section background */
  --bg-light-section: #13181f; /* Slightly lighter section */

  /* Brand colors */
  --primary:      #ff6b35;    /* Naruto orange — main CTA, highlights */
  --primary-dark: #e85c28;    /* Darker orange — hover state */
  --secondary:    #00d4ff;    /* Electric cyan — tech / AI feel */
  --secondary-dark: #00b8db;  /* Darker cyan — hover */
  --accent:       #ff2d55;    /* Vivid red — energy, alerts */
  --purple:       #7c3aed;    /* Purple — futuristic / AI */
  --gold:         #f59e0b;    /* Gold — premium / collectibles */
  --green-wa:     #25d366;    /* WhatsApp green */
  --green-wa-dark:#1ebe5c;    /* WhatsApp green hover */

  /* Text */
  --text:         #f0f6fc;    /* Primary text */
  --text-muted:   #8b949e;    /* Secondary / muted text */
  --text-dim:     #6e7681;    /* Very muted text */

  /* Borders & glows */
  --border:         rgba(255, 107, 53, 0.2);
  --border-cyan:    rgba(0, 212, 255, 0.2);
  --glow-orange:    0 0 20px rgba(255, 107, 53, 0.4);
  --glow-cyan:      0 0 20px rgba(0, 212, 255, 0.4);
  --glow-purple:    0 0 20px rgba(124, 58, 237, 0.4);
  --glow-gold:      0 0 20px rgba(245, 158, 11, 0.4);

  /* Gradients */
  --grad-hero:    linear-gradient(135deg, #0d1117 0%, #1a0d2e 30%, #0a1628 65%, #0d1117 100%);
  --grad-orange:  linear-gradient(135deg, #ff6b35, #ff2d55);
  --grad-cyan:    linear-gradient(135deg, #00d4ff, #7c3aed);
  --grad-gold:    linear-gradient(135deg, #f59e0b, #ff6b35);

  /* Transitions */
  --trans-fast:   0.2s ease;
  --trans-med:    0.35s ease;
  --trans-slow:   0.5s ease;

  /* Border radius */
  --radius-sm:    8px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-xl:    30px;
}


/* ═══════════════════════════════════════════════════════════════
   GLOBAL OVERRIDES
   ═══════════════════════════════════════════════════════════════ */
body {
  background-color: var(--bg-dark) !important;
  color: var(--text) !important;
  font-family: 'Urbanist', 'IBM Plex Sans', sans-serif;
}

a { color: var(--secondary); transition: color var(--trans-fast); }
a:hover { color: var(--primary); text-decoration: none; }

h1, h2, h3, h4, h5, h6 { color: var(--text) !important; }

/* Hide the preloader entirely — just kill it immediately, no dark overlay */
.preloader {
  display: none !important;
}

p { color: var(--text-muted); }

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

/* ═══════════════════════════════════════════════════════════════
   HEADER / NAVBAR OVERRIDE
   ═══════════════════════════════════════════════════════════════ */
.header-area,
.sticky-nav,
header {
  background-color: rgba(13, 17, 23, 0.97) !important;
  border-bottom: 1px solid rgba(255,107,53,0.15) !important;
  backdrop-filter: blur(12px);
}

.main-menu nav ul li a {
  color: var(--text) !important;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color var(--trans-fast);
}

.main-menu nav ul li a:hover,
.main-menu nav ul li.active a {
  color: var(--primary) !important;
}

/* ── Clean nav link base style ──────────────────────────────── */
.lexi-nav-link {
  position: relative;
  display: inline-block;
  color: var(--text-muted) !important;
  font-weight: 600;
  font-size: 14px;
  padding: 7px 13px !important;
  border-radius: 8px;
  text-decoration: none !important;
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.01em;
}
.lexi-nav-link:hover {
  color: var(--text) !important;
  background: rgba(255, 255, 255, 0.06);
}

/* Active state — orange underline pill + tinted bg */
.lexi-nav-link.lexi-nav-active {
  color: var(--primary) !important;
  background: rgba(255, 107, 53, 0.1) !important;
}
.lexi-nav-link.lexi-nav-active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 3px;
  background: var(--primary);
  border-radius: 99px;
}

/* Store nav link — gold tint */
.lexi-nav-store {
  color: var(--gold) !important;
  border: 1px solid rgba(245, 158, 11, 0.3);
}
.lexi-nav-store:hover {
  background: rgba(245, 158, 11, 0.1) !important;
  color: var(--gold) !important;
}
.lexi-nav-store.lexi-nav-active {
  color: var(--gold) !important;
  background: rgba(245, 158, 11, 0.14) !important;
  border-color: rgba(245, 158, 11, 0.5);
}
.lexi-nav-store.lexi-nav-active::after {
  background: var(--gold);
}

/* Logo */
.header-logo img {
  filter: brightness(1.1);
}

/* Mobile menu */
.mean-container .mean-nav {
  background-color: var(--bg-card) !important;
}
.mean-container .mean-nav ul li a {
  color: var(--text) !important;
  border-top-color: rgba(255,255,255,0.08) !important;
}

/* ═══════════════════════════════════════════════════════════════
   FIX: OLD header.css CONFLICTS THAT BREAK NEW NAV
   The old module CSS has .main-header-two__inner-container set to
   position:absolute / padding:0 40px / negative margins / white bg.
   These all break our new flex-based nav bar. Override them here.
   ═══════════════════════════════════════════════════════════════ */

/* Fix: inner container must be in normal flow, not absolute */
.main-header-two__inner-container {
  position: relative !important;
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  background-color: transparent !important;
  filter: none !important;
  border-radius: 0 !important;
  width: 100% !important;
}

/* Fix: header-lower must not have a fixed height (was 85px) */
.main-header-two .header-lower {
  height: auto !important;
}

/* Fix: nav links must not have 44px top/bottom padding */
.main-header .main-menu .navigation > li > a,
.main-header-two .main-menu .navigation > li > a {
  padding: 6px 12px !important;
  color: var(--text) !important;
  font-size: 14px !important;
}

/* Fix: nav items must not have 30px right margin */
.main-header .main-menu .navigation > li {
  margin-right: 0 !important;
  display: flex !important;
  align-items: center !important;
}


/* ═══════════════════════════════════════════════════════════════
   FLOATING WHATSAPP SUPPORT BUTTON
   ═══════════════════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--green-wa);
  color: #fff !important;
  text-decoration: none !important;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: all var(--trans-med);
  animation: pulse-wa 2.5s infinite;
}

.whatsapp-float:hover {
  background: var(--green-wa-dark);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
  color: #fff !important;
}

.whatsapp-float .wa-icon {
  font-size: 18px;
  line-height: 1;
}

@keyframes pulse-wa {
  0%   { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45); }
  50%  { box-shadow: 0 4px 35px rgba(37, 211, 102, 0.75); }
  100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45); }
}

/* Hide text on very small screens, show only icon */
@media (max-width: 400px) {
  .whatsapp-float .wa-text { display: none; }
  .whatsapp-float { padding: 14px; }
}


/* ═══════════════════════════════════════════════════════════════
   COMMON SECTION STYLES
   ═══════════════════════════════════════════════════════════════ */
.section-title h2 {
  color: var(--text) !important;
  font-size: 2.2rem;
  font-weight: 800;
}

.section-title h2 span {
  background: var(--grad-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Section separators */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  margin: 0;
}


/* ═══════════════════════════════════════════════════════════════
   BUTTON STYLES
   ═══════════════════════════════════════════════════════════════ */

/* Primary CTA — orange */
.btn-lexi-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-orange);
  color: #fff !important;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all var(--trans-med);
  text-decoration: none !important;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}
.btn-lexi-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.6);
  color: #fff !important;
}

/* Secondary CTA — cyan outline */
.btn-lexi-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--secondary) !important;
  padding: 13px 27px;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 15px;
  border: 2px solid var(--secondary);
  cursor: pointer;
  transition: all var(--trans-med);
  text-decoration: none !important;
}
.btn-lexi-secondary:hover {
  background: var(--secondary);
  color: var(--bg-dark) !important;
  transform: translateY(-3px);
  box-shadow: var(--glow-cyan);
}

/* ── App Store Badge Button ──────────────────────────────────── */
.btn-appstore {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: #000;
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 11px 20px;
  text-decoration: none !important;
  color: #fff !important;
  transition: transform 0.13s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.13s ease,
              background 0.15s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.btn-appstore:hover {
  background: #1a1a1a;
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.6);
  color: #fff !important;
}
/* iOS-style press animation */
.btn-appstore:active,
.btn-appstore.pressed {
  transform: scale(0.93) !important;
  box-shadow: 0 1px 6px rgba(0,0,0,0.4) !important;
  background: #111 !important;
  transition: transform 0.08s ease, box-shadow 0.08s ease !important;
}
.btn-appstore__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  fill: #fff;
}
.btn-appstore__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.btn-appstore__sub {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.03em;
  opacity: 0.85;
}
.btn-appstore__main {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* WhatsApp buy button — green */
.btn-whatsapp-buy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-wa);
  color: #fff !important;
  padding: 15px 32px;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all var(--trans-med);
  text-decoration: none !important;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}
.btn-whatsapp-buy:hover {
  background: var(--green-wa-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
  color: #fff !important;
}

/* Ghost / outline — general */
.btn-lexi-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text) !important;
  padding: 12px 24px;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 14px;
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  transition: all var(--trans-med);
  text-decoration: none !important;
}
.btn-lexi-ghost:hover {
  border-color: var(--primary);
  color: var(--primary) !important;
  transform: translateY(-2px);
}


/* ═══════════════════════════════════════════════════════════════
   PRODUCT CARD (used in store and homepage preview)
   ═══════════════════════════════════════════════════════════════ */
.lexi-product-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  transition: all var(--trans-med);
  display: flex;
  flex-direction: column;
}

.lexi-product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 107, 53, 0.35);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.15);
}

.lexi-product-card .card-image {
  position: relative;
  width: 100%;
  padding-top: 100%; /* 1:1 square */
  overflow: hidden;
  background: #0a0e15;
}

.lexi-product-card .card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--trans-slow);
}

.lexi-product-card:hover .card-image img {
  transform: scale(1.06);
}

.lexi-product-card .card-tags {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.lexi-product-card .card-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.lexi-product-card .card-title {
  color: var(--text) !important;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.35;
}

.lexi-product-card .card-price {
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.lexi-product-card .card-footer-actions {
  margin-top: auto;
}

/* Tag badges */
.tag-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.tag-badge.best-sellers { background: var(--gold); color: #000; }
.tag-badge.new-arrival  { background: var(--secondary); color: #000; }
.tag-badge.limited      { background: var(--accent); color: #fff; }
.tag-badge.default      { background: rgba(255,255,255,0.12); color: var(--text); }

/* Low-stock indicator */
.low-stock-warn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
}


/* ═══════════════════════════════════════════════════════════════
   CATEGORY CARD (store landing grid)
   ═══════════════════════════════════════════════════════════════ */
.lexi-category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: block;
  text-decoration: none !important;
  transition: all var(--trans-med);
}

.lexi-category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--trans-slow);
}

.lexi-category-card:hover img {
  transform: scale(1.08);
}

.lexi-category-card .cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.lexi-category-card:hover {
  border: 2px solid var(--primary);
  box-shadow: var(--glow-orange);
}

.lexi-category-card .cat-name {
  color: #fff !important;
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

.lexi-category-card .cat-count {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  margin: 0;
}

/* Placeholder if no image */
.lexi-category-card.no-image {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lexi-category-card.no-image .cat-placeholder-icon {
  font-size: 3rem;
  margin-bottom: 12px;
  display: block;
  text-align: center;
}


/* ═══════════════════════════════════════════════════════════════
   FEATURE CARD (homepage sections)
   ═══════════════════════════════════════════════════════════════ */
.lexi-feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: all var(--trans-med);
  height: 100%;
}

.lexi-feature-card:hover {
  border-color: var(--primary);
  box-shadow: var(--glow-orange);
  transform: translateY(-4px);
}

.lexi-feature-card .feature-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.lexi-feature-card h4 {
  color: var(--text) !important;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.lexi-feature-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}


/* ═══════════════════════════════════════════════════════════════
   PRICING CARDS
   ═══════════════════════════════════════════════════════════════ */
.lexi-pricing-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--trans-med);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.lexi-pricing-card.featured {
  border-color: var(--primary) !important;
  box-shadow: var(--glow-orange);
  transform: translateY(-10px);
}

.lexi-pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.lexi-pricing-card.featured:hover { transform: translateY(-14px); }

.lexi-pricing-card .badge-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-orange);
  color: #fff;
  padding: 4px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.lexi-pricing-card .plan-name {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.lexi-pricing-card .plan-price {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
}

.lexi-pricing-card .plan-price .currency {
  font-size: 1.4rem;
  vertical-align: top;
  margin-top: 8px;
  display: inline-block;
}

.lexi-pricing-card .plan-period {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 24px;
}

.lexi-pricing-card .plan-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 20px 0;
}

.lexi-pricing-card .plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  text-align: left;
  flex: 1;
}

.lexi-pricing-card .plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-muted);
  font-size: 14px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.lexi-pricing-card .plan-features li .check {
  color: var(--primary);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}


/* ═══════════════════════════════════════════════════════════════
   HERO SECTION (homepage)
   ═══════════════════════════════════════════════════════════════ */
.lexi-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--grad-hero);
  padding: 120px 0 80px;
}

/* Animated gradient circles — boosted to 0.35/0.25 for vibrant glow */
.lexi-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,53,0.35) 0%, rgba(255,45,85,0.15) 40%, transparent 70%);
  animation: float-blob 8s ease-in-out infinite;
}

.lexi-hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,0.28) 0%, rgba(124,58,237,0.15) 40%, transparent 70%);
  animation: float-blob 10s ease-in-out infinite reverse;
}

@keyframes float-blob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -20px) scale(1.05); }
  66%       { transform: translate(-20px, 15px) scale(0.98); }
}

.lexi-hero .hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255,107,53,0.2), rgba(255,45,85,0.15));
  border: 1px solid rgba(255, 107, 53, 0.5);
  color: #ff8c5a;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
  box-shadow: 0 0 20px rgba(255,107,53,0.2);
}

.lexi-hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 24px;
  color: #ffffff !important;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}

.lexi-hero h1 .highlight-orange {
  background: var(--grad-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lexi-hero h1 .highlight-cyan {
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lexi-hero .hero-desc {
  color: rgba(240,246,252,0.8);
  font-size: 1.15rem;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 560px;
}

.lexi-hero .hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Hero product cards */
.hero-product-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 576px) {
  .hero-product-cards { grid-template-columns: 1fr; }
}

/* CSS-only entrance animations — no JS, never hides content */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Hero product cards — staggered slide-up on load */
.hero-prod-card:nth-child(1) { animation: fadeSlideUp 0.55s ease 0.3s both; }
.hero-prod-card:nth-child(2) { animation: fadeSlideUp 0.55s ease 0.48s both; }
.hero-prod-card:nth-child(3) { animation: fadeSlideUp 0.55s ease 0.66s both; }

/* Store preview product cards — staggered on load */
.section-store-preview .lexi-product-card:nth-child(1) { animation: fadeSlideUp 0.5s ease 0.1s both; }
.section-store-preview .lexi-product-card:nth-child(2) { animation: fadeSlideUp 0.5s ease 0.22s both; }
.section-store-preview .lexi-product-card:nth-child(3) { animation: fadeSlideUp 0.5s ease 0.34s both; }
.section-store-preview .lexi-product-card:nth-child(4) { animation: fadeSlideUp 0.5s ease 0.46s both; }

.hero-prod-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  transition: all var(--trans-med);
  cursor: default;
}

.hero-prod-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--glow-orange);
}

.hero-prod-card .prod-icon { font-size: 2.2rem; margin-bottom: 10px; display: block; }
.hero-prod-card .prod-name { color: var(--text) !important; font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.hero-prod-card .prod-desc { color: var(--text-muted); font-size: 12px; }


/* ═══════════════════════════════════════════════════════════════
   WHATSAPP AI SECTION (homepage)
   ═══════════════════════════════════════════════════════════════ */
.section-wa-ai {
  background: var(--bg-light-section);
  padding: 80px 0;
}

.section-wa-ai .section-title h2 span {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* ═══════════════════════════════════════════════════════════════
   ANIME STORE PREVIEW (homepage)
   ═══════════════════════════════════════════════════════════════ */
.section-store-preview {
  background: #0a0e15;
  padding: 80px 0;
}

.section-store-preview .section-title h2 span {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* ═══════════════════════════════════════════════════════════════
   AI SUPPORT BANNER (full-width CTA strip)
   ═══════════════════════════════════════════════════════════════ */
.section-ai-cta {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(255, 107, 53, 0.1) 100%);
  border-top: 1px solid rgba(124, 58, 237, 0.2);
  border-bottom: 1px solid rgba(124, 58, 237, 0.2);
  padding: 60px 0;
  text-align: center;
}

.section-ai-cta h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--text) !important;
}

.section-ai-cta h2 span {
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-ai-cta p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 28px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}


/* ═══════════════════════════════════════════════════════════════
   STORE PAGE — BREADCRUMB
   ═══════════════════════════════════════════════════════════════ */
.lexi-breadcrumb {
  padding: 16px 0;
  color: var(--text-muted);
  font-size: 13px;
}

.lexi-breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--trans-fast);
}

.lexi-breadcrumb a:hover { color: var(--primary); }
.lexi-breadcrumb .sep { margin: 0 8px; color: var(--text-dim); }
.lexi-breadcrumb .current { color: var(--primary); }


/* ═══════════════════════════════════════════════════════════════
   PRODUCT DETAIL PAGE
   ═══════════════════════════════════════════════════════════════ */
.product-detail-page {
  padding: 40px 0 80px;
}

.product-gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0a0e15;
  aspect-ratio: 1 / 1;
  position: relative;
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.product-thumb {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--trans-fast);
}

.product-thumb:hover,
.product-thumb.active {
  border-color: var(--primary);
  box-shadow: var(--glow-orange);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-info {
  padding-left: 24px;
}

@media (max-width: 768px) {
  .product-detail-info { padding-left: 0; margin-top: 24px; }
}

.product-detail-info .product-name {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--text) !important;
  margin-bottom: 8px;
}

.product-detail-info .product-price {
  color: var(--primary);
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.product-detail-info .product-description {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.product-shipping-info {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding: 14px 16px;
  background: rgba(0, 212, 255, 0.06);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 212, 255, 0.15);
}

.shipping-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 600;
}


/* ═══════════════════════════════════════════════════════════════
   FOOTER OVERRIDE
   ═══════════════════════════════════════════════════════════════ */
footer,
.footer-area {
  background-color: #080b10 !important;
  border-top: 1px solid rgba(255,107,53,0.12) !important;
}

.footer-widget h4,
.footer-widget .widget-title {
  color: var(--text) !important;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}

.footer-widget ul li a {
  color: var(--text-muted) !important;
  transition: color var(--trans-fast);
}

.footer-widget ul li a:hover {
  color: var(--primary) !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06) !important;
  background: #080b10 !important;
}

.footer-bottom p {
  color: var(--text-dim) !important;
}

.footer-wa-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-wa-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted) !important;
  font-size: 13px;
  text-decoration: none !important;
  transition: color var(--trans-fast);
}

.footer-wa-link:hover {
  color: var(--green-wa) !important;
}

.footer-wa-link .wa-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-wa);
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════════
   PAGE HEADER BANNERS (for inner pages like /store, /pricing)
   ═══════════════════════════════════════════════════════════════ */
.lexi-page-header {
  background: linear-gradient(135deg, #0d1117 0%, #131a2a 100%);
  padding: 80px 0 50px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.lexi-page-header::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,53,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.lexi-page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--text) !important;
  margin-bottom: 12px;
}

.lexi-page-header h1 span {
  background: var(--grad-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lexi-page-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
}


/* ═══════════════════════════════════════════════════════════════
   UTILITY CLASSES
   ═══════════════════════════════════════════════════════════════ */
.text-orange   { color: var(--primary) !important; }
.text-cyan     { color: var(--secondary) !important; }
.text-gold     { color: var(--gold) !important; }
.text-accent   { color: var(--accent) !important; }
.text-purple   { color: var(--purple) !important; }
.text-muted-lexi { color: var(--text-muted) !important; }

.bg-card-lexi  { background-color: var(--bg-card) !important; }
.bg-dark-lexi  { background-color: var(--bg-dark) !important; }

.gradient-text-orange {
  background: var(--grad-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-cyan {
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glow-border-orange {
  border: 1px solid rgba(255, 107, 53, 0.3) !important;
  box-shadow: var(--glow-orange);
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .lexi-hero { padding: 100px 0 60px; }
  .lexi-hero h1 { font-size: 2rem; }
  .lexi-hero .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-product-cards { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .hero-prod-card { padding: 14px 10px; }
  .hero-prod-card .prod-icon { font-size: 1.6rem; }

  .lexi-pricing-card.featured { transform: none; }

  .product-thumbnails .product-thumb { width: 55px; height: 55px; }
}

@media (max-width: 480px) {
  .hero-product-cards { grid-template-columns: 1fr; }
  .lexi-page-header { padding: 60px 0 36px; }
}
