/* font-display: swap para Font Awesome (evita FOIT) */
@font-face { font-family: "Font Awesome 6 Free";  font-display: swap; }
@font-face { font-family: "Font Awesome 6 Brands"; font-display: swap; }

/* ============================================
   VARIABLES CSS
   ============================================ */
:root {
    --color-primary: #0066ff;
    --color-primary-dark: #0033cc;
    --color-bg: #050505;
    --color-bg-light: #0a0a0a;
    --color-card: #111111;
    --color-text: #ffffff;
    --color-text-muted: #a0a0a0;
    --color-border: rgba(0, 102, 255, 0.2);
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-fast: 0.3s ease;
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-glow: 0 0 30px rgba(0, 102, 255, 0.2);
    --shadow-glow-hover: 0 0 40px rgba(0, 102, 255, 0.45);
}

/* ============================================
   RESET Y BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   TIPOGRAFÍA
   ============================================ */
.font-display {
    font-family: var(--font-display);
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 50%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to { background-position: 200% center; }
}

.text-glow {
    text-shadow: 0 0 20px rgba(0, 102, 255, 0.5), 0 0 40px rgba(0, 102, 255, 0.3);
}

/* ============================================
   FONDOS
   ============================================ */
.bg-grid {
    background-image:
        linear-gradient(rgba(0, 102, 255, 0.09) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 255, 0.09) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridDrift 25s linear infinite;
}

@keyframes gridDrift {
    from { background-position: 0 0; }
    to   { background-position: 60px 60px; }
}

.bg-glass {
    background: rgba(17, 17, 17, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
}

.bg-gradient-hero {
    background: radial-gradient(circle at center, rgba(0, 102, 255, 0.15) 0%, transparent 50%);
}

.bg-gradient-promo {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 102, 255, 0.1) 100%);
}

/* ============================================
   BOTONES PERSONALIZADOS
   ============================================ */
.btn-zg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn-zg-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #fff;
}

.btn-zg-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn-zg-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.5);
    color: #fff;
    text-decoration: none;
}

.btn-zg-primary:hover::before {
    left: 100%;
}

.btn-zg-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid rgba(0, 102, 255, 0.45);
}

.btn-zg-outline:hover {
    background: rgba(0, 102, 255, 0.1);
    border-color: var(--color-primary);
    color: var(--color-primary);
    text-decoration: none;
}

/* ============================================
   NAVEGACIÓN
   ============================================ */
.navbar-zg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    padding: 1rem 0;
    transition: all var(--transition-fast);
}

.logoheader {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}

.navbar-zg .nav-link {
    color: var(--color-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    position: relative;
    transition: color var(--transition-fast);
}

.navbar-zg .nav-link:hover {
    color: #fff;
    text-decoration: none;
}

.navbar-zg .nav-link.router-link-exact-active {
    color: #fff;
}

.navbar-zg .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--color-primary);
    transform: scaleX(0);
    transition: transform var(--transition-fast);
}

.navbar-zg .nav-link:hover::after,
.navbar-zg .nav-link.router-link-exact-active::after {
    transform: scaleX(1);
}

.logo-z {
    width: 56px;
    height: 56px;
    background: #000;
    border: 2px solid rgba(0, 102, 255, 0.7);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(0, 102, 255, 0.15),
        0 0 16px rgba(0, 102, 255, 0.5),
        0 0 32px rgba(0, 102, 255, 0.2);
    flex-shrink: 0;
}

.logo-z::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: var(--color-primary);
    border-radius: 16px;
    filter: blur(12px);
    opacity: 0.35;
    z-index: -1;
}

.logo-z span {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-primary);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: var(--color-primary);
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   TARJETAS DE PRODUCTO — REVAMP
   ============================================ */
.product-card-zg {
    background: #080808;
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.35s ease,
                box-shadow 0.35s ease;
}

/* Top glowing border that reveals on hover */
.product-card-zg::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.9) 50%, transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 10;
    pointer-events: none;
}

.product-card-zg:hover::before {
    transform: scaleX(1);
}

.product-card-zg:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 102, 255, 0.28);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.75), 0 0 40px rgba(0, 102, 255, 0.1);
}

/* Scan line sweep on hover */
.product-scan-line {
    position: absolute;
    top: 0;
    left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.85) 50%, transparent);
    z-index: 11;
    opacity: 0;
    pointer-events: none;
}

.product-card-zg:hover .product-scan-line {
    opacity: 1;
    animation: prodScanLine 0.65s ease forwards;
}

@keyframes prodScanLine {
    0%   { top: 0%;    opacity: 0.9; }
    80%  {             opacity: 0.4; }
    100% { top: 100%;  opacity: 0;   }
}

.product-image-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: #0d0d0d;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Dot-grid background behind product image */
.product-image-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0, 102, 255, 0.07) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
    z-index: 0;
}

.product-image-wrap img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    transition: transform 0.5s ease;
}

.product-card-zg:hover .product-image-wrap img {
    transform: scale(1.07);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    transition: background 0.3s ease;
    z-index: 2;
}

.product-card-zg:hover .product-overlay {
    background: linear-gradient(to top, rgba(0, 5, 20, 0.65) 0%, transparent 55%);
}

.product-badges {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 4;
}

