/**
 * ================================================================
 * NASUS RP STORE · THEME CSS
 * Sistema visual completo · Editorial gaming
 * ================================================================
 */

/* ============================================================
 * 1. RESET & BASE
 * ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; min-height: 100vh; line-height: 1.6; overflow-x: hidden; }
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
button { font-family: inherit; cursor: pointer; border: none; background: none; padding: 0; color: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }
ul, ol { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 400; line-height: 1.2; }
p { margin: 0 0 1em; }
.screen-reader-text { position: absolute !important; clip: rect(1px,1px,1px,1px); width: 1px; height: 1px; overflow: hidden; }
.nx-skip-link { position: absolute; top: -100px; left: 8px; background: var(--nx-accent); color: var(--nx-bg); padding: 12px 16px; z-index: 99999; }
.nx-skip-link:focus { top: 8px; }

/* Selection */
::selection { background: var(--nx-accent); color: var(--nx-bg); }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--nx-bg-2); }
::-webkit-scrollbar-thumb { background: var(--nx-line-2); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--nx-accent); }

/* ============================================================
 * 2. NOISE & SCAN LINES (textura de fondo)
 * ============================================================ */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9990;
    opacity: 0.06;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9989;
    background: repeating-linear-gradient(0deg, transparent 0, transparent 2px, rgba(255,255,255,0.012) 2px, rgba(255,255,255,0.012) 4px);
}

/* ============================================================
 * 3. CONTAINER & LAYOUT
 * ============================================================ */
.nx-container { max-width: 1400px; margin: 0 auto; padding: 0 32px; }
.nx-content-wrap { min-height: 60vh; }

/* ============================================================
 * 4. ANNOUNCEMENT BAR (top scrolling)
 * ============================================================ */
.nx-announcement {
    background: var(--nx-accent);
    color: var(--nx-bg);
    padding: 8px 0;
    overflow: hidden;
    position: relative;
    font-family: var(--nx-font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.nx-announcement-track {
    display: flex;
    gap: 30px;
    white-space: nowrap;
    animation: nxScrollX 25s linear infinite;
    width: max-content;
}
.nx-announcement-sep { opacity: 0.5; }
@keyframes nxScrollX { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
 * 5. HEADER
 * ============================================================ */
.nx-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(7, 7, 12, 0.78);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border-bottom: 1px solid var(--nx-line);
    transition: background 0.3s ease, border-color 0.3s ease;
}
.nx-header.nx-scrolled { background: rgba(7, 7, 12, 0.95); border-bottom-color: var(--nx-line-2); }
.nx-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 18px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Logo */
.nx-logo a { display: inline-flex; align-items: center; gap: 10px; }
.nx-logo img { max-height: 40px; width: auto; }
.nx-logo-mark { display: flex; align-items: center; gap: 10px; }
.nx-logo-icon {
    width: 34px; height: 34px;
    background: var(--nx-ink);
    color: var(--nx-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--nx-font-display);
    font-size: 22px;
    border-radius: 4px;
    transform: skew(-8deg);
    transition: background 0.3s ease;
}
.nx-logo-icon span { transform: skew(8deg); }
.nx-logo-mark:hover .nx-logo-icon { background: var(--nx-accent); }
.nx-logo-text {
    font-family: var(--nx-font-sans);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 2px;
    color: var(--nx-ink);
}
.nx-logo-text em { font-style: normal; color: var(--nx-accent); }

/* Nav main */
.nx-nav-main { flex: 1; display: flex; justify-content: center; }
.nx-nav-list {
    display: flex;
    gap: 4px;
    align-items: center;
}
.nx-nav-list > li > a {
    display: inline-block;
    padding: 10px 16px;
    color: var(--nx-ink);
    font-family: var(--nx-font-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}
.nx-nav-list > li > a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--nx-accent);
    transition: width 0.3s ease;
}
.nx-nav-list > li > a:hover { color: var(--nx-accent); }
.nx-nav-list > li > a:hover::after { width: calc(100% - 32px); }
.nx-nav-list > li.current-menu-item > a,
.nx-nav-list > li.current_page_item > a { color: var(--nx-accent); }
.nx-nav-list > li.current-menu-item > a::after { width: calc(100% - 32px); }

/* Submenu */
.nx-nav-list .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--nx-bg-2);
    border: 1px solid var(--nx-line);
    border-radius: 14px;
    padding: 10px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.nx-nav-list > li { position: relative; }
.nx-nav-list > li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nx-nav-list .sub-menu a {
    display: block;
    padding: 10px 14px;
    color: var(--nx-ink-dim);
    font-size: 13px;
    border-radius: 8px;
    transition: all 0.2s ease;
}
.nx-nav-list .sub-menu a:hover {
    background: var(--nx-bg-3);
    color: var(--nx-accent);
}

/* Header actions */
.nx-header-actions { display: flex; align-items: center; gap: 8px; }
.nx-btn-icon {
    width: 40px; height: 40px;
    border: 1px solid var(--nx-line);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nx-ink);
    transition: all 0.3s ease;
}
.nx-btn-icon:hover {
    background: var(--nx-accent);
    color: var(--nx-bg);
    border-color: var(--nx-accent);
}

/* Cart button */
.nx-cart-btn {
    margin-left: 8px;
    padding: 10px 18px 10px 16px;
    background: var(--nx-ink);
    color: var(--nx-bg);
    border-radius: 100px;
    font-family: var(--nx-font-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}
.nx-cart-btn:hover {
    background: var(--nx-accent);
    color: var(--nx-bg);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 240, 255, 0.4);
}
.nx-cart-count {
    background: var(--nx-bg);
    color: var(--nx-accent);
    padding: 2px 8px;
    border-radius: 100px;
    font-family: var(--nx-font-mono);
    font-size: 10px;
    font-weight: 700;
    min-width: 26px;
    text-align: center;
}

/* Mobile menu toggle */
.nx-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--nx-line-2);
    border-radius: 50%;
    background: transparent;
    color: var(--nx-ink);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    flex-shrink: 0;
}
.nx-menu-toggle:hover {
    border-color: var(--nx-accent);
    color: var(--nx-accent);
}
.nx-menu-icon { width: 18px; height: 14px; position: relative; display: block; }
.nx-menu-icon span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.nx-menu-icon span:nth-child(1) { top: 0; }
.nx-menu-icon span:nth-child(2) { top: 6px; width: 70%; }
.nx-menu-icon span:nth-child(3) { top: 12px; }

