/* ================================================
   BOCETO 2 — Dark Tech / Gaming
   Paleta: #0a0e1a (fondo), #111827, #1c2844
           #3b82f6 (azul neon), #06b6d4 (cyan)
           texto: #e2e8f0
   Tipografía: Rajdhani (headings) + Inter (body)
   ================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0a0e1a;
  --bg-2:      #0f1624;
  --bg-card:   #111827;
  --bg-card2:  #161f30;
  --border:    rgba(59,130,246,.18);
  --border-2:  rgba(59,130,246,.35);
  --neon:      #3b82f6;
  --cyan:      #06b6d4;
  --neon-glow: rgba(59,130,246,.35);
  --text:      #e2e8f0;
  --text-mid:  #94a3b8;
  --text-dim:  #64748b;
  --accent-r:  #f43f5e;
  --accent-g:  #22c55e;
  --max-w:     1220px;
  --radius:    8px;
  --radius-lg: 14px;
  --transition: .2s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- LOGO ---- */
.logo {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: -.02em;
  line-height: 1;
}
.logo__mark {
  background: var(--neon);
  color: #fff;
  padding: 2px 7px 2px 6px;
  border-radius: 4px 0 0 4px;
}
.logo__text {
  background: var(--bg-card);
  color: var(--neon);
  padding: 2px 8px 2px 6px;
  border: 1px solid var(--border-2);
  border-left: none;
  border-radius: 0 4px 4px 0;
}
.logo--sm { font-size: 1.3rem; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: .88rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
  border: none;
  cursor: pointer;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.btn--neon {
  background: var(--neon);
  color: #fff;
  box-shadow: 0 0 16px var(--neon-glow);
}
.btn--neon:hover {
  background: #2563eb;
  box-shadow: 0 0 28px rgba(59,130,246,.5);
  transform: translateY(-1px);
}
.btn--outline {
  background: transparent;
  color: var(--neon);
  border: 1.5px solid var(--border-2);
}
.btn--outline:hover {
  background: rgba(59,130,246,.08);
  border-color: var(--neon);
}
.btn--ghost {
  background: transparent;
  color: var(--text-mid);
  border: 1.5px solid var(--border);
}
.btn--ghost:hover { color: var(--text); border-color: var(--border-2); }

.btn--sm { padding: 7px 16px; font-size: .78rem; }
.btn--block { width: 100%; justify-content: center; }

/* ---- TOPBAR ---- */
.topbar {
  background: #07090f;
  border-bottom: 1px solid var(--border);
  color: var(--text-dim);
  font-size: .76rem;
  text-align: center;
  padding: 7px 24px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.topbar .sep { opacity: .3; }

/* ---- HEADER ---- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,14,26,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 64px;
}
.nav { display: flex; gap: 2px; }
.nav__link {
  padding: 6px 13px;
  border-radius: 6px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: all var(--transition);
  letter-spacing: .02em;
}
.nav__link:hover, .nav__link--active {
  color: var(--neon);
  background: rgba(59,130,246,.1);
}
.header__right { display: flex; align-items: center; gap: 10px; }

.header-search {
  display: flex;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color var(--transition);
}
.header-search:focus-within { border-color: var(--neon); }
.header-search input {
  background: none;
  border: none;
  outline: none;
  padding: 7px 12px;
  color: var(--text);
  font-size: .85rem;
  width: 200px;
}
.header-search input::placeholder { color: var(--text-dim); }
.header-search button {
  padding: 7px 12px;
  background: none;
  color: var(--text-dim);
  transition: color var(--transition);
}
.header-search button:hover { color: var(--neon); }

.cart-btn {
  position: relative;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-mid);
  transition: all var(--transition);
}
.cart-btn:hover { border-color: var(--neon); color: var(--neon); }
.cart-count {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--neon);
  color: #fff;
  font-size: .64rem;
  font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: var(--bg-card);
  border-radius: 6px;
  border: 1px solid var(--border);
}
.hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--text-mid);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 70% 50%, rgba(59,130,246,.08) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(6,182,212,.06) 0%, transparent 50%),
              var(--bg);
}

.hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero__scanline {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,.03) 2px,
    rgba(0,0,0,.03) 4px
  );
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--cyan);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 4px var(--cyan); }
  50% { box-shadow: 0 0 14px var(--cyan); }
}

.hero__title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 22px;
  color: #fff;
  letter-spacing: -.02em;
}
.hero__title em {
  font-style: normal;
  color: var(--text-mid);
  font-size: .6em;
  font-weight: 500;
  display: block;
  letter-spacing: .0em;
  margin-top: 6px;
}

/* Glitch effect */
.glitch {
  position: relative;
  color: var(--neon);
  display: inline-block;
}
.glitch::before, .glitch::after {
  content: attr(data-text);
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 100%;
  color: var(--neon);
}
.glitch::before {
  animation: glitch-1 3s infinite;
  clip-path: polygon(0 20%, 100% 20%, 100% 40%, 0 40%);
  transform: translate(-2px, 0);
  color: var(--cyan);
  opacity: .6;
}
.glitch::after {
  animation: glitch-2 3s infinite;
  clip-path: polygon(0 60%, 100% 60%, 100% 80%, 0 80%);
  transform: translate(2px, 0);
  opacity: .4;
}
@keyframes glitch-1 {
  0%, 90%, 100% { transform: translate(-2px,0); opacity: .4; }
  91% { transform: translate(3px, -1px); opacity: .7; }
  93% { transform: translate(-1px, 1px); opacity: .5; }
}
@keyframes glitch-2 {
  0%, 88%, 100% { transform: translate(2px,0); opacity: .3; }
  89% { transform: translate(-3px, 1px); opacity: .6; }
  91% { transform: translate(1px, -1px); opacity: .4; }
}

.hero__desc {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 420px;
  margin-bottom: 32px;
  line-height: 1.75;
}

.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Showcase */
.hero__showcase {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.showcase-ring {
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(59,130,246,.15);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
  animation: spin 20s linear infinite;
}
.showcase-ring::before {
  content: '';
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 12px var(--neon);
  top: -7px; left: 50%;
  transform: translateX(-50%);
}
@keyframes spin { from { transform: translate(-50%,-50%) rotate(0); } to { transform: translate(-50%,-50%) rotate(360deg); } }

.showcase-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all var(--transition);
  z-index: 2;
}
.showcase-card:hover { border-color: var(--neon); box-shadow: 0 0 24px var(--neon-glow); }
.showcase-card__glow {
  position: absolute;
  width: 150px; height: 150px;
  background: radial-gradient(circle, rgba(59,130,246,.15), transparent 70%);
  top: -40px; right: -40px;
  pointer-events: none;
}
.showcase-card--sm { padding: 14px 20px; }
.showcase-emoji { font-size: 2.8rem; line-height: 1; }
.showcase-card--sm .showcase-emoji { font-size: 2rem; }
.sc-label {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 2px;
}
.showcase-card__info strong { display: block; font-size: .95rem; font-weight: 600; color: #fff; }
.sc-price { font-size: .85rem; color: var(--neon); font-weight: 700; }

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--neon), transparent);
  animation: scrollAnim 1.8s ease-in-out infinite;
}
@keyframes scrollAnim {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---- CATEGORY STRIP ---- */
.cat-strip {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
  overflow: hidden;
}
.cat-strip__inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.cat-strip__inner::-webkit-scrollbar { display: none; }
.cat-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 22px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-mid);
  white-space: nowrap;
  border-right: 1px solid var(--border);
  transition: all var(--transition);
  letter-spacing: .02em;
}
.cat-chip:hover {
  background: rgba(59,130,246,.07);
  color: var(--neon);
}
.cat-chip span { font-size: 1.1rem; }
.cat-chip--all { color: var(--neon); font-weight: 700; }