.badge-zg {
    display: inline-block;
    padding: 0.18rem 0.55rem;
    font-family: var(--font-display);
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.badge-zg-primary {
    background: var(--color-primary);
    color: #fff;
}

.badge-zg-danger {
    background: #ef4444;
    color: #fff;
}

.product-discount-tag {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: #ef4444;
    color: #fff;
    font-family: var(--font-display);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 0.18rem 0.5rem;
    z-index: 4;
}

/* "Ver Detalle" CTA slides up from bottom */
.product-view-btn {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(90deg, rgba(0, 102, 255, 0.95), rgba(0, 51, 200, 0.95));
    color: #fff;
    font-family: var(--font-display);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 0.65rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5;
}

.product-card-zg:hover .product-view-btn {
    transform: translateY(0);
}

.product-info {
    padding: 1rem 1.15rem 1.15rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.55rem;
}

.product-category {
    color: var(--color-primary);
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.rating-compact {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #fbbf24;
    font-size: 0.7rem;
    font-weight: 700;
}

.rating-compact .fa-star {
    font-size: 0.58rem;
}

.product-title {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.25s ease;
    letter-spacing: 0.02em;
}

.product-card-zg:hover .product-title {
    color: #fff;
}

.product-desc {
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.78rem;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.55;
    padding-bottom: 0.75rem;
    flex: 1;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    margin-top: auto;
}

.product-price {
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
}

.price-old {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: line-through;
    font-size: 0.72rem;
}

.price-current {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.03em;
}

.product-detail-link {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(0, 102, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 0.65rem;
    text-decoration: none;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.product-detail-link:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
    text-decoration: none;
}

.rating-stars {
    color: #ffc107;
    font-size: 0.75rem;
}

/* ============================================
   SECCIONES
   ============================================ */
.section-zg {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-title span {
    color: var(--color-primary);
}

.section-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--color-primary), var(--color-primary-dark));
    margin: 0 auto;
    border-radius: 2px;
}

/* ============================================
   REVAMP SECTION HEADERS
   ============================================ */
.revamp-section-header {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 2.75rem;
}

.revamp-section-num {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 900;
    color: rgba(0, 102, 255, 0.1);
    line-height: 0.85;
    flex-shrink: 0;
    user-select: none;
    letter-spacing: -0.02em;
}

.revamp-section-title {
    font-family: var(--font-display);
    font-size: 2.1rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 1.05;
    color: #fff;
    margin: 0 0 0.4rem;
}

.revamp-section-sub {
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.82rem;
    margin: 0;
    letter-spacing: 0.04em;
}

/* ============================================
   PRODUCTS SECTION AMBIENT GLOW
   ============================================ */
.products-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 60%;
    background: radial-gradient(ellipse at 50% 0%, rgba(0, 102, 255, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-zg {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-glow-1 {
    position: absolute;
    top: 10%;
    left: 15%;
    width: 700px;
    height: 700px;
    background: rgba(0, 102, 255, 0.22);
    border-radius: 50%;
    filter: blur(100px);
    animation: pulse-glow 5s ease-in-out infinite;
}

.hero-glow-2 {
    position: absolute;
    bottom: 5%;
    right: 10%;
    width: 650px;
    height: 650px;
    background: rgba(0, 102, 255, 0.18);
    border-radius: 50%;
    filter: blur(100px);
    animation: pulse-glow 5s ease-in-out infinite 1.5s;
}

.hero-glow-3 {
    position: absolute;
    top: 40%;
    left: 55%;
    width: 500px;
    height: 500px;
    background: rgba(124, 58, 237, 0.16);
    border-radius: 50%;
    filter: blur(110px);
    animation: pulse-glow 6s ease-in-out infinite 0.8s;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50%       { opacity: 1;   transform: scale(1.15); }
}

/* Scanning line */
.hero-scan {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right,
        transparent 0%,
        rgba(0,102,255,0.0) 15%,
        rgba(0,102,255,0.35) 40%,
        rgba(0,102,255,0.35) 60%,
        rgba(0,102,255,0.0) 85%,
        transparent 100%);
    box-shadow: 0 0 6px rgba(0,102,255,0.25);
    pointer-events: none;
    animation: scanDown 12s linear infinite;
}

@keyframes scanDown {
    0%   { top: 0%;    opacity: 0; }
    5%   { opacity: 1; }
    95%  { opacity: 1; }
    100% { top: 100%;  opacity: 0; }
}

/* Floating particles */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    bottom: -8px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--color-primary);
    opacity: 0;
    left: calc(var(--n) * 5.1% + 0.5%);
    box-shadow: 0 0 6px rgba(0,102,255,0.7);
    animation: particleRise calc(7s + var(--n) * 0.5s) ease-in-out calc(var(--n) * 0.38s) infinite;
}
.hero-particle:nth-child(3n)   { width: 5px; height: 5px; }
.hero-particle:nth-child(3n+1) { width: 2px; height: 2px; }

@keyframes particleRise {
    0%   { transform: translateY(0)      scale(1);   opacity: 0; }
    8%   { opacity: 0.9; }
    80%  { opacity: 0.4; }
    100% { transform: translateY(-130vh) scale(0.4); opacity: 0; }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(17, 17, 17, 0.8);
    border: 1px solid var(--color-border);
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-badge span {
    color: var(--color-primary);
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stat-card {
    background: rgba(17, 17, 17, 0.8);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-primary);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ============================================
   FILTROS
   ============================================ */
.filter-sidebar {
    background: rgba(17, 17, 17, 0.8);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 1.5rem;
}

.filter-title {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-group {
    margin-bottom: 1.5rem;
}

.filter-label {
    display: block;
    color: var(--color-text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.filter-select {
    width: 100%;
    background: #000;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    padding: 0.75rem;
    color: #fff;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%230066ff' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.filter-select:focus {
    outline: none;
    border-color: var(--color-primary);
}

.range-value {
    color: var(--color-primary);
    font-weight: 600;
}

/* Custom Range Slider */
input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: var(--color-primary);
    border-radius: 50%;
    cursor: pointer;
    transition: transform var(--transition-fast);
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

/* ============================================
   CATEGORY BADGES
   ============================================ */
.category-badges {
    display: flex;
    gap: 0.4rem;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    flex-wrap: wrap;
    margin-bottom: 2.75rem;
}

.category-badges::-webkit-scrollbar {
    display: none;
}

.category-badge-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.42rem 1rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-display);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.25s ease;
}

.category-badge-btn:hover,
.category-badge-btn.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.35);
}


/* ============================================
   FEATURE CARDS
   ============================================ */
.feature-card-zg {
    background: rgba(17, 17, 17, 0.8);
    border: 1px solid transparent;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-fast);
    width: 100%;
    height: 100%;
}

.feature-card-zg:hover {
    border-color: rgba(0, 102, 255, 0.3);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: background var(--transition-fast);
}

.feature-card-zg:hover .feature-icon {
    background: rgba(0, 102, 255, 0.2);
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--color-primary);
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-desc {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer-zg {
    background: #000;
    padding: 5rem 0 0;
    position: relative;
    overflow: hidden;
}

.footer-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 102, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.footer-top-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 102, 255, 0.9) 50%, transparent 100%);
    background-size: 200% 100%;
    animation: footerLineShimmer 5s linear infinite;
}