/* Search overlay */
.nx-search-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(7, 7, 12, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: flex-start;
    padding-top: 20vh;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.nx-search-overlay[data-nx-open] {
    opacity: 1;
    pointer-events: auto;
}
.nx-search-overlay[hidden] { display: none !important; }
.nx-search-inner {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 32px;
}
.nx-search-form {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid var(--nx-accent);
    padding-bottom: 16px;
}
#nx-search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--nx-ink);
    font-family: var(--nx-font-display);
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 400;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    padding: 8px 0;
}
#nx-search-input::placeholder { color: var(--nx-ink-low); }
.nx-search-submit, .nx-search-close {
    background: transparent;
    color: var(--nx-ink);
    padding: 12px;
    transition: color 0.3s ease;
}
.nx-search-submit:hover { color: var(--nx-accent); }
.nx-search-close:hover { color: var(--nx-accent-hot); }

/* Mobile menu drawer */
.nx-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 88%;
    max-width: 360px;
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(180deg, #0d0d15 0%, #07070c 100%);
    border-left: 1px solid var(--nx-line);
    z-index: 300;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.7);
}
.nx-mobile-menu[data-nx-open] { right: 0; }
.nx-mobile-menu[hidden] { display: none !important; }
.nx-mobile-menu-inner {
    padding: 20px 24px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 100%;
}

/* Backdrop oscuro detrás del drawer */
.nx-mobile-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 250;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}
.nx-mobile-backdrop[data-nx-open] { opacity: 1; }
.nx-mobile-backdrop[hidden] { display: none !important; }

/* Header del drawer */
.nx-mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--nx-line);
}
.nx-mobile-menu-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.nx-mobile-menu-logo .nx-logo-icon {
    width: 32px;
    height: 32px;
    background: var(--nx-accent);
    color: var(--nx-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--nx-font-display);
    font-size: 17px;
    border-radius: 8px;
    letter-spacing: 0;
}
.nx-mobile-menu-logo-text {
    font-family: var(--nx-font-display);
    font-size: 13px;
    color: var(--nx-ink);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1;
}
.nx-mobile-menu-logo-text em {
    color: var(--nx-accent);
    font-style: normal;
    opacity: 0.7;
}
.nx-mobile-menu-close {
    width: 36px;
    height: 36px;
    border: 1px solid var(--nx-line);
    background: transparent;
    border-radius: 50%;
    color: var(--nx-ink-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    flex-shrink: 0;
    padding: 0;
}
.nx-mobile-menu-close svg { width: 18px; height: 18px; }
.nx-mobile-menu-close:hover {
    border-color: var(--nx-accent-hot);
    color: var(--nx-accent-hot);
    transform: rotate(90deg);
}

/* Buscador */
.nx-mobile-search {
    display: flex;
    gap: 6px;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--nx-line);
    border-radius: 100px;
    padding: 4px 6px 4px 16px;
    transition: border-color 0.25s ease;
}
.nx-mobile-search:focus-within {
    border-color: var(--nx-accent);
    background: rgba(0, 240, 255, 0.04);
}
.nx-mobile-search input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--nx-ink);
    font-family: var(--nx-font-sans);
    font-size: 13px;
    padding: 8px 0;
    min-width: 0;
}
.nx-mobile-search input::placeholder {
    color: var(--nx-ink-low);
    font-weight: 400;
}
.nx-mobile-search button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--nx-accent);
    color: var(--nx-bg);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}
.nx-mobile-search button:hover { transform: scale(1.05); }
.nx-mobile-search button svg { width: 14px; height: 14px; }

/* Lista de navegación */
.nx-mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.nx-mobile-nav-list > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.nx-mobile-nav-list > li:last-child {
    border-bottom: none;
}

/* Fila del item: link + botón toggle */
.nx-mobile-nav-item-row {
    display: flex;
    align-items: stretch;
    gap: 4px;
    position: relative;
}
.nx-mobile-nav-list > li > .nx-mobile-nav-item-row > .nx-mobile-nav-link,
.nx-mobile-nav-list > li > a {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 13px 4px;
    font-family: var(--nx-font-sans);
    font-size: 15px;
    font-weight: 600;
    color: var(--nx-ink);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: color 0.2s ease, padding-left 0.25s ease;
    text-decoration: none;
    line-height: 1.2;
    position: relative;
    min-width: 0;
}
.nx-mobile-nav-list > li > .nx-mobile-nav-item-row > .nx-mobile-nav-link:hover,
.nx-mobile-nav-list > li > a:hover,
.nx-mobile-nav-list > li > .nx-mobile-nav-item-row > .nx-mobile-nav-link:focus,
.nx-mobile-nav-list > li > a:focus {
    color: var(--nx-accent);
    padding-left: 10px;
}

/* Botón toggle del submenú (chevron) */
.nx-submenu-toggle {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: var(--nx-ink-low);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.25s ease;
    align-self: center;
    padding: 0;
}
.nx-submenu-toggle svg {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nx-submenu-toggle:hover {
    background: rgba(0, 240, 255, 0.06);
    color: var(--nx-accent);
}
.nx-submenu-toggle[aria-expanded="true"] {
    color: var(--nx-accent);
}
.nx-submenu-toggle[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

/* Item activo */
.nx-mobile-nav-list > li.current-menu-item > .nx-mobile-nav-item-row > .nx-mobile-nav-link,
.nx-mobile-nav-list > li.current_page_item > .nx-mobile-nav-item-row > .nx-mobile-nav-link,
.nx-mobile-nav-list > li.current-menu-item > a,
.nx-mobile-nav-list > li.current_page_item > a {
    color: var(--nx-accent);
}
.nx-mobile-nav-list > li.current-menu-item > .nx-mobile-nav-item-row::before,
.nx-mobile-nav-list > li.current_page_item > .nx-mobile-nav-item-row::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 20px;
    background: var(--nx-accent);
    border-radius: 0 2px 2px 0;
}
.nx-mobile-nav-list > li.is-open > .nx-mobile-nav-item-row > .nx-mobile-nav-link {
    color: var(--nx-accent);
}

/* Submenús desplegables con animación */
.nx-mobile-nav-list .nx-submenu,
.nx-mobile-nav-list .sub-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 0 4px;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}
.nx-mobile-nav-list .nx-submenu[hidden] {
    display: none;
}
.nx-mobile-nav-list > li.is-open > .nx-submenu,
.nx-mobile-nav-list > li.is-open > .sub-menu {
    /* max-height se setea via JS con scrollHeight real */
}
.nx-mobile-nav-list .nx-submenu::before,
.nx-mobile-nav-list .sub-menu::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 8px;
    bottom: 12px;
    width: 1px;
    background: var(--nx-line);
}
.nx-mobile-nav-list .nx-submenu li,
.nx-mobile-nav-list .sub-menu li {
    border-bottom: none !important;
}
.nx-mobile-nav-list .nx-submenu a,
.nx-mobile-nav-list .sub-menu a {
    display: block;
    font-size: 13px;
    font-family: var(--nx-font-sans);
    font-weight: 500;
    text-transform: none;
    color: var(--nx-ink-dim);
    padding: 10px 14px 10px 28px;
    letter-spacing: 0.02em;
    transition: all 0.2s ease;
    border-radius: 6px;
    text-decoration: none;
    position: relative;
}
.nx-mobile-nav-list .nx-submenu a::before,
.nx-mobile-nav-list .sub-menu a::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 50%;
    width: 8px;
    height: 1px;
    background: var(--nx-line);
    transform: translateY(-50%);
    transition: all 0.2s ease;
}
.nx-mobile-nav-list .nx-submenu a:hover,
.nx-mobile-nav-list .sub-menu a:hover,
.nx-mobile-nav-list .nx-submenu a:focus,
.nx-mobile-nav-list .sub-menu a:focus {
    color: var(--nx-ink);
    background: rgba(255, 255, 255, 0.03);
    padding-left: 32px;
}
.nx-mobile-nav-list .nx-submenu a:hover::before,
.nx-mobile-nav-list .sub-menu a:hover::before {
    width: 12px;
    background: var(--nx-accent);
}
.nx-mobile-nav-list .nx-submenu li:last-child a,
.nx-mobile-nav-list .sub-menu li:last-child a {
    margin-bottom: 4px;
}