/* ---- SECTION ---- */
.section { padding: 80px 0; }
.section--dark { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.section__tag {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 8px;
  font-family: 'Rajdhani', sans-serif;
}
.section__title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.01em;
}
.section__title span { color: var(--neon); }

/* ---- PRODUCTS GRID ---- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pcard {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.pcard:hover {
  border-color: var(--neon);
  box-shadow: 0 0 28px var(--neon-glow), 0 8px 24px rgba(0,0,0,.3);
  transform: translateY(-4px);
}
.pcard--hero {
  grid-column: span 1;
  background: linear-gradient(135deg, #0f1e3a 0%, var(--bg-card) 100%);
}

.pcard__badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--accent-r);
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 4px;
  letter-spacing: .05em;
  z-index: 2;
}
.pcard__badge--new { background: var(--accent-g); }

.pcard__img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(59,130,246,.06), rgba(6,182,212,.04));
  border-bottom: 1px solid var(--border);
  font-size: 5rem;
}
.pcard__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.pcard__body { padding: 18px; flex: 1; display: flex; flex-direction: column; gap: 7px; }
.pcard__cat {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--cyan);
  text-transform: uppercase;
}
.pcard__name { font-size: .95rem; font-weight: 600; color: #fff; line-height: 1.3; flex: 1; }
.pcard__stars { font-size: .78rem; color: #f59e0b; }
.pcard__stars em { color: var(--text-dim); font-style: normal; }

.pcard__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.pcard__price s { font-size: .82rem; color: var(--text-dim); }
.pcard__price strong { font-size: 1.2rem; font-weight: 800; color: var(--neon); }

.pcard__actions {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 4px;
}
.pcard__actions .btn { flex: 1; }
.wishlist-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
}
.wishlist-btn:hover { border-color: var(--accent-r); color: var(--accent-r); }

/* ---- PROMO SPLIT ---- */
.promo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 280px;
}
.promo-split__left {
  background: linear-gradient(135deg, #0a1628 0%, #0f1e3a 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px;
  display: flex;
  align-items: center;
}
.promo-split__right {
  background: linear-gradient(135deg, #0c1a2e 0%, #0a1420 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  border-left: 1px solid var(--border);
  padding: 60px;
  display: flex;
  align-items: center;
}
.promo-split__tag {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.promo-split__content h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 12px;
}
.promo-split__content h2 span { color: var(--neon); }
.promo-split__content p { color: var(--text-mid); margin-bottom: 24px; font-size: .9rem; }

/* ---- ABOUT ---- */
.about__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 64px;
  align-items: center;
}
.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.stat-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  min-width: 120px;
  transition: all var(--transition);
}
.stat-box:hover { border-color: var(--neon); box-shadow: 0 0 16px var(--neon-glow); }
.stat-box strong {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--neon);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-box span { font-size: .78rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: .06em; }