@keyframes footerLineShimmer {
    0%   { background-position: 200% center; }
    100% { background-position: -200% center; }
}

.footer-watermark {
    position: absolute;
    right: -2%;
    bottom: -8%;
    font-family: var(--font-display);
    font-size: 30vw;
    font-weight: 900;
    color: rgba(0, 102, 255, 0.025);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.footer-inner {
    position: relative;
    z-index: 1;
}

.footer-main-row {
    padding-bottom: 1rem;
}

.footer-col {
    padding-bottom: 2.5rem;
}

.footer-brand-lockup {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.footer-logo-mark {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-primary);
    text-shadow: 0 0 20px rgba(0, 102, 255, 0.6), 0 0 50px rgba(0, 102, 255, 0.3);
    line-height: 1;
    flex-shrink: 0;
}

.footer-brand-name {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #fff;
    line-height: 1.2;
}

.footer-brand-tagline {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.38);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.825rem;
    line-height: 1.75;
    margin-bottom: 0;
    max-width: 320px;
}

.footer-col-title {
    font-family: var(--font-display);
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    position: relative;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 102, 255, 0.5), transparent);
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-list li {
    margin-bottom: 0.1rem;
}

.footer-nav-link {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.85rem;
    text-decoration: none;
    padding: 0.35rem 0;
    transition: color 0.25s ease, padding-left 0.25s ease;
    gap: 0;
}

.footer-nav-link::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 1px;
    background: var(--color-primary);
    transition: width 0.25s ease, margin-right 0.25s ease;
    flex-shrink: 0;
}

.footer-nav-link:hover {
    color: #fff;
    text-decoration: none;
    padding-left: 0.25rem;
}

.footer-nav-link:hover::before {
    width: 14px;
    margin-right: 0.5rem;
}

.footer-connect-text {
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.825rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.footer-fb-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.7rem 1.35rem;
    border: 1px solid rgba(0, 102, 255, 0.45);
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-fb-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--color-primary);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 0;
}

.footer-fb-cta:hover::before {
    transform: translateX(0);
}

.footer-fb-cta:hover {
    color: #fff;
    text-decoration: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 25px rgba(0, 102, 255, 0.45);
}

.footer-fb-cta i,
.footer-fb-cta span {
    position: relative;
    z-index: 1;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.5) 20%, rgba(0, 102, 255, 0.5) 80%, transparent);
    margin-bottom: 1.75rem;
    position: relative;
}

.footer-divider::after {
    content: '';
    position: absolute;
    inset: -5px 0;
    background: inherit;
    filter: blur(8px);
    opacity: 0.4;
}

.footer-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding-bottom: 2rem;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.28);
    font-size: 0.72rem;
    letter-spacing: 0.03em;
}

.footer-bottom-link {
    color: rgba(255, 255, 255, 0.28);
    font-size: 0.72rem;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: color 0.2s;
}

.footer-bottom-link:hover {
    color: var(--color-primary);
    text-decoration: none;
}

.footer-credit {
    color: rgba(255, 255, 255, 0.28);
    font-size: 0.72rem;
    letter-spacing: 0.03em;
}

