﻿/*
Theme Name: CELUCUERVO Immersive
Theme URI: https://example.com/celucuervo
Author: CELUCUERVO Team
Author URI: https://example.com
Description: Tema inmersivo para tienda CELUCUERVO con animaciones modernas y diseÃ±o premium
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: techstore
Tags: e-commerce, woocommerce, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ============================================
   TECHSTORE IMMERSIVE THEME
   ============================================ */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-black: #000000;
    --color-white: #ffffff;
    --color-primary: #00ff88;
    --color-primary-container: #00ff88;
    --color-primary-fixed-dim: #00e479;
    --color-primary-dim: #00e479;
    --color-secondary: #d0bcff;
    --color-secondary-container: #571bc1;
    --color-secondary-fixed: #e9ddff;
    --color-purple: #8b5cf6;
    --color-purple-dark: #7c3aed;
    --color-neon-blue: #00d4ff;
    --color-neon-blue-glow: rgba(0, 212, 255, 0.5);
    --color-gray-dark: #17181a;
    --color-gray: #3a3a3a;
    --color-gray-light: #6a6a6a;
    --color-bg: #f5f5f7;
    --color-surface: #ffffff;
    --color-surface-low: #f7f7f8;
    --color-surface-container: #f1f1f3;
    --color-surface-high: #e9e9ec;
    --color-surface-highest: #dedee1;
    --color-surface-lowest: #fbfbfc;
    --color-text: #141518;
    --color-text-muted: #5f6066;
    --color-on-surface-variant: #5f6066;
    --color-outline: #b0b0b5;
    --color-outline-variant: #d6d6da;
    --color-on-primary: #003919;
    --color-on-primary-fixed: #00210c;
    --gradient-primary: linear-gradient(135deg, var(--color-primary-container) 0%, var(--color-primary-fixed-dim) 100%);
    --gradient-purple: linear-gradient(135deg, var(--color-secondary-container) 0%, var(--color-purple) 100%);
    --shadow-neon: 0 0 20px rgba(0, 228, 121, 0.3);
    --shadow-neon-green: 0 0 20px rgba(0, 228, 121, 0.3);
    --shadow-neon-purple: 0 0 30px rgba(139, 92, 246, 0.2);
    --font-heading: 'Hanken Grotesk', sans-serif;
    --font-body: 'Hanken Grotesk', sans-serif;
    --font-mono: 'Geist Mono', monospace;
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body), -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

::selection {
    background: var(--color-primary-container);
    color: var(--color-on-primary-container, #007139);
}

/* Glass Panel */
.glass-panel {
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Neon Border */
.neon-border {
    border: 1px solid transparent;
    background: linear-gradient(#0a0a0a, #0a0a0a) padding-box,
                linear-gradient(to bottom right, rgba(255,255,255,0.15), rgba(255,255,255,0.05)) border-box;
}

/* Neon Glows */
.neon-glow-green {
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.neon-glow-green:hover {
    box-shadow: 0 0 20px rgba(0, 228, 121, 0.3);
    border-color: #00e479;
}

.neon-glow-purple:hover {
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.2);
    border-color: #8b5cf6;
}

.cta-glow {
    box-shadow: 0 0 15px #00e479;
}

/* HUD Text */
.hud-text {
    font-family: var(--font-mono);
    letter-spacing: 0.05em;
}

/* Spec Divider */
.spec-divider {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   ANNOUNCEMENT BAR - PREMIUM DESIGN
   ============================================ */
.announcement-bar {
    position: relative;
    padding: 0.55rem 2rem;
    overflow: hidden;
    z-index: 1001;
    background: linear-gradient(
        90deg,
        #1a0533 0%,
        #2d1056 20%,
        #4c1d95 40%,
        #6d28d9 55%,
        #7c3aed 70%,
        #3b82f6 85%,
        #1a0533 100%
    );
    background-size: 300% 100%;
    animation: gradientShift 12s ease-in-out infinite;
    transition: filter 0.6s ease;
}

.announcement-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.04) 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.08) 100%
    );
    pointer-events: none;
}

.announcement-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(139, 92, 246, 0.4) 25%,
        rgba(167, 139, 250, 0.6) 50%,
        rgba(59, 130, 246, 0.4) 75%,
        transparent 100%
    );
}

.announcement-bar:hover {
    filter: brightness(1.12);
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Shimmer / Light Sweep */
.announcement-shimmer {
    position: absolute;
    top: 0;
    left: -150%;
    width: 80%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.06) 40%,
        rgba(255, 255, 255, 0.12) 50%,
        rgba(255, 255, 255, 0.06) 60%,
        transparent 100%
    );
    animation: shimmerSweep 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes shimmerSweep {
    0% { left: -150%; }
    40%, 100% { left: 150%; }
}

/* Sparkles */
.announcement-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.sparkle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    animation: sparkleFade 4s ease-in-out infinite;
}

.sparkle:nth-child(1) { left: 15%; top: 30%; animation-delay: 0s; animation-duration: 3.5s; }
.sparkle:nth-child(2) { left: 35%; top: 60%; animation-delay: 1.2s; animation-duration: 4s; }
.sparkle:nth-child(3) { left: 55%; top: 25%; animation-delay: 0.6s; animation-duration: 3.8s; }
.sparkle:nth-child(4) { left: 75%; top: 55%; animation-delay: 2s; animation-duration: 4.2s; }
.sparkle:nth-child(5) { left: 90%; top: 40%; animation-delay: 0.3s; animation-duration: 3.6s; }

@keyframes sparkleFade {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 0.5; transform: scale(1); }
}

/* Inner Content */
.announcement-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.announcement-text {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.97);
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.25);
    animation: textGlow 5s ease-in-out infinite;
    font-family: 'Inter', sans-serif;
}

@keyframes textGlow {
    0%, 100% { text-shadow: 0 0 12px rgba(255, 255, 255, 0.2); }
    50% { text-shadow: 0 0 18px rgba(255, 255, 255, 0.35); }
}

/* Close Button */
.announcement-close {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 0.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 3;
}

.announcement-close:hover {
    color: rgba(255, 255, 255, 0.95);
    transform: translateY(-50%) scale(1.15);
    background: rgba(255, 255, 255, 0.1);
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.3));
}

/* ============================================
   HEADER - CYBER-ELITE GLASS (Stitch Design)
   ============================================ */

/* ============================================
   PRO HEADER - Professional 3-row store navbar
   ============================================ */
.pro-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    width: 100%;
    background: #0a0a0a;
    border-bottom: 1px solid rgba(0, 228, 121, 0.15);
}

.pro-header.is-sticky {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55);
}

.pro-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ROW 1 â€” Utility */
.pro-utility {
    background: #0a0a0a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

@keyframes proUtilShimmer {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.pro-utility-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 36px;
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
}

.pro-utility-msg {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #8f8f8f;
}

.pro-utility-msg .material-symbols-outlined {
    font-size: 16px;
    color: #00ff88;
}

.pro-utility-links {
    display: none;
    align-items: center;
    gap: 1.25rem;
}

.pro-utility-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: #8f8f8f;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: color 0.2s ease;
}

.pro-utility-links a:hover {
    color: #00ff88;
}

.pro-utility-links a .material-symbols-outlined {
    font-size: 15px;
}

.pro-utility-links a:hover {
    opacity: 0.8;
}

@media (min-width: 768px) {
    .pro-utility-links { display: flex; }
}

/* ROW 2 â€” Main */
.pro-main {
    background: #0c0f0f;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pro-main-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    min-height: 84px;
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
}

@media (min-width: 992px) {
    .pro-main-inner {
        grid-template-columns: auto minmax(280px, 1fr) auto;
        gap: 2rem;
    }
}

.pro-burger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(0, 228, 121, 0.25);
    border-radius: 10px;
    background: rgba(0, 255, 136, 0.06);
    color: #00e479;
    cursor: pointer;
}

@media (min-width: 992px) {
    .pro-burger { display: none; }
}

.pro-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.pro-logo-img {
    height: 48px;
    width: auto;
    max-width: 170px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(0, 228, 121, 0.35));
}

@media (min-width: 768px) {
    .pro-logo-img { height: 54px; max-width: 200px; }
}

@media (max-width: 560px) {
    .pro-logo-img { height: 42px; max-width: 128px; }
    .pro-main-inner { gap: 0.6rem; }
    .pro-action { padding: 0.4rem 0.5rem; }
}

/* Search bar â€” hero of the header */
.pro-search {
    display: none;
    align-items: center;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    background: #121414;
    border: 1px solid rgba(0, 228, 121, 0.25);
    border-radius: 999px;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pro-search:focus-within {
    border-color: #00ff88;
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.12), 0 0 24px rgba(0, 228, 121, 0.15);
}

@media (min-width: 768px) {
    .pro-search { display: flex; }
}

.pro-search-icon {
    margin-left: 1rem;
    color: #849585;
    font-size: 22px;
}

.pro-search-input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    background: transparent;
    color: #e2e2e2;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    padding: 0.85rem 0.75rem;
}

.pro-search-input::placeholder {
    color: #5a6b5c;
}