/* ============================================================
 * FIBOSEARCH - Ajustes visuales para que combine con el tema
 * ============================================================ */
.nx-fibosearch-wrap {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
}
.nx-fibosearch-wrap .dgwt-wcas-search-wrapp {
    width: 100% !important;
    max-width: 100% !important;
}
.nx-fibosearch-wrap .dgwt-wcas-search-input {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid var(--nx-line) !important;
    color: var(--nx-ink) !important;
    border-radius: 100px !important;
    padding: 14px 48px 14px 22px !important;
    font-family: var(--nx-font-sans) !important;
    font-size: 15px !important;
    height: auto !important;
    transition: all 0.25s ease !important;
}
.nx-fibosearch-wrap .dgwt-wcas-search-input:focus {
    border-color: var(--nx-accent) !important;
    background: rgba(0, 240, 255, 0.04) !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.12) !important;
}
.nx-fibosearch-wrap .dgwt-wcas-search-input::placeholder {
    color: var(--nx-ink-low) !important;
    font-weight: 400 !important;
}
.nx-fibosearch-wrap .dgwt-wcas-sf-wrapp button[type="submit"],
.nx-fibosearch-wrap .dgwt-wcas-search-submit {
    background: var(--nx-accent) !important;
    color: var(--nx-bg) !important;
    border: none !important;
    border-radius: 50% !important;
    right: 6px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 38px !important;
    height: 38px !important;
}
.nx-fibosearch-wrap .dgwt-wcas-search-icon svg,
.nx-fibosearch-wrap .dgwt-wcas-search-icon-handler svg {
    fill: var(--nx-bg) !important;
}
.nx-fibosearch-wrap .js-dgwt-wcas-search-preloader {
    color: var(--nx-accent) !important;
}

/* Suggestions dropdown */
.dgwt-wcas-suggestions-wrapp {
    background: var(--nx-bg-2) !important;
    border: 1px solid var(--nx-line) !important;
    border-radius: 16px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6) !important;
    margin-top: 8px !important;
    overflow: hidden !important;
}
.dgwt-wcas-suggestion {
    background: transparent !important;
    color: var(--nx-ink) !important;
    border-bottom: 1px solid var(--nx-line) !important;
    padding: 12px 16px !important;
    transition: background 0.2s ease !important;
}
.dgwt-wcas-suggestion:last-child {
    border-bottom: none !important;
}
.dgwt-wcas-suggestion:hover,
.dgwt-wcas-suggestion.dgwt-wcas-suggestion-selected,
.dgwt-wcas-suggestion[aria-selected="true"] {
    background: rgba(0, 240, 255, 0.08) !important;
}
.dgwt-wcas-st-title,
.dgwt-wcas-sp-title {
    color: var(--nx-ink) !important;
    font-family: var(--nx-font-sans) !important;
    font-weight: 600 !important;
}
.dgwt-wcas-st-price,
.dgwt-wcas-sp-price {
    color: var(--nx-accent) !important;
    font-family: var(--nx-font-mono) !important;
    font-weight: 700 !important;
}
.dgwt-wcas-st-price ins,
.dgwt-wcas-sp-price ins {
    color: var(--nx-accent) !important;
    text-decoration: none !important;
    background: transparent !important;
}
.dgwt-wcas-st-price del,
.dgwt-wcas-sp-price del {
    color: var(--nx-ink-low) !important;
    opacity: 0.6 !important;
}
.dgwt-wcas-st-excerpt,
.dgwt-wcas-sp-title {
    color: var(--nx-ink-dim) !important;
}
/* Categorías dentro de FiboSearch */
.dgwt-wcas-suggestion-headline {
    background: var(--nx-bg-3) !important;
    color: var(--nx-ink-dim) !important;
    font-family: var(--nx-font-mono) !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    padding: 10px 16px !important;
    border-bottom: 1px solid var(--nx-line) !important;
}
/* Ver todos los resultados (footer) */
.dgwt-wcas-sf-results,
.dgwt-wcas-details-more-products {
    background: var(--nx-accent) !important;
    color: var(--nx-bg) !important;
    font-family: var(--nx-font-mono) !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
}

/* FiboSearch dentro del drawer mobile: ocultar sugerencias si no hay espacio */
.nx-mobile-menu .nx-fibosearch-wrap {
    max-width: 100%;
}
.nx-mobile-menu .dgwt-wcas-search-input {
    padding: 11px 44px 11px 18px !important;
    font-size: 13px !important;
}
.nx-mobile-menu .dgwt-wcas-sf-wrapp button[type="submit"],
.nx-mobile-menu .dgwt-wcas-search-submit {
    width: 32px !important;
    height: 32px !important;
    right: 4px !important;
}