.footer-credit-link {
    color: rgba(0, 102, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-credit-link:hover {
    color: #fff;
    text-decoration: none;
}

@media (max-width: 767px) {
    .footer-bottom-bar {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-watermark {
        font-size: 55vw;
    }
    .footer-desc {
        max-width: 100%;
    }
}

/* Privacy Policy Page */
.privacy-doc {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-block {
    margin-bottom: 2.5rem;
}

.privacy-block h2 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--color-primary);
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.privacy-block p,
.privacy-block ul {
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
    line-height: 1.8;
}

.privacy-block ul {
    padding-left: 1.5rem;
}

.privacy-block ul li {
    margin-bottom: 0.3rem;
}

.privacy-block strong {
    color: rgba(255,255,255,0.9);
}


/* ============================================
   UTILIDADES
   ============================================ */
.text-primary-zg {
    color: var(--color-primary) !important;
}

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

.border-zg {
    border-color: var(--color-border) !important;
}

/* Spacing utilities */
.mt-6 { margin-top: 4rem !important; }
.mb-6 { margin-bottom: 4rem !important; }

/* Empty state */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-state i {
    font-size: 4rem;
    color: rgba(255,255,255,0.1);
    margin-bottom: 1rem;
}

.empty-state p {
    color: var(--color-text-muted);
    font-size: 1.25rem;
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .section-zg {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
}
/* ==================================================
   PÁGINA DE DETALLE DE PRODUCTO
   ================================================== */

.product-gallery {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-gallery .main-image {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
}

.product-gallery .main-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0.75rem;
}

.product-gallery .product-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
}

.product-gallery .thumbnails .thumbnail {
    cursor: pointer;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.3);
}

.product-gallery .thumbnails .thumbnail:hover {
    border-color: rgba(0, 102, 255, 0.5);
}

.product-gallery .thumbnails .thumbnail.active {
    border-color: var(--color-primary);
}

.product-gallery .thumbnails .thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.product-detail-info {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-detail-info .product-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.product-detail-info .product-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.product-detail-info .rating {
    display: flex;
    gap: 0.25rem;
}

.product-detail-info .product-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.product-detail-info .old-price {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    text-decoration: line-through;
}

.product-detail-info .current-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-primary);
    font-family: var(--font-display);
}

.product-detail-info .discount-badge {
    background: linear-gradient(135deg, #ff0080, #ff4040);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 700;
}

.product-detail-info .product-description h5 {
    font-family: var(--font-display);
    font-weight: 700;
    margin-bottom: 1rem;
}


/* Breadcrumb */
.breadcrumb {
    background: transparent;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: var(--color-text-muted);
}

.breadcrumb-item.active {
    color: #fff;
}

/* Productos Relacionados */
.related-products {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.related-products .section-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 900;
}

/* Responsive */
@media (max-width: 991px) {
    .product-detail-info {
        margin-top: 2rem;
    }

    .product-detail-info .product-title {
        font-size: 1.5rem;
    }

    .product-detail-info .current-price {
        font-size: 2rem;
    }
}

/* ============================================
   BOTÓN FLOTANTE WHATSAPP
   ============================================ */
.wa-widget {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 0;
}

.wa-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    padding: 0.8rem 1.4rem 0.8rem 1rem;
    border-radius: 0 50px 50px 0;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(37,211,102,0.35);
    transition: background var(--transition-fast), box-shadow var(--transition-fast);
}

.wa-btn:hover {
    background: #1ebe5d;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(37,211,102,0.5);
}

.wa-icon {
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
}

.wa-label {
    /* sin max-width para que el texto no se corte */
}

.wa-close {
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.1);
    color: #888;
    width: 28px;
    height: 28px;
    border-radius: 50% 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    flex-shrink: 0;
    padding: 0;
    align-self: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.35);
}

.wa-close:hover {
    background: #333;
    color: #fff;
}

/* Móvil: solo ícono redondo, sin label ni botón de cierre separado */
@media (max-width: 575px) {
    .wa-widget {
        bottom: 1.25rem;
        right: 1.25rem;
    }

    .wa-close {
        display: none;
    }

    .wa-btn {
        border-radius: 50%;
        width: 52px;
        height: 52px;
        padding: 0;
        justify-content: center;
    }

    .wa-label {
        display: none;
    }
}

.wa-fade-enter-active,
.wa-fade-leave-active {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.wa-fade-enter,
.wa-fade-leave-to {
    opacity: 0;
    transform: translateY(10px);
}

/* ============================================
   CATEGORY CARDS — NEO DESIGN
   ============================================ */
.cats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.875rem;
}

@media (max-width: 991px) {
    .cats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
    .cats-grid { grid-template-columns: 1fr; }
}

.cat-neo-card {
    position: relative;
    display: block;
    height: 220px;
    overflow: hidden;
    text-decoration: none;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

/* Left blue border grows from 0 to 100% on hover */
.cat-neo-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 2px;
    height: 0%;
    background: var(--color-primary);
    box-shadow: 0 0 12px rgba(0, 102, 255, 0.7);
    transition: height 0.35s ease;
    z-index: 6;
}

.cat-neo-card:hover::before {
    height: 100%;
}

/* Top-right corner accent triangle */
.cat-neo-card::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 0; height: 0;
    border-style: solid;
    border-width: 0 22px 22px 0;
    border-color: transparent rgba(0, 102, 255, 0.45) transparent transparent;
    z-index: 5;
    transition: border-color 0.3s ease;
}

.cat-neo-card:hover::after {
    border-color: transparent var(--color-primary) transparent transparent;
}

.cat-neo-card:hover {
    border-color: rgba(0, 102, 255, 0.4);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 102, 255, 0.15);
    text-decoration: none;
}

.cat-neo-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.35s ease;
    filter: brightness(0.65) saturate(0.8);
}

.cat-neo-card:hover img {
    transform: scale(1.08);
    filter: brightness(0.85) saturate(1.05);
}

.cat-neo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.22) 60%, transparent 100%);
    z-index: 1;
}

/* Scan line sweeps downward on hover */
.cat-neo-scan {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.85) 50%, transparent);
    z-index: 6;
    opacity: 0;
    pointer-events: none;
}

.cat-neo-card:hover .cat-neo-scan {
    opacity: 1;
    animation: catScan 0.8s ease forwards;
}

@keyframes catScan {
    0%   { top: 0%;    opacity: 0.9; }
    85%  {             opacity: 0.4; }
    100% { top: 103%;  opacity: 0;   }
}

/* Ordinal number top-left */
.cat-neo-index {
    position: absolute;
    top: 0.85rem;
    left: 1rem;
    font-family: var(--font-display);
    font-size: 0.6rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.22);
    letter-spacing: 0.14em;
    z-index: 3;
    transition: color 0.3s ease;
}

.cat-neo-card:hover .cat-neo-index {
    color: rgba(0, 102, 255, 0.9);
}

/* Title + count: slide up on hover to reveal CTA */
.cat-neo-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1rem 1.15rem;
    z-index: 3;
    transform: translateY(0);
    transition: transform 0.35s ease;
}

.cat-neo-card:hover .cat-neo-content {
    transform: translateY(-2.1rem);
}

.cat-neo-title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.2;
}

.cat-neo-count {
    font-size: 0.67rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.04em;
}