.pro-search-btn {
    border: none;
    background: #00ff88;
    color: #003919;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.85rem 1.4rem;
    cursor: pointer;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.pro-search-btn:hover {
    background: #00e479;
    box-shadow: 0 0 18px rgba(0, 255, 136, 0.45);
}

/* Actions */
.pro-actions {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.pro-action {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.5rem 0.65rem;
    border-radius: 12px;
    text-decoration: none;
    color: #e2e2e2;
    border: 1px solid transparent;
    background: transparent;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.pro-action:hover {
    background: rgba(0, 255, 136, 0.06);
    border-color: rgba(0, 228, 121, 0.2);
}

.pro-action .material-symbols-outlined {
    font-size: 26px;
    color: #00e479;
}

.pro-action-meta {
    display: none;
    flex-direction: column;
    line-height: 1.15;
    text-align: left;
}

.pro-action-meta small {
    font-size: 0.65rem;
    color: #849585;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.pro-action-meta strong {
    font-size: 0.85rem;
    font-weight: 700;
    color: #f1ffef;
}

@media (min-width: 1100px) {
    .pro-action-meta { display: flex; }
    .pro-action--account, .pro-action--cart { padding-right: 0.9rem; }
}

.pro-action--mobile-search {
    display: flex;
}

@media (min-width: 768px) {
    .pro-action--mobile-search { display: none; }
}

.pro-cart-icon-wrap {
    position: relative;
    display: flex;
}

.pro-cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 999px;
    background: #8b5cf6;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 2px #0c0f0f;
}

/* ROW 3 â€” Category nav */
.pro-nav-bar {
    display: none;
    background: #121414;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

@media (min-width: 992px) {
    .pro-nav-bar { display: block; }
}

.pro-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.15rem;
    overflow-x: auto;
}

.pro-nav-list > li > a {
    display: block;
    padding: 0.85rem 1.1rem;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #b9cbb9;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.pro-nav-list > li > a:hover,
.pro-nav-list > li.current-menu-item > a {
    color: #00ff88;
    border-bottom-color: #00ff88;
    background: rgba(0, 255, 136, 0.04);
}

/* Dropdown */
.pro-nav-list .menu-item-has-children {
    position: relative;
}

.pro-nav-list .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #0c0f0f;
    border: 1px solid rgba(0, 228, 121, 0.2);
    border-radius: 10px;
    padding: 0.5rem 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
    z-index: 50;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.pro-nav-list .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.pro-nav-list .sub-menu a {
    display: block;
    padding: 0.65rem 1.1rem;
    color: #e2e2e2;
    text-decoration: none;
    font-size: 0.85rem;
}

.pro-nav-list .sub-menu a:hover {
    color: #00ff88;
    background: rgba(0, 255, 136, 0.06);
}

/* Mobile drawer */
.pro-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: min(360px, 88vw);
    height: 100%;
    background: #0c0f0f;
    border-right: 1px solid rgba(0, 228, 121, 0.2);
    z-index: 10050;
    transform: translateX(-105%);
    transition: transform 0.35s ease;
    display: flex;
    flex-direction: column;
}

.pro-drawer.active {
    transform: translateX(0);
}

.pro-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pro-drawer-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    color: #00e479;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pro-drawer-close {
    background: none;
    border: none;
    color: #e2e2e2;
    cursor: pointer;
    padding: 0.35rem;
}

.pro-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 0;
}

.pro-drawer-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pro-drawer-list a {
    display: block;
    padding: 0.95rem 1.4rem;
    color: #e2e2e2;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pro-drawer-list a:hover,
.pro-drawer-list .current-menu-item > a {
    color: #00ff88;
    background: rgba(0, 255, 136, 0.05);
}

.pro-drawer-foot {
    padding: 1.25rem 1.4rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.pro-drawer-foot a {
    color: #b9cbb9;
    text-decoration: none;
    font-size: 0.9rem;
}

.pro-drawer-foot a:hover { color: #00ff88; }

.pro-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 10040;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.pro-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile search sheet */
.pro-search-sheet {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(16px);
    z-index: 10060;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 5rem 1.25rem 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.pro-search-sheet.active {
    opacity: 1;
    visibility: visible;
}

.pro-search-sheet-inner {
    width: 100%;
    max-width: 560px;
    position: relative;
}

.pro-search--sheet {
    display: flex !important;
    max-width: none;
}

.pro-search-sheet-close {
    position: absolute;
    top: -3rem;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

/* sticky spacer helper */
body.pro-header-fixed {
    /* optional padding applied via JS if needed */
}

/* ============================================
   CINEMATIC SPLIT HERO (REDESIGNED BANNER)
   ============================================ */
/* ============================================
   NEON VAULT HERO
   ============================================ */

/* ============================================
   FULL-WIDTH BANNER (imagen sola)
   ============================================ */
.nv-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 10;
}

.nv-banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 768px) {
    .nv-banner {
        margin-top: 0;
    }
}

/* ============================================
   NEON VAULT HERO
   ============================================ */
.nv-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: #030308;
    padding: 212px 0 90px;
    z-index: 10;
}

.nv-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.nv-aurora {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.55;
    mix-blend-mode: screen;
}

.nv-aurora--a {
    width: 55vw;
    height: 55vw;
    top: -15%;
    left: -10%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.55) 0%, transparent 70%);
    animation: nv-drift-a 18s ease-in-out infinite alternate;
}

.nv-aurora--b {
    width: 50vw;
    height: 50vw;
    bottom: -20%;
    right: -8%;
    background: radial-gradient(circle, rgba(0, 228, 121, 0.45) 0%, transparent 70%);
    animation: nv-drift-b 22s ease-in-out infinite alternate;
}

.nv-aurora--c {
    width: 30vw;
    height: 30vw;
    top: 40%;
    left: 45%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.25) 0%, transparent 70%);
    animation: nv-drift-c 14s ease-in-out infinite alternate;
}

.nv-mesh {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 228, 121, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.04) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 75%);
    animation: nv-mesh-pan 80s linear infinite;
}

.nv-stars {
    position: absolute;
    inset: 0;
}

.nv-star {
    position: absolute;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: #fff;
    opacity: 0.35;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
    animation: nv-twinkle var(--d, 3s) ease-in-out infinite;
    animation-delay: var(--delay, 0s);
}

.nv-spotlight {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 228, 121, 0.12) 0%, transparent 65%);
    transform: translate(-50%, -50%);
    left: 70%;
    top: 40%;
    transition: left 0.15s ease-out, top 0.15s ease-out;
    pointer-events: none;
}

.nv-noise {
    position: absolute;
    inset: 0;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 180px;
}

/* ---- Falling petals (Feria de las Flores) ---- */
.nv-petals {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.nv-petal {
    position: absolute;
    top: -40px;
    width: 14px;
    height: 16px;
    border-radius: 80% 0 80% 0;
    background: linear-gradient(135deg, var(--p1, #ff9eb5) 0%, var(--p2, #ff5c8a) 100%);
    opacity: 0;
    animation: nv-petal-fall var(--pd, 9s) linear var(--delay, 0s) infinite;
    will-change: transform;
}

.nv-petal::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: inherit;
    opacity: 0.5;
    transform: rotate(90deg) scale(0.9);
}

@keyframes nv-petal-fall {
    0% {
        transform: translate3d(0, 0, 0) rotate(0deg);
        opacity: 0;
    }
    8% {
        opacity: var(--op, 0.85);
    }
    85% {
        opacity: var(--op, 0.85);
    }
    100% {
        transform: translate3d(var(--sway, 40px), 105vh, 0) rotate(300deg);
        opacity: 0;
    }
}

/* ---- Floral garlands (silletero style) ---- */
.nv-garland {
    position: absolute;
    top: 0;
    z-index: 3;
    width: 120px;
    height: 340px;
    pointer-events: none;
}

.nv-garland--left {
    left: 0;
}

.nv-garland--right {
    right: 0;
    transform: scaleX(-1);
}

.nv-garland::before {
    content: "";
    position: absolute;
    top: 0;
    left: 60px;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 228, 121, 0.55), rgba(0, 228, 121, 0.12));
    border-radius: 3px;
    transform: rotate(9deg);
    transform-origin: top center;
    box-shadow: 0 0 12px rgba(0, 228, 121, 0.2);
}