/* Sección de utilidad */
.nx-mobile-menu-utility {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--nx-line);
}
.nx-mobile-menu-utility::before {
    content: 'MI ESPACIO';
    display: block;
    font-family: var(--nx-font-mono);
    font-size: 10px;
    font-weight: 600;
    color: var(--nx-ink-low);
    letter-spacing: 2px;
    margin-bottom: 8px;
    padding: 0 4px;
}
.nx-mobile-util-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--nx-line);
    border-radius: 10px;
    color: var(--nx-ink);
    font-family: var(--nx-font-sans);
    font-size: 13px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    text-decoration: none;
    transition: all 0.25s ease;
}
.nx-mobile-util-link:hover {
    border-color: var(--nx-accent);
    background: rgba(0, 240, 255, 0.04);
    color: var(--nx-ink);
}
.nx-mobile-util-link svg {
    color: var(--nx-accent);
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}
.nx-mobile-util-link span:first-of-type { flex: 1; }
.nx-mobile-util-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 7px;
    background: var(--nx-accent);
    color: var(--nx-bg);
    border-radius: 100px;
    font-family: var(--nx-font-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0;
}

/* ============================================================
 * 6. SECTION HELPERS (label, title, lead)
 * ============================================================ */
.nx-section {
    padding: 120px 32px;
    position: relative;
    width: 100vw !important;
    max-width: 100% !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    box-sizing: border-box;
}
.nx-section-label {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--nx-font-mono);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--nx-ink-dim);
    margin-bottom: 32px;
    font-weight: 600;
}
.nx-section-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--nx-accent);
}
.nx-section-number { color: var(--nx-accent); font-weight: 600; }

.nx-section-huge-title {
    font-family: var(--nx-font-display);
    font-size: clamp(60px, 10vw, 160px);
    font-weight: 400;
    line-height: 0.85;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: var(--nx-ink);
}
.nx-section-huge-title .nx-italic { font-style: italic; color: var(--nx-accent); }
.nx-section-huge-title .nx-outline { -webkit-text-stroke: 1.5px var(--nx-ink); color: transparent; }

.nx-section-lead {
    font-family: var(--nx-font-sans);
    font-size: 18px;
    line-height: 1.55;
    color: var(--nx-ink-dim);
    max-width: 540px;
    margin-bottom: 60px;
}

/* Globally applied utility classes */
.nx-italic { font-style: italic; color: var(--nx-accent); }
.nx-outline { -webkit-text-stroke: 1.5px var(--nx-ink); color: transparent; }
.nx-accent { color: var(--nx-accent); }

/* ============================================================
 * 7. BUTTONS
 * ============================================================ */
.nx-btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 30px;
    background: var(--nx-ink);
    color: var(--nx-bg);
    border-radius: 100px;
    font-family: var(--nx-font-sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.nx-btn-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--nx-accent);
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.nx-btn-hero:hover::before { transform: translateX(0); }
.nx-btn-hero > * { position: relative; z-index: 1; }
.nx-btn-hero:hover { color: var(--nx-bg); transform: translateY(-2px); }

.nx-btn-ghost {
    background: transparent;
    color: var(--nx-ink);
    border: 1px solid var(--nx-line-2);
}
.nx-btn-ghost::before { background: var(--nx-ink); }
.nx-btn-ghost:hover { color: var(--nx-bg); border-color: var(--nx-ink); }

.nx-btn-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}
.nx-btn-hero:hover .nx-btn-arrow { transform: translateX(4px); }

/* ============================================================
 * 8. HERO V3
 * ============================================================ */
/* Full-width forzado para anular cualquier .container de plugins/WP */
.nx-main,
.nx-home-main,
.nx-content-wrap,
main.nx-main {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}
.nx-hero {
    width: 100vw !important;
    max-width: 100% !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    position: relative;
    padding: 80px 60px 60px;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    box-sizing: border-box;
}
.nx-hero > .nx-hero-meta,
.nx-hero > .nx-hero-grid {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}
.nx-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 60% 50% at 20% 30%, rgba(185, 131, 255, 0.25), transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 70%, rgba(0, 240, 255, 0.2), transparent 60%);
}
.nx-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.nx-hero > * { position: relative; z-index: 2; }

.nx-hero-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-family: var(--nx-font-mono);
    font-size: 11px;
    color: var(--nx-ink-dim);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 16px;
    width: 100%;
}
.nx-meta-block { display: flex; flex-direction: column; gap: 6px; }
.nx-meta-label { color: var(--nx-ink-low); }
.nx-meta-value { color: var(--nx-ink); font-weight: 600; }
.nx-meta-ticker {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 14px;
    border: 1px solid var(--nx-line-2);
    border-radius: 100px;
    font-size: 10px;
}
.nx-ticker-dot {
    width: 6px; height: 6px;
    background: var(--nx-accent);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--nx-accent);
    animation: nxPulse 1.2s infinite;
}
@keyframes nxPulse { 50% { opacity: 0.4; } }

.nx-hero-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: end;
    flex: 1;
    width: 100%;
}