/* EXPLORAR → CTA */
.cat-neo-cta {
    position: absolute;
    bottom: 1rem;
    left: 1.15rem;
    font-family: var(--font-display);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--color-primary);
    z-index: 3;
    opacity: 0;
    transform: translateY(0.5rem);
    transition: opacity 0.35s ease, transform 0.35s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cat-neo-card:hover .cat-neo-cta {
    opacity: 1;
    transform: translateY(0);
}

/* backward compat — old class no longer used in template */
.cat-card-sm, .cat-card-overlay, .cat-card-content, .cat-card-title, .cat-card-count {
    display: none;
}

/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    pointer-events: none;
}

.lightbox-img-wrap img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.9);
    transition: opacity 0.15s;
    display: block;
}

.lightbox-close {
    position: fixed;
    top: 1.25rem;
    right: 1.5rem;
    z-index: 10000;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background 0.2s;
    outline: none;
}
.lightbox-close:hover { background: rgba(255, 255, 255, 0.22); }

.lightbox-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10000;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.25rem;
    transition: background 0.2s, border-color 0.2s;
    outline: none;
}
.lightbox-arrow:hover {
    background: rgba(0, 102, 255, 0.45);
    border-color: var(--color-primary);
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

.lightbox-dots {
    position: fixed;
    bottom: 1.75rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
.lightbox-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    padding: 0;
    outline: none;
}
.lightbox-dot.active {
    background: var(--color-primary);
    transform: scale(1.4);
}

/* Vue transition */
.lightbox-fade-enter-active,
.lightbox-fade-leave-active { transition: opacity 0.22s ease; }
.lightbox-fade-enter,
.lightbox-fade-leave-to    { opacity: 0; }

/* Cursor hint en galería */
.main-image img  { cursor: zoom-in; }
.thumbnail       { cursor: pointer; }

@media (max-width: 576px) {
    .lightbox-prev { left: 0.5rem; }
    .lightbox-next { right: 0.5rem; }
    .lightbox-arrow { width: 40px; height: 40px; font-size: 1rem; }
}

/* Bloque de descripción en detalle de producto */
.desc-block {
    border-left: 3px solid var(--color-primary);
    background: rgba(0,102,255,0.05);
    border-radius: 0 8px 8px 0;
    padding: 1rem 1.25rem;
}
.desc-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 0.6rem;
}
.desc-text {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    line-height: 1.75;
    white-space: pre-wrap;
    margin: 0;
}