.nv-flower {
    position: absolute;
    left: 60px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--fc, #ff5c8a);
    box-shadow:
        0 0 0 2px var(--fb, #ff9eb5),
        -10px 4px 0 -3px var(--fc, #ff5c8a),
        10px 4px 0 -3px var(--fc, #ff5c8a),
        0 12px 0 -3px var(--fc, #ff5c8a),
        -8px -8px 0 -3px var(--fc, #ff5c8a),
        8px -8px 0 -3px var(--fc, #ff5c8a);
    animation: nv-flower-bob var(--bd, 5s) ease-in-out infinite;
    animation-delay: var(--delay, 0s);
}

.nv-flower::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffe066 0%, #ffb347 70%);
}

.nv-flower--pink   { --fc: #ff5c8a; --fb: #ff9eb5; }
.nv-flower--red    { --fc: #ff4d4d; --fb: #ff8a8a; }
.nv-flower--purple { --fc: #a55eea; --fb: #cda5f5; }
.nv-flower--yellow { --fc: #ffc53d; --fb: #ffe08a; }
.nv-flower--blue   { --fc: #4da6ff; --fb: #a3ccff; }
.nv-flower--white  { --fc: #ffe3ec; --fb: #fff6f9; }

@keyframes nv-flower-bob {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(6deg); }
}

.nv-leaf {
    position: absolute;
    left: 50px;
    width: 22px;
    height: 12px;
    border-radius: 100% 0 100% 0;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    transform: rotate(-20deg);
    opacity: 0.85;
    animation: nv-leaf-sway 4s ease-in-out infinite;
    animation-delay: var(--delay, 0s);
}

@keyframes nv-leaf-sway {
    0%, 100% { transform: rotate(-20deg) translateX(0); }
    50% { transform: rotate(-6deg) translateX(3px); }
}

.nv-shell {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
    align-items: center;
}

/* ---- Copy ---- */
.nv-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.nv-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(0, 228, 121, 0.12), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(0, 228, 121, 0.35);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-primary-fixed-dim);
    text-transform: uppercase;
    margin-bottom: 1.75rem;
    backdrop-filter: blur(10px);
}

.nv-badge-live {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff2d55;
    box-shadow: 0 0 0 0 rgba(255, 45, 85, 0.6);
    animation: nv-live 1.6s ease-out infinite;
}

.nv-badge-sep {
    opacity: 0.35;
}

.nv-badge-clock {
    color: #fff;
    font-variant-numeric: tabular-nums;
}

.nv-title {
    margin: 0;
    font-family: var(--font-heading);
    line-height: 1.02;
    letter-spacing: -0.03em;
}

.nv-title-top {
    display: block;
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
}

.nv-title-main {
    display: block;
    font-size: clamp(2.6rem, 5.2vw, 4.6rem);
    font-weight: 800;
    color: #ffffff;
}

.nv-rotator {
    display: inline-block;
    vertical-align: bottom;
    height: 1.1em;
    overflow: hidden;
    position: relative;
    min-width: 3.2em;
}

.nv-rotator-track {
    display: flex;
    flex-direction: column;
    animation: nv-rotate 10s cubic-bezier(0.7, 0, 0.3, 1) infinite;
}

.nv-rotator-track span {
    display: block;
    height: 1.1em;
    line-height: 1.1em;
    background: linear-gradient(100deg, #00ff88 0%, #00d4ff 45%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    filter: drop-shadow(0 0 18px rgba(0, 228, 121, 0.35));
}

.nv-title-glow {
    display: block;
    margin-top: 0.2rem;
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    font-weight: 800;
    background: linear-gradient(90deg, #ffffff 0%, rgba(255,255,255,0.55) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nv-lead {
    margin: 1.5rem 0 0;
    max-width: 520px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.58);
}

.nv-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.25rem;
}

.nv-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1.1rem 1.9rem;
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.nv-btn--primary {
    background: linear-gradient(135deg, #00e479 0%, #00c4ff 100%);
    color: #03140a;
    box-shadow: 0 10px 40px rgba(0, 228, 121, 0.35), inset 0 1px 0 rgba(255,255,255,0.35);
}

.nv-btn--primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 50px rgba(0, 228, 121, 0.55);
    color: #03140a;
}

.nv-btn-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.45) 50%, transparent 70%);
    transform: translateX(-120%);
    animation: nv-shine 3.5s ease-in-out infinite;
}

.nv-btn--ghost {
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
}

.nv-btn--ghost:hover {
    border-color: rgba(255, 80, 80, 0.55);
    color: #ff6b6b;
    box-shadow: 0 0 28px rgba(255, 80, 80, 0.2);
    transform: translateY(-3px);
}

.nv-btn .material-symbols-outlined {
    font-size: 1.15rem;
}

.nv-trust {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 2.75rem;
    width: 100%;
}

.nv-trust-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.85rem 0.9rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.nv-trust-item:hover {
    border-color: rgba(0, 228, 121, 0.35);
    transform: translateY(-2px);
}

.nv-trust-item > .material-symbols-outlined {
    font-size: 22px;
    color: var(--color-primary-fixed-dim);
    flex-shrink: 0;
}

.nv-trust-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.nv-trust-item span {
    display: block;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 0.15rem;
}

/* ---- Stage / Orbit ---- */
.nv-stage {
    position: relative;
    width: 100%;
    max-width: 560px;
    aspect-ratio: 1;
    margin: 0 auto;
    display: grid;
    place-items: center;
}

.nv-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.nv-orbit--1 {
    width: 72%;
    height: 72%;
    border-color: rgba(0, 228, 121, 0.25);
    animation: nv-spin 28s linear infinite;
    box-shadow: 0 0 40px rgba(0, 228, 121, 0.06);
}

.nv-orbit--1::before {
    content: "";
    position: absolute;
    top: -5px;
    left: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-primary-fixed-dim);
    box-shadow: 0 0 16px var(--color-primary-fixed-dim);
    transform: translateX(-50%);
}

.nv-orbit--2 {
    width: 88%;
    height: 88%;
    border-color: rgba(139, 92, 246, 0.22);
    animation: nv-spin-rev 40s linear infinite;
}

.nv-orbit--2::before {
    content: "";
    position: absolute;
    bottom: 18%;
    right: 4%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #a78bfa;
    box-shadow: 0 0 14px #a78bfa;
}

.nv-orbit--3 {
    width: 100%;
    height: 100%;
    border-style: solid;
    border-color: rgba(0, 212, 255, 0.08);
    animation: nv-spin 55s linear infinite;
}

.nv-core {
    position: relative;
    width: 62%;
    aspect-ratio: 1;
    border-radius: 28px;
    overflow: hidden;
    z-index: 2;
    background: linear-gradient(160deg, rgba(20, 20, 32, 0.9), rgba(8, 8, 14, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.65),
        0 0 0 1px rgba(0, 228, 121, 0.08),
        inset 0 0 40px rgba(0, 228, 121, 0.04);
    animation: nv-float 7s ease-in-out infinite;
}

.nv-core-ring {
    position: absolute;
    inset: -2px;
    border-radius: 28px;
    padding: 2px;
    background: conic-gradient(from 0deg, #00e479, #00d4ff, #8b5cf6, #00e479);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: nv-spin 6s linear infinite;
    opacity: 0.85;
    pointer-events: none;
    z-index: 3;
}

.nv-core-glow {
    position: absolute;
    inset: 10%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 228, 121, 0.25) 0%, transparent 70%);
    filter: blur(20px);
    z-index: 0;
    pointer-events: none;
}

.nv-visual {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nv-float {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.75rem 1rem;
    border-radius: 16px;
    background: rgba(10, 10, 18, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    animation: nv-float 5.5s ease-in-out infinite;
}

.nv-float .material-symbols-outlined {
    font-size: 22px;
    color: var(--color-primary-fixed-dim);
}

.nv-float strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
}

.nv-float span:not(.material-symbols-outlined):not(.nv-float-dot) {
    display: block;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.1rem;
}

.nv-float-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff2d55;
    box-shadow: 0 0 12px #ff2d55;
    flex-shrink: 0;
    animation: nv-live 1.4s ease-out infinite;
}

.nv-float--a {
    top: 12%;
    left: -4%;
    animation-delay: 0.4s;
    border-left: 3px solid var(--color-primary-fixed-dim);
}

.nv-float--b {
    top: 58%;
    right: -6%;
    animation-delay: 1.1s;
    border-left: 3px solid #ff2d55;
}

.nv-float--c {
    bottom: 8%;
    left: 8%;
    animation-delay: 0.7s;
    border-left: 3px solid #00d4ff;
}

.nv-float--c .material-symbols-outlined {
    color: #00d4ff;
}

/* ---- Ticker ---- */
.nv-ticker {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 5;
    overflow: hidden;
    padding: 0.9rem 0;
    background: linear-gradient(90deg, rgba(0, 228, 121, 0.08), rgba(139, 92, 246, 0.08));
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.nv-ticker-track {
    display: flex;
    width: max-content;
    animation: nv-ticker 28s linear infinite;
}

.nv-ticker span {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.28);
    padding: 0 2.5rem;
    white-space: nowrap;
}

.nv-ticker span::after {
    content: "â—†";
    margin-left: 2.5rem;
    color: rgba(0, 228, 121, 0.4);
    font-size: 0.55rem;
    vertical-align: middle;
}

/* ---- Scroll hint ---- */
.nv-scroll {
    position: absolute;
    bottom: 3.2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
    transition: border-color 0.2s ease;
}

.nv-scroll:hover {
    border-color: var(--color-primary-fixed-dim);
}

.nv-scroll span {
    display: block;
    width: 4px;
    height: 8px;
    border-radius: 4px;
    background: var(--color-primary-fixed-dim);
    animation: nv-scroll-dot 1.6s ease-in-out infinite;
}

.nv-scroll span:nth-child(2) {
    display: none;
}

/* ---- Keyframes ---- */
@keyframes nv-drift-a {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(8%, 12%) scale(1.12); }
}
@keyframes nv-drift-b {
    0% { transform: translate(0, 0) scale(1.05); }
    100% { transform: translate(-10%, -8%) scale(0.92); }
}
@keyframes nv-drift-c {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-12%, 10%); }
}
@keyframes nv-mesh-pan {
    from { background-position: 0 0; }
    to { background-position: 640px 640px; }
}
@keyframes nv-twinkle {
    0%, 100% { opacity: 0.15; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.6); }
}
@keyframes nv-live {
    0% { box-shadow: 0 0 0 0 rgba(255, 45, 85, 0.55); }
    70% { box-shadow: 0 0 0 12px rgba(255, 45, 85, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 45, 85, 0); }
}
@keyframes nv-rotate {
    0%, 14% { transform: translateY(0); }
    20%, 34% { transform: translateY(-1.1em); }
    40%, 54% { transform: translateY(-2.2em); }
    60%, 74% { transform: translateY(-3.3em); }
    80%, 94% { transform: translateY(-4.4em); }
    100% { transform: translateY(0); }
}
@keyframes nv-shine {
    0%, 60% { transform: translateX(-120%); }
    100% { transform: translateX(120%); }
}
@keyframes nv-spin {
    to { transform: rotate(360deg); }
}
@keyframes nv-spin-rev {
    to { transform: rotate(-360deg); }
}
@keyframes nv-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}
@keyframes nv-ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@keyframes nv-scroll-dot {
    0% { opacity: 1; transform: translateY(0); }
    80% { opacity: 0; transform: translateY(14px); }
    100% { opacity: 0; transform: translateY(0); }
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
    .nv-trust {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 960px) {
    .nv-shell {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .nv-copy {
        align-items: center;
    }

    .nv-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .nv-cta {
        justify-content: center;
    }

    .nv-stage {
        max-width: 420px;
    }

    .nv-float--a { left: 0; }
    .nv-float--b { right: 0; }
}

@media (max-width: 640px) {
    .nv-hero {
        padding: 178px 0 80px;
        min-height: auto;
    }

    .nv-shell {
        padding: 0 1.25rem;
    }

    .nv-title-main {
        font-size: 2.35rem;
    }

    .nv-title-glow {
        font-size: 2rem;
    }

    .nv-cta {
        flex-direction: column;
        width: 100%;
    }

    .nv-btn {
        width: 100%;
    }

    .nv-trust {
        grid-template-columns: 1fr 1fr;
    }

    .nv-float {
        padding: 0.55rem 0.7rem;
        border-radius: 12px;
    }

    .nv-float strong { font-size: 0.72rem; }
    .nv-float span:not(.material-symbols-outlined):not(.nv-float-dot) { font-size: 0.6rem; }

    .nv-scroll {
        display: none;
    }
}


.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--color-primary-fixed-dim);
    color: var(--color-on-primary-fixed);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 0 15px #00e479;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    filter: brightness(1.1);
    transform: scale(1.02);
}