.nx-hero-title {
    font-family: var(--nx-font-display);
    font-size: clamp(72px, 13vw, 208px);
    font-weight: 400;
    line-height: 0.82;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: var(--nx-ink);
}
.nx-hero-title .nx-line {
    display: block;
    overflow: hidden;
}
.nx-hero-title .nx-line span {
    display: inline-block;
    transform: translateY(100%);
    animation: nxLineUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.nx-hero-title .nx-line:nth-child(1) span { animation-delay: 0.1s; }
.nx-hero-title .nx-line:nth-child(2) span { animation-delay: 0.25s; }
.nx-hero-title .nx-line:nth-child(3) span { animation-delay: 0.4s; }
@keyframes nxLineUp { to { transform: translateY(0); } }

.nx-hero-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 20px;
}
.nx-hero-sub {
    font-size: 16px;
    line-height: 1.55;
    color: var(--nx-ink-dim);
    max-width: 380px;
}
.nx-hero-sub strong { color: var(--nx-ink); font-weight: 600; }
.nx-hero-cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Hero visual: product spotlight */
.nx-hero-visual {
    position: relative;
    height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nx-product-spotlight {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a0a2e 0%, #0a1a2e 100%);
    transform: rotate(-3deg);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.nx-product-spotlight:hover { transform: rotate(0); }
.nx-product-spotlight::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(185, 131, 255, 0.5), transparent 60%),
        radial-gradient(circle at 70% 80%, rgba(0, 240, 255, 0.4), transparent 60%);
}
.nx-spotlight-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 32px 32px;
}
.nx-spotlight-label {
    position: absolute;
    top: 20px; left: 20px;
    font-family: var(--nx-font-mono);
    font-size: 10px;
    color: var(--nx-ink);
    letter-spacing: 2px;
    z-index: 3;
}
.nx-spotlight-label span {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(255,255,255,0.1);
    border: 1px solid var(--nx-line-2);
    backdrop-filter: blur(10px);
    border-radius: 100px;
}
.nx-spotlight-art {
    position: absolute;
    inset: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.nx-spotlight-art img {
    width: 100%; height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 240, 255, 0.3));
}
.nx-spotlight-bottom {
    position: absolute;
    bottom: 20px; left: 20px; right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 3;
}
.nx-spotlight-name {
    font-family: var(--nx-font-display);
    font-size: 28px;
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    max-width: 200px;
    color: var(--nx-ink);
}
.nx-spotlight-price {
    font-family: var(--nx-font-mono);
    font-size: 20px;
    font-weight: 700;
    color: var(--nx-accent);
    text-align: right;
}
.nx-spotlight-price-old {
    font-size: 12px;
    color: var(--nx-ink-low);
    text-decoration: line-through;
    display: block;
    font-weight: 400;
}
.nx-spotlight-badge {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 80px;
    height: 80px;
    background: var(--nx-accent-hot);
    color: var(--nx-ink);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--nx-font-display);
    text-transform: uppercase;
    z-index: 4;
    animation: nxBadgeSpin 8s linear infinite;
    box-shadow: 0 10px 40px rgba(255, 46, 99, 0.4);
}
@keyframes nxBadgeSpin { to { transform: rotate(360deg); } }
.nx-spotlight-badge-inner {
    animation: nxBadgeSpin 8s linear infinite reverse;
    text-align: center;
    line-height: 0.9;
}
.nx-spotlight-badge-inner .nx-big { font-size: 22px; letter-spacing: -0.5px; display: block; }
.nx-spotlight-badge-inner .nx-small { font-size: 9px; letter-spacing: 1px; display: block; }