/* Botones de compartir */
.share-buttons { display: flex; align-items: center; flex-wrap: nowrap; gap: 0.5rem; }
.btn-share {
    display: inline-flex; align-items: center; gap: 0.35rem;
    border: none; border-radius: 6px; cursor: pointer;
    font-size: 0.8rem; font-weight: 600; padding: 0.45rem 0.9rem;
    transition: opacity 0.2s, transform 0.15s;
}
.btn-share:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-share-fb { background: #1877f2; color: #fff; }
.btn-share-wa { background: #25d366; color: #fff; }

/* ── Stock Pills ─────────────────────────────── */
.stock-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.stock-pill.in-stock  { background: rgba(34,197,94,0.12); color: #4ade80; border: 1px solid rgba(34,197,94,0.3); }
.stock-pill.low-stock { background: rgba(251,146,60,0.12); color: #fb923c; border: 1px solid rgba(251,146,60,0.3); }
.stock-pill.out-stock { background: rgba(239,68,68,0.12);  color: #f87171; border: 1px solid rgba(239,68,68,0.3); }

.stock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.stock-dot.pulse { background: #4ade80; animation: stockPulse 1.6s ease-in-out infinite; }
.stock-dot.warn  { background: #fb923c; }
.stock-dot.dead  { background: #f87171; }

@keyframes stockPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.6); }
    50%       { box-shadow: 0 0 0 5px rgba(74,222,128,0); }
}

/* ── Price Glow ──────────────────────────────── */
.product-detail-info .current-price {
    text-shadow: 0 0 20px rgba(0,102,255,0.5), 0 0 40px rgba(0,102,255,0.25);
}

/* ── Main Image Glow ─────────────────────────── */
.product-gallery .main-image {
    box-shadow: 0 0 40px rgba(0,102,255,0.18), 0 8px 32px rgba(0,0,0,0.5);
    transition: box-shadow 0.3s ease;
}
.product-gallery .main-image:hover {
    box-shadow: 0 0 60px rgba(0,102,255,0.3), 0 12px 40px rgba(0,0,0,0.6);
}

/* ── Info Chips ──────────────────────────────── */
.info-chips { display: flex; flex-direction: column; gap: 0.5rem; }
.info-chip {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 0.9rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    font-size: 0.8rem;
    color: #9ca3af;
}
.info-chip i { color: var(--color-primary); font-size: 0.85rem; flex-shrink: 0; }

/* ── Stat Card Hover Glow ────────────────────── */
.stat-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 24px rgba(0,102,255,0.2);
    border-color: rgba(0,102,255,0.4);
}

/* ── Testimonials ─────────────────────────────── */
.testi-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.testi-ambient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(0,102,255,0.07) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 50%, rgba(124,58,237,0.06) 0%, transparent 60%);
    pointer-events: none;
}

.testi-wrapper {
    max-width: 780px;
    margin: 0 auto;
}

/* Card */
.testi-card {
    position: relative;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 28px;
    padding: 3rem 3.5rem 2.5rem;
    backdrop-filter: blur(12px);
    box-shadow:
        0 0 0 1px rgba(0,102,255,0.08) inset,
        0 0 60px rgba(0,102,255,0.07),
        0 24px 48px rgba(0,0,0,0.35);
    transition: box-shadow 0.3s ease;
}

.testi-card:hover {
    box-shadow:
        0 0 0 1px rgba(0,102,255,0.2) inset,
        0 0 80px rgba(0,102,255,0.12),
        0 24px 48px rgba(0,0,0,0.4);
}

/* Decorative quote */
.testi-quote-mark {
    position: absolute;
    top: 1.2rem;
    left: 2.5rem;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 8rem;
    line-height: 1;
    color: var(--color-primary);
    opacity: 0.12;
    user-select: none;
    pointer-events: none;
}

/* Stars */
.testi-stars {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
}

.testi-stars i {
    color: #fbbf24;
    font-size: 1rem;
    filter: drop-shadow(0 0 5px rgba(251,191,36,0.7));
}

/* Text */
.testi-text {
    font-size: 1.125rem;
    line-height: 1.85;
    color: #cbd5e1;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

/* Author row */
.testi-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.testi-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: #fff;
    flex-shrink: 0;
}

.testi-avatar--1 { background: linear-gradient(135deg, #0066ff, #7c3aed); box-shadow: 0 0 18px rgba(0,102,255,0.45); }
.testi-avatar--2 { background: linear-gradient(135deg, #7c3aed, #db2777); box-shadow: 0 0 18px rgba(124,58,237,0.45); }
.testi-avatar--3 { background: linear-gradient(135deg, #0ea5e9, #0066ff); box-shadow: 0 0 18px rgba(14,165,233,0.45); }
.testi-avatar--4 { background: linear-gradient(135deg, #059669, #0ea5e9); box-shadow: 0 0 18px rgba(5,150,105,0.45); }
.testi-avatar--5 { background: linear-gradient(135deg, #ea580c, #dc2626); box-shadow: 0 0 18px rgba(234,88,12,0.45); }

.testi-name {
    font-weight: 700;
    color: #f1f5f9;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.testi-meta {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.testi-verified {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: #4ade80;
    font-weight: 600;
}

.testi-verified i { font-size: 0.7rem; }

.testi-product {
    font-size: 0.75rem;
    color: #64748b;
}

/* Controls */
.testi-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testi-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.testi-arrow:hover {
    border-color: var(--color-primary);
    background: rgba(0,102,255,0.12);
    color: var(--color-primary);
    box-shadow: 0 0 12px rgba(0,102,255,0.25);
}

.testi-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.testi-dot {
    position: relative;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.18);
    cursor: pointer;
    transition: all 0.35s ease;
    padding: 0;
    flex-shrink: 0;
}

/* Expandir área táctil a 44×44px sin cambiar diseño visual */
.testi-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
}

.testi-dot.active {
    width: 28px;
    border-radius: 4px;
    background: var(--color-primary);
    box-shadow: 0 0 10px rgba(0,102,255,0.6);
}

/* Vue transition */
.testi-fade-enter-active { transition: opacity 0.4s ease, transform 0.4s ease; }
.testi-fade-leave-active { transition: opacity 0.25s ease, transform 0.25s ease; }
.testi-fade-enter        { opacity: 0; transform: translateY(14px); }
.testi-fade-leave-to     { opacity: 0; transform: translateY(-10px); }

/* Responsive */
@media (max-width: 575px) {
    .testi-card { padding: 2rem 1.5rem 1.75rem; }
    .testi-quote-mark { font-size: 5rem; top: 0.8rem; left: 1.2rem; }
    .testi-text { font-size: 1rem; }
}

/* ============================================
   CONTRAST OVERRIDES (WCAG AA)
   Bootstrap .text-muted (#6c757d) fails on dark
   backgrounds — override for dark theme
   ============================================ */
.text-muted {
    color: #a0a0a0 !important;
}


/* ============================================
   PRODUCT DETAIL REVAMP (pd-*)
   ============================================ */
.pd-page {
    background: var(--color-bg);
    min-height: 100vh;
}

.pd-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

.pd-loading-inner { text-align: center; }

.pd-loading-bar {
    width: 180px;
    height: 2px;
    background: rgba(0,102,255,0.12);
    margin: 0 auto 1.5rem;
    position: relative;
    overflow: hidden;
}

.pd-loading-bar::after {
    content: "";
    position: absolute;
    top: 0; left: -50%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    animation: pdLoadBar 1.2s ease-in-out infinite;
}

@keyframes pdLoadBar {
    0%   { left: -50%; }
    100% { left: 150%; }
}

.pd-loading-text {
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: var(--font-display);
}

.pd-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    min-height: 70vh;
    text-align: center;
}

.pd-error .fas { font-size: 3rem; color: rgba(251,146,60,0.7); }
.pd-error h3 { color: #fff; font-family: var(--font-display); font-size: 1.25rem; }

.pd-hero {
    display: flex;
    gap: 5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 3rem 6rem;
    align-items: flex-start;
}

.pd-gallery-col {
    flex: 0 0 52%;
    position: sticky;
    top: 100px;
}

.pd-gallery-glow {
    position: absolute;
    inset: -30%;
    background: radial-gradient(ellipse at center, rgba(0,102,255,0.1) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
    animation: pdGlowPulse 5s ease-in-out infinite;
}

@keyframes pdGlowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1);    }
    50%       { opacity: 1;   transform: scale(1.08); }
}

.pd-main-img {
    position: relative;
    background: #080808;
    border: 1px solid rgba(255,255,255,0.07);
    overflow: hidden;
    cursor: zoom-in;
    aspect-ratio: 1 / 1;
    z-index: 1;
}

.pd-main-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0,102,255,0.055) 1px, transparent 1px);
    background-size: 28px 28px;
    z-index: 0;
    pointer-events: none;
}

.pd-main-img::after {
    content: "";
    position: absolute;
    top: 0; right: 0;
    width: 0; height: 0;
    border-style: solid;
    border-width: 0 36px 36px 0;
    border-color: transparent rgba(0,102,255,0.5) transparent transparent;
    z-index: 5;
    transition: border-color 0.3s ease;
}

.pd-main-img:hover::after {
    border-color: transparent var(--color-primary) transparent transparent;
}

.pd-img-scan {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0,102,255,0.7) 50%, transparent);
    z-index: 6;
    animation: pdScanLine 4s ease-in-out infinite 1.5s;
    pointer-events: none;
}

@keyframes pdScanLine {
    0%   { top: -2px;  opacity: 0;   }
    5%   {             opacity: 0.8; }
    92%  {             opacity: 0.3; }
    100% { top: 100%;  opacity: 0;   }
}

.pd-main-img img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 2.5rem;
    transition: transform 0.55s ease;
}

.pd-main-img:hover img { transform: scale(1.05); }

.pd-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 55%, rgba(0,0,0,0.45) 100%);
    z-index: 2;
    pointer-events: none;
}