.btn-primary .material-symbols-outlined {
    font-size: 20px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    color: var(--color-secondary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    padding: 1rem 2.5rem;
    border: 1px solid var(--color-secondary);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-secondary:hover {
    background: rgba(208, 188, 255, 0.1);
}

.btn-secondary .material-symbols-outlined {
    font-size: 20px;
}

/* ============================================
   SECTIONS GENERAL
   ============================================ */
.section {
    padding: 3rem 2rem;
    max-width: 1440px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(0, 228, 121, 0.1);
    color: var(--color-primary-fixed-dim);
    border: 1px solid rgba(0, 228, 121, 0.3);
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.85rem;
    color: var(--color-white);
    letter-spacing: 0.5px;
}

.section-header p {
    color: var(--color-on-surface-variant);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary-fixed-dim) 0%, var(--color-purple) 100%);
    margin: 1.5rem auto;
    border-radius: 4px;
    box-shadow: 0 0 12px rgba(0, 228, 121, 0.4);
}

/* ============================================
   CATEGORIES SECTION - BENTO GRID
   ============================================ */
/* ============================================
   CATEGORIES SECTION - REDESIGNED
   ============================================ */
.categories-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 5rem 2rem 6rem;
}

.categories-section-header {
    margin-bottom: 3rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.categories-section-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.01em;
    margin: 0;
}

.categories-section-header h2 span {
    color: var(--color-primary-fixed-dim);
}

.categories-section-header a {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.2s ease;
}

.categories-section-header a:hover {
    color: var(--color-primary-fixed-dim);
}

/* Bento Grid Layout */
.categories-bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .categories-bento-grid {
        grid-template-columns: 2fr 1fr;
    }
}

/* Base card */
.category-bento-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(14, 14, 14, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.category-bento-card:hover {
    border-color: rgba(0, 228, 121, 0.35);
    box-shadow:
        0 0 0 1px rgba(0, 228, 121, 0.15),
        0 8px 32px rgba(0, 0, 0, 0.5);
}

/* Large/Small sizing */
.category-bento-card--large {
    height: 400px;
}

.category-bento-card--small {
    height: 188px;
    flex: 1;
}

/* Background image â€” NO zoom animation */
.category-bento-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
    /* No transition, no transform */
}

/* Static overlay â€” darker, more premium */
.category-bento-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.45) 45%,
            rgba(0, 0, 0, 0.25) 100%);
    z-index: 1;
    transition: background 0.3s ease;
}

.category-bento-card:hover .category-bento-overlay {
    background:
        linear-gradient(to top,
            rgba(0, 0, 0, 0.92) 0%,
            rgba(0, 0, 0, 0.55) 45%,
            rgba(0, 228, 121, 0.04) 100%);
}

/* Content layer */
.category-bento-content {
    position: relative;
    z-index: 2;
    padding: 1.75rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    height: 100%;
}

/* Accent line â€” top left corner glow */
.category-bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 48px;
    height: 2px;
    background: var(--color-primary-fixed-dim);
    z-index: 3;
    border-radius: 0 0 2px 0;
    opacity: 0;
    transition: opacity 0.3s ease, width 0.4s ease;
}

.category-bento-card:hover::before {
    opacity: 1;
    width: 80px;
}

/* Category label */
.category-bento-name {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.15;
    margin: 0;
}

.category-bento-card--small .category-bento-name {
    font-size: 1.1rem;
}

/* Sub-label: "Explorar colecciÃ³n" CTA */
.category-bento-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.75rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-primary-fixed-dim);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.category-bento-card--small .category-bento-cta {
    font-size: 0.65rem;
    margin-top: 0.5rem;
}

.category-bento-card:hover .category-bento-cta {
    opacity: 1;
    transform: translateY(0);
}

.category-bento-cta svg {
    width: 12px;
    height: 12px;
    stroke: currentColor;
    fill: none;
    flex-shrink: 0;
}

.small-categories-stack {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}



/* ============================================
   PRODUCTS SECTION
   ============================================ */
/* ============================================
   PRODUCTS SECTION - ENHANCED
   ============================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 1.75rem;
}

/* ============================================
   PREMIUM PRODUCT CARD
   ============================================ */

.premium-card {
    position: relative;
    background: rgba(14, 14, 22, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(139, 92, 246, 0.12);
    display: flex;
    flex-direction: column;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(139, 92, 246, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.premium-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 1px;
    background: linear-gradient(160deg, rgba(139, 92, 246, 0.35) 0%, rgba(0, 212, 255, 0.2) 40%, transparent 70%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

/* Badge */
.premium-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.35rem 0.9rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    z-index: 5;
    text-transform: uppercase;
}

.premium-badge--sale {
    background: linear-gradient(135deg, #ff0055 0%, #ff5500 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(255, 0, 85, 0.45);
}

.premium-badge--new {
    background: linear-gradient(135deg, #00d4ff 0%, #8b5cf6 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 212, 255, 0.4);
}

/* Favorite button */
.premium-fav {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(14, 14, 22, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: all 0.3s ease;
}

.premium-fav:hover {
    color: #ff0055;
    border-color: rgba(255, 0, 85, 0.4);
    background: rgba(255, 0, 85, 0.12);
    box-shadow: 0 0 20px rgba(255, 0, 85, 0.25);
}

/* Image area */
.premium-card__image {
    position: relative;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(ellipse at 50% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 60%),
        linear-gradient(180deg, rgba(14, 14, 22, 0.3) 0%, rgba(14, 14, 22, 0.9) 100%);
    overflow: hidden;
}

.premium-card__image a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 1.5rem;
}

.premium-card__image img {
    max-width: 85%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.5));
}

.premium-card__glow {
    position: absolute;
    bottom: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

/* Body */
.premium-card__body {
    padding: 1.5rem 1.75rem 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 0.85rem;
}

/* Pills (category + brand) */
.premium-card__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.premium-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.7rem;
    border-radius: 8px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.premium-pill--cat {
    background: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.premium-pill--brand {
    background: rgba(0, 212, 255, 0.1);
    color: #67e8f9;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

/* Title with gradient */
.premium-card__title {
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.3;
    margin: 0;
}

.premium-card__title a {
    background: linear-gradient(135deg, #e0d4ff 0%, #ffffff 40%, #a5f3fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.premium-card__title a:hover {
    opacity: 0.8;
}

/* Specs row */
.premium-card__specs {
    display: flex;
    gap: 0;
    padding: 0.7rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.premium-spec {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.premium-spec i {
    font-size: 1rem;
    color: #a78bfa;
}

.premium-spec:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

/* Rating */
.premium-card__rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.premium-stars {
    display: flex;
    gap: 0.15rem;
}

.premium-stars i {
    font-size: 0.8rem;
    color: #f59e0b;
}

.premium-rating-count {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Purchase block */
.premium-card__purchase {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
}

.premium-price {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.premium-price__current {
    font-size: 1.65rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #00d4ff 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.premium-price__original {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: line-through;
}

.premium-price__tax {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.3px;
}

/* Add to cart button */
.premium-card__actions {
    display: flex;
    align-items: center;
}

.premium-btn-cart {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 50%, #4c1d95 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.35);
    white-space: nowrap;
}

.premium-btn-cart:hover {
    box-shadow: 0 6px 28px rgba(139, 92, 246, 0.55), 0 0 40px rgba(139, 92, 246, 0.2);
    transform: translateY(-1px);
    color: #fff;
}

.premium-btn-cart i {
    font-size: 0.85rem;
}

/* ============================================
   OFFER BANNER - CYBER STYLE
   ============================================ */
.offer-banner {
    padding: 3rem 2rem;
    max-width: 1440px;
    margin: 0 auto;
}

.offer-banner-inner {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(to right, var(--color-secondary-container), var(--color-purple));
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .offer-banner-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.offer-badge {
    display: inline-block;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
    padding: 0.25rem 1rem;
    border-radius: 999px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem;
}

.offer-text h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .offer-text h2 {
        font-size: 3rem;
    }
}

.offer-text h2 .highlight {
    font-weight: 900;
}

.offer-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    max-width: 500px;
    margin-bottom: 1.5rem;
}

.offer-cta {
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: var(--color-on-secondary-fixed-variant, #3c0091);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
}

.offer-cta:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transform: scale(1.05);
}

.offer-circle {
    display: none;
}

@media (min-width: 1024px) {
    .offer-circle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 320px;
        height: 320px;
        border-radius: 50%;
        background: rgba(10, 10, 10, 0.4);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        flex-shrink: 0;
    }

    .offer-circle span {
        font-family: var(--font-heading);
        font-size: 3rem;
        font-weight: 800;
        color: rgba(255, 255, 255, 0.4);
        user-select: none;
    }
}

/* ============================================
   FEATURES / BENEFITS - ENHANCED
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.75rem;
}

.feature-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(20, 20, 32, 0.6);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-card:hover {
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.2);
    background: rgba(26, 26, 42, 0.8);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(0, 212, 255, 0.2) 100%);
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--color-neon-blue);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ============================================
   TESTIMONIALS - ENHANCED
   ============================================ */
.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: var(--transition-slow);
}

.testimonial-card {
    min-width: 100%;
    padding: 0 2rem;
}

.testimonial-content {
    background: rgba(20, 20, 32, 0.7);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3.5rem 2.5rem;
    border-radius: 28px;
    text-align: center;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 6rem;
    color: var(--color-purple);
    opacity: 0.3;
    font-family: serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-purple);
}

.author-info h4 {
    color: var(--color-white);
    font-size: 1rem;
}

.author-info p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-gray);
    cursor: pointer;
    transition: var(--transition-fast);
}

.testimonial-dot.active {
    background: var(--color-purple);
    transform: scale(1.2);
}

/* ============================================
   BRANDS SECTION
   ============================================ */
.brands-slider {
    overflow: hidden;
    padding: 2rem 0;
}

.brands-track {
    display: flex;
    gap: 4rem;
    animation: scroll 20s linear infinite;
}

.brand-item {
    flex-shrink: 0;
    opacity: 0.5;
    transition: var(--transition-medium);
    filter: grayscale(100%);
}

.brand-item:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.brand-item img {
    height: 50px;
    width: auto;
}

/* ============================================
   BLOG SECTION
   ============================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    background: var(--color-gray-dark);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-medium);
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--color-purple);
    color: var(--color-white);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.85rem;
}

.blog-content {
    padding: 1.5rem;
}

.blog-category {
    color: var(--color-neon-blue);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.blog-title {
    font-size: 1.2rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    transition: var(--transition-fast);
}

.blog-card:hover .blog-title {
    color: var(--color-neon-blue);
}

.blog-excerpt {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.blog-link {
    color: var(--color-purple);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-link:hover {
    color: var(--color-neon-blue);
}

/* ============================================
   NEWSLETTER SECTION - CYBER
   ============================================ */
.newsletter-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 2rem 2rem 4rem;
    text-align: center;
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: var(--color-on-surface-variant);
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .newsletter-form {
        flex-direction: row;
    }
}

.newsletter-input-wrap {
    flex: 1;
    position: relative;
}

.newsletter-input-wrap input {
    width: 100%;
    background: var(--color-surface-lowest);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.25rem;
    color: var(--color-primary);
    font-family: var(--font-mono);
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s ease;
}

.newsletter-input-wrap input:focus {
    border-color: var(--color-primary-fixed-dim);
}

.newsletter-input-wrap input::placeholder {
    color: var(--color-on-surface-variant);
    font-family: var(--font-mono);
    font-size: 0.85rem;
}

.newsletter-input-wrap .material-symbols-outlined {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-on-surface-variant);
    font-size: 20px;
}

.newsletter-btn {
    background: var(--color-primary-fixed-dim);
    color: var(--color-on-primary-fixed);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    white-space: nowrap;
}

.newsletter-btn:hover {
    filter: brightness(1.1);
}

.newsletter-disclaimer {
    font-size: 0.7rem;
    color: var(--color-on-surface-variant);
    margin-top: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ============================================
   FOOTER - CYBER ELITE REDESIGN
   ============================================ */
.site-footer {
    position: relative;
    background: #050606;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
    margin-top: auto;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    top: -160px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 320px;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.04) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.footer-container {
    position: relative;
    z-index: 1;
    max-width: 1440px;
    margin: 0 auto;
    padding: 4rem 2rem 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Brand column */
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
}

.footer-brand-link {
    display: inline-flex;
}

.footer-brand-link .custom-logo,
.footer-logo-img {
    height: 52px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.footer-brand-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    max-width: 320px;
    margin: 0;
}

.footer-social-icons {
    display: flex;
    gap: 0.75rem;
}

.footer-social-icons a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--color-on-surface-variant);
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.25s ease;
}

.footer-social-icons a:hover {
    color: #00150a;
    background: var(--color-primary-fixed-dim);
    border-color: var(--color-primary-fixed-dim);
    box-shadow: 0 0 18px rgba(0, 228, 121, 0.4);
    transform: translateY(-3px);
}

.footer-social-icons .material-symbols-outlined {
    font-size: 20px;
}

/* Link columns */
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 36px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary-fixed-dim), transparent);
}