/* Floating chips around spotlight */
.nx-chip-float {
    position: absolute;
    padding: 8px 14px;
    background: rgba(13, 13, 21, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid var(--nx-line-2);
    border-radius: 100px;
    font-family: var(--nx-font-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--nx-ink);
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 8px;
}
.nx-chip-1 { top: 20%; left: -30px; animation: nxChipFloat 4s ease-in-out infinite; }
.nx-chip-2 { top: 55%; right: -40px; animation: nxChipFloat 4s ease-in-out infinite -2s; }
.nx-chip-3 { bottom: 10%; left: -20px; animation: nxChipFloat 4s ease-in-out infinite -1s; }
@keyframes nxChipFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.nx-chip-icon {
    width: 14px; height: 14px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 10px;
    color: var(--nx-bg);
    font-weight: 700;
}
.nx-chip-check { background: var(--nx-accent); }
.nx-chip-bolt { background: var(--nx-accent-gold); }
.nx-chip-star { background: var(--nx-accent-2); }

/* ============================================================
 * 9. TICKER MARQUEE
 * ============================================================ */
.nx-ticker-bar {
    margin-top: 60px;
    padding: 24px 0;
    border-top: 1px solid var(--nx-line);
    border-bottom: 1px solid var(--nx-line);
    overflow: hidden;
    display: flex;
}
.nx-ticker-track {
    display: flex;
    gap: 48px;
    animation: nxScrollX 40s linear infinite;
    white-space: nowrap;
    flex-shrink: 0;
    font-family: var(--nx-font-display);
    font-size: 22px;
    letter-spacing: 2px;
    text-transform: uppercase;
    align-items: center;
    color: var(--nx-ink);
}
.nx-ticker-item { display: flex; align-items: center; gap: 48px; }
.nx-ticker-item.nx-outline-text { -webkit-text-stroke: 1px var(--nx-ink); color: transparent; }
.nx-ticker-divider {
    width: 8px; height: 8px;
    background: var(--nx-accent);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ============================================================
 * 10. HOME PRODUCTS SECTION (cards estilo mykd)
 * Las cards usan las mismas clases .nx-card que las del shop,
 * los estilos están en woocommerce.css. Aquí solo el wrapper.
 * ============================================================ */
.nx-products-section {
    background: var(--nx-bg);
}
.nx-home-products {
    display: grid !important;
    gap: 24px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.nx-home-products li.product,
.nx-home-products .nx-home-product {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    background: transparent !important;
    border: none !important;
}
.nx-home-products.columns-2 { grid-template-columns: repeat(2, 1fr) !important; }
.nx-home-products.columns-3 { grid-template-columns: repeat(3, 1fr) !important; }
.nx-home-products.columns-4 { grid-template-columns: repeat(4, 1fr) !important; }

@media (max-width: 1100px) {
    .nx-home-products.columns-3,
    .nx-home-products.columns-4 { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 768px) {
    .nx-home-products,
    .nx-home-products.columns-2,
    .nx-home-products.columns-3,
    .nx-home-products.columns-4 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px !important;
    }
}

/* ============================================================
 * 11. REVIEWS HORIZONTAL SCROLL
 * ============================================================ */
.nx-reviews-section {
    width: 100vw !important;
    max-width: 100% !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    box-sizing: border-box;
    padding: 120px 0;
    background: var(--nx-bg-2);
    border-top: 1px solid var(--nx-line);
    border-bottom: 1px solid var(--nx-line);
    overflow: hidden;
}
.nx-reviews-header { padding: 0 32px; max-width: 1400px; margin: 0 auto; }
.nx-reviews-scroll {
    padding: 0 32px;
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}
.nx-reviews-scroll::-webkit-scrollbar { display: none; }
.nx-reviews-scroll:active { cursor: grabbing; }
.nx-review-card {
    flex: 0 0 380px;
    scroll-snap-align: start;
    padding: 32px;
    background: var(--nx-bg-3);
    border: 1px solid var(--nx-line);
    border-radius: 20px;
    position: relative;
    transition: all 0.4s ease;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--nx-ink);
    text-decoration: none;
}
.nx-review-card.nx-review-card-link {
    cursor: pointer;
}
.nx-review-card.nx-review-card-link:hover .nx-review-author-product {
    color: var(--nx-accent);
}
.nx-review-card:hover {
    border-color: var(--nx-accent);
    transform: translateY(-6px);
    text-decoration: none;
}
/* CTA "Ver todas las reseñas" bajo el scroll */
.nx-reviews-cta-row {
    display: flex;
    justify-content: center;
    margin-top: 48px;
    padding: 0 32px;
}
.nx-btn-reviews-all {
    border: 1px solid var(--nx-line-2);
    background: transparent;
}
.nx-btn-reviews-all:hover {
    border-color: var(--nx-accent);
    background: rgba(0, 240, 255, 0.08);
}

/* ============================================================
 * REVIEWS WALL - Grid de reseñas tipo muro
 * ============================================================ */
.nx-reviews-wall-section {
    width: 100vw;
    max-width: 100%;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 120px 32px 80px;
    position: relative;
    box-sizing: border-box;
}
.nx-reviews-wall-header {
    max-width: 1400px;
    margin: 0 auto 60px;
}
.nx-reviews-summary {
    max-width: 1400px;
    margin: 0 auto 48px;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 60px;
    padding: 40px;
    background: linear-gradient(180deg, #1a1a28 0%, #12121c 100%);
    border: 1px solid var(--nx-line);
    border-radius: 24px;
    align-items: center;
}
.nx-reviews-summary-score {
    text-align: center;
    border-right: 1px solid var(--nx-line);
    padding-right: 40px;
}
.nx-reviews-avg-number {
    font-family: var(--nx-font-display);
    font-size: 96px;
    line-height: 0.9;
    color: var(--nx-accent-gold);
    margin-bottom: 12px;
}
.nx-reviews-avg-stars {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin-bottom: 12px;
}
.nx-reviews-avg-label {
    font-family: var(--nx-font-mono);
    font-size: 12px;
    color: var(--nx-ink-dim);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.nx-reviews-avg-label strong { color: var(--nx-ink); }
.nx-reviews-summary-bars {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.nx-reviews-bar-row {
    display: grid;
    grid-template-columns: 48px 1fr 64px;
    gap: 16px;
    align-items: center;
}
.nx-reviews-bar-label {
    font-family: var(--nx-font-mono);
    font-size: 13px;
    color: var(--nx-ink);
    font-weight: 600;
}
.nx-reviews-bar-track {
    height: 10px;
    background: rgba(255,255,255,0.08);
    border-radius: 100px;
    overflow: hidden;
}
.nx-reviews-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--nx-accent) 0%, var(--nx-accent-2) 100%);
    border-radius: 100px;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.nx-reviews-bar-count {
    font-family: var(--nx-font-mono);
    font-size: 12px;
    color: var(--nx-ink-dim);
    text-align: right;
}

/* Filtros */
.nx-reviews-filters {
    max-width: 1400px;
    margin: 0 auto 40px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.nx-reviews-filter {
    background: transparent;
    border: 1px solid var(--nx-line-2);
    color: var(--nx-ink-dim);
    padding: 10px 18px;
    border-radius: 100px;
    font-family: var(--nx-font-mono);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.nx-reviews-filter:hover {
    border-color: var(--nx-accent);
    color: var(--nx-ink);
}
.nx-reviews-filter.active {
    background: var(--nx-accent);
    border-color: var(--nx-accent);
    color: #07070c;
}
.nx-reviews-filter-count {
    opacity: 0.7;
    font-size: 11px;
}
.nx-reviews-filter.active .nx-reviews-filter-count {
    opacity: 1;
}

/* Grid wall */
.nx-reviews-wall {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    gap: 24px;
}
.nx-reviews-wall-cols-2 { grid-template-columns: repeat(2, 1fr); }
.nx-reviews-wall-cols-3 { grid-template-columns: repeat(3, 1fr); }
.nx-reviews-wall-cols-4 { grid-template-columns: repeat(4, 1fr); }

/* Card del wall - hereda de nx-review-card pero ajusta min-height */
.nx-review-card-wall {
    flex: none;
    min-height: 260px;
}
.nx-review-card-wall .nx-review-product-link {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px dashed var(--nx-line);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--nx-font-mono);
    font-size: 11px;
    color: var(--nx-ink-dim);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.25s ease;
}
.nx-review-card-wall:hover .nx-review-product-link {
    color: var(--nx-accent);
}
.nx-review-product-thumb {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid var(--nx-line);
}
.nx-review-product-name {
    flex: 1;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.nx-review-product-arrow {
    font-size: 14px;
    transform: translateX(0);
    transition: transform 0.25s ease;
}
.nx-review-card-wall:hover .nx-review-product-arrow {
    transform: translateX(4px);
    color: var(--nx-accent);
}
.nx-review-meta-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--nx-font-mono);
    font-size: 10px;
    color: var(--nx-ink-low);
    letter-spacing: 0.5px;
    margin-top: 2px;
}
.nx-review-verified-dot { color: var(--nx-ink-low); }
.nx-review-author-info { flex: 1; min-width: 0; }

/* Responsive wall */
@media (max-width: 1024px) {
    .nx-reviews-wall-cols-4 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .nx-reviews-wall-cols-3,
    .nx-reviews-wall-cols-4 { grid-template-columns: repeat(2, 1fr); }
    .nx-reviews-summary {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 28px;
    }
    .nx-reviews-summary-score {
        border-right: none;
        border-bottom: 1px solid var(--nx-line);
        padding-right: 0;
        padding-bottom: 28px;
    }
    .nx-reviews-avg-number { font-size: 72px; }
}
@media (max-width: 520px) {
    .nx-reviews-wall-cols-2,
    .nx-reviews-wall-cols-3,
    .nx-reviews-wall-cols-4 { grid-template-columns: 1fr; }
}

.nx-review-quote {
    font-family: var(--nx-font-display);
    font-size: 80px;
    line-height: 0.7;
    color: var(--nx-accent);
    position: absolute;
    top: 16px; right: 24px;
    opacity: 0.4;
}
.nx-review-stars-row { display: flex; gap: 4px; margin-bottom: 14px; }
.nx-star {
    width: 16px;
    height: 16px;
    background: var(--nx-accent-gold);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    display: inline-block;
}
.nx-star.filled { background: var(--nx-accent-gold); }
.nx-star.empty { background: rgba(255,255,255,0.15); }
.nx-reviews-avg-stars .nx-star { width: 20px; height: 20px; }
.nx-review-text {
    font-size: 15px;
    line-height: 1.55;
    color: var(--nx-ink);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}
.nx-review-text strong { color: var(--nx-accent); font-weight: 600; }
.nx-review-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--nx-line);
}
.nx-review-avatar {
    width: 40px; height: 40px;
    background: var(--nx-ink);
    color: var(--nx-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--nx-font-display);
    font-size: 18px;
    flex-shrink: 0;
}
.nx-review-author-name { font-weight: 600; font-size: 13px; color: var(--nx-ink); }
.nx-review-author-product {
    font-family: var(--nx-font-mono);
    font-size: 10px;
    color: var(--nx-ink-dim);
    letter-spacing: 0.5px;
    margin-top: 2px;
    text-transform: uppercase;
}
.nx-review-verified {
    margin-left: auto;
    font-family: var(--nx-font-mono);
    font-size: 9px;
    color: var(--nx-accent);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 4px;
}
.nx-review-verified::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--nx-accent);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--nx-accent);
}