.pd-badges {
    position: absolute;
    top: 1rem; left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    z-index: 7;
}

.pd-badge {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.22rem 0.6rem;
}

.pd-badge--blue { background: var(--color-primary); color: #fff; }
.pd-badge--red  { background: #ef4444; color: #fff; }

.pd-zoom-hint {
    position: absolute;
    bottom: 1rem; right: 1rem;
    width: 38px; height: 38px;
    background: rgba(0,0,0,0.65);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.45);
    font-size: 0.75rem;
    z-index: 7;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pd-main-img:hover .pd-zoom-hint { opacity: 1; }

.pd-thumbs {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.75rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.pd-thumbs::-webkit-scrollbar { display: none; }

.pd-thumb {
    flex-shrink: 0;
    width: 76px; height: 76px;
    background: #080808;
    border: 1px solid rgba(255,255,255,0.07);
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.pd-thumb img {
    width: 100%; height: 100%;
    object-fit: contain;
    padding: 0.4rem;
    transition: transform 0.3s ease;
}

.pd-thumb:hover { border-color: rgba(0,102,255,0.5); }
.pd-thumb:hover img { transform: scale(1.08); }
.pd-thumb.active { border-color: var(--color-primary); box-shadow: 0 0 14px rgba(0,102,255,0.35); }

.pd-info-col {
    flex: 1;
    min-width: 0;
    padding-top: 0.5rem;
}

.pd-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.75rem;
    flex-wrap: wrap;
}

.pd-bread-link { color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
.pd-bread-link:hover { color: var(--color-primary); text-decoration: none; }
.pd-bread-sep { color: rgba(255,255,255,0.18); }
.pd-bread-current { color: rgba(255,255,255,0.65); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 240px; }

.pd-meta-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.pd-brand-pill {
    font-family: var(--font-display);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.28rem 0.8rem;
    border: 1px solid rgba(0,102,255,0.45);
    color: var(--color-primary);
}

.pd-cat-label {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.32);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pd-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.pd-rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #fbbf24;
    font-size: 0.8rem;
    margin-bottom: 2rem;
}

.pd-rating-count { color: rgba(255,255,255,0.3); font-size: 0.72rem; margin-left: 0.2rem; }

.pd-price-section { margin-bottom: 1.75rem; }

.pd-price-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.35rem;
    min-height: 1.5rem;
}

.pd-old-price { color: rgba(255,255,255,0.28); font-size: 1rem; text-decoration: line-through; }

.pd-save-badge {
    background: rgba(34,197,94,0.1);
    border: 1px solid rgba(34,197,94,0.28);
    color: #4ade80;
    font-family: var(--font-display);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.22rem 0.55rem;
}

.pd-current-price {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-primary);
    letter-spacing: -0.01em;
    line-height: 1;
    text-shadow: 0 0 30px rgba(0,102,255,0.4), 0 0 70px rgba(0,102,255,0.18);
}

.pd-description {
    color: rgba(255,255,255,0.48);
    font-size: 0.875rem;
    line-height: 1.8;
    border-left: 2px solid rgba(0,102,255,0.4);
    padding-left: 1rem;
    margin-bottom: 0;
}

.pd-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(0,102,255,0.35) 0%, transparent 70%);
    margin: 1.75rem 0;
}

.pd-stock-row { margin-bottom: 1.75rem; }

.pd-stock {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.55rem 1rem;
    letter-spacing: 0.04em;
}