.footer-col-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col-list a {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-on-surface-variant);
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
    position: relative;
}

.footer-col-list a:hover {
    color: var(--color-primary-fixed-dim);
    padding-left: 8px;
}

.footer-col-desc {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin: 0;
}

/* Newsletter form */
.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-newsletter-wrap {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.footer-newsletter-wrap:focus-within {
    border-color: rgba(0, 228, 121, 0.5);
    box-shadow: 0 0 0 3px rgba(0, 228, 121, 0.1);
}

.footer-newsletter-wrap input {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: none;
    outline: none;
    padding: 0.85rem 1rem;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.9rem;
}

.footer-newsletter-wrap input::placeholder {
    color: var(--color-on-surface-variant);
}

.footer-newsletter-wrap button {
    width: 46px;
    border: none;
    background: var(--color-primary-fixed-dim);
    color: #00150a;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: filter 0.2s ease;
}

.footer-newsletter-wrap button:hover {
    filter: brightness(1.15);
}

.footer-newsletter-wrap .material-symbols-outlined {
    font-size: 20px;
}

.footer-newsletter-note {
    font-size: 0.7rem;
    color: var(--color-on-surface-variant);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Bottom bar */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.75rem 0;
}

.footer-copyright {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-on-surface-variant);
    margin: 0;
}

.footer-payments {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer-payments span {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--color-on-surface-variant);
    padding: 0.3rem 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.02);
}

/* Responsive footer */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 640px) {
    .footer-container {
        padding: 3rem 1.5rem 0;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2.25rem;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 0.9rem;
    }

    .footer-payments {
        justify-content: center;
    }
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--color-primary-fixed-dim);
    border: none;
    border-radius: 50%;
    color: var(--color-on-primary-fixed);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 228, 121, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 228, 121, 0.5);
}

.back-to-top .material-symbols-outlined {
    font-size: 24px;
}

/* ============================================
   INSTAGRAM FEED
   ============================================ */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.instagram-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 10px;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.instagram-item:hover img {
    transform: scale(1.1);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 92, 246, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-medium);
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-overlay i {
    font-size: 2rem;
    color: var(--color-white);
}

body.woocommerce {
    padding-top: 0 !important;
}

.woocommerce {
    min-height: 50vh;
}

.woocommerce-page-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

/* Shop Page */
.shop-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 3rem 0;
}

.shop-header h1 {
    font-size: 2.8rem;
    color: var(--color-white);
    margin-bottom: 1rem;
    font-weight: 800;
}

.shop-header p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.shop-filters {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    padding: 1.5rem;
    background: var(--color-gray-dark);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 0.9rem;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-purple);
    border-color: var(--color-purple);
    color: var(--color-white);
}

/* WooCommerce Product Grid */
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    padding: 0;
}

.woocommerce ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
    padding: 0;
    background: var(--color-gray-dark);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-medium);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.woocommerce ul.products li.product a img {
    margin: 0;
    padding: 1.5rem;
    height: 280px;
    object-fit: contain;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
}

.woocommerce ul.products li.product .onsale {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--color-purple);
    color: var(--color-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    min-width: auto;
    min-height: auto;
    line-height: 1.4;
    border-radius: 20px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    padding: 0 1.5rem;
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.woocommerce ul.products li.product .price {
    padding: 0 1.5rem;
    color: var(--color-neon-blue);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.woocommerce ul.products li.product .price del {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    font-weight: 400;
}

.woocommerce ul.products li.product .price ins {
    text-decoration: none;
    color: var(--color-neon-blue);
}

.woocommerce ul.products li.product .button {
    margin: 0 1.5rem 1.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--gradient-purple);
    color: var(--color-white);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
    display: block;
    text-align: center;
}

.woocommerce ul.products li.product .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.4);
}

/* Product Rating */
.woocommerce ul.products li.product .star-rating {
    padding: 0 1.5rem;
    margin-bottom: 0.5rem;
}

/* WooCommerce Pagination */
.woocommerce .woocommerce-pagination {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.woocommerce .woocommerce-pagination ul {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    padding: 0;
}

.woocommerce .woocommerce-pagination ul li {
    border: none;
}

.woocommerce .woocommerce-pagination ul li a,
.woocommerce .woocommerce-pagination ul li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    background: var(--color-gray-dark);
    color: var(--color-text);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition-fast);
}

.woocommerce .woocommerce-pagination ul li a:hover {
    background: var(--color-purple);
    border-color: var(--color-purple);
    color: var(--color-white);
}

.woocommerce .woocommerce-pagination ul li span.current {
    background: var(--color-purple);
    border-color: var(--color-purple);
    color: var(--color-white);
}

/* Product Categories Widget */
.woocommerce .widget_product_categories ul {
    list-style: none;
    padding: 0;
}

.woocommerce .widget_product_categories ul li {
    margin-bottom: 0.5rem;
}

.woocommerce .widget_product_categories ul li a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--color-text);
    background: var(--color-gray-dark);
    border-radius: 10px;
    transition: var(--transition-fast);
    border: 1px solid transparent;
}

.woocommerce .widget_product_categories ul li a:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
    color: var(--color-neon-blue);
}