/* ============================================================
 * 12. PAYMENTS MARQUEE
 * ============================================================ */
.nx-payments-section {
    padding: 120px 32px 80px;
    position: relative;
    overflow: hidden;
    width: 100vw !important;
    max-width: 100% !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    box-sizing: border-box;
}
.nx-payments-marquee {
    margin-top: 60px;
    padding: 30px 0;
    border-top: 1px solid var(--nx-line);
    border-bottom: 1px solid var(--nx-line);
    display: flex;
    overflow: hidden;
}
.nx-marquee-track {
    display: flex;
    gap: 48px;
    animation: nxScrollX 30s linear infinite;
    flex-shrink: 0;
    align-items: center;
    white-space: nowrap;
}
.nx-payment-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 32px;
    border: 1px solid var(--nx-line);
    border-radius: 100px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}
.nx-payment-item:hover {
    border-color: var(--nx-accent);
    background: rgba(0, 240, 255, 0.05);
}
.nx-payment-icon-wrap {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--nx-ink);
    color: var(--nx-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--nx-font-display);
    font-size: 20px;
    flex-shrink: 0;
}
.nx-payment-item-name {
    font-family: var(--nx-font-display);
    font-size: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--nx-ink);
}
.nx-payment-item-desc {
    font-family: var(--nx-font-mono);
    font-size: 10px;
    color: var(--nx-ink-dim);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.nx-marquee-dot {
    width: 10px; height: 10px;
    background: var(--nx-accent);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ============================================================
 * 13. FOOTER
 * ============================================================ */
.nx-footer {
    padding: 120px 32px 40px;
    background: var(--nx-bg-2);
    border-top: 1px solid var(--nx-line);
    position: relative;
}
.nx-footer-inner { max-width: 1400px; margin: 0 auto; }
.nx-footer-hero {
    font-family: var(--nx-font-display);
    font-size: clamp(64px, 11vw, 180px);
    line-height: 0.85;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 60px;
    color: var(--nx-ink);
}
.nx-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}
.nx-footer-brand { display: flex; flex-direction: column; gap: 20px; }
.nx-footer-brand-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--nx-ink-dim);
    max-width: 320px;
}
.nx-socials { display: flex; gap: 10px; }
.nx-social {
    width: 40px; height: 40px;
    border: 1px solid var(--nx-line);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--nx-ink);
}
.nx-social:hover {
    background: var(--nx-accent);
    color: var(--nx-bg);
    border-color: var(--nx-accent);
    transform: translateY(-3px);
}
.nx-footer-col-label {
    font-family: var(--nx-font-mono);
    font-size: 10px;
    color: var(--nx-ink-dim);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--nx-line);
}
.nx-footer-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.nx-footer-list li a {
    font-size: 14px;
    color: var(--nx-ink);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}
.nx-footer-list li a:hover { color: var(--nx-accent); }
.nx-footer-list li a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: var(--nx-accent);
}
.nx-footer-list li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}
.nx-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--nx-line);
    font-family: var(--nx-font-mono);
    font-size: 11px;
    color: var(--nx-ink-dim);
    letter-spacing: 0.5px;
    flex-wrap: wrap;
    gap: 10px;
}

/* ============================================================
 * 14. PAGE / SINGLE / BLOG
 * ============================================================ */
.nx-page-header {
    padding: 80px 0 40px;
}
.nx-page-content {
    padding: 0 0 80px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--nx-ink);
    max-width: 800px;
}
.nx-page-content h2 {
    font-family: var(--nx-font-display);
    font-size: clamp(32px, 4vw, 56px);
    line-height: 0.9;
    text-transform: uppercase;
    margin: 1.5em 0 0.5em;
}
.nx-page-content h3 {
    font-family: var(--nx-font-display);
    font-size: clamp(24px, 3vw, 36px);
    text-transform: uppercase;
    margin: 1.2em 0 0.4em;
}
.nx-page-content a { color: var(--nx-accent); text-decoration: underline; }
.nx-page-content blockquote {
    border-left: 3px solid var(--nx-accent);
    padding: 16px 24px;
    margin: 24px 0;
    background: var(--nx-bg-3);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--nx-ink-dim);
}
.nx-page-content code {
    background: var(--nx-bg-3);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: var(--nx-font-mono);
    font-size: 0.9em;
    color: var(--nx-accent);
}
.nx-page-elementor { padding: 0; }

/* Single post */
.nx-single-header { padding: 80px 0 30px; }
.nx-single-title {
    font-family: var(--nx-font-display);
    font-size: clamp(48px, 7vw, 100px);
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}
.nx-single-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--nx-font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--nx-ink-dim);
}
.nx-author { display: flex; align-items: center; gap: 8px; color: var(--nx-ink); }
.nx-avatar { width: 28px; height: 28px; border-radius: 50%; }
.nx-meta-sep { opacity: 0.4; }
.nx-single-featured {
    padding: 0 0 40px;
}
.nx-single-featured img {
    border-radius: 16px;
    width: 100%;
    height: auto;
}
.nx-single-content {
    padding: 0 0 60px;
    font-size: 17px;
    line-height: 1.7;
    color: var(--nx-ink);
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

/* Tags */
.nx-tags {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    padding: 30px 0;
    border-top: 1px solid var(--nx-line);
    margin-top: 30px;
}
.nx-tags-label {
    font-family: var(--nx-font-mono);
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--nx-ink-dim);
}
.nx-tags-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.nx-tags-list a {
    padding: 6px 14px;
    background: var(--nx-bg-3);
    border: 1px solid var(--nx-line);
    border-radius: 100px;
    font-family: var(--nx-font-mono);
    font-size: 11px;
    color: var(--nx-ink);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}
.nx-tags-list a:hover {
    background: var(--nx-accent);
    color: var(--nx-bg);
    border-color: var(--nx-accent);
}