.about__text { color: var(--text-mid); margin-bottom: 24px; line-height: 1.75; font-size: .95rem; }
.about__list { display: flex; flex-direction: column; gap: 16px; }
.about__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.about__item:hover { border-color: var(--neon); }
.about__item-icon { font-size: 1.4rem; line-height: 1; flex-shrink: 0; }
.about__item strong { display: block; font-size: .9rem; color: #fff; margin-bottom: 2px; }
.about__item p { font-size: .8rem; color: var(--text-dim); }

/* ---- BRANDS ---- */
.brands-strip {
  padding: 36px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.brands-strip__label {
  text-align: center;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.brands-strip__row {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.brands-strip__row span {
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: .06em;
  transition: all var(--transition);
}
.brands-strip__row span:hover {
  border-color: var(--neon);
  color: var(--neon);
  background: rgba(59,130,246,.06);
}

/* ---- CONTACT ---- */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact__side { }
.contact__side .section__title { margin-bottom: 28px; }
.contact__list { display: flex; flex-direction: column; gap: 14px; }
.contact__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.contact__list li span { font-size: 1.2rem; }
.contact__list li p { font-size: .88rem; color: var(--text-mid); }

.contact__form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .8rem; font-weight: 600; color: var(--text-mid); margin-bottom: 6px; letter-spacing: .04em; text-transform: uppercase; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: .88rem;
  outline: none;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--neon); box-shadow: 0 0 0 3px rgba(59,130,246,.12); }
.form-group select option { background: var(--bg-card); }
.form-group textarea { resize: vertical; }

/* ---- FOOTER ---- */
.footer { background: var(--bg-2); border-top: 1px solid var(--border); }
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 56px 24px 40px;
}
.footer__brand { }
.footer__brand .logo { margin-bottom: 14px; }
.footer__brand > p { font-size: .85rem; color: var(--text-dim); margin-bottom: 20px; line-height: 1.7; }
.footer__social { display: flex; gap: 8px; }
.slink {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: .75rem;
  font-weight: 700;
  color: var(--text-dim);
  transition: all var(--transition);
}
.slink:hover { border-color: var(--neon); color: var(--neon); }
.footer__col h4 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--text);
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: 'Rajdhani', sans-serif;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: .86rem; color: var(--text-dim); transition: color var(--transition); }
.footer__col a:hover { color: var(--neon); }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 18px 24px;
}
.footer__bottom__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom__inner span { font-size: .8rem; color: var(--text-dim); }
.payments { display: flex; gap: 8px; }
.payments span {
  padding: 3px 10px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: .72rem;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: .04em;
}