/* Product Search Widget */
.woocommerce .widget_product_search .search-form {
    display: flex;
    background: var(--color-gray-dark);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.woocommerce .widget_product_search .search-field {
    flex: 1;
    padding: 1rem;
    background: transparent;
    border: none;
    color: var(--color-white);
    font-size: 0.95rem;
}

.woocommerce .widget_product_search .search-field:focus {
    outline: none;
}

.woocommerce .widget_product_search .search-submit {
    padding: 1rem 1.5rem;
    background: var(--color-purple);
    color: var(--color-white);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.woocommerce .widget_product_search .search-submit:hover {
    background: var(--color-purple-dark);
}

/* Price Filter Widget */
.woocommerce .widget_price_filter .price_slider {
    margin-bottom: 1rem;
}

.woocommerce .widget_price_filter .price_slider_amount {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.woocommerce .widget_price_filter .price_label {
    color: var(--color-text);
    font-size: 0.9rem;
}

.woocommerce .widget_price_filter .button {
    background: var(--color-purple);
    color: var(--color-white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}


/* Single Product Page styles moved to assets/css/woocommerce.css */


/* Cart Page */
.woocommerce-cart-form {
    background: var(--color-gray-dark);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.woocommerce-cart-form .shop_table {
    background: transparent;
    border: none;
}

.woocommerce-cart-form .shop_table thead {
    background: rgba(139, 92, 246, 0.1);
    border-radius: 10px;
}

.woocommerce-cart-form .shop_table th {
    padding: 1rem 1.5rem;
    color: var(--color-white);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.woocommerce-cart-form .shop_table td {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    vertical-align: middle;
    color: var(--color-text);
}

.woocommerce-cart-form .shop_table td.product-name {
    color: var(--color-white);
    font-weight: 600;
}

.woocommerce-cart-form .shop_table td.product-price,
.woocommerce-cart-form .shop_table td.product-subtotal {
    color: var(--color-neon-blue);
    font-weight: 700;
}

.woocommerce-cart-form .shop_table td.product-quantity .qty {
    width: 60px;
    padding: 0.5rem;
    background: var(--color-gray);
    border: none;
    border-radius: 5px;
    color: var(--color-white);
    text-align: center;
}

.woocommerce-cart-form .shop_table td.product-remove a {
    color: var(--color-text-muted);
    transition: var(--transition-fast);
}

.woocommerce-cart-form .shop_table td.product-remove a:hover {
    color: #ef4444;
}

/* Cart Collaterals */
.woocommerce-cart .cart-collaterals {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.woocommerce-cart .cart-collaterals .cart_totals {
    background: var(--color-gray-dark);
    border-radius: 20px;
    padding: 2rem;
}

.woocommerce-cart .cart-collaterals .cart_totals h2 {
    color: var(--color-white);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.woocommerce-cart .cart-collaterals .cart_totals table {
    width: 100%;
}

.woocommerce-cart .cart-collaterals .cart_totals table td,
.woocommerce-cart .cart-collaterals .cart_totals table th {
    padding: 0.75rem 0;
    color: var(--color-text);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.woocommerce-cart .cart-collaterals .cart_totals table td {
    text-align: right;
}

.woocommerce-cart .cart-collaterals .cart_totals .order-total td {
    color: var(--color-neon-blue);
    font-size: 1.3rem;
    font-weight: 700;
}

.woocommerce-cart .cart-collaterals .cart_totals .wc-proceed-to-checkout a.checkout-button {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--gradient-purple);
    color: var(--color-white);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    transition: var(--transition-fast);
}

.woocommerce-cart .cart-collaterals .cart_totals .wc-proceed-to-checkout a.checkout-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

/* Cross Sells */
.woocommerce .cross-sells {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.woocommerce .cross-sells h2 {
    color: var(--color-white);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page {
    min-height: 100vh;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h1 {
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.contact-methods {
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--color-gray-dark);
    border-radius: 15px;
    margin-bottom: 1rem;
    transition: var(--transition-medium);
    border: 1px solid transparent;
}

.contact-method:hover {
    border-color: var(--color-purple);
    transform: translateX(10px);
}

.contact-method-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-white);
}

.contact-method h3 {
    color: var(--color-white);
    margin-bottom: 0.25rem;
}

.contact-method p {
    color: var(--color-text-muted);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--color-gray-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--color-purple);
    color: var(--color-white);
    transform: translateY(-3px);
}

.contact-form {
    background: var(--color-gray-dark);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.contact-form h2 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 212, 255, 0.8);
    }
}

/* Scroll reveal */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: var(--transition-slow);
}

.reveal.gsap-ready {
    visibility: visible;
}

.reveal.gsap-ready.active {
    opacity: 1;
    transform: translateY(0);
}

/* Fallback: ensure content visible after 3s even if GSAP fails */
@keyframes reveal-fallback {
    to { opacity: 1; transform: translateY(0); }
}
.reveal.gsap-ready {
    animation: reveal-fallback 0.01s 3s forwards;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .cyber-nav {
        display: none !important;
    }
    
    .cyber-header-inner {
        padding: 0 24px;
    }

    .cyber-announcement {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .deals-content {
        grid-template-columns: 1fr;
    }
    
    .single-product {
        grid-template-columns: 1fr;
    }
    
    .product-images {
        position: static;
    }
    
    .woocommerce-cart .cart-collaterals {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 50vh;
        min-height: 350px;
    }

    .hero-banner-img {
        object-fit: cover;
        object-position: center top;
    }

    .cyber-menu-toggle {
        display: flex;
    }
    
    .cyber-header-inner {
        padding: 0 16px;
    }
    
    .cyber-logo-text {
        font-size: 18px;
    }

    .cyber-logo-icon {
        font-size: 22px;
    }

    .cyber-logo-img {
        height: 32px;
    }

    .cyber-logo .custom-logo {
        height: 36px !important;
        max-width: 140px !important;
    }
    
    .cyber-header-actions {
        gap: 16px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .timer-boxes {
        gap: 0.5rem;
    }
    
    .timer-box {
        padding: 0.75rem 1rem;
        min-width: 65px;
    }
    
    .timer-box span {
        font-size: 1.5rem;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .newsletter-content h2 {
        font-size: 2rem;
    }
    
    .newsletter-input-wrapper {
        flex-direction: column;
        border-radius: 15px;
        padding: 0.5rem;
    }
    
    .newsletter-input-wrapper input {
        text-align: center;
    }
    
    .newsletter-input-wrapper button {
        width: 100%;
    }
    
    .payment-methods {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .categories-carousel .category-card {
        min-width: 280px;
        max-width: 280px;
    }
    
    .category-card {
        height: 250px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .countdown {
        justify-content: center;
    }
    
    .shop-filters {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 1rem;
    }
    
    .cart-table {
        display: block;
        overflow-x: auto;
    }
    
    .announcement-text {
        font-size: 0.6rem;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 40vh;
        min-height: 280px;
    }

    .section {
        padding: 4rem 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .deals-section {
        padding: 2rem 1.5rem;
        margin: 2rem 1rem;
    }
    
    .deals-text h2 {
        font-size: 2rem;
    }
    
    .countdown-value {
        font-size: 1.5rem;
        padding: 0.75rem 1rem;
        min-width: 60px;
    }
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-primary-container) 0%, var(--color-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    animation: pulse 1.5s ease-in-out infinite;
}

.preloader-bar {
    width: 200px;
    height: 4px;
    background: var(--color-gray);
    border-radius: 2px;
    overflow: hidden;
}

.preloader-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary-container) 0%, var(--color-purple) 100%);
    border-radius: 2px;
}

/* ============================================
   GSAP ANIMATION HELPERS
   ============================================ */
.gsap-reveal {
    opacity: 0;
    visibility: hidden;
}

.gsap-reveal.active {
    opacity: 1;
    visibility: visible;
}

/* Smooth will-change for animated elements */
.will-change-transform {
    will-change: transform;
}

.will-change-opacity {
    will-change: opacity;
}

/* ============================================
   ENHANCED HOVER EFFECTS
   ============================================ */
.magnetic-btn {
    position: relative;
    display: inline-block;
}

.tilt-card {
    transform-style: preserve-3d;
    transform: perspective(1000px);
}

/* ============================================
   TEXT ANIMATION HELPERS
   ============================================ */
.split-text span {
    display: inline-block;
    opacity: 0;
}

.split-text.active span {
    opacity: 1;
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-purple);
    z-index: 10001;
    transition: none;
}

/* ============================================
   CURSOR EFFECTS (Optional)
   ============================================ */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-neon-blue);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    transition: transform 0.1s ease, background 0.2s ease;
    mix-blend-mode: difference;
}

.custom-cursor.hover {
    transform: scale(2);
    background: var(--color-neon-blue);
}

/* ============================================
   PAGE TRANSITION
   ============================================ */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-black);
    z-index: 99997;
    transform: scaleY(0);
    transform-origin: bottom;
}

/* ============================================
   IMAGE REVEAL EFFECT
   ============================================ */
.image-reveal {
    overflow: hidden;
}

.image-reveal img {
    transform: scale(1.2);
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-reveal.active img {
    transform: scale(1);
}

/* ============================================
   GLITCH EFFECT (For hero title)
   ============================================ */
@keyframes glitch {
    0%, 100% {
        transform: translate(0);
    }
    20% {
        transform: translate(-2px, 2px);
    }
    40% {
        transform: translate(-2px, -2px);
    }
    60% {
        transform: translate(2px, 2px);
    }
    80% {
        transform: translate(2px, -2px);
    }
}

.glitch-effect {
    animation: glitch 0.3s ease-in-out;
}

/* ============================================
   FLOATING ANIMATION
   ============================================ */
@keyframes float-gentle {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

.floating {
    animation: float-gentle 6s ease-in-out infinite;
}

/* ============================================
   GLOW EFFECTS
   ============================================ */
.glow-purple {
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.5),
                0 0 60px rgba(139, 92, 246, 0.3);
}

.glow-blue {
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5),
                0 0 60px rgba(0, 212, 255, 0.3);
}

/* ============================================
   TEXT GRADIENT ANIMATION
   ============================================ */
@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.animated-gradient-text {
    background: linear-gradient(270deg, var(--color-purple), var(--color-neon-blue), var(--color-purple));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}


/* ============================================================
   HOME ï¿½ EDITORIAL PREMIUM (.cc-*)
   Paleta #050505 ï¿½ grafito ï¿½ blanco ï¿½ un solo acento (verde)
   Solo verde donde el usuario interactï¿½a.
   ============================================================ */

:root {
    --cc-bg: #ffffff;
    --cc-bg-2: #f5f5f7;
    --cc-bg-3: #eeeeef;
    --cc-surface: #f5f5f7;
    --cc-line: rgba(0, 0, 0, 0.09);
    --cc-line-strong: rgba(0, 0, 0, 0.18);
    --cc-ink: #141518;
    --cc-muted: #5f6066;
    --cc-faint: #8a8b91;
    --cc-accent: #00ff88;
    --cc-accent-ink: #06130c;
    --cc-accent-strong: #00a35b;
    --cc-font: 'Hanken Grotesk', sans-serif;
    --cc-mono: 'Geist Mono', monospace;
}

.cc-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- Reveal sutil (solo con JS activo) --- */
html.cc-js .cc-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
}
html.cc-js .cc-reveal.cc-in {
    opacity: 1;
    transform: none;
}
@media (prefers-reduced-motion: reduce) {
    html.cc-js .cc-reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* --- Eyebrow / tipografï¿½a --- */
.cc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-family: var(--cc-mono);
    font-size: .72rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--cc-muted);
}
.cc-eyebrow::before {
    content: "";
    width: 26px;
    height: 1px;
    background: var(--cc-muted);
}
.cc-heading {
    font-family: var(--cc-font);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.02;
    font-size: clamp(2rem, 4.5vw, 3.75rem);
    color: var(--cc-ink);
}
.cc-display {
    font-family: var(--cc-font);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: .98;
    font-size: clamp(2.75rem, 7vw, 6.25rem);
    color: var(--cc-ink);
}
.cc-display-em {
    color: var(--cc-muted);
    font-weight: 500;
}

/* --- Botones tï¿½ctiles --- */
.cc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    height: 48px;
    padding: 0 1.5rem;
    border-radius: 3px;
    border: 1px solid transparent;
    font-family: var(--cc-font);
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: .01em;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}
.cc-btn .material-symbols-outlined {
    font-size: 1.15rem;
}
.cc-btn--accent {
    background: var(--cc-accent);
    color: var(--cc-accent-ink);
}
.cc-btn--accent:hover {
    background: #22ff96;
    transform: translateY(-1px);
}
.cc-btn--ghost {
    background: transparent;
    border-color: var(--cc-line-strong);
    color: var(--cc-ink);
}
.cc-btn--ghost:hover {
    border-color: var(--cc-ink);
    transform: translateY(-1px);
}
.cc-btn:active {
    transform: translateY(0) scale(.98);
}