.pd-stock--in  { background: rgba(34,197,94,0.07);  color: #4ade80; border: 1px solid rgba(34,197,94,0.22); }
.pd-stock--low { background: rgba(251,146,60,0.07); color: #fb923c; border: 1px solid rgba(251,146,60,0.22); }
.pd-stock--out { background: rgba(239,68,68,0.07);  color: #f87171; border: 1px solid rgba(239,68,68,0.22); }

.pd-stock-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.pd-stock--in  .pd-stock-dot { background: #4ade80; box-shadow: 0 0 8px #4ade80; animation: pdDotPulse 2s ease infinite; }
.pd-stock--low .pd-stock-dot { background: #fb923c; box-shadow: 0 0 8px #fb923c; }
.pd-stock--out .pd-stock-dot { background: #f87171; }

@keyframes pdDotPulse {
    0%, 100% { opacity: 1;   transform: scale(1);    }
    50%       { opacity: 0.4; transform: scale(0.75); }
}

.pd-share-section { margin-bottom: 1.75rem; }

.pd-share-label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.55rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
    margin-bottom: 0.75rem;
}

.pd-share-btns { display: flex; gap: 0.6rem; flex-wrap: wrap; }

.pd-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.1rem;
    font-family: var(--font-display);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    background: transparent;
}

.pd-share-btn--fb { border: 1px solid rgba(66,103,178,0.45); color: #6b9fff; }
.pd-share-btn--fb:hover { background: rgba(66,103,178,0.15); border-color: #4267b2; color: #fff; box-shadow: 0 0 20px rgba(66,103,178,0.3); }
.pd-share-btn--wa { border: 1px solid rgba(37,211,102,0.4); color: #4ade80; }
.pd-share-btn--wa:hover { background: rgba(37,211,102,0.1); border-color: #25d366; color: #fff; box-shadow: 0 0 20px rgba(37,211,102,0.25); }

.pd-chips { display: flex; flex-direction: column; gap: 0.5rem; }

.pd-chip {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem 1rem;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.45);
    font-size: 0.8rem;
    transition: border-color 0.25s ease, color 0.25s ease;
}

.pd-chip i { color: var(--color-primary); font-size: 0.85rem; flex-shrink: 0; }
.pd-chip:hover { border-color: rgba(0,102,255,0.22); color: rgba(255,255,255,0.65); }

.pd-related-section {
    padding: 5rem 0 6rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

@media (max-width: 1199px) {
    .pd-hero { gap: 3.5rem; padding: 110px 2rem 5rem; }
    .pd-gallery-col { flex: 0 0 50%; }
}

@media (max-width: 991px) {
    .pd-hero { flex-direction: column; gap: 2.5rem; padding: 100px 1.5rem 4rem; }
    .pd-gallery-col { position: static; flex: none; width: 100%; }
    .pd-title { font-size: 1.6rem; }
    .pd-current-price { font-size: 2.25rem; }
}

@media (max-width: 575px) {
    .pd-hero { padding: 90px 1rem 3rem; }
    .pd-title { font-size: 1.35rem; }
    .pd-current-price { font-size: 2rem; }
    .pd-bread-current { max-width: 130px; }
}

/* ============================================
   FEATURED PRODUCT SPOTLIGHT (home)
   ============================================ */
.featured-spotlight {
    display: flex;
    align-items: stretch;
    margin-bottom: 3rem;
    border: 1px solid rgba(255,255,255,0.07);
    background: #080808;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

/* Left blue accent bar */
.featured-spotlight::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 100%;
    background: var(--color-primary);
    box-shadow: 0 0 18px rgba(0,102,255,0.55);
    z-index: 2;
}

/* Top reveal line on hover */
.featured-spotlight::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--color-primary), rgba(0,102,255,0.3), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}

.featured-spotlight:hover::after { transform: scaleX(1); }

.featured-spotlight:hover {
    border-color: rgba(0,102,255,0.3);
    box-shadow: 0 0 70px rgba(0,102,255,0.07);
    text-decoration: none;
    color: inherit;
}

/* Image side */
.featured-spot-img {
    flex: 0 0 42%;
    position: relative;
    background: #060606;
    overflow: hidden;
    min-height: 340px;
}

/* Dot grid pattern */
.featured-spot-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0,102,255,0.05) 1px, transparent 1px);
    background-size: 26px 26px;
    z-index: 0;
    pointer-events: none;
}

.featured-spot-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 2rem;
    z-index: 1;
    transition: transform 0.6s ease;
}

.featured-spotlight:hover .featured-spot-img img { transform: scale(1.04); }

/* Gradient fade toward info side */
.featured-spot-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 60%, rgba(8,8,8,0.85) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Scan line reuses existing pdScanLine keyframe */
.featured-spot-scan {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0,102,255,0.7) 50%, transparent);
    z-index: 3;
    animation: pdScanLine 3.5s ease-in-out infinite 0.8s;
    pointer-events: none;
}

/* Ambient glow behind product */
.featured-spot-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(0,102,255,0.07) 0%, transparent 65%);
    z-index: 0;
    pointer-events: none;
    animation: pdGlowPulse 4.5s ease-in-out infinite;
}

/* Info side */
.featured-spot-info {
    flex: 1;
    padding: 2.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.featured-spot-badge {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 0.22rem 0.75rem;
    background: var(--color-primary);
    color: #fff;
    margin-bottom: 1.25rem;
    align-self: flex-start;
}

.featured-spot-title {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 0.85rem;
    letter-spacing: 0.02em;
    transition: color 0.25s ease;
}

.featured-spotlight:hover .featured-spot-title { color: rgba(255,255,255,0.9); }

.featured-spot-desc {
    color: rgba(255,255,255,0.42);
    font-size: 0.85rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-spot-price-row {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.3rem;
    min-height: 1.5rem;
}

.featured-spot-old-price {
    color: rgba(255,255,255,0.25);
    font-size: 0.9rem;
    text-decoration: line-through;
}

.featured-spot-save {
    background: rgba(239,68,68,0.1);
    border: 1px solid rgba(239,68,68,0.28);
    color: #f87171;
    font-family: var(--font-display);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0.18rem 0.5rem;
}

.featured-spot-price {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--color-primary);
    letter-spacing: -0.01em;
    line-height: 1;
    text-shadow: 0 0 25px rgba(0,102,255,0.38), 0 0 60px rgba(0,102,255,0.15);
    margin-bottom: 1.75rem;
}

.featured-spot-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.75rem 1.75rem;
    background: var(--color-primary);
    color: #fff;
    font-family: var(--font-display);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    align-self: flex-start;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.featured-spot-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.12);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.featured-spotlight:hover .featured-spot-cta::before { transform: translateX(0); }
.featured-spotlight:hover .featured-spot-cta {
    box-shadow: 0 0 30px rgba(0,102,255,0.5);
    transform: translateY(-1px);
}

.featured-spot-cta i,
.featured-spot-cta span { position: relative; z-index: 1; }

/* Responsive */
@media (max-width: 767px) {
    .featured-spotlight { flex-direction: column; }
    .featured-spot-img { flex: none; min-height: 240px; width: 100%; }
    .featured-spot-img-overlay {
        background: linear-gradient(to bottom, transparent 55%, rgba(8,8,8,0.85) 100%);
    }
    .featured-spot-info { padding: 1.5rem 1.25rem; }
    .featured-spot-title { font-size: 1.25rem; }
    .featured-spot-price { font-size: 1.9rem; }
}