/* ---- WA FLOAT ---- */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 20px rgba(37,211,102,.4);
  transition: all var(--transition);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 0 32px rgba(37,211,102,.55); }

/* ---- THEME TOGGLE BUTTON ---- */
.theme-toggle {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-size: 1rem;
  line-height: 1;
  transition: all var(--transition);
  flex-shrink: 0;
}
.theme-toggle:hover { border-color: var(--neon); transform: rotate(20deg) scale(1.1); }

/* ---- LIGHT THEME ---- */
html[data-theme="light"] {
  --bg:        #eef2f8;
  --bg-2:      #e4eaf4;
  --bg-card:   #ffffff;
  --bg-card2:  #f5f8fc;
  --border:    rgba(59,130,246,.2);
  --border-2:  rgba(59,130,246,.38);
  --text:      #0f172a;
  --text-mid:  #334155;
  --text-dim:  #64748b;
  --neon-glow: rgba(59,130,246,.18);
}

html[data-theme="light"] body {
  background: var(--bg);
  color: var(--text);
}

html[data-theme="light"] .topbar {
  background: #d8e4f4;
  color: #334155;
  border-bottom-color: rgba(59,130,246,.2);
}

html[data-theme="light"] .header {
  background: rgba(238,242,248,.95);
}

html[data-theme="light"] .nav {
  background: rgba(238,242,248,.97);
}

html[data-theme="light"] .hero {
  background:
    radial-gradient(ellipse at 70% 50%, rgba(59,130,246,.12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(6,182,212,.1) 0%, transparent 50%),
    var(--bg);
}

html[data-theme="light"] .hero__title { color: var(--text); }

html[data-theme="light"] .section__title { color: var(--text); }

html[data-theme="light"] .showcase-card__info strong,
html[data-theme="light"] .pcard__name,
html[data-theme="light"] .about__item strong,
html[data-theme="light"] .promo-split__content h2 { color: var(--text); }

html[data-theme="light"] .pcard--hero {
  background: linear-gradient(135deg, #d8e8f8 0%, var(--bg-card) 100%);
}

html[data-theme="light"] .promo-split__left {
  background: linear-gradient(135deg, #ccdcf0 0%, #d8e8f8 100%);
}
html[data-theme="light"] .promo-split__right {
  background: linear-gradient(135deg, #c8d8ec 0%, #d4e4f6 100%);
}

html[data-theme="light"] .hero__scanline {
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,.015) 2px,
    rgba(0,0,0,.015) 4px
  );
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .about__inner { grid-template-columns: 1fr; }
  .about__stats { grid-template-columns: repeat(4, 1fr); }
  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .header-search { display: none; }
  .nav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0; right: 0;
    background: rgba(10,14,26,.97);
    flex-direction: column;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    z-index: 99;
  }
  .nav.nav--open { display: flex; }
  .nav__link { padding: 12px 16px; }
  .hamburger { display: flex; }
  .hero__inner { grid-template-columns: 1fr; min-height: auto; }
  .hero__showcase { display: none; }
  .hero { min-height: auto; }
  .hero__inner { padding: 60px 24px; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .promo-split { grid-template-columns: 1fr; }
  .promo-split__right { border-left: none; border-top: 1px solid var(--border); }
  .promo-split__left, .promo-split__right { padding: 40px 24px; }
  .about__stats { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr; padding: 40px 24px 32px; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom__inner { flex-direction: column; text-align: center; }
}