/* --- Links editoriales --- */
.cc-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .9rem;
    font-weight: 600;
    color: var(--cc-ink);
    text-decoration: none;
    padding-bottom: .4rem;
    border-bottom: 1px solid var(--cc-line-strong);
    align-self: end;
    transition: border-color .2s ease, color .2s ease;
}
.cc-link:hover {
    border-color: var(--cc-accent);
    color: var(--cc-accent);
}
.cc-link .material-symbols-outlined {
    font-size: 1.1rem;
}

/* ============================================================
   HERO
   ============================================================ */
.cc-hero {
    background: var(--cc-bg);
    padding: 3rem 0 2.5rem;
    position: relative;
}
.cc-hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 560px;
    background: radial-gradient(120% 90% at 18% -10%, rgba(255,255,255,0.05), transparent 60%);
    pointer-events: none;
}
.cc-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 3rem;
    align-items: center;
}
.cc-hero-sub {
    max-width: 480px;
    font-size: 1.125rem;
    line-height: 1.65;
    color: var(--cc-muted);
    margin: 1.5rem 0 2.25rem;
}
.cc-hero-search {
    margin-bottom: 2.25rem;
}
.cc-hero-search-form {
    display: flex;
    align-items: center;
    gap: .5rem;
    background: var(--cc-bg-2);
    border: 1px solid var(--cc-line);
    border-radius: 6px;
    padding: .375rem .375rem .375rem 1rem;
    transition: border-color .25s ease, background .25s ease;
}
.cc-hero-search-form:focus-within {
    border-color: rgba(0,255,136,.55);
    background: #0d0d0d;
}
.cc-search-icon {
    color: var(--cc-faint);
    font-size: 1.35rem;
    flex: none;
}
.cc-hero-search-form input {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: 0;
    outline: 0;
    font-family: var(--cc-font);
    font-size: 1rem;
    color: var(--cc-ink);
    padding: .8rem 0;
}
.cc-hero-search-form input::placeholder {
    color: var(--cc-faint);
}
.cc-btn--search {
    flex: none;
}
.cc-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-bottom: 3rem;
}
.cc-hero-meta {
    list-style: none;
    margin: 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--cc-line);
    display: flex;
    flex-wrap: wrap;
    gap: 2.75rem;
}
.cc-hero-meta li {
    display: flex;
    flex-direction: column;
    gap: .15rem;
}
.cc-hero-meta-num {
    font-family: var(--cc-mono);
    font-size: 1rem;
    color: var(--cc-ink);
}
.cc-hero-meta-lab {
    font-size: .8rem;
    color: var(--cc-faint);
}
.cc-hero-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}
.cc-hero-figure {
    margin: 0;
    position: absolute;
    inset: 0;
    border: 1px solid var(--cc-line);
    border-radius: 12px;
    background: linear-gradient(180deg, #f8f8f8, #eeeef0);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.cc-hero-slide--active {
    position: relative;
    opacity: 1;
    visibility: visible;
}
.cc-hero-figure > a,
.cc-hero-figure img {
    display: block;
    width: 100%;
    height: auto;
}
.cc-hero-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
}
.cc-hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    border: none;
    background: #c7c7cc;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, width 0.3s ease;
}
.cc-hero-dot--active {
    background: #00a35b;
    width: 24px;
}
.cc-hero-figcaption {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--cc-line);
}
.cc-hero-fig-name {
    font-size: .85rem;
    color: var(--cc-muted);
}
.cc-hero-fig-price {
    font-family: var(--cc-mono);
    font-size: .9rem;
    color: var(--cc-ink);
}

/* ============================================================
   COLECCIï¿½N
   ============================================================ */
.cc-collection {
    background: var(--cc-bg-2);
    border-top: 1px solid var(--cc-line);
    border-bottom: 1px solid var(--cc-line);
    padding: 3rem 0;
}
.cc-section-head {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 1rem 2rem;
    margin-bottom: 1.75rem;
}
.cc-section-head .cc-eyebrow {
    grid-column: 1 / -1;
}
.cc-collection-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 1rem;
}
.cc-col-block {
    position: relative;
    display: flex;
    overflow: hidden;
    border: 1px solid var(--cc-line);
    border-radius: 10px;
    text-decoration: none;
    background-color: #0d0d0d;
}
.cc-col-block--main {
    min-height: 560px;
}
.cc-col-media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: #111;
    transition: transform 1s cubic-bezier(.16,1,.3,1);
}
.cc-col-block:hover .cc-col-media {
    transform: scale(1.04);
}
.cc-col-caption {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: .35rem;
    padding: 1.5rem;
    background: linear-gradient(180deg, transparent 40%, rgba(5,5,5,.85));
}
.cc-col-index {
    font-family: var(--cc-mono);
    font-size: .7rem;
    letter-spacing: .2em;
    color: var(--cc-muted);
}
.cc-col-title {
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--cc-ink);
}
.cc-col-link {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    margin-top: .5rem;
    width: fit-content;
    font-size: .85rem;
    color: var(--cc-ink);
    border-bottom: 1px solid var(--cc-line-strong);
    padding-bottom: .25rem;
    transition: border-color .2s ease, color .2s ease;
}
.cc-col-block:hover .cc-col-link {
    color: var(--cc-accent);
    border-color: var(--cc-accent);
}
.cc-col-link .material-symbols-outlined {
    font-size: 1rem;
}
.cc-col-stack {
    display: grid;
    grid-template-rows: 1fr 1fr auto;
    gap: 1rem;
}
.cc-col-block--tall {
    min-height: 230px;
    align-items: center;
}
.cc-col-block--tall .cc-col-caption {
    background: linear-gradient(180deg, rgba(5,5,5,.55), rgba(5,5,5,.8));
    justify-content: center;
    align-items: flex-start;
}
.cc-col-media--dark {
    background:
        radial-gradient(120% 120% at 85% 0%, rgba(255,255,255,.06), transparent 60%),
        #0b0b0b;
}
.cc-col-quote {
    border: 1px solid var(--cc-line);
    border-radius: 10px;
    background: #0d0d0d;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
}
.cc-col-quote p {
    font-size: 1.05rem;
    line-height: 1.5;
    color: var(--cc-ink);
    letter-spacing: -0.01em;
}
.cc-col-quote-foot {
    font-family: var(--cc-mono);
    font-size: .7rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--cc-faint);
}

/* ============================================================
   POR QUï¿½ NOSOTROS ï¿½ filas alternadas
   ============================================================ */
.cc-why {
    background: var(--cc-bg);
    padding: 3rem 0;
}
.cc-why-list {
    border-top: 1px solid var(--cc-line);
    margin-top: 1.5rem;
}
.cc-why-row {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 2rem;
    align-items: center;
    padding: 2rem 0;
    border-bottom: 1px solid var(--cc-line);
}
.cc-why-row--flip .cc-why-cell:first-child {
    order: 2;
}
.cc-why-cell--txt {
    padding-right: 2rem;
}
.cc-why-num {
    font-family: var(--cc-mono);
    font-size: .8rem;
    letter-spacing: .2em;
    color: var(--cc-faint);
    display: block;
    margin-bottom: 1.25rem;
}
.cc-why-title {
    font-size: clamp(1.5rem, 2.5vw, 2.1rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.08;
    color: var(--cc-ink);
    margin-bottom: 1rem;
}
.cc-why-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--cc-muted);
    max-width: 480px;
}
.cc-why-cell--stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .6rem;
    justify-content: center;
}
.cc-why-big {
    font-family: var(--cc-font);
    font-weight: 600;
    letter-spacing: -0.04em;
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1;
    color: var(--cc-ink);
}
.cc-why-unit {
    font-size: .5em;
    color: var(--cc-muted);
}
.cc-why-cap {
    font-family: var(--cc-mono);
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--cc-faint);
}
.cc-why-cell--icon {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.1rem;
    justify-content: center;
}
.cc-why-ico {
    font-size: 3rem;
    font-weight: 200;
    color: var(--cc-ink);
}

/* ============================================================
   FINANCIACIï¿½N
   ============================================================ */
