/* ============================================================
   RS ELITE NETWORK STORE — HUD GLASSMORPHISM REDESIGN
   PALETA: CYAN · ROSA · DORADO · BLANCO sobre NEGRO PURO
   Fuente: Odibee Sans (Google Fonts)
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Odibee+Sans&family=Lexend:wght@300;400;500;600;700;800&display=swap");

@font-face {
  font-family: 'Masque';
  src: url('/assets/fonts/Masque.ttf') format('truetype');
  font-weight: normal; font-style: normal;
}
@font-face {
  font-family: 'Dash';
  src: url('/assets/fonts/Dash.ttf') format('truetype');
  font-weight: normal; font-style: normal;
}

/* ══════════════════════════════════════════════════════════
   CSS VARIABLES — NUEVA PALETA
   cyan:  #00f5d4   (turquesa brillante)
   rosa:  #ff2d78   (hot pink neón)
   dorado:#ffd166   (amber dorado)
   blanco:#f8f8ff
   negro: #05050a   (casi negro puro)
   ══════════════════════════════════════════════════════════ */
:root {
  /* TEXTOS */
  --color-text:           #f8f8ff;
  --color-text-darker:    #ffe8f5;
  --color-text-secondary: #b8a8c8;
  --color-text-dark:      #05050a;

  /* FONDOS */
  --color-bg:             #05050a;
  --color-brighter-bg:    hsl(270 20% 6% / 80%);
  --color-input-bg:       #0d0814;
  --color-popup-bg:       hsl(270 30% 3% / 92%);

  /* ACENTO PRIMARIO — CYAN */
  --color-primary:        #00f5d4;
  --color-primary-hover:  #ffffff;
  --color-primary-text:   #05050a;
  --color-primary-text-hover: #05050a;

  /* SECUNDARIO — ROSA */
  --color-secondary:      #ff2d78;
  --color-secondary-hover:#ff6ea0;
  --color-secondary-text: #ffffff;
  --color-secondary-text-hover: #ffffff;

  /* TERCIARIO — TRANSPARENTE */
  --color-tertiary:       transparent;
  --color-tertiary-hover: hsl(330 80% 50% / 12%);
  --color-tertiary-text:  var(--color-text);
  --color-tertiary-text-hover: var(--color-text-darker);

  /* DORADO */
  --color-gold:           #ffd166;
  --color-gold-dim:       hsl(43 100% 55% / 70%);

  /* REMOVED */
  --color-removed:        #ff2d78;

  /* ALIAS */
  --color-accent:         #00f5d4;
  --color-accent2:        #ff2d78;
  --color-accent3:        #ffd166;

  /* LAYOUT */
  --header-height: 90px;
  --tebex-footer-height: 37px;
  --layout-gap: 20px;
  --widget-padding: 20px;
  --content-padding: var(--widget-padding);
  --content-inner-width: 1280px;
  --content-width: calc((var(--content-padding) * 2) + var(--content-inner-width));
  --sidebar-width: 260px;
  --products-gap: 24px 20px;
  --btn-size: 42px;
  --btn-size-small: 36px;
  --btn-size-xsmall: 32px;
  --btn-icon-size: 16px;
  --btn-color-text: var(--color-text);
  --btn-color-text-hover: var(--btn-color-text);
  --btn-color-bg: var(--color-bg);
  --btn-color-bg-hover: var(--btn-color-bg);
  --bg-blur: blur(16px);
  --page-transition-duration: .35s;
  --nav-height: 60px;

  /* HUD clip-path */
  --hud-clip:    polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  --hud-clip-sm: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));

  --tebex-legal-footer-max-width: min(var(--content-inner-width), calc(100vw - (var(--content-padding) * 2)));
  --tebex-legal-footer-background-color: var(--color-brighter-bg);
  --tebex-legal-footer-border-color: var(--color-brighter-bg);
  --tebex-legal-footer-text-color: var(--color-text-secondary);
}

@media (width > 600px)  { :root { --widget-padding: 24px; --layout-gap: 32px; } }
@media (width > 960px)  { :root { --layout-gap: 40px; --content-padding: calc(var(--widget-padding) * 1.5); } }
@media (max-width: 900px){ :root { --tebex-footer-height: 70px; } }
@media (max-width: 600px){ :root { --tebex-footer-height: 80px; } }

/* ══════════════════════════════════════════════════════════
   RESET
   ══════════════════════════════════════════════════════════ */
*,*::before,*::after {
  box-sizing: border-box; margin: 0; padding: 0; border: none; outline: none;
  vertical-align: baseline; color: inherit; background: transparent;
  font-size: inherit; font-family: inherit; font-weight: inherit; letter-spacing: inherit;
}
strong, b { font-weight: 700; }
em, i { font-style: italic; }
input[type=submit], button { appearance: none; cursor: pointer; text-align: left; }
textarea { resize: none; }
symbol, use, svg { overflow: visible; }
svg, img { display: block; }
li { display: block; }
button { display: block; }
a { color: inherit; text-decoration: none; }
:root *[hidden] { display: none; }
:focus { outline: 0; }
::placeholder { color: inherit; opacity: 1; }

/* ══════════════════════════════════════════════════════════
   PAGE TRANSITIONS
   ══════════════════════════════════════════════════════════ */
@view-transition { navigation: auto; }
::view-transition-group(root) { animation-duration: var(--page-transition-duration); animation-timing-function: ease; }
@keyframes pageMoveOut { 0% { opacity: 1; } 50%, 100% { opacity: 0; } }
@keyframes pageMoveIn  { 0%, 50% { scale: 0.98; opacity: 0; } 100% { scale: 1; opacity: 1; } }
::view-transition-old(siteContent) { animation: var(--page-transition-duration) ease both pageMoveOut; transform-origin: center top; }
::view-transition-new(siteContent) { animation: var(--page-transition-duration) ease both pageMoveIn; transform-origin: center top; }
::view-transition-group(siteContent) { z-index: 2; }
::view-transition-group(siteHeaderTop),::view-transition-group(siteHeader),
::view-transition-group(siteNavigation),::view-transition-group(siteBgImage),
::view-transition-group(siteFooter) { animation-duration: var(--page-transition-duration); animation-timing-function: ease; z-index: 3; }
::view-transition-group(siteBgImage) { z-index: 1; }

/* ══════════════════════════════════════════════════════════
   HTML / BODY
   ══════════════════════════════════════════════════════════ */
html, body { min-height: 100vh; min-height: 100svh; }
html {
  overflow: hidden scroll;
  scrollbar-width: thin;
  scrollbar-color: #ff2d78 #05050a;   /* rosa sobre negro */
  scrollbar-gutter: stable;
  scroll-behavior: smooth;
  color-scheme: light dark;
}
html.no-scroll { overflow: hidden; }
html.color-scheme-dark { color-scheme: only dark; }

body {
  position: relative; max-width: 100%; width: 100%; line-height: normal;
  color: var(--color-text); accent-color: var(--color-primary);
  background-color: var(--color-bg);
  background-image:
    /* cyan arriba-izquierda */
    radial-gradient(ellipse 65% 45% at 10% 0%,  hsl(170 100% 12% / 35%) 0%, transparent 60%),
    /* rosa arriba-derecha */
    radial-gradient(ellipse 55% 40% at 90% 0%,  hsl(330 100% 12% / 30%) 0%, transparent 55%),
    /* dorado centro-abajo */
    radial-gradient(ellipse 40% 30% at 50% 100%, hsl(43 100% 10% / 25%) 0%, transparent 60%),
    /* ruido sutil */
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.022'/%3E%3C/svg%3E");
  font-family: 'Lexend', sans-serif; font-size: 16px; font-optical-sizing: auto;
}

/* Scanlines — color rosa muy sutil */
body::before {
  content: '';
  position: fixed; inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent, transparent 2px,
    hsl(330 100% 50% / 0.01) 2px,
    hsl(330 100% 50% / 0.01) 4px
  );
  pointer-events: none !important;
  z-index: 9999;
}

::selection { color: #05050a; background-color: #00f5d4; text-shadow: none; }
select option { color: var(--color-text); background-color: var(--color-bg); }

/* ══════════════════════════════════════════════════════════
   HEADINGS
   ══════════════════════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Odibee Sans', 'Masque', sans-serif;
  font-weight: 400;
  letter-spacing: 0.08em;
}

/* ══════════════════════════════════════════════════════════
   KEYFRAMES
   ══════════════════════════════════════════════════════════ */

/* Degradado de texto animado — cyan→rosa→dorado */
@keyframes gradientFlow {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* Parpadeo esquinas HUD */
@keyframes cornerBlink {
  0%, 90%, 100% { opacity: 1; }
  95%           { opacity: 0.35; }
}

/* Entrada desde abajo */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); filter: blur(4px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0); }
}

/* Reveal de card */
@keyframes cardReveal {
  0%   { opacity: 0; transform: translateY(20px) scale(0.95); }
  65%  { opacity: 1; transform: translateY(-2px) scale(1.005); }
  100% { opacity: 1; transform: translateY(0)    scale(1); }
}

/* Línea que se traza */
@keyframes lineTrace {
  0%   { clip-path: inset(0 50% 0 50%); opacity: 0; }
  100% { clip-path: inset(0 0%  0 0%);  opacity: 0.4; }
}

/* Shimmer header */
@keyframes headerShimmer {
  0%   { background-position: -300% center; }
  100% { background-position:  300% center; }
}

/* Badge respiración */
@keyframes badgeBreath {
  0%, 100% { border-color: hsl(170 100% 50% / 30%); box-shadow: 0 0 0 0 transparent; }
  50%       { border-color: hsl(170 100% 50% / 70%); box-shadow: 0 0 14px 2px hsl(170 100% 50% / 20%); }
}

/* Neón flicker */
@keyframes neonFlicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    text-shadow: 0 0 6px hsl(170 100% 50% / 60%), 0 0 20px hsl(170 100% 50% / 30%);
  }
  20%, 24%, 55% { text-shadow: none; opacity: 0.8; }
}

/* Glow pulso */
@keyframes hudPulse {
  0%, 100% { box-shadow: 0 0 10px hsl(170 100% 50% / 20%); }
  50%       { box-shadow: 0 0 22px hsl(170 100% 50% / 45%), 0 0 50px hsl(330 100% 50% / 15%); }
}

/* Logo scan */
@keyframes logoScan {
  0%, 80%, 100% { filter: drop-shadow(0 0 5px hsl(170 100% 50% / 25%)); }
  85%            { filter: drop-shadow(0 0 18px hsl(170 100% 50% / 75%)) brightness(1.15); }
}

/* Barra acento */
@keyframes accentBarGrow {
  from { transform: scaleY(0); opacity: 0; }
  to   { transform: scaleY(1); opacity: 1; }
}