/* Post nav */
.nx-post-nav {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 40px 0;
    border-top: 1px solid var(--nx-line);
    border-bottom: 1px solid var(--nx-line);
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.nx-post-nav-prev, .nx-post-nav-next {
    color: var(--nx-ink);
    font-family: var(--nx-font-mono);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}
.nx-post-nav-prev:hover, .nx-post-nav-next:hover { color: var(--nx-accent); }

/* Posts grid */
.nx-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}
.nx-post-card {
    background: var(--nx-bg-3);
    border: 1px solid var(--nx-line);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.4s ease;
}
.nx-post-card:hover {
    transform: translateY(-6px);
    border-color: var(--nx-accent);
}
.nx-post-thumb {
    display: block;
    overflow: hidden;
    aspect-ratio: 16/10;
}
.nx-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.nx-post-card:hover .nx-post-thumb img { transform: scale(1.05); }
.nx-post-content { padding: 24px; }
.nx-post-meta {
    font-family: var(--nx-font-mono);
    font-size: 11px;
    color: var(--nx-ink-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.nx-post-type { color: var(--nx-accent); }
.nx-post-title {
    font-family: var(--nx-font-display);
    font-size: 24px;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.nx-post-title a { color: var(--nx-ink); transition: color 0.2s ease; }
.nx-post-title a:hover { color: var(--nx-accent); }
.nx-post-excerpt {
    font-size: 14px;
    color: var(--nx-ink-dim);
    line-height: 1.55;
    margin-bottom: 16px;
}
.nx-post-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--nx-accent);
    font-family: var(--nx-font-mono);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.nx-post-link:hover { color: var(--nx-ink); }

/* Pagination */
.nx-pagination, .woocommerce-pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 40px 0;
}
.nx-pagination .page-numbers, .woocommerce-pagination .page-numbers {
    padding: 10px 16px;
    background: var(--nx-bg-3);
    border: 1px solid var(--nx-line);
    color: var(--nx-ink);
    border-radius: 100px;
    font-family: var(--nx-font-mono);
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.nx-pagination .page-numbers:hover,
.nx-pagination .page-numbers.current,
.woocommerce-pagination .page-numbers:hover,
.woocommerce-pagination .page-numbers.current {
    background: var(--nx-accent);
    color: var(--nx-bg);
    border-color: var(--nx-accent);
}

/* No results */
.nx-no-results {
    padding: 80px 0;
    text-align: center;
    color: var(--nx-ink-dim);
}
.nx-no-results h2 {
    font-family: var(--nx-font-display);
    font-size: 48px;
    color: var(--nx-ink);
    margin-bottom: 16px;
    text-transform: uppercase;
}

/* ============================================================
 * 15. 404
 * ============================================================ */
.nx-404 {
    min-height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
}
.nx-404-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 32px;
}
.nx-404-glitch {
    margin-bottom: 40px;
}
.nx-404-code {
    font-family: var(--nx-font-display);
    font-size: clamp(120px, 25vw, 320px);
    line-height: 0.85;
    color: var(--nx-ink);
    position: relative;
    display: inline-block;
}
.nx-404-code::before, .nx-404-code::after {
    content: attr(data-text);
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    overflow: hidden;
}
.nx-404-code::before {
    color: var(--nx-accent);
    z-index: -1;
    transform: translate(-4px, -2px);
    clip-path: inset(20% 0 60% 0);
    animation: nxGlitch1 3s infinite linear alternate;
}
.nx-404-code::after {
    color: var(--nx-accent-hot);
    z-index: -2;
    transform: translate(4px, 2px);
    clip-path: inset(60% 0 20% 0);
    animation: nxGlitch2 3s infinite linear alternate;
}
@keyframes nxGlitch1 {
    0%, 100% { clip-path: inset(20% 0 60% 0); }
    50% { clip-path: inset(40% 0 40% 0); }
}
@keyframes nxGlitch2 {
    0%, 100% { clip-path: inset(60% 0 20% 0); }
    50% { clip-path: inset(40% 0 40% 0); }
}
.nx-404-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* ============================================================
 * 16. SCROLL REVEAL
 * ============================================================ */
.nx-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.nx-reveal.nx-in {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
 * 17. RESPONSIVE
 * ============================================================ */
@media (max-width: 1100px) {
    .nx-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .nx-hero-visual { height: 420px; max-width: 380px; margin: 0 auto; }
    .nx-products-masonry, .nx-grid-4 { grid-template-columns: repeat(3, 1fr); }
    .nx-tile-tall { grid-row: span 1; min-height: 380px; }
    .nx-tile-wide { grid-column: span 1; }
    .nx-footer-grid { grid-template-columns: 1fr 1fr 1fr; }
    .nx-footer-brand { grid-column: span 3; }
}
@media (max-width: 768px) {
    .nx-container { padding: 0 20px; }
    .nx-header-inner { padding: 14px 20px; gap: 12px; }
    .nx-nav-main { display: none; }
    .nx-menu-toggle { display: flex; }
    .nx-cart-btn .nx-cart-label { display: none; }
    .nx-cart-btn { padding: 10px 14px 10px 12px; }
    .nx-hero { padding: 60px 20px 40px; min-height: auto; }
    .nx-hero-meta { flex-direction: column; gap: 12px; }
    .nx-hero-visual { height: 380px; }
    .nx-section { padding: 80px 20px; }
    .nx-products-masonry, .nx-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .nx-product-tile { min-height: 240px; padding: 18px; }
    .nx-pt-name { font-size: 18px; }
    .nx-tile-tall .nx-pt-name { font-size: 22px; }
    .nx-pt-discount { font-size: 24px; }
    .nx-review-card { flex: 0 0 280px; padding: 24px; }
    .nx-payments-section { padding: 80px 20px 60px; }
    .nx-footer { padding: 80px 20px 30px; }
    .nx-footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .nx-footer-brand { grid-column: span 2; }
    .nx-ticker-track { font-size: 16px; gap: 32px; }
    .nx-ticker-item { gap: 32px; }
    .nx-section-huge-title { font-size: clamp(48px, 14vw, 80px); }
    .nx-section-lead { font-size: 15px; }
    .nx-footer-hero { font-size: clamp(48px, 14vw, 80px); }
}

/* ============================================================
 * 18. PROMO STRIP (cart & checkout helpers)
 * ============================================================ */
.nx-cart-promo {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.08), rgba(185, 131, 255, 0.08));
    border: 1px solid var(--nx-accent);
    border-radius: 16px;
    margin-bottom: 30px;
}
.nx-cart-promo-icon {
    font-size: 28px;
    flex-shrink: 0;
}
.nx-cart-promo-text {
    font-size: 14px;
    color: var(--nx-ink);
    line-height: 1.5;
}
.nx-cart-promo-text strong { color: var(--nx-accent); }