.cc-finance {
    background: var(--cc-bg-2);
    border-top: 1px solid var(--cc-line);
    border-bottom: 1px solid var(--cc-line);
    padding: 3rem 0;
}
.cc-finance-inner {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 3rem;
    align-items: center;
}
.cc-finance-sub {
    max-width: 480px;
    color: var(--cc-muted);
    line-height: 1.7;
    margin: 1.25rem 0 2rem;
}
.cc-heading-em {
    color: var(--cc-muted);
    font-weight: 500;
}
.cc-finance-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
}
.cc-finance-methods {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}
.cc-pay-chip {
    font-family: var(--cc-mono);
    font-size: .72rem;
    letter-spacing: .12em;
    color: var(--cc-muted);
    border: 1px solid var(--cc-line);
    border-radius: 999px;
    padding: .5rem .9rem;
}
.cc-finance-note {
    font-family: var(--cc-mono);
    font-size: .8rem;
    color: var(--cc-faint);
}
.cc-finance-note-em {
    color: var(--cc-accent);
}

/* ============================================================
   PERMUTA
   ============================================================ */
.cc-tradein {
    background: var(--cc-bg);
    padding: 3rem 0;
}
.cc-tradein-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}
.cc-tradein-sub {
    color: var(--cc-muted);
    line-height: 1.7;
    max-width: 440px;
    margin: 1.25rem 0 2rem;
}
.cc-tradein-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--cc-line);
}
.cc-step {
    display: grid;
    grid-template-columns: 3rem 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1.75rem 0;
    border-bottom: 1px solid var(--cc-line);
}
.cc-step-num {
    font-family: var(--cc-mono);
    font-size: .85rem;
    color: var(--cc-accent);
    padding-top: .15rem;
}
.cc-step-title {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--cc-ink);
    margin-bottom: .35rem;
}
.cc-step-desc {
    font-size: .9rem;
    color: var(--cc-muted);
}

/* ============================================================
   MARCAS
   ============================================================ */
.cc-brands {
    background: var(--cc-bg-2);
    border-top: 1px solid var(--cc-line);
    border-bottom: 1px solid var(--cc-line);
    padding: 2rem 0;
}
.cc-brands-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem 3rem;
}
.cc-brand {
    font-family: var(--cc-mono);
    font-size: .9rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--cc-faint);
    transition: color .25s ease;
}
.cc-brand:hover {
    color: var(--cc-ink);
}

/* ============================================================
   TESTIMONIOS
   ============================================================ */
.cc-testimonials {
    background: var(--cc-bg);
    padding: 3rem 0;
}
.cc-quotes {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 1rem;
}
.cc-quote--feature {
    border: 1px solid var(--cc-line);
    border-radius: 12px;
    background: linear-gradient(180deg, #0d0e0e, #090a0a);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
}
.cc-quote--feature blockquote {
    font-size: clamp(1.5rem, 2.6vw, 2.25rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: var(--cc-ink);
}
.cc-quote figcaption {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    flex-wrap: wrap;
}
.cc-quote-name {
    font-weight: 600;
    color: var(--cc-ink);
    font-size: .95rem;
}
.cc-quote-where {
    font-family: var(--cc-mono);
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--cc-faint);
}
.cc-quote--pair {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.cc-quote--pair figure {
    margin: 0;
    border: 1px solid var(--cc-line);
    border-radius: 12px;
    background: #0d0d0d;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
}
.cc-quote--pair blockquote {
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--cc-ink);
}

/* ============================================================
   CATï¿½LOGO ï¿½ secciï¿½n clara
   ============================================================ */
.cc-products {
    background: var(--cc-surface);
    border-top: 1px solid #e2e2e2;
    padding: 3rem 0;
}
.cc-eyebrow--light {
    color: #8a8a8a;
}
.cc-eyebrow--light::before {
    background: #bdbdbd;
}
.cc-heading--dark {
    color: #0a0a0a;
}
.cc-link--dark {
    color: #0a0a0a;
    border-color: rgba(10,10,10,.2);
}
.cc-link--dark:hover {
    border-color: var(--cc-accent);
    color: var(--cc-accent);
}
.cc-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.cc-product {
    background: #ffffff;
    border: 1px solid #e4e4e4;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s ease;
}
.cc-product:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(0,0,0,.12);
}
.cc-product-media {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    background: #f0f0f0;
    overflow: hidden;
}
.cc-product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
    display: block;
    transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.cc-product:hover .cc-product-media img {
    transform: scale(1.04);
}
.cc-product-badge {
    position: absolute;
    top: .9rem;
    left: .9rem;
    font-family: var(--cc-mono);
    font-size: .7rem;
    letter-spacing: .08em;
    color: var(--cc-accent-ink);
    background: var(--cc-accent);
    border-radius: 999px;
    padding: .3rem .6rem;
}
.cc-product-body {
    padding: 1.25rem 1.25rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}
.cc-product-title {
    font-size: .98rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.3;
    color: #111;
}
.cc-product-title a {
    color: inherit;
    text-decoration: none;
}
.cc-product-title a:hover {
    color: #000;
}
.cc-product-foot {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
}
.cc-product-price {
    font-family: var(--cc-font);
    font-size: 1.1rem;
    font-weight: 600;
    color: #0a0a0a;
}
.cc-product-price del {
    color: #999;
    font-weight: 400;
    font-size: .8rem;
}
.cc-product-price ins {
    text-decoration: none;
    color: var(--cc-accent-ink);
}
.cc-btn--cart {
    height: 40px;
    padding: 0 1rem;
    border-radius: 3px;
    font-size: .85rem;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.cc-newsletter {
    background: var(--cc-bg);
    border-top: 1px solid var(--cc-line);
    padding: 3rem 0;
}
.cc-newsletter-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.cc-newsletter-sub {
    color: var(--cc-muted);
    max-width: 420px;
    margin: 1rem 0 2.25rem;
}
.cc-newsletter-row {
    display: flex;
    gap: .5rem;
    width: 100%;
    max-width: 520px;
}
.cc-newsletter-row input {
    flex: 1;
    min-width: 0;
    height: 52px;
    padding: 0 1rem;
    background: var(--cc-bg-2);
    border: 1px solid var(--cc-line);
    border-radius: 3px;
    color: var(--cc-ink);
    font-family: var(--cc-font);
    font-size: 1rem;
    outline: none;
    transition: border-color .25s ease;
}
.cc-newsletter-row input:focus {
    border-color: rgba(0,255,136,.55);
}
.cc-newsletter-note {
    margin-top: 1.25rem;
    font-size: .78rem;
    color: var(--cc-faint);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    .cc-hero-grid,
    .cc-collection-grid,
    .cc-tradein-grid,
    .cc-finance-inner,
    .cc-quotes {
        grid-template-columns: 1fr;
    }
    .cc-hero {
        padding: 3.5rem 0 4rem;
    }
    .cc-col-block--main {
        min-height: 420px;
    }
    .cc-col-stack {
        grid-template-rows: auto;
    }
    .cc-why-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2.5rem 0;
    }
    .cc-why-row--flip .cc-why-cell:first-child {
        order: 0;
    }
    .cc-why-cell--txt {
        padding-right: 0;
    }
    .cc-section-head {
        grid-template-columns: 1fr;
        align-items: start;
    }
    .cc-section-head .cc-link {
        justify-self: start;
    }
    .cc-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cc-brands-inner {
        justify-content: flex-start;
    }
}
@media (max-width: 560px) {
    .cc-wrap {
        padding: 0 1.25rem;
    }
    .cc-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cc-hero-search-form {
        flex-wrap: wrap;
        padding: .5rem;
    }
    .cc-hero-search-form input {
        width: 100%;
    }
    .cc-btn--search {
        width: 100%;
    }
    .cc-newsletter-row {
        flex-direction: column;
    }
    .cc-hero-meta {
        gap: 1.5rem;
    }
    .cc-quote--feature {
        padding: 2rem;
    }
    .cc-quote--pair figure {
        padding: 1.5rem;
    }
}

/* ============================================
   LIGHT THEME OVERRIDES
   ============================================ */

/* Page titles (were white for dark bg) */
.page-content .page-header h1.page-title {
    color: #141518 !important;
}

/* â”€â”€ Neon Vault hero (legacy) â”€â”€ */
.nv-hero {
    background: linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
    padding-top: 120px;
}
.nv-hero h1,
.nv-hero h2,
.nv-hero h3,
.nv-badge-clock {
    color: #141518;
}
.nv-btn--ghost {
    background: rgba(0, 0, 0, 0.04);
    color: #141518;
}

/* â”€â”€ Home CC hardcoded dark blocks â”€â”€ */
.cc-hero-search-form:focus-within {
    background: var(--cc-bg-2);
}
.cc-col-block {
    background-color: #e9e9ec;
}
.cc-col-media {
    background-color: #dedee1;
}
.cc-col-media--dark {
    background: radial-gradient(120% 120% at 85% 0%, rgba(0, 0, 0, 0.08), transparent 60%), #e6e6e9;
}
.cc-col-caption {
    background: linear-gradient(180deg, transparent 40%, rgba(20, 21, 24, 0.82));
}
.cc-col-index {
    color: rgba(255, 255, 255, 0.65);
}
.cc-col-title,
.cc-col-link {
    color: #ffffff;
}
.cc-col-link {
    border-color: rgba(255, 255, 255, 0.4);
}
.cc-col-link:hover {
    border-color: #00ff88;
    color: #00ff88;
}
.cc-col-quote {
    background: var(--cc-bg-2);
}
.cc-quote--pair figure {
    background: var(--cc-bg-2);
}

/* â”€â”€ Contact page â”€â”€ */
.contact-page {
    background: var(--color-bg);
}
.contact-info h1 {
    color: #141518;
}
.contact-method {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.contact-method h3 {
    color: #141518;
}
.contact-method-icon {
    color: #ffffff;
}
.social-link {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
}
.social-link:hover {
    background: var(--color-purple);
    color: #ffffff;
}
.contact-form {
    background: #ffffff;
    border-color: rgba(139, 92, 246, 0.2);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}
.contact-form h2 {
    color: #141518;
}