/* Item HUD entrada */
@keyframes hudItemIn {
  from { opacity: 0; transform: translateX(-8px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Ripple botón */
@keyframes btnRipple {
  from { transform: scale(0); opacity: 0.5; }
  to   { transform: scale(2.8); opacity: 0; }
}

/* Sección reveal */
@keyframes sectionReveal {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Widget title flicker */
@keyframes widgetTitleFlicker {
  0%, 89%, 91%, 100% { opacity: 1; }
  90% { opacity: 0.6; }
}

/* Sidebar slide */
@keyframes sidebarSlide {
  from { opacity: 0; transform: translateX(18px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ══════════════════════════════════════════════════════════
   HUD PANEL BASE — cyan + rosa en esquinas
   ══════════════════════════════════════════════════════════ */
.hud-panel {
  background: hsl(270 20% 4% / 55%);
  border: 1px solid hsl(170 100% 50% / 18%);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  clip-path: var(--hud-clip);
  position: relative;
}
/* Esquina superior izquierda — CYAN */
.hud-panel::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 12px; height: 12px;
  border-top: 2px solid var(--color-accent);
  border-left: 2px solid var(--color-accent);
  pointer-events: none;
  animation: cornerBlink 4s ease-in-out infinite;
}
/* Esquina inferior derecha — ROSA */
.hud-panel::after {
  content: '';
  position: absolute; bottom: 0; right: 0;
  width: 12px; height: 12px;
  border-bottom: 2px solid var(--color-accent2);
  border-right: 2px solid var(--color-accent2);
  pointer-events: none;
  animation: cornerBlink 4s ease-in-out infinite 2s;
}

/* ══════════════════════════════════════════════════════════
   BOTONES BASE
   ══════════════════════════════════════════════════════════ */
.btn-primary, .btn-secondary, .btn-tertiary {
  display: block; width: fit-content; height: var(--btn-size); padding: 0 18px;
  line-height: var(--btn-size); color: var(--btn-color-text); background-color: var(--btn-color-bg);
  clip-path: var(--hud-clip-sm);
  font-size: 12px; font-weight: 700;
  font-family: 'Odibee Sans', sans-serif; letter-spacing: 0.1em;
  text-align: center; cursor: pointer; transition: all 0.2s ease-in-out;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  text-transform: uppercase; position: relative;
}
.btn-primary:disabled, .btn-secondary:disabled, .btn-tertiary:disabled { opacity: 0.4; cursor: not-allowed; }

/* PRIMARY — CYAN */
.btn-primary {
  --btn-color-text: #05050a;
  --btn-color-bg: #00f5d4;
  background: linear-gradient(135deg, #00f5d4 0%, #00b89c 100%);
  box-shadow: 0 0 20px hsl(170 100% 50% / 40%), inset 0 1px 0 hsl(170 100% 80% / 30%);
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(135deg, #60ffea 0%, #00f5d4 100%);
  box-shadow: 0 0 32px hsl(170 100% 50% / 65%), inset 0 1px 0 hsl(170 100% 80% / 40%);
  transform: translateY(-1px);
  color: #05050a !important;
}

/* SECONDARY — ROSA */
.btn-secondary {
  --btn-color-text: #ffffff;
  --btn-color-bg: #ff2d78;
  background: linear-gradient(135deg, #ff2d78 0%, #c0154e 100%);
  box-shadow: 0 0 18px hsl(330 100% 57% / 35%), inset 0 1px 0 hsl(330 80% 80% / 20%);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: linear-gradient(135deg, #ff6ea0 0%, #ff2d78 100%);
  box-shadow: 0 0 30px hsl(330 100% 60% / 58%);
  transform: translateY(-1px);
}

/* TERTIARY */
.btn-tertiary {
  --btn-color-text: var(--color-tertiary-text);
  --btn-color-bg: var(--color-tertiary);
  --btn-color-text-hover: var(--color-tertiary-text-hover);
  --btn-color-bg-hover: var(--color-tertiary-hover);
  clip-path: none; border-radius: 4px;
}
.btn-tertiary:hover, .btn-tertiary:focus { color: var(--btn-color-text-hover); background-color: var(--btn-color-bg-hover); }

/* Ripple */
.btn-primary::after, .btn-secondary::after {
  content: '';
  position: absolute; inset: 0; margin: auto;
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transform: scale(0); opacity: 0; pointer-events: none;
}
.btn-primary:active::after, .btn-secondary:active::after {
  animation: btnRipple 0.5s ease-out forwards;
}
.btn-primary:hover { animation: none !important; } /* sin override de glow en hover aquí */

.btn-primary.btn-small,.btn-secondary.btn-small,.btn-tertiary.btn-small  { --btn-size: var(--btn-size-small); padding: 0 10px; font-size: 10px; }
.btn-primary.btn-xsmall,.btn-secondary.btn-xsmall,.btn-tertiary.btn-xsmall { --btn-size: var(--btn-size-xsmall); padding: 0 10px; font-size: 9px; }

/* Icons */
.btn-icon,.btn-icon-text,.btn-glyph,.btn-glyph-text { --btn-icon: url("https://template-assets.tebex.io/images/check.svg"); }
.btn-icon { position: relative; flex: none; width: var(--btn-size); height: var(--btn-size); padding: 0; background-image: var(--btn-icon); background-position: center; background-size: var(--btn-icon-size); background-repeat: no-repeat; }
:root .btn-icon { line-height: 0; font-size: 0; color: transparent; }
.btn-icon-text { display: flex; align-items: center; min-width: var(--btn-size); }
.btn-icon-text::before { content: ""; display: block; margin-right: 8px; width: var(--btn-icon-size); height: var(--btn-icon-size); flex: none; background: var(--btn-icon) center/contain no-repeat; }
.btn-glyph::before,.btn-glyph-text::before { content: ""; display: block; width: var(--btn-icon-size); height: var(--btn-icon-size); flex: none; background-color: var(--btn-color-text); mask: var(--btn-icon) center/contain no-repeat; transition: background-color 0.15s ease-in-out; }
.btn-glyph:hover::before,.btn-glyph:focus::before,.btn-glyph-text:hover::before,.btn-glyph-text:focus::before { background-color: var(--btn-color-text-hover); }
.btn-glyph { position: relative; flex: none; width: var(--btn-size); height: var(--btn-size); }
:root .btn-glyph { padding: 0; line-height: 0; font-size: 0; color: transparent; }
.btn-glyph::before { position: absolute; inset: 0; margin: auto; }
.btn-glyph-text { display: flex; align-items: center; min-width: var(--btn-size); height: var(--btn-size); }
.btn-glyph-text::before { margin-right: 8px; }
.link-text { color: var(--color-accent); text-decoration: underline; text-decoration-thickness: 1px; text-underline-position: under; transition: color 0.15s ease-in-out; }
.link-text:hover { color: #ffd166; }

/* ══════════════════════════════════════════════════════════
   QUANTITY FIELD
   ══════════════════════════════════════════════════════════ */
.quantity-field {
  display: flex; align-items: stretch; justify-content: center; height: 36px;
  overflow: hidden; color: var(--color-text);
  background: hsl(270 20% 5% / 65%);
  border: 1px solid hsl(170 100% 50% / 18%);
  clip-path: var(--hud-clip-sm);
}
.quantity-field input[type=number] { position: relative; z-index:1; flex: none; -moz-appearance: textfield; appearance: textfield; width: 40px; height: 100%; font-size: 14px; text-align: center; font-variant-numeric: tabular-nums; }
.quantity-field input[type=number]::-webkit-inner-spin-button,.quantity-field input[type=number]::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.quantity-field .adjust { position: relative; z-index:2; flex: none; width: 30px; height: 100%; padding: 0; line-height: 0; font-size: 0; color: transparent; }
.quantity-field .adjust.decrease { margin-right: auto; order: -1; }
.quantity-field .adjust.increase { margin-left: auto; order: 100; }
.quantity-field .adjust::before { content: ""; display: block; width: 100%; height: 100%; background-color: var(--color-primary); mask: url("https://template-assets.tebex.io/images/plus.svg") no-repeat center; mask-size: 9px; }
.quantity-field .adjust.decrease::before { mask-image: url("https://template-assets.tebex.io/images/minus.svg"); }

@media (width > 960px)  { .mobile-only  { display: none; } }
@media (width <= 960px) { .desktop-only { display: none; } }

/* ══════════════════════════════════════════════════════════
   LAYOUT
   ══════════════════════════════════════════════════════════ */
.site {
  position: relative; display: flex; align-items: stretch;
  flex-direction: column; gap: 0;
  min-height: calc(100vh  - var(--tebex-footer-height));
  min-height: calc(100svh - var(--tebex-footer-height));
  font-size: 14px;
}
.site-bg-image { display: none; }
.site-header-top,.site-header,.site-navigation,.site-content,.site-footer { width: 100%; flex: none; }
.site-content { flex: 1 0 auto; view-transition-name: siteContent; padding-top: 32px; padding-bottom: 40px; }
.site-header-top,.site-header,.site-content,.site-footer-inner { margin: 0 auto; padding: 0 var(--content-padding); width: 100%; }
@media (width > 960px) { .site-header-top,.site-header,.site-content,.site-footer-inner { max-width: var(--content-width); } }

/* ══════════════════════════════════════════════════════════
   HEADER TOP
   ══════════════════════════════════════════════════════════ */
.site-header-top {
  display: flex; justify-content: flex-start; align-items: center; gap: 8px;
  width: 100%; height: var(--nav-height);
  position: sticky; top: 0; z-index: 200;
  background: hsl(270 20% 2% / 97%);
  border-bottom: 1px solid hsl(170 100% 50% / 15%);
  box-shadow: 0 1px 0 hsl(170 100% 50% / 8%), 0 4px 36px hsl(270 30% 2% / 85%);
  backdrop-filter: blur(20px);
  view-transition-name: siteHeaderTop;
  max-width: 100% !important;
  padding: 0 var(--content-padding);
}

/* Línea shimmer cyan→rosa→dorado */
.site-header-top::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%, transparent 20%,
    #00f5d4 40%, #ffffff 50%, #ff2d78 60%, #ffd166 70%,
    transparent 85%, transparent 100%
  ) !important;
  background-size: 300% 100% !important;
  animation: headerShimmer 5s ease-in-out 1s infinite !important;
  opacity: 0.6 !important;
}

/* Ocultar color-scheme */
.site-header-top .color-scheme,
.site-header-top button.color-scheme { display: none !important; visibility: hidden !important; }

/* Logo */
.site-header-top .site-title {
  position: static !important; display: flex !important; align-items: center;
  flex: none; order: 0; margin-right: auto !important;
  font-family: 'Odibee Sans', sans-serif; font-size: 20px; letter-spacing: 0.1em;
  color: var(--color-primary); white-space: nowrap; overflow: hidden;
  max-width: 600px; height: auto; inset: unset !important;
  visibility: visible !important; opacity: 1 !important; gap: 0;
}
.site-header-top .site-title img {
  max-height: 40px; max-width: 140px; width: auto; border-radius: 3px; flex: none;
  animation: logoScan 6s ease-in-out infinite;
}

/* Nombre de tienda — gradiente cyan→rosa→dorado animado */
.site-header-top .store-name-text {
  font-family: 'Odibee Sans', sans-serif; font-size: 22px; letter-spacing: 0.12em;
  white-space: nowrap; display: inline-block; margin-left: 12px;
  background: linear-gradient(90deg, #00f5d4 0%, #ff2d78 35%, #ffd166 65%, #00f5d4 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 5s linear infinite;
  text-shadow: none;
}

/* Orden header */
.site-header-top .toggle-navigation { order: 1; }
.site-header-top .site-link        { order: 2; }
.site-header-top .log-in,
.site-header-top .user-name        { order: 10; margin-left: 0; }
.site-header-top .open-basket      { order: 11; }
.site-header-top .log-in,.site-header-top .user-name,
.site-header-top .open-basket,.site-header-top .color-scheme,
.site-header-top .site-link        { flex: none; }

/* LOGIN — ROSA */
.site-header-top .log-in,
.site-header-top .user-name {
  height: var(--btn-size) !important; padding: 0 16px !important;
  font-family: 'Odibee Sans', sans-serif !important; font-size: 11px !important;
  letter-spacing: 0.1em !important; color: #ffffff !important;
  clip-path: var(--hud-clip-sm) !important;
  background: linear-gradient(135deg, #ff2d78 0%, #c0154e 100%) !important;
  box-shadow: 0 0 16px hsl(330 100% 57% / 30%) !important;
  transition: all 0.2s ease !important;
  display: flex !important; align-items: center !important; gap: 7px !important;
  white-space: nowrap !important; margin-left: 0 !important;
  border: none !important; text-transform: uppercase !important;
}
.site-header-top .log-in:hover,
.site-header-top .user-name:hover {
  background: linear-gradient(135deg, #ff6ea0 0%, #ff2d78 100%) !important;
  box-shadow: 0 0 28px hsl(330 100% 65% / 55%) !important;
  transform: translateY(-1px) !important;
}

/* BASKET — CYAN */
.site-header-top .open-basket {
  height: var(--btn-size) !important; padding: 0 16px !important;
  font-family: 'Odibee Sans', sans-serif !important; font-size: 11px !important;
  letter-spacing: 0.1em !important; color: #05050a !important;
  -webkit-text-fill-color: #05050a !important;
  clip-path: var(--hud-clip-sm) !important;
  background: linear-gradient(135deg, #00f5d4 0%, #00b89c 100%) !important;
  box-shadow: 0 0 20px hsl(170 100% 50% / 40%) !important;
  transition: all 0.2s ease !important;
  display: flex !important; align-items: center !important; gap: 7px !important;
  white-space: nowrap !important; border: none !important; text-transform: uppercase !important;
}
.site-header-top .open-basket:hover {
  background: linear-gradient(135deg, #60ffea 0%, #00f5d4 100%) !important;
  box-shadow: 0 0 36px hsl(170 100% 55% / 65%) !important;
  transform: translateY(-1px) !important;
}

/* Íconos header */
.site-header-top .log-in::before,.site-header-top .user-name::before { background-color: #ffffff !important; width: 14px !important; height: 14px !important; flex: none !important; }
.site-header-top .open-basket::before { background-color: #05050a !important; width: 14px !important; height: 14px !important; flex: none !important; }
.site-header-top .color-scheme,.site-header-top .site-link {
  width: var(--btn-size) !important; height: var(--btn-size) !important;
  border-radius: 4px !important;
  background: hsl(270 20% 5% / 80%) !important;
  border: 1px solid hsl(170 100% 50% / 14%) !important;
}
.site-header-top .color-scheme:hover,.site-header-top .site-link:hover {
  background: hsl(170 100% 8% / 35%) !important;
  border-color: var(--color-primary) !important;
}
.site-header-top .toggle-navigation { --btn-icon: url("https://template-assets.tebex.io/images/burger.svg"); }
.site-header-top .site-link    { --btn-icon: url("https://template-assets.tebex.io/images/globe.svg"); }
.site-header-top .color-scheme { --btn-icon: url("https://template-assets.tebex.io/images/sun.svg"); --btn-icon-size: 14px; }
.site-header-top .log-in       { --btn-icon: url("https://template-assets.tebex.io/images/user.svg"); }
.site-header-top .open-basket  { --btn-icon: url("https://template-assets.tebex.io/images/checkout.svg"); }
.site-header-top .user-name    { --btn-icon: url("https://template-assets.tebex.io/images/user.svg"); }
.site-header-top .user-name .text,.site-header-top .user-name .text-hover { transition: opacity 0.15s ease, font-size 0.15s ease, visibility 0.15s ease; }
.site-header-top .user-name:not(:hover):not(:focus-within) .text-hover { visibility: hidden; color: transparent; font-size: 0; }
.site-header-top .user-name:hover .text,.site-header-top .user-name:focus-within .text { visibility: hidden; opacity: 0; font-size: 0; }

@media (width <= 960px) {
  .site-header-top { gap: 4px; padding: 0 12px; height: 54px; }
  .site-header-top .log-in,.site-header-top .user-name,.site-header-top .open-basket { padding: 0 10px !important; font-size: 0 !important; gap: 0 !important; }
  .site-header-top .log-in::before,.site-header-top .user-name::before,.site-header-top .open-basket::before { width: 16px !important; height: 16px !important; }
  .site-header-top .site-title { font-size: 15px; max-width: 130px; }
}

/* ══════════════════════════════════════════════════════════
   SITE HEADER — oculto
   ══════════════════════════════════════════════════════════ */
.site-header { display: none !important; view-transition-name: siteHeader; }
body.is-header-visible .site-header { display: none !important; }

/* ══════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════ */
.site-navigation {
  view-transition-name: siteNavigation;
  position: sticky; top: var(--nav-height); z-index: 150;
  background: hsl(270 20% 2% / 96%);
  border-bottom: 1px solid hsl(170 100% 50% / 8%);
  backdrop-filter: blur(16px);
}
.site-navigation::after { display: none; }

@media (width <= 960px) {
  .site-navigation {
    position: fixed; inset: 0; top: 0; z-index: 100000;
    backdrop-filter: var(--bg-blur);
    transition: display 200ms allow-discrete, opacity 200ms ease;
  }
  @starting-style { .site-navigation { opacity: 0; } }
  body:not(.show-navigation) .site-navigation { display: none; opacity: 0; }
  .site-navigation .menu {
    display: flex; flex-direction: column;
    position: absolute; inset: 0 calc(var(--btn-size) * 2) 0 0;
    padding: 60px 16px 16px;
    line-height: 26px; font-size: 18px; font-weight: 500;
    background: hsl(270 20% 3% / 98%);
    border-right: 1px solid hsl(170 100% 50% / 14%);
    box-shadow: 4px 0 32px rgba(0,0,0,0.6);
    overflow: hidden auto;
    transition: opacity 200ms ease, translate 200ms ease;
  }
  @starting-style { .site-navigation .menu { translate: -100% 0; } }
  body:not(.show-navigation) .site-navigation .menu { translate: -100% 0; }
  .site-navigation .menu-link { display: block; flex: 1 1 auto; padding: 10px 0; transition: color 0.15s ease-in-out; }
  .site-navigation .menu-link:hover,.site-navigation .menu-link.active { color: var(--color-primary); }
  .site-navigation .has-children { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; }
  .site-navigation .has-children .toggle { --btn-icon: url("https://template-assets.tebex.io/images/chevron.svg"); flex: none; }
  .site-navigation .has-children .toggle::before { transition: rotate 0.15s ease-in-out; }
  .site-navigation .has-children.expanded > .toggle::before { rotate: 180deg; }
  .site-navigation .has-children:not(.expanded) .menu-sub { display: none; }
  .site-navigation .menu-sub { width: 100%; padding-left: 16px; line-height: 20px; font-size: 14px; }
  .site-navigation .popup-close { --btn-icon: url("https://template-assets.tebex.io/images/close.svg"); top: 12px; right: calc(var(--btn-size) * 2 + 12px); }
  .site-navigation .site-link,.site-navigation .log-out { margin-top: auto; margin-left: -8px; }
  .site-navigation .site-link a,.site-navigation .log-out a { --btn-icon: url("https://template-assets.tebex.io/images/globe.svg"); width: 100%; }
  .site-navigation .log-out a { --btn-icon: url("https://template-assets.tebex.io/images/log-out.svg"); }
}

@media (width > 960px) {
  .site-navigation .menu {
    display: flex; align-items: center; gap: 2px;
    margin: 0 auto; padding: 0 var(--content-padding);
    width: 100%; max-width: var(--content-width);
    height: 44px; font-size: 12px; font-weight: 600;
  }
  .site-navigation li.site-title-link { display: none !important; }
  .site-navigation .menu > .menu-item { flex: 0 0 auto; max-width: none; }
  .site-navigation .menu > .menu-item > .menu-link { display: block; white-space: nowrap; }

  .site-navigation .menu-link {
    display: flex !important; align-items: center !important; justify-content: center !important;
    height: 30px !important; padding: 0 16px !important;
    font-family: 'Odibee Sans', sans-serif !important;
    font-size: 12px !important; letter-spacing: 0.1em !important; text-transform: uppercase !important;
    white-space: nowrap !important; color: var(--color-text-secondary) !important;
    border-radius: 2px !important; transition: all 0.15s ease !important; clip-path: none !important;
  }
  .site-navigation .menu-link:hover {
    color: var(--color-primary) !important;
    background: hsl(170 100% 50% / 8%) !important;
    text-shadow: 0 0 8px hsl(170 100% 50% / 50%) !important;
  }
  .site-navigation .menu-link.link-active {
    color: var(--color-gold) !important;      /* activo = DORADO */
    background: hsl(43 100% 50% / 8%) !important;
    text-shadow: 0 0 10px hsl(43 100% 55% / 55%) !important;
    position: relative;
  }
  /* Subrayado dorado en activo */
  .site-navigation .menu-link.link-active::after {
    content: '';
    position: absolute; bottom: 2px; left: 8px; right: 8px; height: 1px;
    background: var(--color-gold);
    box-shadow: 0 0 6px hsl(43 100% 55% / 60%);
  }

  .site-navigation .has-children { position: relative; display: flex; justify-content: center; align-items: center; }
  .site-navigation .has-children .toggle { --btn-size: 28px; --btn-icon: url("https://template-assets.tebex.io/images/chevron.svg"); --btn-color-bg-hover: transparent; flex: none; transition: rotate 0.15s ease-in-out; }
  .site-navigation .has-children:hover > .toggle { rotate: 180deg; }
  .site-navigation .menu-sub {
    position: absolute; top: calc(100% + 4px); left: -80px; right: -80px; margin-inline: auto;
    width: max-content; padding: 6px 0;
    background: hsl(270 20% 3% / 97%);
    border: 1px solid hsl(170 100% 50% / 16%);
    clip-path: var(--hud-clip);
    backdrop-filter: var(--bg-blur);
    box-shadow: 0 8px 30px hsl(270 30% 2% / 70%);
    transition: all 0.15s ease-in-out;
  }
  .site-navigation .has-children:not(:hover) > .menu-sub { visibility: hidden; opacity: 0; translate: 0 -8px; }
  .site-navigation .menu .menu-sub { line-height: 22px; font-size: 12px; }
  .site-navigation .menu-sub .menu-link { width: 100%; max-width: 22ch; padding: 4px 12px; justify-content: flex-start !important; }
  /* Hover en sub — degradado cyan→rosa */
  .site-navigation .menu-sub .menu-link:hover,.site-navigation .menu-sub .menu-link.link-active {
    color: #05050a !important;
    background: linear-gradient(90deg, #00f5d4, #ff2d78) !important;
    text-shadow: none !important;
  }
}

/* ══════════════════════════════════════════════════════════
   TEXTO BASE
   ══════════════════════════════════════════════════════════ */
.text-content { line-height: 1.5; word-wrap: break-word; word-break: break-word; }
.text-content h1,.text-content h2,.text-content h3,.text-content h4,.text-content h5,.text-content h6 { font-family: 'Odibee Sans', sans-serif; letter-spacing: 0.08em; }
.text-content h1:not(:last-child),.text-content h2:not(:last-child),.text-content h3:not(:last-child),
.text-content h4:not(:last-child),.text-content h5:not(:last-child),.text-content h6:not(:last-child) { margin-bottom: 20px; }
.text-content p:not(:last-child) { margin-bottom: 12px; }
.text-content h1 { font-size: 34px; }
@media (width > 600px) { .text-content h1 { font-size: 38px; } }
.text-content h2 { font-size: 28px; }
@media (width > 600px) { .text-content h2 { font-size: 32px; } }
.text-content h3 { font-size: 20px; }
.text-content h4 { font-size: 18px; }
.text-content img { display: inline-block; max-width: 100%; height: auto; }
.text-content ol,.text-content ul { margin-left: 1em; }
.text-content ol:not(:last-child),.text-content ul:not(:last-child) { margin-bottom: 12px; }
.text-content li { display: list-item; }

/* ══════════════════════════════════════════════════════════
   HOME CATEGORIES — cyan/rosa/dorado en esquinas alternadas
   ══════════════════════════════════════════════════════════ */
.site-home-categories {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px; margin-bottom: var(--layout-gap);
}
.site-home-categories .category {
  display: grid; grid-template-rows: 1fr; align-items: center; gap: 10px;
  overflow: hidden; padding: 16px; line-height: 24px;
  background: hsl(270 20% 4% / 55%);
  border: 1px solid hsl(170 100% 50% / 12%);
  backdrop-filter: blur(20px) saturate(150%);
  clip-path: var(--hud-clip);
  font-family: 'Odibee Sans', sans-serif; font-size: 13px; letter-spacing: 0.08em;
  text-transform: uppercase; position: relative;
  transition: all 0.25s ease;
  animation: categorySpring 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
/* Esquina — alterna cyan/rosa/dorado */
.site-home-categories .category::before {
  content: ''; position: absolute; top: 0; left: 0; width: 10px; height: 10px;
  border-top: 2px solid var(--color-primary); border-left: 2px solid var(--color-primary);
}
.site-home-categories .category:nth-child(3n+2)::before { border-top-color: var(--color-accent2); border-left-color: var(--color-accent2); }
.site-home-categories .category:nth-child(3n+3)::before { border-top-color: var(--color-gold); border-left-color: var(--color-gold); }

.site-home-categories .category:hover {
  color: var(--color-primary);
  border-color: hsl(170 100% 50% / 40%);
  background: hsl(170 100% 4% / 65%);
  box-shadow: 0 0 28px hsl(170 100% 50% / 14%), inset 0 0 20px hsl(170 100% 50% / 5%);
  transform: translateY(-3px);
}
/* Delays categorías */
.site-home-categories .category:nth-child(1) { animation-delay: 0.08s !important; }
.site-home-categories .category:nth-child(2) { animation-delay: 0.16s !important; }
.site-home-categories .category:nth-child(3) { animation-delay: 0.24s !important; }
.site-home-categories .category:nth-child(4) { animation-delay: 0.32s !important; }
.site-home-categories .category:nth-child(5) { animation-delay: 0.40s !important; }
.site-home-categories .category:nth-child(6) { animation-delay: 0.48s !important; }
.site-home-categories .category:nth-child(7) { animation-delay: 0.56s !important; }
.site-home-categories .category:nth-child(8) { animation-delay: 0.64s !important; }
.site-home-categories .category .image { max-width: 100%; width: auto; max-height: 100%; object-fit: contain; border-radius: 4px; }
.site-home-categories .category .image-default { position: relative; width: min(80px, 100%); aspect-ratio: 1; }
.site-home-categories .category .image-default::before { content: ""; display: block; position: absolute; inset: 0; background-color: rgb(from var(--color-text) r g b/0.7); mask: url("https://template-assets.tebex.io/images/package-default.svg") center/contain no-repeat; }

/* ══════════════════════════════════════════════════════════
   STORE FORM
   ══════════════════════════════════════════════════════════ */
.store-text { margin-inline: auto; width: min(100%, 62ch); line-height: 1.5; font-size: 15px; }
.store-home .store-text { margin-bottom: var(--content-padding); }
.store-form { font-size: 16px; }
.store-form p { margin-bottom: 20px; }
.store-form .input-group,.store-form .field,.store-form .field-inline { margin-bottom: 20px; }
.store-form .input-group > p,.store-form .field > p,.store-form .field-inline > p { margin-bottom: 10px; }
.store-form .field-inline { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0 12px; }
.store-form input,.store-form select,.store-form textarea { display: block; }
.store-form input[type=text],.store-form input[type=password],.store-form input[type=email],
.store-form input[type=number],.store-form input[type=search],.store-form select,.store-form textarea {
  margin-bottom: 10px; width: 100%; padding: 12px 10px;
  color: var(--color-text-darker);
  background: hsl(270 20% 4% / 80%);
  border: 1px solid hsl(170 100% 50% / 14%);
  font-size: 13px; border-radius: 0; clip-path: var(--hud-clip-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.store-form input:focus,.store-form select:focus,.store-form textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px hsl(170 100% 50% / 10%), 0 0 16px hsl(170 100% 50% / 8%);
}
.store-form .actions { display: flex; justify-content: center; gap: 10px; }
.store-form .actions .link-text { align-self: center; font-size: 15px; font-weight: 700; margin: 0 12px; }

/* ══════════════════════════════════════════════════════════
   SIDEBAR LAYOUT
   ══════════════════════════════════════════════════════════ */
@media (width <= 960px) { .site-content-widgets { display: flex; flex-direction: column; gap: 20px; } }
@media (width > 960px) {
  body:not(.is-sidebar-bottom) .site-content-widgets { display: grid; align-items: start; gap: 28px; }
  body.is-sidebar-left  .site-content-widgets { grid-template-columns: var(--sidebar-width) 1fr; }
  body.is-sidebar-left  .site-content-widgets .store-sidebar { order: -1; }
  body.is-sidebar-right .site-content-widgets { grid-template-columns: 1fr var(--sidebar-width); }
}

/* ══════════════════════════════════════════════════════════
   PRODUCTOS — CARDS
   ══════════════════════════════════════════════════════════ */
.category-header { margin-bottom: var(--widget-padding); line-height: 1.4; font-size: 16px; }
.no-products { font-size: 16px; text-align: center; }
.store-products-list   { display: flex; flex-direction: column; gap: var(--widget-padding); }
.store-products-images { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: var(--products-gap); }

.store-product { display: flex; flex-direction: column; gap: 10px; }
.store-product .product-title { font-family: 'Odibee Sans', sans-serif; font-size: 14px; letter-spacing: 0.07em; text-transform: uppercase; }
.store-product .product-title a { color: inherit; transition: color 0.15s ease-in-out; }
.store-product .product-title a:hover { color: var(--color-primary); text-shadow: 0 0 8px hsl(170 100% 50% / 40%); }
.store-product .product-title .countdown { display: block; margin-top: 6px; color: var(--color-removed); font-size: 0.7em; font-variant-numeric: tabular-nums; }
.store-product .product-title .countdown::before { content: ""; display: inline-block; vertical-align: -0.15em; margin-right: 0.2em; width: 1em; height: 1em; background-color: currentColor; mask: url("https://template-assets.tebex.io/images/countdown.svg") center/contain no-repeat; }
.store-product .image-link { display: block; margin: 0 auto; max-width: 100%; width: fit-content; }
.store-product .image { margin: 0 auto; max-width: 100%; border-radius: 4px; }
.store-product .image-default { position: relative; width: min(120px, 100%); aspect-ratio: 1; }
.store-product .image-default::before { content: ""; display: block; position: absolute; inset: 0; margin: auto; background-color: rgb(from var(--color-text) r g b/0.7); mask: url("https://template-assets.tebex.io/images/package-default.svg") center/contain no-repeat; }
.store-product .descr { font-size: 13px; color: var(--color-text-secondary); }
.store-product .actions { display: flex; gap: 8px; position: relative; overflow: hidden; flex-direction: column; }
.store-product .actions.updating { pointer-events: none; }
.store-product .actions.updating > * { opacity: 0.3; filter: grayscale(100%); }
.store-product .actions.updating::before { content: ""; display: block; position: absolute; inset: 0; z-index: 10; margin: auto; width: 28px; height: 28px; background: url("https://template-assets.tebex.io/images/loading.svg") center/contain no-repeat; }
.store-product:not(.store-product-full) .actions { flex-wrap: wrap; align-content: flex-end; flex: 1 1 auto; }
.store-product .price { font-size: 13px; font-weight: 500; }
.store-product .price .discount { margin-right: 1ch; color: var(--color-accent2); font-weight: 400; text-decoration-line: line-through; font-size: 12px; }

/* PRECIO — DORADO con neón flicker */
.store-product .price strong {
  font-size: 18px; font-weight: 700;
  color: var(--color-gold) !important;
  text-shadow: 0 0 8px hsl(43 100% 55% / 45%);
  font-family: 'Odibee Sans', sans-serif;
  animation: neonFlicker 6s ease-in-out 2s infinite !important;
}

.store-product:not(.store-product-full) .price { width: 100%; }
.store-product .quantity-field { height: var(--btn-size); background: var(--color-brighter-bg); }
.store-product .quantity-field input[type=number] { border: none; }
.store-product .half { flex: 1 1 33%; overflow: visible; }
.store-product .wide { flex: 1 1 auto; width: 100%; }
.store-product .gift  { --btn-icon: url("https://template-assets.tebex.io/images/gift.svg"); flex: none; }
.store-product .remove { --btn-icon: url("https://template-assets.tebex.io/images/delete.svg"); flex: none; }

/* Cards en grid */
.store-products-images .store-product {
  display: flex; flex-direction: column;
  background: hsl(270 20% 4% / 55%);
  border: 1px solid hsl(170 100% 50% / 9%);
  backdrop-filter: blur(20px) saturate(150%);
  clip-path: var(--hud-clip); padding: 14px; position: relative;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  animation: productCardReveal 0.55s cubic-bezier(0.34, 1.36, 0.64, 1) both;
}
/* Esquina top-left CYAN, bottom-right ROSA */
.store-products-images .store-product::before {
  content: ''; position: absolute; top: 0; left: 0; width: 12px; height: 12px;
  border-top: 1px solid hsl(170 100% 50% / 38%); border-left: 1px solid hsl(170 100% 50% / 38%);
  pointer-events: none; transition: border-color 0.2s ease;
}
.store-products-images .store-product:nth-child(even)::before {
  border-top-color: hsl(330 100% 57% / 38%); border-left-color: hsl(330 100% 57% / 38%);
}
.store-products-images .store-product:hover {
  border-color: hsl(170 100% 50% / 32%);
  background: hsl(170 100% 4% / 62%);
  box-shadow: 0 0 32px hsl(170 100% 50% / 12%), inset 0 0 20px hsl(170 100% 50% / 4%);
  transform: translateY(-3px);
}
.store-products-images .store-product:hover::before { border-color: var(--color-primary); }
.store-products-images .store-product .image-link  { align-content: center; width: 100%; overflow: hidden; }
.store-products-images .store-product .descr { overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; line-clamp: 3; }

/* Animación cards */
.store-products-images .store-product:nth-child(1) { animation-delay: 0.06s !important; }
.store-products-images .store-product:nth-child(2) { animation-delay: 0.12s !important; }
.store-products-images .store-product:nth-child(3) { animation-delay: 0.18s !important; }
.store-products-images .store-product:nth-child(4) { animation-delay: 0.24s !important; }
.store-products-images .store-product:nth-child(5) { animation-delay: 0.30s !important; }
.store-products-images .store-product:nth-child(6) { animation-delay: 0.36s !important; }
.store-products-images .store-product:nth-child(7) { animation-delay: 0.42s !important; }
.store-products-images .store-product:nth-child(8) { animation-delay: 0.48s !important; }

/* Botones dentro de producto */
.store-product .btn-secondary {
  font-size: 10px !important; height: 28px !important; line-height: 28px !important;
  padding: 0 10px !important; width: 100% !important; text-align: center !important;
  background: hsl(330 80% 8% / 70%) !important;
  border: 1px solid hsl(330 100% 57% / 22%) !important;
  box-shadow: none !important; color: hsl(330 80% 75%) !important;
  text-transform: uppercase !important; letter-spacing: 0.1em !important;
  font-family: 'Odibee Sans', sans-serif !important;
  clip-path: none !important; border-radius: 2px !important;
}
.store-product .btn-secondary:hover {
  background: hsl(330 80% 12% / 80%) !important;
  color: #ffffff !important;
  border-color: hsl(330 100% 65% / 48%) !important;
  transform: none !important;
}
.store-product .btn-primary { width: 100% !important; text-align: center !important; font-size: 11px !important; height: var(--btn-size) !important; line-height: var(--btn-size) !important; }

/* List layout */
.store-products-list .store-product .image-link { margin: 0; }
.store-products-list .store-product .image { width: 70px; }
@media (width > 600px) {
  .store-products-list .store-product { flex-direction: row; align-items: center; gap: 10px; }
  .store-products-list .store-product .product-title { margin-right: auto; }
  .store-products-list .store-product .actions { flex-wrap: nowrap; align-items: center; flex: 0 1 auto; gap: 8px; flex-direction: row; }
  .store-products-list .store-product .price { width: auto; }
  .store-products-list .store-product .btn-secondary,.store-products-list .store-product .btn-primary { width: auto !important; }
}

/* ══════════════════════════════════════════════════════════
   MEDIA SLIDER
   ══════════════════════════════════════════════════════════ */
.media-slider { --slider-spacing: 8px; --thumbs-size: 50px; --thumb-padding: 5px; position: relative; width: 100%; overflow: hidden; }
@media (width > 600px) { .media-slider { --thumbs-size: 65px; } }
@media (width > 960px) { .media-slider { --thumbs-size: 80px; } }
.media-slider .slider { width: 100%; min-height: 180px; overflow: hidden; margin-bottom: var(--thumb-padding); }
.media-slider .slider::part(container) { --swiper-navigation-size: 22px; --swiper-theme-color: var(--color-primary); }
.media-slider .slider::part(wrapper) { align-items: center; }
.media-slider .slide { align-content: center; }
.media-slider .slide-image { margin: auto; max-width: 100%; min-height: 180px; max-height: 100%; object-fit: contain; border-radius: 4px; }
.media-slider .slide-video { border-radius: 4px; background: #000 var(--preview-image) center/cover no-repeat; position: relative; }
.media-slider .slide-frame { display: block; margin: auto; width: 100%; max-height: 100%; aspect-ratio: 16/9; transition: visibility 0.3s ease-in-out, opacity 0.3s ease-in-out; }
.media-slider .slide-frame:not(.iframe-loaded) { visibility: hidden; opacity: 0; }
.media-slider .thumbs { display: flex; gap: var(--slider-spacing); align-items: stretch; flex-wrap: wrap; }
.media-slider .thumb {
  display: block; width: var(--thumbs-size); height: var(--thumbs-size); padding: var(--thumb-padding);
  background: hsl(270 20% 4% / 65%);
  border: 1px solid hsl(170 100% 50% / 10%);
  clip-path: var(--hud-clip-sm); cursor: pointer;
}
.media-slider .thumb-image,.media-slider .thumb-youtube { width: calc(var(--thumbs-size) - var(--thumb-padding)*2); height: calc(var(--thumbs-size) - var(--thumb-padding)*2); transition: opacity 0.3s ease-in-out; }
.media-slider .thumb:not(.active) .thumb-image,.media-slider .thumb:not(.active) .thumb-youtube { opacity: 0.35; }
.media-slider .thumb.active { border-color: var(--color-gold); box-shadow: 0 0 10px hsl(43 100% 55% / 35%); }  /* dorado en activo */
.media-slider .thumb-image { object-fit: contain; }
.media-slider .open-lightbox { position: absolute; top: var(--slider-spacing); right: var(--slider-spacing); z-index: 2; width: 36px; height: 36px; background-color: hsl(270 20% 3% / 80%); backdrop-filter: blur(8px); visibility: hidden; line-height: 0; font-size: 0; color: transparent; opacity: 0; border-radius: 4px; transition: all 0.15s ease-in-out; }
.media-slider .open-lightbox::before { content: ""; display: block; margin: auto; width: 16px; height: 16px; flex: none; background-color: var(--color-primary); mask: url("https://template-assets.tebex.io/images/fullscreen.svg") center/contain no-repeat; }
.media-slider .slider:has(.swiper-slide-active .slide-image):hover ~ .open-lightbox,.media-slider .open-lightbox:hover { opacity: 1; visibility: visible; }

/* ══════════════════════════════════════════════════════════
   PRODUCT FULL
   ══════════════════════════════════════════════════════════ */
.store-product-full .image { margin-inline: auto; max-width: 100%; order: -1; }
.store-product-full .product-title { font-family: 'Odibee Sans', sans-serif; font-size: 28px; letter-spacing: 0.08em; text-transform: uppercase; }
.store-product-full .price { width: 100%; font-size: 20px; }
.store-product-full .price strong { font-size: 28px; color: var(--color-gold) !important; font-family: 'Odibee Sans', sans-serif; text-shadow: 0 0 12px hsl(43 100% 55% / 50%); }
.store-product-full .actions { flex-wrap: wrap; flex-direction: row; }
.store-product-full .wide { max-width: 220px; }
@media (width > 600px) {
  .store-product-full { display: grid; grid-template: "image title" auto "image actions" auto "image descr" 1fr/1fr 1fr; gap: 20px var(--layout-gap); }
  .store-product-full .image,.store-product-full .media-slider { grid-area: image; margin-right: 0; }
  .store-product-full .product-title { grid-area: title; font-size: 32px; align-self: flex-end; }
  .store-product-full .descr  { grid-area: descr; font-size: 14px; }
  .store-product-full .actions { grid-area: actions; align-self: start; }
}
.back-to-top { --btn-icon: url("https://template-assets.tebex.io/images/chevron.svg"); margin: calc(var(--widget-padding) * 1.5) auto; }
.back-to-top::before { rotate: 90deg; }

/* ══════════════════════════════════════════════════════════
   PRODUCT OPTIONS
   ══════════════════════════════════════════════════════════ */
.store-product-options .product-title { margin-bottom: 10px; font-size: 18px; font-family: 'Odibee Sans', sans-serif; letter-spacing: 0.08em; }
.store-product-options .actions { position: sticky !important; bottom: var(--widget-padding); justify-content: start; width: fit-content; max-width: 100%; }
.store-product-options .actions.updating { pointer-events: none; }
.store-product-options .actions.updating > * { opacity: 0.3; filter: grayscale(100%); }
.store-product-options .actions.updating::before { content: ""; display: block; position: absolute; inset: 0; z-index: 10; margin: auto; width: 28px; height: 28px; background: url("https://template-assets.tebex.io/images/loading.svg") center/contain no-repeat; }
.store-product-options .actions .btn-primary,.store-product-options .actions .btn-secondary,.store-product-options .actions .btn-tertiary { width: 200px; }
.store-product-options .actions-multiple { width: auto; }
.store-product-options .actions-multiple .btn-primary,.store-product-options .actions-multiple .btn-secondary,.store-product-options .actions-multiple .btn-tertiary { width: auto; flex: 1 1 auto; }

/* ══════════════════════════════════════════════════════════
   SIDEBAR / WIDGETS
   ══════════════════════════════════════════════════════════ */
.store-sidebar { display: grid; gap: 28px; }
body:not(.is-sidebar-bottom) .store-sidebar { padding-top: 12px; }
body.is-sidebar-bottom .store-sidebar { margin-top: calc(var(--layout-gap) * 1.2); }
@media (width > 600px) { body.is-sidebar-bottom .store-sidebar { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); } }

/* Sidebar slide */
.store-sidebar > * { animation: sidebarSlide 0.7s cubic-bezier(0.22, 1, 0.36, 1) both; }
.store-sidebar > *:nth-child(1) { animation-delay: 0.25s; }
.store-sidebar > *:nth-child(2) { animation-delay: 0.38s; }
.store-sidebar > *:nth-child(3) { animation-delay: 0.51s; }

/* Widget title — DORADO */
.widget-title {
  font-family: 'Odibee Sans', sans-serif; margin-bottom: 14px; font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--color-gold) !important;
  text-shadow: 0 0 10px hsl(43 100% 55% / 45%);
  text-transform: uppercase;
  border-bottom: 1px solid hsl(43 100% 55% / 18%);
  padding-bottom: 8px;
  animation: widgetTitleFlicker 8s ease-in-out 3s infinite;
}

.widget-featured .store-product { padding: 0; text-align: center; }
.widget-gift-card { text-align: center; }
.widget-gift-card .gift-card-input {
  margin-bottom: 10px; width: 100%; padding: 12px 10px;
  color: var(--color-text-darker); background: hsl(270 20% 4% / 70%);
  border: 1px solid hsl(170 100% 50% / 14%); font-size: 13px; clip-path: var(--hud-clip-sm);
}
.widget-gift-card .check { width: 100%; }
.widget-recent .purchase { display: flex; align-items: flex-start; gap: 10px; position: relative; margin-bottom: 6px; line-height: 1.4; }
.widget-recent .avatar { flex: none; max-width: 36px; max-height: 36px; object-fit: contain; border-radius: 2px; }
.widget-recent .username { font-weight: 700; color: var(--color-primary); font-size: 13px; font-family: 'Odibee Sans', sans-serif; }
.widget-recent .empty { text-align: center; }
.widget-recent time { opacity: 0.5; font-size: 0.85em; }
.widget-recent .sep { margin: 0 0.3em; }
.widget-top-donator .avatar { margin-bottom: 10px; max-width: 80px; border-radius: 4px; }
.widget-top-donator .username { margin-bottom: 6px; font-weight: 700; font-size: 16px; color: var(--color-gold); font-family: 'Odibee Sans', sans-serif; }
.widget-top-donator .empty { text-align: center; }
.widget-community-goal .widget-content,.widget-goal .widget-content { text-align: center; }
.widget-community-goal p:not(:last-child),.widget-goal p:not(:last-child) { margin-bottom: 10px; }
.widget-community-goal .progress,.widget-goal .progress {
  height: 8px; margin-bottom: 10px; overflow: hidden;
  background: hsl(270 20% 5% / 60%); clip-path: var(--hud-clip-sm);
}
/* Barra de progreso — cyan→rosa→dorado */
.widget-community-goal .progress-bar,.widget-goal .progress-bar {
  height: 8px;
  background: linear-gradient(90deg, #00f5d4, #ff2d78, #ffd166);
  box-shadow: 0 0 12px hsl(170 100% 50% / 50%);
}
@keyframes progressBarAnimation { to { background-position: 100% 0; } }
.widget-community-goal .progress-bar.striped,.widget-goal .progress-bar.striped {
  background: linear-gradient(135deg, #00f5d4 0%, #00f5d4 33%, #00b89c 33%, #00b89c 66%, #00f5d4 66%) repeat;
  background-size: 20px 100%;
}
.widget-community-goal .progress-bar.striped.animated,.widget-goal .progress-bar.striped.animated { animation: progressBarAnimation 10s infinite linear; }
.widget-community-goal .goal-image { margin: 0 auto 10px; max-width: 80px; }
.widget-community-goal .descr { margin-bottom: 10px; }
.widget-server-status .widget-content { text-align: center; }
.widget-server-status h6 { margin-bottom: 10px; }

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.site-footer {
  background: hsl(270 20% 2% / 98%);
  border-top: 1px solid hsl(170 100% 50% / 8%);
  view-transition-name: siteFooter; position: relative;
}
/* Línea decorativa cyan→rosa→dorado */
.site-footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, #00f5d4 30%, #ff2d78 55%, #ffd166 75%, transparent);
  opacity: 0.45;
}
.site-footer-inner { position: relative; padding: 18px var(--content-padding); }
@media (width <= 960px) { .site-footer-inner { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; } }
.site-footer-inner .site-footer-nav { line-height: 140%; font-size: 13px; }
@media (width > 960px) { .site-footer-inner .site-footer-nav { margin-bottom: 10px; } }
.site-footer-inner .site-footer-nav ul { display: flex; }
@media (width <= 960px) { .site-footer-inner .site-footer-nav ul { flex-direction: column; gap: 12px; text-align: center; } }
@media (width > 960px)  { .site-footer-inner .site-footer-nav ul { gap: calc(var(--widget-padding) * 1.5); } }
.site-footer-inner .site-footer-nav a { color: var(--color-text-secondary); text-decoration-line: underline; text-underline-offset: 2px; transition: color 0.15s ease-in-out; }
.site-footer-inner .site-footer-nav a:hover { color: var(--color-primary); text-shadow: 0 0 8px hsl(170 100% 50% / 40%); }
.site-footer-inner .copyright { line-height: 16px; color: var(--color-text-secondary); font-size: 11px; }
.site-footer-inner .we-accept { display: flex; align-items: center; gap: 10px; }
@media (width > 960px) { .site-footer-inner .we-accept { position: absolute; top: 0; right: var(--content-padding); bottom: 0; pointer-events: none; } }
.site-footer-inner .we-accept li { display: block; }
.site-footer-inner .we-accept img { display: block; max-width: 50px; max-height: 24px; }
.site-footer-credit { color: var(--color-text-secondary); background: #030307; border-top: 1px solid hsl(170 100% 50% / 5%); font-size: 11px; }
.site-footer-credit .site-footer-credit-inner { display: flex; justify-content: space-between; align-items: flex-start; flex-direction: column; gap: 16px; margin: auto; padding: 14px var(--content-padding); }
@media (width > 960px) { .site-footer-credit .site-footer-credit-inner { align-items: center; flex-direction: row; } }
.site-footer-credit .copyright { display: flex; align-items: flex-start; gap: 16px; }
@media (width > 960px) { .site-footer-credit .copyright { align-items: center; } }
.site-footer-credit .legal { display: flex; gap: 14px; white-space: nowrap; }
.site-footer-credit .legal a { text-decoration: underline; text-underline-offset: 2px; transition: color 0.15s ease-in-out; }
.site-footer-credit .legal a:hover { color: var(--color-gold); }

/* ══════════════════════════════════════════════════════════
   POPUPS
   ══════════════════════════════════════════════════════════ */
.popup {
  --fade-duration: 250ms;
  position: fixed; top: 0; left: 0; bottom: 0; width: 100vw; z-index: 10000 !important;
  overflow: hidden scroll; scrollbar-width: thin; scrollbar-color: #ff2d78 transparent;
  background: hsl(270 30% 2% / 88%); backdrop-filter: blur(4px);
  transition: opacity var(--fade-duration) ease, display var(--fade-duration) allow-discrete;
}
@starting-style { .popup { opacity: 0; } }
.popup[hidden] { opacity: 0; display: none; }
.popup-scroll-cont { display: flex; align-items: center; justify-content: center; min-height: 100%; padding: calc(var(--content-padding) / 2); overflow: hidden; overscroll-behavior: none; pointer-events: auto !important; }
@media (width > 600px)  { .popup-scroll-cont { padding: var(--content-padding); } }
@media (pointer: coarse){ .popup .popup-scroll-cont { align-items: flex-end; padding-bottom: 0; } }
.popup-content {
  position: relative; width: 100%; max-width: 520px; padding: var(--widget-padding);
  background: hsl(270 20% 3% / 96%);
  border: 1px solid hsl(170 100% 50% / 16%);
  clip-path: var(--hud-clip); backdrop-filter: var(--bg-blur);
  box-shadow: 0 0 40px hsl(170 100% 50% / 10%), 0 16px 48px rgba(0,0,0,0.65);
  transition: translate var(--fade-duration) ease, opacity var(--fade-duration) ease;
}
@media (pointer: coarse){ .popup-content { padding-bottom: calc(var(--widget-padding) * 2); } }
@starting-style { .popup-content { translate: 0 16px; } }
.popup.touching .popup-content { transition: opacity var(--fade-duration) ease, scale var(--fade-duration) ease; }
.popup.drawer[hidden] .popup-content,.popup.may-close .popup-content { opacity: 0.8; scale: 0.95; }
.popup.may-close .popup-content { clip-path: none; border-radius: 8px; }
.popup.drawer-up[hidden]    .popup-content { translate: 0 -100%; }
.popup.drawer-down[hidden]  .popup-content { translate: 0 100%; }
.popup.drawer-right[hidden] .popup-content { translate: 100% 0; }
.popup.drawer-left[hidden]  .popup-content { translate: -100% 0; }
.popup:not(.drawer)[hidden] .popup-content { translate: 0 16px; }
.popup.popup-loading .popup-content { min-height: 160px; }
.popup.popup-loading .popup-content::before { content: ""; display: block; position: absolute; inset: 0; margin: auto; width: 34px; height: 34px; background: url("https://template-assets.tebex.io/images/loading.svg") center/contain no-repeat; }
/* Botón cerrar — CYAN */
.popup-close {
  position: absolute !important; top: 0; right: 0; z-index: 10001 !important;
  width: var(--btn-size); height: var(--btn-size);
  background-color: var(--color-primary);
  mask: url("https://template-assets.tebex.io/images/close.svg") center no-repeat; mask-size: 18px;
  border-radius: 0; line-height: 0; font-size: 0; color: transparent;
  transition: all 0.15s ease-in-out; opacity: 0.7;
  pointer-events: auto !important;
}
.popup-close:hover,.popup-close:focus { opacity: 1; }
.store-product-popup-content { max-width: 780px; }
.product-options-popup .popup-content { max-width: 460px; }
.login-popup { z-index: 10002 !important; }
.login-popup-content { max-width: 380px; }

/* ══════════════════════════════════════════════════════════
   BASKET — rosa/cyan
   ══════════════════════════════════════════════════════════ */
.basket { position: relative; z-index: 1001; }
.site-content .basket { display: none; }
.basket .basket-empty { margin: auto; text-align: center; font-size: 16px; }
.basket .basket-header {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 44px var(--content-padding) 24px;
  font-size: 18px; font-weight: 600;
  border-bottom: 1px solid hsl(170 100% 50% / 12%);
}
@media (width > 960px) { .basket .basket-header { padding-top: 60px; } }
/* Título carrito — gradiente rosa→cyan */
.basket .basket-title {
  display: flex; align-items: center; gap: 10px; text-transform: uppercase;
  font-family: 'Odibee Sans', sans-serif; letter-spacing: 0.1em;
  background: linear-gradient(90deg, #ff2d78, #00f5d4);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.basket .basket-title::before {
  content: ""; display: block; width: 24px; height: 24px;
  background-color: var(--color-primary);
  mask: url("https://template-assets.tebex.io/images/user.svg") center/contain no-repeat;
  -webkit-text-fill-color: initial;
}
.basket .basket-second-header {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 12px var(--content-padding);
  background: hsl(330 80% 4% / 40%);
  font-size: 16px; font-weight: 300; text-align: center;
  border-bottom: 1px solid hsl(330 100% 50% / 8%);
}
.basket .basket-second-header .total { font-size: 13px; }
.basket .basket-second-header .total strong { font-size: 16px; font-weight: inherit; color: var(--color-gold); }
.basket .basket-content { flex: 1; overflow-x: hidden; overflow-y: auto; }
.basket .basket-items { display: flex; flex-direction: column; gap: 12px; padding: var(--widget-padding); }
.basket .basket-item {
  display: flex; width: 100%; align-items: center; gap: 10px; padding: 14px;
  background: hsl(270 20% 4% / 60%);
  border: 1px solid hsl(170 100% 50% / 8%);
  clip-path: var(--hud-clip-sm); backdrop-filter: blur(12px);
  transition: border-color 0.2s ease;
}
.basket .basket-item:hover { border-color: hsl(330 100% 57% / 25%); }
.basket .basket-item .info { margin-right: auto; }
.basket .basket-item .options:has(li) { padding: 4px 0; }
.basket .basket-item .options li { display: block; padding: 1px 0; }
.basket .basket-item .options li::before { content: ""; display: inline-block; margin-right: 0.35em; width: 3px; height: 3px; vertical-align: middle; background-color: var(--color-primary); border-radius: 50%; }
.basket .basket-item .title { font-size: 15px; font-weight: 600; font-family: 'Odibee Sans', sans-serif; letter-spacing: 0.06em; text-transform: uppercase; }
.basket .basket-item .price { color: var(--color-gold); font-size: 13px; }
.basket .basket-item .price strong { font-size: 16px; font-weight: inherit; }
.basket .basket-item .quantity-field { flex: none; height: 38px; }
.basket .basket-item .remove { --btn-icon: url("https://template-assets.tebex.io/images/delete.svg"); --btn-size: 38px; }
.basket .basket-checkout { margin-top: auto; padding: 0 var(--content-padding) 44px; }
@media (width > 960px) { .basket .basket-checkout { padding-bottom: 80px; } }
.basket .basket-checkout h3 { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: var(--widget-padding); font-size: 13px; font-weight: 600; text-transform: uppercase; font-family: 'Odibee Sans', sans-serif; letter-spacing: 0.1em; }
.basket .basket-checkout .total { color: var(--color-gold); font-size: 14px; font-weight: 400; }
.basket .basket-checkout .total strong { font-size: 22px; font-weight: inherit; font-family: 'Odibee Sans', sans-serif; }
.basket .basket-checkout .checkout { width: 100%; }
.basket-popup { background-color: transparent; }
.basket-popup .popup-scroll-cont { justify-content: flex-end; padding: 0; }
.basket-popup-content {
  display: flex; flex-direction: column; align-items: stretch;
  width: 100%; max-width: 460px; height: 100vh; height: 100dvh; padding: 0;
  background: hsl(270 20% 2% / 97%);
  border-left: 1px solid hsl(330 100% 57% / 14%);
  box-shadow: -4px 0 40px hsl(330 100% 57% / 7%);
  clip-path: none !important;
}
.basket-popup-content,.popup.drawer .basket-popup-content { border-radius: 0; }
.popup.may-close .basket-popup-content { border-radius: 8px; }
@starting-style { .basket-popup-content { translate: 100% 0; } }
:root .popup[hidden] .basket-popup-content { translate: 100% 0; }
.basket-popup-content .popup-close { border-radius: 0; }
.basket-popup-content.updating { pointer-events: none; }
.basket-popup-content.updating::before { content: ""; display: block; position: absolute; inset: 0; z-index: 10; margin: auto; width: 34px; height: 34px; background: url("https://template-assets.tebex.io/images/loading.svg") center/contain no-repeat; }
.basket-popup-content.updating > * { filter: grayscale(100%); }

/* ══════════════════════════════════════════════════════════
   TOASTS
   ══════════════════════════════════════════════════════════ */
.toaster { display: flex; flex-direction: column-reverse; gap: 10px; position: fixed; bottom: var(--widget-padding); left: 0; right: 0; z-index: 10000; margin: 0 auto; padding: 0 var(--widget-padding); width: 100%; height: 100%; max-width: 480px; pointer-events: none; }
.toaster:empty { display: none; }
.toast {
  display: flex; align-items: center; gap: 10px;
  width: 100%; height: 46px; padding: 0 8px 0 20px; overflow: hidden;
  background: hsl(270 20% 4% / 92%);
  border: 1px solid hsl(170 100% 50% / 16%);
  clip-path: var(--hud-clip-sm); backdrop-filter: var(--bg-blur); font-size: 13px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.45), 0 0 16px hsl(170 100% 50% / 8%);
  pointer-events: auto;
  transition: height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
@starting-style { .toast { opacity: 0; height: 0; } }
.toast[hidden] { display: block; opacity: 0; height: 0; }
.toast.toast-warning { background: hsl(330 80% 8% / 90%); border-color: hsl(330 80% 55% / 40%); }
.toast.toast-error   { background: hsl(350 80% 8% / 90%); border-color: hsl(350 80% 50% / 40%); }
.toast.toast-success { background: linear-gradient(90deg, hsl(170 100% 6% / 92%), hsl(330 80% 8% / 90%)); border-color: hsl(170 100% 50% / 28%); }
.toast-close { margin-left: auto; flex: none; width: 28px; height: 28px; background: url("https://template-assets.tebex.io/images/close.svg") center/18px no-repeat; opacity: 0.4; line-height: 0; font-size: 0; color: transparent; transition: all 0.15s ease-in-out; }
.toast-close:hover { opacity: 1; background-color: hsl(170 100% 50% / 10%); }

/* ══════════════════════════════════════════════════════════
   TIERED PRODUCTS
   ══════════════════════════════════════════════════════════ */
.store-category-tiered-header { margin-bottom: var(--widget-padding); font-size: 16px; }
.store-category-tiered-header h1,.store-category-tiered-header h2,.store-category-tiered-header h3,
.store-category-tiered-header h4,.store-category-tiered-header h5,.store-category-tiered-header h6,
.store-category-tiered-header p { margin-bottom: 20px; }
.store-products-tiered { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: var(--products-gap); }
.store-product-tiered {
  --gap: var(--widget-padding);
  --border-color: hsl(170 100% 50% / 10%);
  display: grid; grid-row: span 4; grid-template-rows: subgrid; gap: var(--gap);
  background: hsl(270 20% 4% / 55%);
  border: 1px solid var(--border-color);
  clip-path: var(--hud-clip); backdrop-filter: blur(20px) saturate(150%);
  padding: 14px; position: relative; transition: all 0.2s ease;
}
.store-product-tiered::before {
  content: ''; position: absolute; top: 0; left: 0; width: 12px; height: 12px;
  border-top: 1px solid hsl(170 100% 50% / 32%); border-left: 1px solid hsl(170 100% 50% / 32%);
  pointer-events: none;
}
.store-product-tiered:hover {
  border-color: hsl(170 100% 50% / 32%);
  background: hsl(170 100% 4% / 62%);
  box-shadow: 0 0 30px hsl(170 100% 50% / 12%), inset 0 0 20px hsl(170 100% 50% / 4%);
  transform: translateY(-3px);
}
.store-product-tiered .image { margin: auto; max-width: 100%; object-fit: contain; }
.store-product-tiered .product-title { font-family: 'Odibee Sans', sans-serif; font-size: 16px; letter-spacing: 0.08em; text-align: center; text-transform: uppercase; }
.store-product-tiered .countdown { display: block; margin-top: 4px; color: var(--color-removed); font-size: 0.7em; font-variant-numeric: tabular-nums; }
.store-product-tiered .descr { padding-block: var(--gap); border-block: 1px solid var(--border-color); color: var(--color-text-secondary); font-size: 13px; }
.store-product-tiered .price { font-size: 13px; text-align: center; }
.store-product-tiered .price .discount { margin-right: 1ch; color: var(--color-accent2); font-weight: 400; text-decoration-line: line-through; }
.store-product-tiered .price strong { font-size: 20px; font-weight: 700; color: var(--color-gold) !important; text-shadow: 0 0 8px hsl(43 100% 55% / 45%); font-family: 'Odibee Sans', sans-serif; animation: neonFlicker 6s ease-in-out 2s infinite !important; }
.store-product-tiered .actions { gap: var(--gap); }
.store-product-tiered .actions .wide { width: 100%; }
.store-quote { padding: var(--widget-padding); }
.store-quote .wide { flex: 1 1 50%; }

/* ══════════════════════════════════════════════════════════
   ALERT / BADGE
   ══════════════════════════════════════════════════════════ */
.alert { padding: 10px 14px; clip-path: var(--hud-clip-sm); font-size: 13px; margin-bottom: 12px; }
.alert-danger  { background: hsl(330 80% 6% / 80%); border: 1px solid hsl(330 80% 40% / 35%); color: #ff8fa3; }
.alert-warning { background: hsl(43 80% 6% / 80%);  border: 1px solid hsl(43 80% 40% / 35%);  color: var(--color-gold); }
.badge { display: inline-flex; align-items: center; height: 20px; padding: 0 6px; clip-path: var(--hud-clip-sm); font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; font-family: 'Odibee Sans', sans-serif; }
.badge-success { background: hsl(170 100% 6% / 80%); color: #80ffe8; border: 1px solid hsl(170 100% 40% / 32%); }
.badge-danger  { background: hsl(330 70% 6% / 80%); color: #ff80a8; border: 1px solid hsl(330 70% 40% / 32%); }

/* ══════════════════════════════════════════════════════════
   SIDEBAR FORZADO DERECHA
   ══════════════════════════════════════════════════════════ */
@media (width > 960px) {
  .site-content-widgets { display: grid !important; align-items: start; gap: 28px; grid-template-columns: 1fr var(--sidebar-width) !important; }
  .site-content-widgets .store-sidebar { order: 2 !important; grid-column: 2 !important; }
  .site-content-widgets main,
  .site-content-widgets > *:not(.store-sidebar) { order: 1 !important; grid-column: 1 !important; }
}

/* ══════════════════════════════════════════════════════════
   HOME HERO
   ══════════════════════════════════════════════════════════ */
.home-hero { position: relative; padding: 44px 0 36px; margin-bottom: 44px; text-align: left; overflow: visible; }
.home-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, #00f5d4, #ff2d78 50%, #ffd166 80%, transparent);
  animation: lineTrace 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.8s both !important;
}

/* Badge — CYAN con respiración */
.home-hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 14px; margin-bottom: 18px;
  background: hsl(170 100% 4% / 60%);
  border: 1px solid hsl(170 100% 50% / 28%);
  clip-path: var(--hud-clip-sm);
  font-family: 'Odibee Sans', sans-serif; font-size: 10px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--color-primary);
  text-shadow: 0 0 8px hsl(170 100% 50% / 40%);
  backdrop-filter: blur(8px);
  animation:
    heroFadeUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both,
    badgeBreath 4s ease-in-out 1.5s infinite !important;
}

/* Título hero — blanco con span gradiente */
.home-hero-title {
  font-family: 'Odibee Sans', sans-serif;
  font-size: clamp(40px, 7vw, 80px); font-weight: 400; line-height: 1.0;
  letter-spacing: 0.1em; text-transform: uppercase; color: #ffffff;
  margin-bottom: 18px;
  animation: heroFadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both !important;
}
/* Span gradiente cyan→rosa→dorado */
.home-hero-title span {
  background: linear-gradient(90deg, #00f5d4 0%, #ff2d78 35%, #ffd166 65%, #00f5d4 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: gradientFlow 5s linear infinite;
}

.home-hero-small { padding: 28px 0 22px; margin-bottom: 28px; }
.home-hero-title-sm { font-size: clamp(28px, 5vw, 52px); }
.home-hero-sub {
  font-size: 14px; color: var(--color-text-secondary); max-width: 60ch; line-height: 1.6; font-weight: 300;
  animation: heroFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.55s both !important;
}

/* ══════════════════════════════════════════════════════════
   HOME SECTIONS
   ══════════════════════════════════════════════════════════ */
.home-section { margin-bottom: 52px; animation: sectionReveal 0.6s cubic-bezier(0.22, 1, 0.36, 1) both; }
.home-section:nth-child(1) { animation-delay: 0.10s; }
.home-section:nth-child(2) { animation-delay: 0.20s; }
.home-section:nth-child(3) { animation-delay: 0.30s; }
.home-section:nth-child(4) { animation-delay: 0.40s; }

/* Título sección — CYAN con raya gold al final */
.home-section-title {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Odibee Sans', sans-serif; font-size: 16px; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  text-shadow: 0 0 10px hsl(170 100% 50% / 35%);
  margin-bottom: 20px; padding-bottom: 10px;
  border-bottom: 1px solid hsl(170 100% 50% / 10%);
}
.home-section-title::after { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, hsl(43 100% 55% / 20%), transparent); }

/* ══════════════════════════════════════════════════════════
   HOME DESC — bocadillos glass
   ══════════════════════════════════════════════════════════ */
.home-desc { font-size: 14px; line-height: 1.7; color: var(--color-text-secondary); max-width: 100%; }

/* Headings — ROSA con barra cyan→gold */
.home-desc h1,.home-desc h2,.home-desc h3 {
  font-family: 'Odibee Sans', sans-serif; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-accent2) !important; /* ROSA */
  text-shadow: 0 0 12px hsl(330 100% 57% / 30%);
  margin-bottom: 14px; margin-top: 28px; display: flex; align-items: center; gap: 10px;
}
.home-desc h1::before,.home-desc h2::before,.home-desc h3::before {
  content: ''; display: inline-block; width: 3px; height: 1.2em;
  background: linear-gradient(180deg, #00f5d4, #ffd166);
  flex-shrink: 0;
}
.home-desc h1:first-child,.home-desc h2:first-child,.home-desc h3:first-child { margin-top: 0; }

/* Listas bocadillo */
.home-desc ul { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 12px; list-style: none; margin: 20px 0; padding: 0; }
.home-desc ul li {
  display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px;
  background: hsl(270 20% 4% / 55%);
  border: 1px solid hsl(170 100% 50% / 12%);
  clip-path: var(--hud-clip-sm); backdrop-filter: blur(16px) saturate(150%);
  font-size: 13px; font-weight: 400; color: var(--color-text); line-height: 1.5;
  transition: all 0.2s ease; position: relative; overflow: hidden;
}
.home-desc ul li::before {
  content: ''; position: absolute; top: 0; left: 0; width: 8px; height: 8px;
  border-top: 1px solid hsl(170 100% 50% / 50%); border-left: 1px solid hsl(170 100% 50% / 50%);
  pointer-events: none; flex-shrink: 0;
}
.home-desc ul li::after {
  content: ''; position: absolute; left: 0; top: 20%; bottom: 20%; width: 1px;
  background: linear-gradient(180deg, transparent, #00f5d4, transparent);
  opacity: 0; transition: opacity 0.2s ease;
}
.home-desc ul li:hover {
  border-color: hsl(170 100% 50% / 28%); background: hsl(170 100% 4% / 65%);
  box-shadow: 0 0 20px hsl(170 100% 50% / 8%); color: var(--color-text-darker); transform: translateY(-1px);
}
.home-desc ul li:hover::after { opacity: 1; }
.home-desc ul li strong { color: var(--color-gold) !important; font-weight: 600; }
.home-desc p { margin-bottom: 14px; color: var(--color-text-secondary); line-height: 1.7; }
.home-desc strong { color: var(--color-text-darker); }
.home-desc > p:first-of-type {
  padding: 16px 20px; background: hsl(270 20% 4% / 50%);
  border: 1px solid hsl(170 100% 50% / 10%); clip-path: var(--hud-clip-sm); backdrop-filter: blur(16px);
  color: var(--color-text); font-size: 14px; line-height: 1.7; margin-bottom: 24px; position: relative;
  animation: heroFadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}
.home-desc > p:first-of-type::before {
  content: ''; position: absolute; top: 0; left: 0; width: 8px; height: 8px;
  border-top: 1px solid hsl(170 100% 50% / 45%); border-left: 1px solid hsl(170 100% 50% / 45%);
}
.category-header { display: none; }

/* ══════════════════════════════════════════════════════════
   TEXT CONTENT — headings ROSA + barra cyan→gold
   ══════════════════════════════════════════════════════════ */
.store-text.text-content,.store-product-cont .text-content,
main.store-text,.site-content main .text-content { font-size: 14px; line-height: 1.7; color: var(--color-text-secondary); }

/* Primer h2 de página estática — BLANCO con subrayado CYAN */
.store-text.text-content > h2:first-child,.store-text > h2:first-child {
  font-family: 'Odibee Sans', sans-serif; font-size: clamp(28px, 5vw, 52px);
  letter-spacing: 0.1em; text-transform: uppercase; color: #ffffff;
  margin-bottom: 32px; padding-bottom: 14px;
  border-bottom: 1px solid hsl(170 100% 50% / 14%); position: relative;
}
.store-text.text-content > h2:first-child::after,.store-text > h2:first-child::after {
  content: ''; position: absolute; bottom: -1px; left: 0; width: 80px; height: 1px;
  background: var(--color-primary); box-shadow: 0 0 10px hsl(170 100% 50% / 60%);
}

/* Headings — ROSA neón */
.text-content h1,.text-content h2,.text-content h3,
.text-content h4,.text-content h5,.text-content h6 {
  font-family: 'Odibee Sans', sans-serif !important; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent2) !important; /* ROSA */
  text-shadow: 0 0 12px hsl(330 100% 57% / 25%);
  margin-top: 28px; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; position: relative;
}
/* Barra lateral — cyan→gold */
.text-content h2::before,.text-content h3::before,.text-content h4::before {
  content: ''; display: inline-block; width: 3px; height: 1em;
  background: linear-gradient(180deg, #00f5d4, #ffd166);
  flex-shrink: 0; border-radius: 2px;
  transform-origin: top center; animation: accentBarGrow 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
}

.text-content p { color: var(--color-text-secondary); line-height: 1.75; margin-bottom: 14px; }
/* Párrafos tras heading */
.text-content h2 + p,.text-content h3 + p,.text-content h4 + p {
  padding: 14px 18px; background: hsl(270 20% 4% / 50%);
  border: 1px solid hsl(330 100% 57% / 8%); /* borde rosa sutil */
  clip-path: var(--hud-clip-sm); backdrop-filter: blur(16px); color: var(--color-text); position: relative; margin-bottom: 18px;
}
.text-content h2 + p::before,.text-content h3 + p::before,.text-content h4 + p::before {
  content: ''; position: absolute; top: 0; left: 0; width: 8px; height: 8px;
  border-top: 1px solid hsl(330 100% 57% / 40%); border-left: 1px solid hsl(330 100% 57% / 40%);
}

/* Listas */
.text-content ul,.text-content ol {
  display: grid; grid-template-columns: 1fr !important; gap: 14px !important;
  list-style: none !important; margin: 18px 0 !important; padding: 0 !important;
}
.text-content ul li,.text-content ol li {
  display: block !important; padding: 18px 22px !important;
  background: hsl(270 20% 4% / 65%) !important;
  border: 1px solid hsl(170 100% 50% / 14%) !important;
  clip-path: var(--hud-clip-sm) !important; backdrop-filter: blur(16px) saturate(150%) !important;
  box-shadow: 0 2px 12px hsl(270 30% 2% / 45%) !important;
  font-size: 14px !important; color: var(--color-text) !important; line-height: 1.75 !important;
  transition: all 0.2s ease !important; position: relative !important; list-style: none !important;
  word-break: normal !important; overflow-wrap: break-word !important; min-height: 58px !important;
  animation: hudItemIn 0.3s ease both !important;
}
.text-content ul li::before,.text-content ol li::before {
  content: '' !important; position: absolute !important; top: 0 !important; left: 0 !important;
  width: 7px !important; height: 7px !important;
  border-top: 1px solid hsl(170 100% 50% / 45%) !important;
  border-left: 1px solid hsl(170 100% 50% / 45%) !important;
  background: none !important; mask: none !important; display: block !important;
  flex-shrink: 0 !important; border-radius: 0 !important; pointer-events: none;
}
.text-content ul li::after,.text-content ol li::after {
  content: ''; position: absolute; left: 0; top: 20%; bottom: 20%; width: 1px;
  background: linear-gradient(180deg, transparent, #00f5d4, transparent);
  opacity: 0; transition: opacity 0.2s ease;
}
.text-content ul li:hover,.text-content ol li:hover {
  border-color: hsl(170 100% 50% / 28%) !important;
  background: hsl(170 100% 4% / 65%) !important;
  box-shadow: 0 0 18px hsl(170 100% 50% / 7%) !important;
  color: var(--color-text-darker) !important; transform: translateY(-1px) !important;
}
.text-content ul li:hover::after,.text-content ol li:hover::after { opacity: 1; }
.text-content ul li strong,.text-content ol li strong { color: var(--color-gold) !important; font-weight: 600; }
.text-content strong { color: var(--color-text-darker); }
.text-content a { color: var(--color-primary); transition: color 0.15s ease; }
.text-content a:hover { color: var(--color-gold); text-shadow: 0 0 8px hsl(43 100% 55% / 40%); }
.text-content hr { border: none; height: 1px; background: linear-gradient(90deg, transparent, hsl(170 100% 50% / 25%), hsl(330 100% 57% / 15%), transparent); margin: 28px 0; }

/* store-text overrides */
.store-text ul,.store-text ol { display: grid !important; grid-template-columns: 1fr !important; gap: 14px !important; list-style: none !important; margin: 18px 0 !important; padding: 0 !important; }
.store-text ul li,.store-text ol li { display: block !important; padding: 18px 22px !important; background: hsl(270 20% 4% / 65%) !important; border: 1px solid hsl(170 100% 50% / 14%) !important; clip-path: var(--hud-clip-sm) !important; backdrop-filter: blur(16px) !important; font-size: 14px !important; color: var(--color-text) !important; line-height: 1.75 !important; transition: all 0.2s ease !important; position: relative !important; list-style: none !important; margin: 0 !important; border-radius: 0 !important; min-height: 58px !important; }
.store-text ul li:hover,.store-text ol li:hover { border-color: hsl(170 100% 50% / 28%) !important; background: hsl(170 100% 4% / 65%) !important; transform: translateY(-1px) !important; }

/* inline fix */
.text-content ul li *,.text-content ol li *,.store-text ul li *,.store-text ol li * { display: inline !important; vertical-align: baseline !important; }
.text-content ul li strong,.text-content ol li strong,.store-text ul li strong,.store-text ol li strong { color: var(--color-gold) !important; font-weight: 700 !important; display: inline !important; }
.text-content p strong,.store-text p strong { color: var(--color-text-darker) !important; font-weight: 700 !important; }
.home-desc ul li *,.home-desc ol li * { display: inline !important; vertical-align: baseline !important; }
.home-desc ul li strong,.home-desc ol li strong { color: var(--color-gold) !important; font-weight: 700 !important; display: inline !important; }

/* Delays animación */
.text-content ul li:nth-child(1),.store-text ul li:nth-child(1)  { animation-delay: 0.05s; }
.text-content ul li:nth-child(2),.store-text ul li:nth-child(2)  { animation-delay: 0.10s; }
.text-content ul li:nth-child(3),.store-text ul li:nth-child(3)  { animation-delay: 0.15s; }
.text-content ul li:nth-child(4),.store-text ul li:nth-child(4)  { animation-delay: 0.20s; }
.text-content ul li:nth-child(5),.store-text ul li:nth-child(5)  { animation-delay: 0.25s; }
.text-content ul li:nth-child(6),.store-text ul li:nth-child(6)  { animation-delay: 0.30s; }
.text-content ul li:nth-child(7),.store-text ul li:nth-child(7)  { animation-delay: 0.35s; }
.text-content ul li:nth-child(8),.store-text ul li:nth-child(8)  { animation-delay: 0.40s; }
.text-content ul li:nth-child(9),.store-text ul li:nth-child(9)  { animation-delay: 0.45s; }
.text-content ul li:nth-child(10),.store-text ul li:nth-child(10){ animation-delay: 0.50s; }

/* ══════════════════════════════════════════════════════════
   PRODUCT FULL — DESCRIPCIÓN
   ══════════════════════════════════════════════════════════ */
.store-product-full .descr.text-content,.store-product-full .descr { font-size: 14px; line-height: 1.75; color: var(--color-text-secondary); margin-top: 8px; }
.store-product-full .descr h1,.store-product-full .descr h2,.store-product-full .descr h3,
.store-product-full .descr h4,.store-product-full .descr h5,.store-product-full .descr h6 {
  font-family: 'Odibee Sans', sans-serif !important; letter-spacing: 0.08em !important;
  text-transform: uppercase !important; color: var(--color-accent2) !important;
  text-shadow: 0 0 12px hsl(330 100% 57% / 25%) !important;
  margin-top: 24px !important; margin-bottom: 12px !important; display: flex !important; align-items: center !important; gap: 10px !important;
}
.store-product-full .descr h2::before,.store-product-full .descr h3::before,.store-product-full .descr h4::before {
  content: '' !important; display: inline-block !important; width: 3px !important; height: 1em !important;
  background: linear-gradient(180deg, #00f5d4, #ffd166) !important; flex-shrink: 0 !important; border-radius: 2px !important;
}
.store-product-full .descr p { color: var(--color-text-secondary); line-height: 1.75; margin-bottom: 12px; }
.store-product-full .descr h2 + p,.store-product-full .descr h3 + p,.store-product-full .descr h4 + p { padding: 12px 16px; background: hsl(270 20% 4% / 50%); border: 1px solid hsl(330 100% 57% / 8%); clip-path: var(--hud-clip-sm); backdrop-filter: blur(16px); color: var(--color-text); position: relative; margin-bottom: 16px; }
.store-product-full .descr h2 + p::before,.store-product-full .descr h3 + p::before,.store-product-full .descr h4 + p::before { content: ''; position: absolute; top: 0; left: 0; width: 7px; height: 7px; border-top: 1px solid hsl(330 100% 57% / 40%); border-left: 1px solid hsl(330 100% 57% / 40%); }
.store-product-full .descr ul,.store-product-full .descr ol { display: grid !important; grid-template-columns: 1fr !important; gap: 10px !important; list-style: none !important; margin: 16px 0 !important; padding: 0 !important; }
.store-product-full .descr ul li,.store-product-full .descr ol li { display: flex !important; flex-wrap: wrap !important; align-items: baseline !important; gap: 0 !important; padding: 11px 14px !important; background: hsl(270 20% 4% / 55%) !important; border: 1px solid hsl(170 100% 50% / 12%) !important; clip-path: var(--hud-clip-sm) !important; backdrop-filter: blur(16px) !important; font-size: 13px !important; color: var(--color-text) !important; line-height: 1.6 !important; transition: all 0.2s ease !important; position: relative !important; list-style: none !important; word-break: normal !important; overflow-wrap: break-word !important; animation: hudItemIn 0.3s ease both; }
.store-product-full .descr ul li::before { content: '' !important; position: absolute !important; top: 0 !important; left: 0 !important; width: 7px !important; height: 7px !important; border-top: 1px solid hsl(170 100% 50% / 45%) !important; border-left: 1px solid hsl(170 100% 50% / 45%) !important; background: none !important; mask: none !important; display: block !important; }
.store-product-full .descr ul li::after { content: '' !important; position: absolute !important; left: 0 !important; top: 20% !important; bottom: 20% !important; width: 1px !important; background: linear-gradient(180deg, transparent, #00f5d4, transparent) !important; opacity: 0 !important; transition: opacity 0.2s ease !important; }
.store-product-full .descr ul li:hover { border-color: hsl(170 100% 50% / 28%) !important; background: hsl(170 100% 4% / 62%) !important; transform: translateY(-1px) !important; }
.store-product-full .descr ul li:hover::after { opacity: 1 !important; }
.store-product-full .descr ul li *,.store-product-full .descr ol li * { display: inline !important; vertical-align: baseline !important; }
.store-product-full .descr ul li strong,.store-product-full .descr ol li strong { color: var(--color-gold) !important; font-weight: 700 !important; }
.store-product-full .descr p strong { color: var(--color-text-darker) !important; font-weight: 700 !important; }

/* ══════════════════════════════════════════════════════════
   STRONG GLOBAL
   ══════════════════════════════════════════════════════════ */
.text-content p strong,.store-text p strong,.home-hero-sub p strong,.home-desc p strong { color: #ffffff !important; font-weight: 800 !important; letter-spacing: 0.02em; }
.text-content li strong,.store-text li strong,.home-hero-sub li strong,.home-desc li strong,.store-product-full .descr li strong { color: var(--color-gold) !important; font-weight: 800 !important; text-shadow: 0 0 6px hsl(43 100% 55% / 35%) !important; }

/* ══════════════════════════════════════════════════════════
   HOME-HERO-SUB con listas
   ══════════════════════════════════════════════════════════ */
.home-hero-sub { font-size: 14px !important; line-height: 1.75 !important; color: var(--color-text-secondary) !important; max-width: 100% !important; }
.home-hero-sub h1,.home-hero-sub h2,.home-hero-sub h3,.home-hero-sub h4,.home-hero-sub h5,.home-hero-sub h6 { font-family: 'Odibee Sans', sans-serif !important; letter-spacing: 0.08em !important; text-transform: uppercase !important; color: var(--color-accent2) !important; text-shadow: 0 0 12px hsl(330 100% 57% / 25%) !important; margin-top: 28px !important; margin-bottom: 14px !important; display: flex !important; align-items: center !important; gap: 10px !important; position: relative !important; }
.home-hero-sub h2::before,.home-hero-sub h3::before,.home-hero-sub h4::before { content: '' !important; display: inline-block !important; width: 3px !important; height: 1em !important; background: linear-gradient(180deg, #00f5d4, #ffd166) !important; flex-shrink: 0 !important; border-radius: 2px !important; }
.home-hero-sub p { color: var(--color-text-secondary); line-height: 1.75; margin-bottom: 14px; }
.home-hero-sub ul,.home-hero-sub ol { display: grid !important; grid-template-columns: 1fr !important; gap: 14px !important; list-style: none !important; margin: 18px 0 !important; padding: 0 !important; }
.home-hero-sub ul li,.home-hero-sub ol li { display: block !important; padding: 18px 22px !important; background: hsl(270 20% 4% / 65%) !important; border: 1px solid hsl(170 100% 50% / 16%) !important; clip-path: var(--hud-clip-sm) !important; backdrop-filter: blur(16px) saturate(150%) !important; box-shadow: 0 2px 12px hsl(270 30% 2% / 45%) !important; font-size: 14px !important; color: var(--color-text) !important; line-height: 1.75 !important; transition: all 0.2s ease !important; position: relative !important; list-style: none !important; word-break: normal !important; overflow-wrap: break-word !important; min-height: 58px !important; animation: hudItemIn 0.3s ease both !important; }
.home-hero-sub ul li::before,.home-hero-sub ol li::before { content: '' !important; position: absolute !important; top: 0 !important; left: 0 !important; width: 7px !important; height: 7px !important; border-top: 1px solid hsl(170 100% 50% / 45%) !important; border-left: 1px solid hsl(170 100% 50% / 45%) !important; background: none !important; mask: none !important; display: block !important; pointer-events: none !important; }
.home-hero-sub ul li::after,.home-hero-sub ol li::after { content: '' !important; position: absolute !important; left: 0 !important; top: 20% !important; bottom: 20% !important; width: 1px !important; background: linear-gradient(180deg, transparent, #00f5d4, transparent) !important; opacity: 0 !important; transition: opacity 0.2s ease !important; }
.home-hero-sub ul li:hover,.home-hero-sub ol li:hover { border-color: hsl(170 100% 50% / 28%) !important; background: hsl(170 100% 4% / 65%) !important; box-shadow: 0 0 18px hsl(170 100% 50% / 7%) !important; transform: translateY(-1px) !important; }
.home-hero-sub ul li:hover::after,.home-hero-sub ol li:hover::after { opacity: 1 !important; }
.home-hero-sub ul li *,.home-hero-sub ol li * { display: inline !important; vertical-align: baseline !important; }
.home-hero-sub ul li strong,.home-hero-sub ol li strong { color: var(--color-gold) !important; font-weight: 700 !important; }
.home-hero-sub p strong { color: var(--color-text-darker) !important; font-weight: 700 !important; }

/* Delays */
.home-hero-sub ul li:nth-child(1),.home-hero-sub ol li:nth-child(1)  { animation-delay: 0.05s !important; }
.home-hero-sub ul li:nth-child(2),.home-hero-sub ol li:nth-child(2)  { animation-delay: 0.10s !important; }
.home-hero-sub ul li:nth-child(3),.home-hero-sub ol li:nth-child(3)  { animation-delay: 0.15s !important; }
.home-hero-sub ul li:nth-child(4),.home-hero-sub ol li:nth-child(4)  { animation-delay: 0.20s !important; }
.home-hero-sub ul li:nth-child(5),.home-hero-sub ol li:nth-child(5)  { animation-delay: 0.25s !important; }
.home-hero-sub ul li:nth-child(6),.home-hero-sub ol li:nth-child(6)  { animation-delay: 0.30s !important; }
.home-hero-sub ul li:nth-child(7),.home-hero-sub ol li:nth-child(7)  { animation-delay: 0.35s !important; }
.home-hero-sub ul li:nth-child(8),.home-hero-sub ol li:nth-child(8)  { animation-delay: 0.40s !important; }
.home-hero-sub ul li:nth-child(9),.home-hero-sub ol li:nth-child(9)  { animation-delay: 0.45s !important; }
.home-hero-sub ul li:nth-child(10),.home-hero-sub ol li:nth-child(10) { animation-delay: 0.50s !important; }
.home-hero-sub ul li:nth-child(11),.home-hero-sub ol li:nth-child(11) { animation-delay: 0.55s !important; }
.home-hero-sub ul li:nth-child(12),.home-hero-sub ol li:nth-child(12) { animation-delay: 0.60s !important; }

/* ══════════════════════════════════════════════════════════
   HERMANOS expulsados del <p> (Tebex HTML quirk)
   ══════════════════════════════════════════════════════════ */
.home-hero ~ ul,.home-hero ~ ol,.home-hero-small ~ ul,.home-hero-small ~ ol,
.store-products > ul,.store-products > ol,.store-category-tiered > ul,.store-category-tiered > ol,
main.store-products > ul,main.store-products > ol { display: grid !important; grid-template-columns: 1fr !important; gap: 14px !important; list-style: none !important; margin: 18px 0 !important; padding: 0 !important; }
.home-hero ~ p,.home-hero-small ~ p,main.store-products > p { color: var(--color-text-secondary); font-size: 14px; line-height: 1.75; margin-bottom: 12px; }
.home-hero ~ h1,.home-hero ~ h2,.home-hero ~ h3,.home-hero ~ h4,.home-hero ~ h5,.home-hero ~ h6,
main.store-products > h2,main.store-products > h3,main.store-products > h4 { font-family: 'Odibee Sans', sans-serif !important; letter-spacing: 0.08em !important; text-transform: uppercase !important; color: var(--color-accent2) !important; text-shadow: 0 0 12px hsl(330 100% 57% / 25%) !important; margin-top: 28px !important; margin-bottom: 14px !important; display: flex !important; align-items: center !important; gap: 10px !important; }
.home-hero ~ h2::before,.home-hero ~ h3::before,.home-hero ~ h4::before,main.store-products > h2::before,main.store-products > h3::before { content: '' !important; display: inline-block !important; width: 3px !important; height: 1em !important; background: linear-gradient(180deg, #00f5d4, #ffd166) !important; flex-shrink: 0 !important; border-radius: 2px !important; }
main.store-products ul li,.home-hero ~ ul li,.home-hero ~ ol li,.home-hero-small ~ ul li,.home-hero-small ~ ol li { display: block !important; padding: 18px 22px !important; background: hsl(270 20% 4% / 65%) !important; border: 1px solid hsl(170 100% 50% / 16%) !important; clip-path: var(--hud-clip-sm) !important; backdrop-filter: blur(16px) saturate(150%) !important; box-shadow: 0 2px 12px hsl(270 30% 2% / 45%) !important; font-size: 14px !important; color: var(--color-text) !important; line-height: 1.75 !important; transition: all 0.2s ease !important; position: relative !important; list-style: none !important; word-break: normal !important; overflow-wrap: break-word !important; min-height: 58px !important; animation: hudItemIn 0.3s ease both !important; }
main.store-products ul li:hover,.home-hero ~ ul li:hover { border-color: hsl(170 100% 50% / 28%) !important; background: hsl(170 100% 4% / 65%) !important; transform: translateY(-1px) !important; }
main.store-products ul li::before,main.store-products ol li::before,.home-hero ~ ul li::before,.home-hero ~ ol li::before { content: '' !important; position: absolute !important; top: 0 !important; left: 0 !important; width: 7px !important; height: 7px !important; border-top: 1px solid hsl(170 100% 50% / 45%) !important; border-left: 1px solid hsl(170 100% 50% / 45%) !important; background: none !important; mask: none !important; display: block !important; }
main.store-products ul li *,main.store-products ol li *,.home-hero ~ ul li *,.home-hero ~ ol li * { display: inline !important; vertical-align: baseline !important; }
main.store-products ul li strong,.home-hero ~ ul li strong { color: var(--color-gold) !important; font-weight: 700 !important; text-shadow: 0 0 6px hsl(43 100% 55% / 35%) !important; }

/* Delays */
main.store-products ul li:nth-child(1),.home-hero ~ ul li:nth-child(1)  { animation-delay: 0.05s !important; }
main.store-products ul li:nth-child(2),.home-hero ~ ul li:nth-child(2)  { animation-delay: 0.10s !important; }
main.store-products ul li:nth-child(3),.home-hero ~ ul li:nth-child(3)  { animation-delay: 0.15s !important; }
main.store-products ul li:nth-child(4),.home-hero ~ ul li:nth-child(4)  { animation-delay: 0.20s !important; }
main.store-products ul li:nth-child(5),.home-hero ~ ul li:nth-child(5)  { animation-delay: 0.25s !important; }
main.store-products ul li:nth-child(6),.home-hero ~ ul li:nth-child(6)  { animation-delay: 0.30s !important; }
main.store-products ul li:nth-child(7),.home-hero ~ ul li:nth-child(7)  { animation-delay: 0.35s !important; }
main.store-products ul li:nth-child(8),.home-hero ~ ul li:nth-child(8)  { animation-delay: 0.40s !important; }
main.store-products ul li:nth-child(9),.home-hero ~ ul li:nth-child(9)  { animation-delay: 0.45s !important; }
main.store-products ul li:nth-child(10),.home-hero ~ ul li:nth-child(10){ animation-delay: 0.50s !important; }
main.store-products ul li:nth-child(11),.home-hero ~ ul li:nth-child(11){ animation-delay: 0.55s !important; }
main.store-products ul li:nth-child(12),.home-hero ~ ul li:nth-child(12){ animation-delay: 0.60s !important; }

/* ══════════════════════════════════════════════════════════
   KEYFRAMES ADICIONALES (utilizados arriba)
   ══════════════════════════════════════════════════════════ */
@keyframes categorySpring {
  0%   { opacity: 0; transform: translateY(20px) scale(0.94); filter: blur(3px); }
  60%  { opacity: 1; transform: translateY(-3px) scale(1.01); filter: blur(0); }
  100% { opacity: 1; transform: translateY(0)  scale(1); }
}
@keyframes productCardReveal {
  0%   { opacity: 0; transform: translateY(24px) scale(0.96); }
  65%  { opacity: 1; transform: translateY(-2px) scale(1.005); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* ══════════════════════════════════════════════════════════
   PREFERS-REDUCED-MOTION
   ══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}














/* ============================================================
   RS ELITE NETWORK — CATEGORY PAGE HERO HUD
   Pega al final de tu CSS principal en Tebex
   ============================================================ */

/* ══════════════════════════════════════════════════════════
   KEYFRAMES
   ══════════════════════════════════════════════════════════ */
@keyframes chScan {
  0%   { transform: translateX(-100%); opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { transform: translateX(100%); opacity: 0; }
}
@keyframes chCorner {
  0%, 100% { opacity: 0.45; }
  50%       { opacity: 1; }
}
@keyframes chBadgePulse {
  0%, 100% { border-color: hsl(170 100% 50% / 28%); box-shadow: none; }
  50%       { border-color: hsl(170 100% 50% / 65%); box-shadow: 0 0 14px hsl(170 100% 50% / 18%); }
}
@keyframes chDotBlink {
  0%, 45%, 55%, 100% { opacity: 1; }
  50%               { opacity: 0; }
}
@keyframes chLineTrace {
  from { clip-path: inset(0 100% 0 0); opacity: 0; }
  10%  { opacity: 0.5; }
  to   { clip-path: inset(0 0% 0 0);   opacity: 0.5; }
}
@keyframes chTitleIn {
  from { opacity: 0; transform: translateY(22px) skewX(-2deg); filter: blur(5px); }
  to   { opacity: 1; transform: translateY(0) skewX(0); filter: blur(0); }
}
@keyframes chBadgeIn {
  from { opacity: 0; transform: translateX(-16px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes chStatsIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes chGlitch {
  0%, 88%, 100% { clip-path: none; transform: none; filter: none; }
  89% { clip-path: inset(15% 0 70% 0); transform: translateX(-4px); filter: hue-rotate(90deg); }
  90% { clip-path: inset(60% 0 5% 0);  transform: translateX(4px);  }
  91% { clip-path: none; transform: none; filter: none; }
}
@keyframes onlinePulse {
  0%, 100% { text-shadow: 0 0 6px hsl(170 100% 50% / 70%); }
  50%       { text-shadow: 0 0 14px hsl(170 100% 50% / 100%), 0 0 28px hsl(170 100% 50% / 40%); }
}
@keyframes prefixBlink {
  0%, 60%, 100% { opacity: 1; }
  70%           { opacity: 0; }
}

/* ══════════════════════════════════════════════════════════
   CAT-HERO — contenedor principal
   ══════════════════════════════════════════════════════════ */
.cat-hero {
  position: relative;
  padding: 38px 32px 30px;
  margin-bottom: 36px;
  overflow: hidden;

  /* Fondo glass degradado */
  background:
    linear-gradient(
      135deg,
      hsl(270 25% 5% / 80%) 0%,
      hsl(270 20% 3% / 90%) 100%
    );
  border: 1px solid hsl(170 100% 50% / 14%);
  clip-path: polygon(
    0 0,
    calc(100% - 20px) 0,
    100% 20px,
    100% 100%,
    20px 100%,
    0 calc(100% - 20px)
  );
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
}

/* Brillo interno sutil */
.cat-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(
    ellipse 70% 50% at 50% 0%,
    hsl(170 100% 50% / 5%) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}

/* ══ DECORACIÓN HUD ══ */
.cat-hero__hud { position: absolute; inset: 0; pointer-events: none; z-index: 1; }

/* Esquinas */
.ch-tl, .ch-tr, .ch-bl, .ch-br {
  position: absolute; width: 16px; height: 16px;
  animation: chCorner 3.5s ease-in-out infinite;
}
.ch-tl { top: 0; left: 0; border-top: 2px solid var(--color-accent);  border-left: 2px solid var(--color-accent);  animation-delay: 0s; }
.ch-tr { top: 0; right: 0; border-top: 2px solid var(--color-accent2); border-right: 2px solid var(--color-accent2); animation-delay: .9s; }
.ch-bl { bottom: 0; left: 0; border-bottom: 2px solid var(--color-gold);   border-left: 2px solid var(--color-gold);   animation-delay: 1.8s; }
.ch-br { bottom: 0; right: 0; border-bottom: 2px solid var(--color-accent); border-right: 2px solid var(--color-accent); animation-delay: 2.7s; }

/* Líneas horizontales que se trazan */
.ch-line-h {
  position: absolute; left: 20px; right: 20px; height: 1px;
  background: linear-gradient(90deg, transparent, #00f5d4 30%, #ff2d78 65%, #ffd166 85%, transparent);
  animation: chLineTrace 1.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.ch-line-top { top: 0; animation-delay: 0.2s; }
.ch-line-bot { bottom: 0; animation-delay: 0.5s; }

/* Scan horizontal */
.ch-scan {
  position: absolute; top: 0; bottom: 0;
  left: 0; width: 120px;
  background: linear-gradient(90deg, transparent, hsl(170 100% 50% / 6%) 50%, transparent);
  animation: chScan 6s ease-in-out 1.5s infinite;
  pointer-events: none;
}

/* ══ BADGE SISTEMA ══ */
.cat-hero__badge {
  position: relative; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  height: 24px; padding: 0 12px;
  margin-bottom: 20px;

  background: hsl(170 100% 4% / 70%);
  border: 1px solid hsl(170 100% 50% / 25%);
  clip-path: var(--hud-clip-sm);
  backdrop-filter: blur(8px);

  font-family: 'Odibee Sans', sans-serif;
  font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--color-primary);

  animation:
    chBadgeIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both,
    chBadgePulse 4s ease-in-out 1s infinite;
}
.chb-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 8px var(--color-accent);
  animation: chDotBlink 2s ease-in-out infinite;
  flex: none;
}
.chb-sep {
  color: hsl(170 100% 50% / 40%);
  font-size: 8px;
}
.chb-id {
  color: var(--color-gold);
  font-size: 9px;
  letter-spacing: 0.2em;
}

/* ══ TÍTULO ══ */
.cat-hero__title {
  position: relative; z-index: 2;
  font-family: 'Odibee Sans', sans-serif;
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.0;
  margin-bottom: 20px;

  animation: chTitleIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
}
/* Efecto glitch periódico en el título */
.cat-hero__title { animation-name: chTitleIn, chGlitch; animation-duration: 0.9s, 9s; animation-delay: 0.25s, 3s; animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1), ease-in-out; animation-fill-mode: both, none; animation-iteration-count: 1, infinite; }

/* Prefijo >_ que parpadea como cursor */
.cht-prefix {
  color: var(--color-accent);
  text-shadow: 0 0 12px hsl(170 100% 50% / 60%);
  margin-right: 8px;
  animation: prefixBlink 3s ease-in-out 2s infinite;
  display: inline;
}

/* ══ DESCRIPCIÓN ══ */
.cat-hero__desc {
  position: relative; z-index: 2;
  font-size: 13px; line-height: 1.7;
  color: var(--color-text-secondary);
  max-width: 64ch;
  margin-bottom: 24px;
  animation: chStatsIn 0.7s ease 0.5s both;
}

/* ══ STATS HUD ══ */
.cat-hero__stats {
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: 0;
  flex-wrap: wrap;

  background: hsl(270 20% 3% / 65%);
  border: 1px solid hsl(170 100% 50% / 10%);
  clip-path: var(--hud-clip-sm);
  backdrop-filter: blur(12px);

  width: fit-content; max-width: 100%;
  animation: chStatsIn 0.7s ease 0.6s both;
}
.chs-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 10px 18px; gap: 2px;
}
.chs-label {
  font-family: 'Odibee Sans', sans-serif;
  font-size: 8px; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: hsl(170 100% 50% / 40%);
}
.chs-value {
  font-family: 'Odibee Sans', sans-serif;
  font-size: 14px; letter-spacing: 0.1em;
  color: #ffffff;
  text-transform: uppercase;
}
.chs-online {
  color: var(--color-accent) !important;
  animation: onlinePulse 2s ease-in-out infinite;
}
.chs-divider {
  width: 1px; height: 36px;
  background: linear-gradient(180deg, transparent, hsl(170 100% 50% / 22%), transparent);
  flex: none;
}

/* ══════════════════════════════════════════════════════════
   CAT-EMPTY — sin productos
   ══════════════════════════════════════════════════════════ */
.cat-empty {
  position: relative;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
  padding: 60px 40px;
  text-align: center;

  background: hsl(270 20% 4% / 55%);
  border: 1px solid hsl(170 100% 50% / 10%);
  clip-path: var(--hud-clip);
  backdrop-filter: blur(20px);
}
.cat-empty__hud { position: absolute; inset: 0; pointer-events: none; }
.ce-tl {
  position: absolute; top: 0; left: 0; width: 14px; height: 14px;
  border-top: 2px solid var(--color-accent); border-left: 2px solid var(--color-accent);
}
.ce-br {
  position: absolute; bottom: 0; right: 0; width: 14px; height: 14px;
  border-bottom: 2px solid var(--color-accent2); border-right: 2px solid var(--color-accent2);
}
.cat-empty__icon {
  font-size: 48px; line-height: 1;
  color: hsl(170 100% 50% / 25%);
  text-shadow: 0 0 30px hsl(170 100% 50% / 15%);
  font-family: 'Odibee Sans', sans-serif;
}
.cat-empty__title {
  font-family: 'Odibee Sans', sans-serif;
  font-size: 20px; letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}
.cat-empty__sub {
  font-size: 13px; color: hsl(170 100% 50% / 35%);
  letter-spacing: 0.05em;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — mobile
   ══════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  .cat-hero {
    padding: 28px 20px 22px;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  }
  .cat-hero__stats { width: 100%; }
  .chs-item { flex: 1; padding: 8px 10px; }
}

/* ══════════════════════════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .cat-hero, .cat-hero *, .cat-hero *::before, .cat-hero *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}









/* ============================================================
   RS ELITE — WIDGETS HUD v2 (FORZADO)
   Pega esto al FINAL de tu styles.css en Tebex
   ============================================================ */

/* ══ KEYFRAMES ══ */
@keyframes wdgCorner    { 0%,100%{opacity:.45} 50%{opacity:1} }
@keyframes wdgDotBlink  { 0%,45%,55%,100%{opacity:1} 50%{opacity:.1} }
@keyframes wdgShimmer   { 0%{background-position:-300% center} 100%{background-position:300% center} }
@keyframes wdgGlowBar   { 0%,100%{opacity:.5} 50%{opacity:1} }
@keyframes wdgScan      { 0%{transform:translateY(-100%);opacity:0} 20%{opacity:.6} 80%{opacity:.6} 100%{transform:translateY(400%);opacity:0} }
@keyframes wdgGoldLine  { from{clip-path:inset(0 100% 0 0);opacity:0} to{clip-path:inset(0 0% 0 0);opacity:.55} }
@keyframes wdgAvatarPulse { 0%,100%{opacity:.25;transform:scale(1)} 50%{opacity:.6;transform:scale(1.08)} }
@keyframes wdgHotPulse  { 0%,100%{box-shadow:none;border-color:hsl(330 100% 57%/40%)} 50%{box-shadow:0 0 10px hsl(330 100% 57%/25%);border-color:hsl(330 100% 57%/75%)} }
@keyframes wdgIn        { from{opacity:0;transform:translateX(16px)} to{opacity:1;transform:translateX(0)} }
@keyframes wdgOnline    { 0%,100%{text-shadow:0 0 6px hsl(170 100% 50%/70%)} 50%{text-shadow:0 0 16px hsl(170 100% 50%/100%),0 0 32px hsl(170 100% 50%/40%)} }

/* ══════════════════════════════════════════════════════════
   BASE WIDGET HUD
   ══════════════════════════════════════════════════════════ */
.widget.wdg-hud {
  position: relative !important;
  padding: 18px 16px 18px !important;
  background: hsl(270 22% 5% / 80%) !important;
  border: 1px solid hsl(170 100% 50% / 18%) !important;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px)) !important;
  backdrop-filter: blur(24px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(160%) !important;
  overflow: hidden !important;
  transition: border-color .25s ease, box-shadow .25s ease !important;
  animation: wdgIn .55s cubic-bezier(.22,1,.36,1) both !important;
  border-radius: 0 !important;
  box-shadow: inset 0 0 30px hsl(170 100% 50% / 3%) !important;
}
.widget.wdg-hud:hover {
  border-color: hsl(170 100% 50% / 30%) !important;
  box-shadow: 0 0 28px hsl(170 100% 50% / 10%), inset 0 0 20px hsl(170 100% 50% / 4%) !important;
}

/* ══ ESQUINAS HUD ══ */
.widget.wdg-hud .wdg-corners {
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  z-index: 10 !important;
}
.widget.wdg-hud .wc-tl,
.widget.wdg-hud .wc-tr,
.widget.wdg-hud .wc-bl,
.widget.wdg-hud .wc-br {
  position: absolute !important;
  width: 10px !important; height: 10px !important;
  display: block !important;
  animation: wdgCorner 3s ease-in-out infinite !important;
}
.widget.wdg-hud .wc-tl { top:0; left:0; border-top: 2px solid #00f5d4 !important; border-left: 2px solid #00f5d4 !important; animation-delay: 0s !important; }
.widget.wdg-hud .wc-tr { top:0; right:0; border-top: 2px solid #ff2d78 !important; border-right: 2px solid #ff2d78 !important; animation-delay: .75s !important; }
.widget.wdg-hud .wc-bl { bottom:0; left:0; border-bottom: 2px solid #ffd166 !important; border-left: 2px solid #ffd166 !important; animation-delay: 1.5s !important; }
.widget.wdg-hud .wc-br { bottom:0; right:0; border-bottom: 2px solid #ff2d78 !important; border-right: 2px solid #ff2d78 !important; animation-delay: 2.25s !important; }

/* ══ HEADER DEL WIDGET ══ */
.widget.wdg-hud .wdg-header {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-bottom: 14px !important;
  padding-bottom: 10px !important;
  border-bottom: 1px solid hsl(43 100% 55% / 18%) !important;
  position: relative !important;
  z-index: 2 !important;
}
.widget.wdg-hud .wdg-icon {
  font-size: 12px !important;
  color: #00f5d4 !important;
  text-shadow: 0 0 8px hsl(170 100% 50% / 55%) !important;
  flex: none !important;
  line-height: 1 !important;
}
.widget.wdg-hud .wdg-icon-gold  { color: #ffd166 !important; text-shadow: 0 0 8px hsl(43 100% 55% / 55%) !important; }
.widget.wdg-hud .wdg-icon-star  { color: #ffd166 !important; text-shadow: 0 0 10px hsl(43 100% 55% / 65%) !important; font-size: 15px !important; }

/* Widget title override */
.widget.wdg-hud .widget-title {
  font-family: 'Odibee Sans', sans-serif !important;
  font-size: 11px !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
  color: #ffd166 !important;
  text-shadow: 0 0 10px hsl(43 100% 55% / 45%) !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  flex: 1 !important;
  line-height: 1.2 !important;
}

/* Punto de estado activo */
.widget.wdg-hud .wdg-status-dot {
  width: 6px !important; height: 6px !important;
  border-radius: 50% !important;
  background: #00f5d4 !important;
  box-shadow: 0 0 6px #00f5d4 !important;
  flex: none !important;
  margin-left: auto !important;
  display: block !important;
  animation: wdgDotBlink 2.5s ease-in-out infinite !important;
}

/* ══════════════════════════════════════════════════════════
   COMMUNITY GOAL
   ══════════════════════════════════════════════════════════ */

/* Imagen */
.widget-community-goal .goal-image-wrap {
  position: relative !important;
  overflow: hidden !important;
  margin-bottom: 12px !important;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px)) !important;
}
.widget-community-goal .goal-image {
  display: block !important;
  width: 100% !important;
  max-height: 90px !important;
  object-fit: cover !important;
  filter: saturate(.65) brightness(.8) !important;
  transition: filter .3s ease !important;
  margin: 0 !important;
}
.widget-community-goal:hover .goal-image { filter: saturate(1) brightness(.95) !important; }
.widget-community-goal .goal-image-scan {
  position: absolute !important; top:0; left:0; right:0; height:35% !important;
  background: linear-gradient(180deg, hsl(170 100% 50% / 12%) 0%, transparent 100%) !important;
  animation: wdgScan 5s ease-in-out 1s infinite !important;
  pointer-events: none !important;
}

/* Descripción */
.widget-community-goal .wdg-descr {
  font-size: 12px !important;
  color: #b8a8c8 !important;
  line-height: 1.65 !important;
  margin-bottom: 14px !important;
}

/* Barra de progreso HUD */
.widget-community-goal .wdg-progress-wrap {
  position: relative !important;
  margin-bottom: 12px !important;
}
.widget-community-goal .wdg-progress-track {
  height: 10px !important;
  background: hsl(270 20% 4% / 80%) !important;
  border: 1px solid hsl(170 100% 50% / 12%) !important;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px)) !important;
  overflow: hidden !important;
  position: relative !important;
}
.widget-community-goal .wdg-progress-bar {
  height: 100% !important;
  background: linear-gradient(90deg, #00f5d4 0%, #ff2d78 55%, #ffd166 100%) !important;
  position: relative !important;
  transition: width 1.2s cubic-bezier(.22,1,.36,1) !important;
  clip-path: none !important;
  border-radius: 0 !important;
}
.widget-community-goal .wdg-progress-bar.striped {
  background: repeating-linear-gradient(
    45deg, #00f5d4 0, #00f5d4 6px, hsl(170 100% 30%) 6px, hsl(170 100% 30%) 12px
  ) !important;
}
.widget-community-goal .wdg-progress-bar.animated {
  background-size: 30px 100% !important;
  animation: wdgShimmer 1.5s linear infinite !important;
}
.widget-community-goal .wdg-progress-glow {
  position: absolute !important; right:0; top:-3px; bottom:-3px; width:16px !important;
  background: radial-gradient(ellipse, hsl(170 100% 70% / 90%) 0%, transparent 70%) !important;
  animation: wdgGlowBar 1.5s ease-in-out infinite !important;
  display: block !important;
}
.widget-community-goal .wdg-progress-ticks {
  position: absolute !important; top:0; left:0; right:0; height:10px !important;
  pointer-events: none !important; display: block !important;
}
.widget-community-goal .wdg-progress-ticks .tick {
  position: absolute !important; top:0; bottom:0; width:1px !important;
  background: hsl(270 20% 3% / 55%) !important;
  transform: translateX(-50%) !important;
  display: block !important;
}

/* Info panel */
.widget-community-goal .wdg-goal-info {
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
  padding: 9px 10px !important;
  background: hsl(270 20% 3% / 70%) !important;
  border: 1px solid hsl(170 100% 50% / 10%) !important;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px)) !important;
  margin-bottom: 10px !important;
}
.widget-community-goal .wgi-block {
  display: flex !important; flex-direction: column !important;
  align-items: center !important; flex: 1 !important; gap: 1px !important;
}
.widget-community-goal .wgi-center { width:100% !important; text-align:center !important; }
.widget-community-goal .wgi-label {
  font-family: 'Odibee Sans', sans-serif !important;
  font-size: 7px !important; letter-spacing: .2em !important;
  text-transform: uppercase !important; color: hsl(170 100% 50% / 40%) !important;
  display: block !important;
}
.widget-community-goal .wgi-value {
  font-family: 'Odibee Sans', sans-serif !important;
  font-size: 14px !important; letter-spacing: .05em !important;
  color: #ffffff !important; display: block !important;
}
.widget-community-goal .wgi-cyan { color: #00f5d4 !important; text-shadow: 0 0 8px hsl(170 100% 50% / 45%) !important; }
.widget-community-goal .wgi-gold { color: #ffd166 !important; text-shadow: 0 0 8px hsl(43 100% 55% / 45%) !important; }
.widget-community-goal .wgi-sep {
  color: hsl(170 100% 50% / 22%) !important; font-size: 9px !important;
  font-family: 'Odibee Sans', sans-serif !important; flex: none !important;
}

/* Achieved */
.widget-community-goal .wdg-achieved {
  display: flex !important; align-items: center !important; gap: 8px !important;
  padding: 7px 10px !important;
  background: hsl(43 100% 5% / 70%) !important;
  border: 1px solid hsl(43 100% 55% / 20%) !important;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px)) !important;
  font-size: 11px !important; color: #ffd166 !important;
  font-family: 'Odibee Sans', sans-serif !important; letter-spacing: .07em !important;
}
.widget-community-goal .wa-icon { font-size: 14px !important; flex: none !important; }
.widget-community-goal .wa-text strong { color: #ffffff !important; }

/* ══════════════════════════════════════════════════════════
   FEATURED PACKAGE
   ══════════════════════════════════════════════════════════ */
.widget.wdg-featured-hud {
  border-color: hsl(43 100% 55% / 22%) !important;
}
.widget.wdg-featured-hud .wc-tl { border-color: #ffd166 !important; }
.widget.wdg-featured-hud .wc-br { border-color: #ffd166 !important; }

.widget-featured .wdg-shimmer-line {
  position: absolute !important; top:0; left:0; right:0; height:2px !important;
  z-index: 5 !important;
  background: linear-gradient(90deg, transparent, #ffd166 25%, #ff2d78 50%, #00f5d4 75%, transparent) !important;
  background-size: 300% 100% !important;
  animation: wdgShimmer 4s linear infinite !important;
  opacity: .7 !important;
  display: block !important;
}
.widget-featured .wdg-badge-hot {
  margin-left: auto !important; flex: none !important;
  display: inline-flex !important; align-items: center !important;
  height: 18px !important; padding: 0 8px !important;
  font-family: 'Odibee Sans', sans-serif !important;
  font-size: 8px !important; letter-spacing: .18em !important;
  text-transform: uppercase !important; color: #ff2d78 !important;
  background: hsl(330 100% 57% / 12%) !important;
  border: 1px solid hsl(330 100% 57% / 35%) !important;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px)) !important;
  animation: wdgHotPulse 2.5s ease-in-out infinite !important;
}

/* ══════════════════════════════════════════════════════════
   GIFT CARD
   ══════════════════════════════════════════════════════════ */
.widget-gift-card .wgc-form {
  display: flex !important; flex-direction: column !important; gap: 10px !important;
}

/* Tarjeta visual */
.widget-gift-card .wgc-card-visual {
  position: relative !important; height: 58px !important;
  overflow: hidden !important;
  background: linear-gradient(135deg, hsl(330 80% 8% / 85%), hsl(270 25% 6% / 85%)) !important;
  border: 1px solid hsl(330 100% 57% / 16%) !important;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px)) !important;
  display: flex !important; align-items: center !important;
  justify-content: center !important; gap: 10px !important;
}
.widget-gift-card .wgc-cv-corners { position:absolute !important; inset:0 !important; pointer-events:none !important; }
.widget-gift-card .wgc-cv-corners span { position:absolute !important; width:8px !important; height:8px !important; display:block !important; }
.widget-gift-card .wgc-cv-corners span:nth-child(1) { top:0;left:0; border-top:1px solid hsl(330 100% 57%/45%) !important; border-left:1px solid hsl(330 100% 57%/45%) !important; }
.widget-gift-card .wgc-cv-corners span:nth-child(2) { top:0;right:0; border-top:1px solid hsl(170 100% 50%/45%) !important; border-right:1px solid hsl(170 100% 50%/45%) !important; }
.widget-gift-card .wgc-cv-corners span:nth-child(3) { bottom:0;left:0; border-bottom:1px solid hsl(43 100% 55%/45%) !important; border-left:1px solid hsl(43 100% 55%/45%) !important; }
.widget-gift-card .wgc-cv-corners span:nth-child(4) { bottom:0;right:0; border-bottom:1px solid hsl(330 100% 57%/45%) !important; border-right:1px solid hsl(330 100% 57%/45%) !important; }
.widget-gift-card .wgc-cv-icon {
  font-size: 20px !important;
  color: hsl(170 100% 50% / 22%) !important;
  font-family: 'Odibee Sans', sans-serif !important;
  display: block !important;
}
.widget-gift-card .wgc-cv-label {
  font-family: 'Odibee Sans', sans-serif !important;
  font-size: 11px !important; letter-spacing: .2em !important;
  text-transform: uppercase !important;
  color: hsl(170 100% 50% / 28%) !important;
  display: block !important;
}
.widget-gift-card .wgc-cv-strip {
  position: absolute !important; bottom:0; left:0; right:0; height:1px !important;
  background: linear-gradient(90deg, transparent, #ff2d78 35%, #00f5d4 65%, transparent) !important;
  opacity: .45 !important; display: block !important;
}

/* Input wrapper */
.widget-gift-card .wgc-input-wrap {
  display: flex !important; align-items: stretch !important; gap: 0 !important;
  background: hsl(270 20% 4% / 85%) !important;
  border: 1px solid hsl(170 100% 50% / 16%) !important;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px)) !important;
  transition: border-color .2s ease, box-shadow .2s ease !important;
  overflow: hidden !important;
}
.widget-gift-card .wgc-input-wrap:focus-within {
  border-color: #00f5d4 !important;
  box-shadow: 0 0 0 2px hsl(170 100% 50% / 10%), 0 0 14px hsl(170 100% 50% / 8%) !important;
}
.widget-gift-card .wgc-input-prefix {
  padding: 0 10px !important; flex: none !important;
  font-family: 'Odibee Sans', sans-serif !important; font-size: 16px !important;
  color: hsl(170 100% 50% / 40%) !important;
  border-right: 1px solid hsl(170 100% 50% / 12%) !important;
  display: flex !important; align-items: center !important;
  background: hsl(170 100% 3% / 40%) !important;
}
.widget-gift-card .wgc-input,
.widget-gift-card .gift-card-input {
  flex: 1 !important; height: 42px !important; padding: 0 10px !important;
  background: transparent !important;
  border: none !important; outline: none !important;
  clip-path: none !important; border-radius: 0 !important;
  color: #ffe8f5 !important;
  font-family: 'Odibee Sans', sans-serif !important;
  font-size: 12px !important; letter-spacing: .12em !important;
  text-transform: uppercase !important;
}
.widget-gift-card .wgc-input::placeholder,
.widget-gift-card .gift-card-input::placeholder {
  color: hsl(170 100% 50% / 20%) !important;
  letter-spacing: .15em !important;
}

/* Botón check */
.widget-gift-card .check.wgc-btn,
.widget-gift-card button.check {
  display: flex !important; align-items: center !important;
  justify-content: center !important; gap: 8px !important;
  width: 100% !important; height: 40px !important;
  font-family: 'Odibee Sans', sans-serif !important;
  font-size: 11px !important; letter-spacing: .12em !important;
  text-transform: uppercase !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #ff2d78 0%, #c0154e 100%) !important;
  box-shadow: 0 0 18px hsl(330 100% 57% / 30%) !important;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px)) !important;
  border: none !important; cursor: pointer !important;
  transition: all .2s ease !important;
}
.widget-gift-card .check.wgc-btn:hover,
.widget-gift-card button.check:hover {
  background: linear-gradient(135deg, #ff6ea0 0%, #ff2d78 100%) !important;
  box-shadow: 0 0 28px hsl(330 100% 60% / 55%) !important;
}
.widget-gift-card .wgc-btn-icon { font-size: 9px !important; }

/* Resultados */
.widget-gift-card .wgc-result {
  display: flex !important; align-items: center !important;
  gap: 10px !important; padding: 10px 12px !important;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px)) !important;
  font-size: 12px !important; font-family: 'Odibee Sans', sans-serif !important;
  letter-spacing: .06em !important;
}
.widget-gift-card .wgc-result--error   { background: hsl(330 80% 6% / 85%) !important; border: 1px solid hsl(330 80% 40% / 35%) !important; color: #ff8fa3 !important; }
.widget-gift-card .wgc-result--warning { background: hsl(43 80% 6% / 85%) !important;  border: 1px solid hsl(43 80% 40% / 35%) !important;  color: #ffd166 !important; }
.widget-gift-card .wgc-result--success { background: hsl(170 100% 5% / 85%) !important; border: 1px solid hsl(170 100% 40% / 30%) !important; color: #00f5d4 !important; }
.widget-gift-card .wgcr-icon { font-size: 16px !important; flex: none !important; }
.widget-gift-card .wgcr-balance { display: flex !important; flex-direction: column !important; gap: 1px !important; }
.widget-gift-card .wgcr-label { font-size: 8px !important; letter-spacing: .2em !important; color: hsl(170 100% 50% / 50%) !important; display: block !important; }
.widget-gift-card .wgcr-amount { font-size: 18px !important; color: #ffd166 !important; text-shadow: 0 0 8px hsl(43 100% 55% / 40%) !important; display: block !important; }

/* ══════════════════════════════════════════════════════════
   TEXTBOX
   ══════════════════════════════════════════════════════════ */
.widget-text .wdg-text-content,
.widget-text .text-content {
  font-size: 12px !important;
  line-height: 1.7 !important;
  color: #b8a8c8 !important;
}
.widget-text .wdg-text-content p { margin-bottom: 10px !important; color: #b8a8c8 !important; }
.widget-text .wdg-text-content strong { color: #ffffff !important; }
.widget-text .wdg-text-content a { color: #00f5d4 !important; text-decoration: underline !important; }

/* ══════════════════════════════════════════════════════════
   TOP DONATOR
   ══════════════════════════════════════════════════════════ */
.widget.wdg-donator-hud {
  border-color: hsl(43 100% 55% / 20%) !important;
}
.widget.wdg-donator-hud .wc-tl { border-color: #ffd166 !important; }
.widget.wdg-donator-hud .wc-bl { border-color: #ffd166 !important; }

/* Línea dorada */
.widget-top-donator .wdt-gold-line {
  position: absolute !important; top:0; left:0; right:0; height:2px !important; z-index:5 !important;
  background: linear-gradient(90deg, transparent, #ffd166 35%, #ff2d78 65%, transparent) !important;
  animation: wdgGoldLine .9s cubic-bezier(.22,1,.36,1) .2s both !important;
  display: block !important;
}

/* Avatar con marco HUD */
.widget-top-donator .wdt-avatar-wrap {
  position: relative !important; width: fit-content !important;
  margin: 4px auto 16px !important;
}
.widget-top-donator .avatar.wdt-avatar,
.widget-top-donator .wdt-avatar {
  display: block !important; width: 76px !important; height: 76px !important;
  object-fit: contain !important; border-radius: 0 !important;
  position: relative !important; z-index: 2 !important;
  image-rendering: pixelated !important;
  margin: 0 !important;
}
.widget-top-donator .wdt-avatar-frame {
  position: absolute !important; inset: -6px !important;
  z-index: 3 !important; pointer-events: none !important;
}
.widget-top-donator .waf-tl,
.widget-top-donator .waf-tr,
.widget-top-donator .waf-bl,
.widget-top-donator .waf-br {
  position: absolute !important; width: 11px !important; height: 11px !important;
  display: block !important; animation: wdgCorner 3s ease-in-out infinite !important;
}
.widget-top-donator .waf-tl { top:0; left:0; border-top: 2px solid #ffd166 !important; border-left: 2px solid #ffd166 !important; }
.widget-top-donator .waf-tr { top:0; right:0; border-top: 2px solid #ff2d78 !important; border-right: 2px solid #ff2d78 !important; animation-delay: .75s !important; }
.widget-top-donator .waf-bl { bottom:0; left:0; border-bottom: 2px solid #00f5d4 !important; border-left: 2px solid #00f5d4 !important; animation-delay: 1.5s !important; }
.widget-top-donator .waf-br { bottom:0; right:0; border-bottom: 2px solid #ffd166 !important; border-right: 2px solid #ffd166 !important; animation-delay: 2.25s !important; }
.widget-top-donator .wdt-avatar-glow {
  position: absolute !important; inset: -10px !important; z-index: 1 !important;
  border-radius: 50% !important;
  background: radial-gradient(ellipse, hsl(43 100% 55% / 20%) 0%, transparent 70%) !important;
  animation: wdgAvatarPulse 3s ease-in-out infinite !important;
  display: block !important;
}

/* Badge #1 */
.widget-top-donator .wdt-rank-badge {
  position: absolute !important; bottom: -9px !important; right: -9px !important; z-index: 4 !important;
  display: flex !important; align-items: center !important; gap: 3px !important;
  height: 20px !important; padding: 0 7px !important;
  background: hsl(43 100% 8% / 95%) !important;
  border: 1px solid hsl(43 100% 55% / 45%) !important;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px)) !important;
  font-family: 'Odibee Sans', sans-serif !important; font-size: 9px !important; letter-spacing: .1em !important;
}
.widget-top-donator .wrb-text { color: #ffd166 !important; }

/* IGN */
.widget-top-donator .wdt-ign-wrap {
  display: flex !important; align-items: center !important;
  justify-content: center !important; gap: 6px !important;
  margin-bottom: 12px !important;
}
.widget-top-donator .wdt-ign-prefix { color: hsl(170 100% 50% / 40%) !important; font-size: 14px !important; }
.widget-top-donator .username.wdt-ign,
.widget-top-donator .wdt-ign {
  font-family: 'Odibee Sans', sans-serif !important;
  font-size: 15px !important; letter-spacing: .1em !important;
  text-transform: uppercase !important;
  color: #ffd166 !important;
  text-shadow: 0 0 10px hsl(43 100% 55% / 45%) !important;
  margin: 0 !important;
}

/* Info de donación */
.widget-top-donator .wdt-info {
  display: flex !important; flex-direction: column !important;
  gap: 8px !important; align-items: center !important;
}
.widget-top-donator .wdt-amount-block {
  display: flex !important; flex-direction: column !important;
  align-items: center !important; gap: 2px !important;
  padding: 9px 16px !important; width: 100% !important;
  background: hsl(43 100% 4% / 65%) !important;
  border: 1px solid hsl(43 100% 55% / 16%) !important;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px)) !important;
}
.widget-top-donator .wda-label {
  font-family: 'Odibee Sans', sans-serif !important; font-size: 8px !important;
  letter-spacing: .2em !important; text-transform: uppercase !important;
  color: hsl(43 100% 55% / 40%) !important; display: block !important;
}
.widget-top-donator .wda-value {
  font-family: 'Odibee Sans', sans-serif !important; font-size: 18px !important;
  letter-spacing: .06em !important; color: #ffd166 !important;
  text-shadow: 0 0 8px hsl(43 100% 55% / 40%) !important; display: block !important;
}
.widget-top-donator .wda-value em {
  font-style: normal !important; font-size: 11px !important;
  color: hsl(43 100% 55% / 55%) !important;
}

/* Período */
.widget-top-donator .wdt-period-badge {
  display: inline-flex !important; align-items: center !important; gap: 6px !important;
  height: 22px !important; padding: 0 12px !important;
  background: hsl(270 20% 3% / 75%) !important;
  border: 1px solid hsl(170 100% 50% / 12%) !important;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px)) !important;
  font-family: 'Odibee Sans', sans-serif !important; font-size: 9px !important;
  letter-spacing: .12em !important; text-transform: uppercase !important;
  color: #b8a8c8 !important;
}
.widget-top-donator .wpb-icon { font-size: 11px !important; }

/* Vacío */
.widget-top-donator .wdt-empty {
  display: flex !important; flex-direction: column !important;
  align-items: center !important; gap: 10px !important;
  padding: 18px 0 !important; text-align: center !important;
}
.widget-top-donator .wdte-icon {
  font-size: 30px !important;
  color: hsl(170 100% 50% / 18%) !important;
  font-family: 'Odibee Sans', sans-serif !important; display: block !important;
}
.widget-top-donator .wdt-empty .empty { font-size: 11px !important; color: #b8a8c8 !important; }

/* ══════════════════════════════════════════════════════════
   DELAYS SIDEBAR
   ══════════════════════════════════════════════════════════ */
.store-sidebar > .widget:nth-child(1) { animation-delay: .15s !important; }
.store-sidebar > .widget:nth-child(2) { animation-delay: .28s !important; }
.store-sidebar > .widget:nth-child(3) { animation-delay: .41s !important; }
.store-sidebar > .widget:nth-child(4) { animation-delay: .54s !important; }
.store-sidebar > .widget:nth-child(5) { animation-delay: .67s !important; }

/* ══════════════════════════════════════════════════════════
   ELIMINAR BORDE VERDE DEL SIDEBAR (preview Tebex)
   ══════════════════════════════════════════════════════════ */
.store-sidebar { outline: none !important; border: none !important; }

/* ══════════════════════════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .widget.wdg-hud,
  .widget.wdg-hud *,
  .widget.wdg-hud *::before,
  .widget.wdg-hud *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}








/* ============================================================
   RS ELITE — WIDGET RECENT PAYMENTS HUD
   Añade esto al final de tu widgets-hud-v2.css
   ============================================================ */

/* ══ KEYFRAMES EXCLUSIVOS ══ */
@keyframes wprItemIn {
  from { opacity: 0; transform: translateX(-10px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes wprBarPulse {
  0%, 100% { opacity: .4; height: 40%; }
  50%       { opacity: 1;  height: 70%; }
}

/* ══ LISTA ══ */
.widget-recent .wpr-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 7px !important;
}

/* ══ ITEM ══ */
.widget-recent .wpr-item {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 9px 10px 9px 12px !important;
  background: hsl(270 22% 5% / 70%) !important;
  border: 1px solid hsl(170 100% 50% / 10%) !important;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px)) !important;
  transition: border-color .2s ease, background .2s ease, transform .2s ease !important;
  overflow: hidden !important;
  animation: wprItemIn .35s ease both !important;
}
.widget-recent .wpr-item:hover {
  border-color: hsl(170 100% 50% / 25%) !important;
  background: hsl(170 100% 4% / 60%) !important;
  transform: translateX(2px) !important;
}

/* Delays escalonados por item */
.widget-recent .wpr-item:nth-child(1)  { animation-delay: .05s !important; }
.widget-recent .wpr-item:nth-child(2)  { animation-delay: .10s !important; }
.widget-recent .wpr-item:nth-child(3)  { animation-delay: .15s !important; }
.widget-recent .wpr-item:nth-child(4)  { animation-delay: .20s !important; }
.widget-recent .wpr-item:nth-child(5)  { animation-delay: .25s !important; }
.widget-recent .wpr-item:nth-child(6)  { animation-delay: .30s !important; }
.widget-recent .wpr-item:nth-child(7)  { animation-delay: .35s !important; }
.widget-recent .wpr-item:nth-child(8)  { animation-delay: .40s !important; }
.widget-recent .wpr-item:nth-child(9)  { animation-delay: .45s !important; }
.widget-recent .wpr-item:nth-child(10) { animation-delay: .50s !important; }

/* Esquinas mini HUD por item */
.widget-recent .wpr-tl {
  position: absolute !important; top: 0 !important; left: 0 !important;
  width: 7px !important; height: 7px !important; display: block !important;
  border-top: 1px solid hsl(170 100% 50% / 45%) !important;
  border-left: 1px solid hsl(170 100% 50% / 45%) !important;
  pointer-events: none !important;
}
.widget-recent .wpr-br {
  position: absolute !important; bottom: 0 !important; right: 0 !important;
  width: 7px !important; height: 7px !important; display: block !important;
  border-bottom: 1px solid hsl(330 100% 57% / 35%) !important;
  border-right: 1px solid hsl(330 100% 57% / 35%) !important;
  pointer-events: none !important;
}

/* Barra lateral activa — izquierda */
.widget-recent .wpr-active-bar {
  position: absolute !important; left: 0 !important;
  top: 50% !important; transform: translateY(-50%) !important;
  width: 2px !important; height: 40% !important;
  background: linear-gradient(180deg, transparent, #00f5d4, transparent) !important;
  border-radius: 2px !important;
  animation: wprBarPulse 2.5s ease-in-out infinite !important;
  display: block !important;
}
/* Color alterna cyan/rosa por item par */
.widget-recent .wpr-item:nth-child(even) .wpr-active-bar {
  background: linear-gradient(180deg, transparent, #ff2d78, transparent) !important;
}
.widget-recent .wpr-item:nth-child(even) .wpr-tl {
  border-color: hsl(330 100% 57% / 40%) !important;
}

/* ══ AVATAR ══ */
.widget-recent .wpr-avatar-wrap {
  flex: none !important; position: relative !important;
}
.widget-recent .avatar.wpr-avatar,
.widget-recent .wpr-avatar {
  display: block !important;
  width: 30px !important; height: 30px !important;
  object-fit: contain !important; border-radius: 0 !important;
  image-rendering: pixelated !important;
  margin: 0 !important;
  border: 1px solid hsl(170 100% 50% / 18%) !important;
  filter: brightness(.85) !important;
  transition: filter .2s ease, border-color .2s ease !important;
}
.widget-recent .wpr-item:hover .wpr-avatar {
  filter: brightness(1) !important;
  border-color: hsl(170 100% 50% / 40%) !important;
}

/* ══ INFO ══ */
.widget-recent .wpr-info {
  flex: 1 !important; min-width: 0 !important;
  display: flex !important; flex-direction: column !important; gap: 2px !important;
}
.widget-recent .username.wpr-ign,
.widget-recent .wpr-ign {
  font-family: 'Odibee Sans', sans-serif !important;
  font-size: 12px !important; letter-spacing: .08em !important;
  text-transform: uppercase !important; color: #ffffff !important;
  white-space: nowrap !important; overflow: hidden !important;
  text-overflow: ellipsis !important; margin: 0 !important;
  transition: color .2s ease !important;
}
.widget-recent .wpr-item:hover .wpr-ign {
  color: #00f5d4 !important;
  text-shadow: 0 0 8px hsl(170 100% 50% / 40%) !important;
}

/* Detalle paquete + precio */
.widget-recent .wpr-detail {
  display: flex !important; align-items: center !important;
  gap: 4px !important; flex-wrap: wrap !important;
  margin: 0 !important;
}
.widget-recent .wpr-pkg {
  font-size: 10px !important; color: #b8a8c8 !important;
  white-space: nowrap !important; overflow: hidden !important;
  text-overflow: ellipsis !important; max-width: 100px !important;
}
.widget-recent .wpr-sep { color: hsl(170 100% 50% / 30%) !important; font-size: 9px !important; }
.widget-recent .price.wpr-price,
.widget-recent .wpr-price {
  font-family: 'Odibee Sans', sans-serif !important;
  font-size: 11px !important; letter-spacing: .06em !important;
  color: #ffd166 !important;
  text-shadow: 0 0 6px hsl(43 100% 55% / 35%) !important;
  white-space: nowrap !important;
}

/* Tiempo */
.widget-recent .wpr-time,
.widget-recent time {
  font-size: 9px !important; letter-spacing: .08em !important;
  color: hsl(170 100% 50% / 30%) !important;
  font-family: 'Odibee Sans', sans-serif !important;
  display: block !important;
}

/* ══ VACÍO ══ */
.widget-recent .wpr-empty {
  display: flex !important; flex-direction: column !important;
  align-items: center !important; gap: 10px !important;
  padding: 20px 0 !important; text-align: center !important;
}
.widget-recent .wpr-empty-icon {
  font-size: 28px !important;
  color: hsl(170 100% 50% / 18%) !important;
  font-family: 'Odibee Sans', sans-serif !important;
  display: block !important;
}
.widget-recent .wpr-empty .empty {
  font-size: 11px !important; color: #b8a8c8 !important;
}




/* ══════════════════════════════════════════════════════════
   BOTÓN DISCORD — HEADER
   Añade al final de tu styles.css en Tebex
   ══════════════════════════════════════════════════════════ */

@keyframes discordGlow {
  0%, 100% { box-shadow: 0 0 14px hsl(235 86% 65% / 30%); }
  50%       { box-shadow: 0 0 28px hsl(235 86% 65% / 60%), 0 0 50px hsl(235 86% 65% / 20%); }
}
@keyframes discordPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.7; }
}

.discord-btn {
  display: flex !important;
  align-items: center !important;
  gap: 7px !important;
  height: var(--btn-size) !important;
  padding: 0 14px !important;
  flex: none !important;

  /* Color oficial Discord */
  background: linear-gradient(135deg, #5865F2 0%, #404EED 100%) !important;
  color: #ffffff !important;
  clip-path: var(--hud-clip-sm) !important;

  font-family: 'Odibee Sans', sans-serif !important;
  font-size: 11px !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  white-space: nowrap !important;

  box-shadow: 0 0 18px hsl(235 86% 65% / 35%) !important;
  transition: all 0.2s ease !important;
  animation: discordGlow 3s ease-in-out infinite !important;

  position: relative !important;
  overflow: hidden !important;
  cursor: pointer !important;
}

/* Shimmer interno */
.discord-btn::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important; left: -100% !important;
  width: 60% !important; height: 100% !important;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent) !important;
  transition: left 0.4s ease !important;
  pointer-events: none !important;
}
.discord-btn:hover::before { left: 150% !important; }

.discord-btn:hover {
  background: linear-gradient(135deg, #7289DA 0%, #5865F2 100%) !important;
  box-shadow: 0 0 32px hsl(235 86% 65% / 65%), 0 0 60px hsl(235 86% 65% / 25%) !important;
  transform: translateY(-1px) !important;
  color: #ffffff !important;
}

.discord-btn__icon {
  width: 16px !important;
  height: 16px !important;
  flex: none !important;
  display: block !important;
  fill: #ffffff !important;
  color: #ffffff !important;
  animation: discordPulse 3s ease-in-out infinite !important;
}

.discord-btn__label {
  color: #ffffff !important;
  font-family: 'Odibee Sans', sans-serif !important;
  font-size: 11px !important;
  letter-spacing: 0.1em !important;
  line-height: 1 !important;
}

/* Mobile — ocultar texto, solo icono */
@media (max-width: 960px) {
  .discord-btn {
    padding: 0 10px !important;
    width: var(--btn-size) !important;
    justify-content: center !important;
  }
  .discord-btn__label {
    display: none !important;
  }
  .discord-btn__icon {
    width: 18px !important;
    height: 18px !important;
  }
}




/* ============================================================
   RS ELITE — PACKAGE PAGE REDESIGN
   Añade al final de tu styles.css en Tebex
   ============================================================ */

/* ══ KEYFRAMES ══ */
@keyframes pkgScan {
  0%   { transform: translateY(-100%); opacity: 0; }
  15%  { opacity: 0.5; }
  85%  { opacity: 0.5; }
  100% { transform: translateY(500%); opacity: 0; }
}
@keyframes pkgLineTrace {
  from { clip-path: inset(0 100% 0 0); opacity: 0; }
  10%  { opacity: 0.5; }
  to   { clip-path: inset(0 0% 0 0);   opacity: 0.5; }
}
@keyframes pkgCorner {
  0%, 100% { opacity: 0.45; }
  50%       { opacity: 1; }
}
@keyframes pkgDotBlink {
  0%, 45%, 55%, 100% { opacity: 1; }
  50%               { opacity: 0; }
}
@keyframes pkgFadeUp {
  from { opacity: 0; transform: translateY(18px); filter: blur(3px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0); }
}
@keyframes pkgImgReveal {
  from { opacity: 0; transform: scale(0.97); }
  to   { opacity: 1; transform: scale(1); }
}

/* ══════════════════════════════════════════════════════════
   WRAPPER PÁGINA
   ══════════════════════════════════════════════════════════ */
.pkg-page {
  /* Forzar sin sidebar — siempre full width */
  display: block !important;
  grid-template-columns: unset !important;
  max-width: var(--content-inner-width) !important;
  margin: 0 auto !important;
  padding-top: 0 !important;
}

/* Ocultar sidebar en página de producto */
.pkg-page .store-sidebar { display: none !important; }

/* ══════════════════════════════════════════════════════════
   BANNER DE CATEGORÍA
   ══════════════════════════════════════════════════════════ */
.pkg-banner {
  position: relative;
  height: 72px;
  margin-bottom: 28px;
  overflow: hidden;

  background:
    linear-gradient(90deg,
      hsl(170 100% 5% / 70%) 0%,
      hsl(330 80% 5% / 50%) 50%,
      hsl(43 100% 5% / 60%) 100%
    );
  border: 1px solid hsl(170 100% 50% / 14%);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  backdrop-filter: blur(20px) saturate(150%);
  animation: pkgFadeUp 0.6s ease both;
}

/* Decoración HUD del banner */
.pkg-banner__hud { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.pb-tl { position: absolute; top:0; left:0; width:14px; height:14px; border-top:2px solid #00f5d4; border-left:2px solid #00f5d4; animation: pkgCorner 3s ease-in-out infinite; }
.pb-tr { position: absolute; top:0; right:0; width:14px; height:14px; border-top:2px solid #ff2d78; border-right:2px solid #ff2d78; animation: pkgCorner 3s ease-in-out infinite .9s; }
.pb-bl { position: absolute; bottom:0; left:0; width:14px; height:14px; border-bottom:2px solid #ffd166; border-left:2px solid #ffd166; animation: pkgCorner 3s ease-in-out infinite 1.8s; }
.pb-br { position: absolute; bottom:0; right:0; width:14px; height:14px; border-bottom:2px solid #ff2d78; border-right:2px solid #ff2d78; animation: pkgCorner 3s ease-in-out infinite 2.7s; }
.pb-line-top { position: absolute; top:0; left:16px; right:16px; height:1px; background:linear-gradient(90deg,transparent,#00f5d4 30%,#ff2d78 65%,#ffd166 85%,transparent); animation: pkgLineTrace 1.2s ease .1s both; }
.pb-line-bot { position: absolute; bottom:0; left:16px; right:16px; height:1px; background:linear-gradient(90deg,transparent,#ffd166 30%,#ff2d78 60%,#00f5d4 85%,transparent); animation: pkgLineTrace 1.2s ease .3s both; }
.pb-scan { position: absolute; top:0; left:0; width:80px; height:100%; background:linear-gradient(90deg,transparent,hsl(170 100% 50%/6%),transparent); animation: pkgScan 5s ease-in-out 2s infinite; }

/* Contenido del banner */
.pkg-banner__content {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; padding: 0 24px;
}
.pkg-banner__badge {
  display: inline-flex; align-items: center; gap: 8px;
  height: 22px; padding: 0 12px;
  background: hsl(170 100% 4% / 70%);
  border: 1px solid hsl(170 100% 50% / 22%);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  font-family: 'Odibee Sans', sans-serif;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: #00f5d4;
}
.pbb-dot {
  width: 5px; height: 5px; border-radius: 50%; flex: none;
  background: #00f5d4; box-shadow: 0 0 6px #00f5d4;
  animation: pkgDotBlink 2s ease-in-out infinite;
  display: inline-block;
}
.pkg-back-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Odibee Sans', sans-serif;
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: hsl(170 100% 50% / 50%);
  transition: color 0.2s ease;
  text-decoration: none;
}
.pkg-back-link:hover { color: #00f5d4; }
.pbl-arrow { font-size: 16px; line-height: 1; }

/* ══════════════════════════════════════════════════════════
   MAIN PRODUCTO
   ══════════════════════════════════════════════════════════ */
.pkg-main {
  padding: 0 !important;
  max-width: 100% !important;
}

/* ══ CARD PRODUCTO FULL ══ */
.pkg-full {
  position: relative;
  display: grid !important;
  grid-template-columns: minmax(320px, 480px) 1fr !important;
  grid-template-rows: auto !important;
  gap: 0 40px !important;
  align-items: start !important;

  padding: 32px !important;
  background: hsl(270 22% 4% / 70%) !important;
  border: 1px solid hsl(170 100% 50% / 12%) !important;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px)) !important;
  backdrop-filter: blur(24px) saturate(150%) !important;
  animation: pkgFadeUp 0.7s ease 0.2s both !important;
}
.pkg-full:hover {
  border-color: hsl(170 100% 50% / 20%) !important;
}

/* Esquinas HUD del card */
.pkg-hud-corners { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.phc-tl { position: absolute; top:0; left:0; width:16px; height:16px; border-top:2px solid #00f5d4; border-left:2px solid #00f5d4; animation: pkgCorner 4s ease-in-out infinite; }
.phc-tr { position: absolute; top:0; right:0; width:16px; height:16px; border-top:2px solid #ff2d78; border-right:2px solid #ff2d78; animation: pkgCorner 4s ease-in-out infinite 1s; }
.phc-bl { position: absolute; bottom:0; left:0; width:16px; height:16px; border-bottom:2px solid #ffd166; border-left:2px solid #ffd166; animation: pkgCorner 4s ease-in-out infinite 2s; }
.phc-br { position: absolute; bottom:0; right:0; width:16px; height:16px; border-bottom:2px solid #ff2d78; border-right:2px solid #ff2d78; animation: pkgCorner 4s ease-in-out infinite 3s; }

/* ══ COLUMNA MEDIA (izquierda) ══ */
.pkg-col-media {
  display: flex; flex-direction: column; gap: 16px;
  position: relative; z-index: 2;
}

/* Imagen */
.pkg-img-wrap {
  position: relative; overflow: hidden;
  border: 1px solid hsl(170 100% 50% / 12%);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  animation: pkgImgReveal 0.8s ease 0.4s both;
}
.pkg-img-scan {
  position: absolute; top:0; left:0; right:0; height:40%;
  background: linear-gradient(180deg, hsl(170 100% 50%/8%) 0%, transparent 100%);
  animation: pkgScan 6s ease-in-out 1s infinite;
  pointer-events: none; z-index: 2;
}
.pkg-image {
  display: block !important; width: 100% !important;
  max-height: 340px !important; object-fit: cover !important;
  transition: transform 0.4s ease, filter 0.3s ease !important;
  filter: brightness(0.9) saturate(0.85) !important;
}
.pkg-img-wrap:hover .pkg-image {
  transform: scale(1.03) !important;
  filter: brightness(1) saturate(1) !important;
}
.pkg-img-default {
  width: 100% !important; aspect-ratio: 16/10 !important;
  background: hsl(270 25% 7% / 80%) !important;
}

/* Acciones (precio + botón) */
.pkg-actions-wrap {
  position: relative; z-index: 2;
}
.pkg-actions-wrap .store-product-full .actions,
.pkg-actions-wrap .actions {
  flex-direction: column !important;
}
.pkg-actions-wrap .price strong {
  font-size: 32px !important;
  color: #ffd166 !important;
  text-shadow: 0 0 14px hsl(43 100% 55% / 50%) !important;
  font-family: 'Odibee Sans', sans-serif !important;
}
.pkg-actions-wrap .btn-primary {
  width: 100% !important;
  height: 48px !important; line-height: 48px !important;
  font-size: 14px !important;
  letter-spacing: 0.12em !important;
}

/* ══ COLUMNA INFO (derecha) ══ */
.pkg-col-info {
  display: flex; flex-direction: column; gap: 16px;
  position: relative; z-index: 2;
  min-width: 0;
}

/* Título mobile (oculto en desktop) */
.pkg-title-mobile { display: none !important; }

/* Título desktop */
.pkg-title {
  font-family: 'Odibee Sans', sans-serif !important;
  font-size: clamp(24px, 3vw, 42px) !important;
  font-weight: 400 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: #ffffff !important;
  line-height: 1.1 !important;
  margin: 0 !important;
  animation: pkgFadeUp 0.7s ease 0.35s both !important;
}

/* Separador HUD */
.pkg-divider {
  height: 1px;
  background: linear-gradient(90deg, #00f5d4, #ff2d78 50%, transparent);
  opacity: 0.35;
  margin-bottom: 4px;
  animation: pkgLineTrace 1s ease 0.6s both;
}

/* Descripción — ancho COMPLETO sin restricción */
.pkg-descr {
  font-size: 14px !important;
  line-height: 1.8 !important;
  color: #b8a8c8 !important;
  max-width: 100% !important;
  width: 100% !important;
  animation: pkgFadeUp 0.7s ease 0.5s both !important;
}

/* Media slider dentro de pkg */
.pkg-col-media .media-slider { width: 100% !important; }

/* ══ BOTÓN VOLVER (bottom) ══ */
.pkg-back-bottom {
  margin: 28px 0 0 !important;
  --btn-icon: url("https://template-assets.tebex.io/images/chevron.svg");
}
.pkg-back-bottom::before { rotate: 90deg; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — tablet / mobile
   ══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .pkg-full {
    grid-template-columns: 1fr !important;
    gap: 24px 0 !important;
    padding: 20px !important;
  }
  .pkg-title-mobile { display: block !important; }
  .pkg-title-desktop { display: none !important; }
  .pkg-banner { height: 58px; }
  .pkg-banner__content { padding: 0 14px; }
}

@media (max-width: 600px) {
  .pkg-banner__badge { font-size: 8px; padding: 0 8px; }
  .pkg-full { padding: 14px !important; }
  .pkg-actions-wrap .price strong { font-size: 26px !important; }
}






/* ============================================================
   RS ELITE — VIDEO PREVIEW MODAL SYSTEM
   Medal.tv embed con efecto HUD glassmorphism
   Pega esto al FINAL de tu styles.css en Tebex
   ============================================================ */

/* ══ KEYFRAMES ══ */
@keyframes vidModalIn {
  from { opacity: 0; transform: scale(0.94); filter: blur(6px); }
  to   { opacity: 1; transform: scale(1);    filter: blur(0); }
}
@keyframes vidOverlayIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes vidScanLine {
  0%   { transform: translateY(-100%); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(800%); opacity: 0; }
}
@keyframes vidCornerBlink {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}
@keyframes vidLineTrace {
  from { clip-path: inset(0 100% 0 0); opacity: 0; }
  10%  { opacity: 0.6; }
  to   { clip-path: inset(0 0% 0 0);   opacity: 0.6; }
}
@keyframes vidBtnPulse {
  0%, 100% {
    box-shadow: 0 0 16px hsl(330 100% 57% / 30%),
                inset 0 0 0 1px hsl(330 100% 57% / 20%);
  }
  50% {
    box-shadow: 0 0 32px hsl(330 100% 57% / 60%),
                0 0 60px hsl(330 100% 57% / 20%),
                inset 0 0 0 1px hsl(330 100% 57% / 45%);
  }
}
@keyframes vidBtnIconSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes vidLoadDot {
  0%, 80%, 100% { transform: scale(0); opacity: 0; }
  40%           { transform: scale(1); opacity: 1; }
}

/* ══════════════════════════════════════════════════════════
   BOTÓN ▶ PREVIEW VIDEO — en descripción del producto
   ══════════════════════════════════════════════════════════ */
.vid-preview-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  height: 42px !important;
  padding: 0 20px !important;
  margin: 18px 0 !important;
  cursor: pointer !important;

  /* Estilo HUD rosa */
  background: linear-gradient(135deg, hsl(330 80% 8% / 85%), hsl(330 60% 5% / 90%)) !important;
  border: 1px solid hsl(330 100% 57% / 35%) !important;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px)) !important;
  backdrop-filter: blur(12px) !important;

  font-family: 'Odibee Sans', sans-serif !important;
  font-size: 12px !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: #ff2d78 !important;
  text-decoration: none !important;

  position: relative !important;
  overflow: hidden !important;
  transition: all 0.25s ease !important;
  animation: vidBtnPulse 3s ease-in-out infinite !important;
  user-select: none !important;
}

/* Shimmer interno */
.vid-preview-btn::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important; left: -100% !important;
  width: 60% !important; height: 100% !important;
  background: linear-gradient(90deg, transparent, rgba(255,45,120,0.08), transparent) !important;
  transition: left 0.5s ease !important;
  pointer-events: none !important;
}
.vid-preview-btn:hover::before { left: 150% !important; }

/* Esquinas HUD del botón */
.vid-preview-btn::after {
  content: '' !important;
  position: absolute !important;
  top: 0 !important; left: 0 !important;
  width: 8px !important; height: 8px !important;
  border-top: 1px solid hsl(330 100% 57% / 60%) !important;
  border-left: 1px solid hsl(330 100% 57% / 60%) !important;
  pointer-events: none !important;
}

.vid-preview-btn:hover {
  background: linear-gradient(135deg, hsl(330 80% 12% / 90%), hsl(330 60% 8% / 95%)) !important;
  border-color: hsl(330 100% 57% / 65%) !important;
  color: #ff6ea0 !important;
  transform: translateY(-2px) !important;
  animation: none !important;
  box-shadow: 0 0 40px hsl(330 100% 57% / 40%), 0 4px 20px rgba(0,0,0,0.4) !important;
}

/* Icono ▶ */
.vid-preview-btn .vpb-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 22px !important;
  height: 22px !important;
  border-radius: 50% !important;
  background: hsl(330 100% 57% / 18%) !important;
  border: 1px solid hsl(330 100% 57% / 40%) !important;
  flex: none !important;
  font-size: 10px !important;
  line-height: 1 !important;
  transition: all 0.2s ease !important;
}
.vid-preview-btn:hover .vpb-icon {
  background: hsl(330 100% 57% / 30%) !important;
  box-shadow: 0 0 10px hsl(330 100% 57% / 50%) !important;
}

/* Texto */
.vid-preview-btn .vpb-text {
  color: inherit !important;
  font-family: inherit !important;
  font-size: inherit !important;
  letter-spacing: inherit !important;
}

/* Badge "MEDAL.TV" */
.vid-preview-btn .vpb-badge {
  margin-left: 4px !important;
  display: inline-flex !important;
  align-items: center !important;
  height: 16px !important;
  padding: 0 6px !important;
  background: hsl(43 100% 5% / 70%) !important;
  border: 1px solid hsl(43 100% 55% / 30%) !important;
  clip-path: polygon(0 0, calc(100% - 5px) 0, 100% 5px, 100% 100%, 5px 100%, 0 calc(100% - 5px)) !important;
  font-size: 7px !important;
  letter-spacing: 0.18em !important;
  color: #ffd166 !important;
}

/* ══════════════════════════════════════════════════════════
   OVERLAY / BACKDROP
   ══════════════════════════════════════════════════════════ */
.vid-modal-overlay {
  position: fixed !important;
  inset: 0 !important;
  z-index: 99999 !important;
  background: hsl(270 30% 2% / 92%) !important;
  backdrop-filter: blur(8px) saturate(120%) !important;
  -webkit-backdrop-filter: blur(8px) saturate(120%) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 20px !important;
  animation: vidOverlayIn 0.25s ease both !important;
  cursor: pointer !important;
}
.vid-modal-overlay.hidden {
  display: none !important;
}

/* ══════════════════════════════════════════════════════════
   MODAL CONTAINER — HUD glassmorphism
   ══════════════════════════════════════════════════════════ */
.vid-modal {
  position: relative !important;
  width: 100% !important;
  max-width: 900px !important;
  cursor: default !important;

  background: hsl(270 22% 4% / 88%) !important;
  border: 1px solid hsl(330 100% 57% / 20%) !important;
  clip-path: polygon(
    0 0,
    calc(100% - 20px) 0,
    100% 20px,
    100% 100%,
    20px 100%,
    0 calc(100% - 20px)
  ) !important;
  backdrop-filter: blur(28px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(28px) saturate(160%) !important;
  box-shadow:
    0 0 60px hsl(330 100% 57% / 12%),
    0 0 120px hsl(170 100% 50% / 6%),
    0 24px 80px rgba(0,0,0,0.7) !important;

  animation: vidModalIn 0.35s cubic-bezier(0.34, 1.2, 0.64, 1) both !important;
  overflow: hidden !important;
}

/* ══ DECORACIÓN HUD ══ */
.vid-modal-hud {
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  z-index: 2 !important;
}

/* Esquinas */
.vm-tl, .vm-tr, .vm-bl, .vm-br {
  position: absolute !important;
  width: 18px !important; height: 18px !important;
  display: block !important;
  animation: vidCornerBlink 3s ease-in-out infinite !important;
}
.vm-tl { top:0; left:0; border-top: 2px solid #00f5d4 !important; border-left: 2px solid #00f5d4 !important; }
.vm-tr { top:0; right:0; border-top: 2px solid #ff2d78 !important; border-right: 2px solid #ff2d78 !important; animation-delay: 0.75s !important; }
.vm-bl { bottom:0; left:0; border-bottom: 2px solid #ffd166 !important; border-left: 2px solid #ffd166 !important; animation-delay: 1.5s !important; }
.vm-br { bottom:0; right:0; border-bottom: 2px solid #00f5d4 !important; border-right: 2px solid #00f5d4 !important; animation-delay: 2.25s !important; }

/* Líneas top/bottom */
.vm-line-top {
  position: absolute !important; top:0; left:22px; right:22px; height:1px !important;
  background: linear-gradient(90deg, transparent, #00f5d4 30%, #ff2d78 65%, #ffd166 85%, transparent) !important;
  animation: vidLineTrace 1s ease 0.1s both !important;
}
.vm-line-bot {
  position: absolute !important; bottom:0; left:22px; right:22px; height:1px !important;
  background: linear-gradient(90deg, transparent, #ffd166 30%, #ff2d78 60%, #00f5d4 85%, transparent) !important;
  animation: vidLineTrace 1s ease 0.3s both !important;
}

/* Scan vertical */
.vm-scan {
  position: absolute !important; left:0; right:0; height:80px !important;
  background: linear-gradient(180deg, transparent, hsl(170 100% 50% / 5%) 50%, transparent) !important;
  animation: vidScanLine 5s ease-in-out 1s infinite !important;
  pointer-events: none !important;
}

/* ══ HEADER DEL MODAL ══ */
.vid-modal-header {
  position: relative !important;
  z-index: 3 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 14px 18px !important;
  border-bottom: 1px solid hsl(330 100% 57% / 12%) !important;
  background: hsl(330 80% 3% / 50%) !important;
}

.vid-modal-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  height: 22px !important;
  padding: 0 12px !important;
  background: hsl(330 100% 5% / 70%) !important;
  border: 1px solid hsl(330 100% 57% / 25%) !important;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px)) !important;
  font-family: 'Odibee Sans', sans-serif !important;
  font-size: 9px !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: #ff2d78 !important;
}

.vmb-dot {
  width: 5px !important; height: 5px !important;
  border-radius: 50% !important;
  background: #ff2d78 !important;
  box-shadow: 0 0 6px #ff2d78 !important;
  display: inline-block !important;
  flex: none !important;
  animation: vidCornerBlink 1.5s ease-in-out infinite !important;
}

.vid-modal-title {
  font-family: 'Odibee Sans', sans-serif !important;
  font-size: 11px !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: hsl(170 100% 50% / 55%) !important;
  flex: 1 !important;
  text-align: center !important;
  padding: 0 12px !important;
}

/* Botón cerrar */
.vid-modal-close {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 30px !important; height: 30px !important;
  cursor: pointer !important;
  background: hsl(330 80% 8% / 70%) !important;
  border: 1px solid hsl(330 100% 57% / 25%) !important;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px)) !important;
  font-size: 14px !important;
  color: hsl(330 80% 70%) !important;
  transition: all 0.2s ease !important;
  line-height: 1 !important;
  flex: none !important;
}
.vid-modal-close:hover {
  background: hsl(330 80% 15% / 80%) !important;
  border-color: hsl(330 100% 57% / 55%) !important;
  color: #ff2d78 !important;
  box-shadow: 0 0 14px hsl(330 100% 57% / 30%) !important;
}

/* ══ PLAYER WRAPPER ══ */
.vid-modal-player {
  position: relative !important;
  z-index: 1 !important;
  width: 100% !important;
  aspect-ratio: 16 / 9 !important;
  background: #000 !important;
  overflow: hidden !important;
}

.vid-modal-player iframe {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border: none !important;
  display: block !important;
}

/* Estado de carga */
.vid-modal-player .vid-loading {
  position: absolute !important;
  inset: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 16px !important;
  background: hsl(270 22% 3% / 95%) !important;
  z-index: 5 !important;
  transition: opacity 0.4s ease !important;
}
.vid-modal-player .vid-loading.hidden { opacity: 0; pointer-events: none !important; }

.vid-loading-dots {
  display: flex !important; gap: 8px !important; align-items: center !important;
}
.vid-loading-dots span {
  width: 8px !important; height: 8px !important;
  border-radius: 50% !important; display: block !important;
}
.vid-loading-dots span:nth-child(1) { background: #00f5d4 !important; animation: vidLoadDot 1.2s ease-in-out 0s infinite !important; }
.vid-loading-dots span:nth-child(2) { background: #ff2d78 !important; animation: vidLoadDot 1.2s ease-in-out 0.2s infinite !important; }
.vid-loading-dots span:nth-child(3) { background: #ffd166 !important; animation: vidLoadDot 1.2s ease-in-out 0.4s infinite !important; }

.vid-loading-text {
  font-family: 'Odibee Sans', sans-serif !important;
  font-size: 10px !important; letter-spacing: 0.2em !important;
  text-transform: uppercase !important; color: hsl(170 100% 50% / 40%) !important;
}

/* ══ FOOTER DEL MODAL ══ */
.vid-modal-footer {
  position: relative !important;
  z-index: 3 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 10px 18px !important;
  border-top: 1px solid hsl(170 100% 50% / 8%) !important;
  background: hsl(270 22% 3% / 60%) !important;
}

.vmf-label {
  font-family: 'Odibee Sans', sans-serif !important;
  font-size: 8px !important; letter-spacing: 0.2em !important;
  text-transform: uppercase !important; color: hsl(170 100% 50% / 30%) !important;
}
.vmf-brand {
  font-family: 'Odibee Sans', sans-serif !important;
  font-size: 8px !important; letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: #ffd166 !important;
  text-shadow: 0 0 8px hsl(43 100% 55% / 40%) !important;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 600px) {
  .vid-modal {
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px)) !important;
  }
  .vid-modal-overlay { padding: 10px !important; }
  .vid-preview-btn { font-size: 10px !important; padding: 0 14px !important; }
}

/* ══ REDUCED MOTION ══ */
@media (prefers-reduced-motion: reduce) {
  .vid-modal, .vid-modal *, .vid-preview-btn {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}





/* ============================================================
   RS ELITE — FIRMA FINAL (sin colores, discreta)
   Reemplaza cualquier CSS anterior de rebeca-signature
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

.rebeca-signature {
  width: 100%;
  padding: 7px var(--content-padding);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-bottom: 1px solid hsl(0 0% 100% / 3%);
}

.rebeca-sig-line {
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: hsl(0 0% 100% / 4%);
}

.rebeca-sig-name {
  font-family: 'Great Vibes', cursive;
  font-size: 13px;
  font-weight: 400;
  color: hsl(0 0% 100% / 12%);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .rebeca-sig-name { font-size: 11px; }
  .rebeca-sig-line { max-width: 30px; }
}








/* ============================================================
   RS ELITE — BOTÓN PATREON v4 — idéntico al Discord
   Reemplaza TODO el CSS anterior de patreon en Custom CSS
   ============================================================ */

@keyframes patreonGlow {
  0%, 100% { box-shadow: 0 0 14px hsl(14 93% 65% / 30%); }
  50%       { box-shadow: 0 0 28px hsl(14 93% 65% / 60%), 0 0 50px hsl(14 93% 65% / 20%); }
}
@keyframes patreonPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.7; }
}

.patreon-btn {
  display: flex !important;
  align-items: center !important;
  gap: 7px !important;
  height: var(--btn-size) !important;
  padding: 0 14px !important;
  flex: none !important;

  background: linear-gradient(135deg, #f96854 0%, #e05a47 100%) !important;
  color: #ffffff !important;
  clip-path: var(--hud-clip-sm) !important;

  font-family: 'Odibee Sans', sans-serif !important;
  font-size: 11px !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  white-space: nowrap !important;

  box-shadow: 0 0 18px hsl(14 93% 65% / 35%) !important;
  transition: all 0.2s ease !important;
  animation: patreonGlow 3s ease-in-out infinite !important;
  position: relative !important;
  overflow: hidden !important;
  cursor: pointer !important;
}

/* Shimmer interno — igual que Discord */
.patreon-btn::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important; left: -100% !important;
  width: 60% !important; height: 100% !important;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent) !important;
  transition: left 0.4s ease !important;
  pointer-events: none !important;
}
.patreon-btn:hover::before { left: 150% !important; }

.patreon-btn:hover {
  background: linear-gradient(135deg, #ff7a65 0%, #f96854 100%) !important;
  box-shadow: 0 0 32px hsl(14 93% 65% / 65%), 0 0 60px hsl(14 93% 65% / 25%) !important;
  transform: translateY(-1px) !important;
  color: #ffffff !important;
}

.patreon-btn__icon {
  width: 16px !important;
  height: 16px !important;
  flex: none !important;
  display: block !important;
  fill: #ffffff !important;
  animation: patreonPulse 3s ease-in-out infinite !important;
}

.patreon-btn__label {
  color: #ffffff !important;
  font-family: 'Odibee Sans', sans-serif !important;
  font-size: 11px !important;
  letter-spacing: 0.1em !important;
  line-height: 1 !important;
}

/* Mobile — igual que Discord */
@media (max-width: 960px) {
  .patreon-btn {
    padding: 0 10px !important;
    width: var(--btn-size) !important;
    justify-content: center !important;
  }
  .patreon-btn__label { display: none !important; }
  .patreon-btn__icon { width: 18px !important; height: 18px !important; }
}