/* ========================================
   NEURAL-PRINT - STYLES
   Ultra Premium Mobile-First Design
   Futuristic Print Shop Theme
   ======================================== */

/* ===== CSS VARIABLES ===== */
:root {
    --primary: #00f0ff;
    --primary-dark: #00b8c7;
    --primary-glow: rgba(0, 240, 255, 0.3);
    --accent: #7b2ff7;
    --accent-light: #a855f7;
    --accent-glow: rgba(123, 47, 247, 0.3);
    --neon-pink: #ff2d78;
    --neon-green: #00ff88;
    --success: #25d366;
    --warning: #ffb300;
    --danger: #ff3b5c;

    --bg-deepblack: #030308;
    --bg-dark: #08080f;
    --bg-card: #0e0e1a;
    --bg-card-hover: #141428;
    --bg-surface: #12121f;
    --bg-elevated: #1a1a2e;

    --text-primary: #ffffff;
    --text-secondary: #a0a0b8;
    --text-muted: #6a6a80;

    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-glow: rgba(0, 240, 255, 0.15);

    --gradient-primary: linear-gradient(135deg, #00f0ff 0%, #7b2ff7 100%);
    --gradient-card: linear-gradient(145deg, #0e0e1a 0%, #141428 100%);
    --gradient-hero: linear-gradient(180deg, rgba(0,240,255,0.08) 0%, rgba(123,47,247,0.05) 50%, transparent 100%);
    --gradient-neon: linear-gradient(135deg, #00f0ff 0%, #00ff88 50%, #7b2ff7 100%);

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(0, 240, 255, 0.15);
    --shadow-accent: 0 0 30px rgba(123, 47, 247, 0.15);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --cmyk-c: #00aeef;
    --cmyk-m: #ec008c;
    --cmyk-y: #fff200;
    --cmyk-k: #1a1a1a;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-deepblack);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: var(--font-body);
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== SPLASH SCREEN ===== */
.splash-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-deepblack);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.splash-screen.fade-out {
    opacity: 0;
    transform: scale(1.05);
    pointer-events: none;
}

.splash-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

/* Grid Lines Background */
.grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

/* Floating Particles */
.floating-particles {
    position: absolute;
    inset: 0;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary);
    border-radius: 50%;
    animation: floatParticle linear infinite;
    opacity: 0;
}

@keyframes floatParticle {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* Cyber Circles */
.cyber-circles {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cyber-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    animation: pulseCircle 4s ease-in-out infinite;
}

.cyber-circle.c1 {
    width: 300px;
    height: 300px;
    border-color: rgba(0, 240, 255, 0.08);
    animation-delay: 0s;
}

.cyber-circle.c2 {
    width: 450px;
    height: 450px;
    border-color: rgba(123, 47, 247, 0.06);
    animation-delay: 1s;
}

.cyber-circle.c3 {
    width: 600px;
    height: 600px;
    border-color: rgba(0, 240, 255, 0.04);
    animation-delay: 2s;
}

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

/* Splash Content */
.splash-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.splash-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

/* Neural Icon */
.neural-icon {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brain-core {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    box-shadow: 0 0 40px var(--primary-glow), 0 0 80px rgba(0, 240, 255, 0.1);
    animation: brainPulse 3s ease-in-out infinite;
    z-index: 2;
}

@keyframes brainPulse {
    0%, 100% { box-shadow: 0 0 40px var(--primary-glow), 0 0 80px rgba(0, 240, 255, 0.1); }
    50% { box-shadow: 0 0 60px var(--primary-glow), 0 0 120px rgba(0, 240, 255, 0.2); }
}

.orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    animation: orbitSpin linear infinite;
}

.orbit-ring.ring1 {
    width: 80px;
    height: 80px;
    border-color: rgba(0, 240, 255, 0.3);
    animation-duration: 6s;
}

.orbit-ring.ring2 {
    width: 100px;
    height: 100px;
    border-color: rgba(123, 47, 247, 0.25);
    animation-duration: 8s;
    animation-direction: reverse;
}

.orbit-ring.ring3 {
    width: 120px;
    height: 120px;
    border-color: rgba(0, 240, 255, 0.15);
    animation-duration: 10s;
}

.orbit-ring::after {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
}

.orbit-ring.ring2::after {
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
}

@keyframes orbitSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Splash Title */
.splash-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 4px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.title-neural {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-divider {
    color: rgba(255, 255, 255, 0.2);
    font-weight: 300;
}

.title-print {
    color: var(--text-primary);
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.splash-subtitle {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 6px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.splash-tagline {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

.tag-dot {
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary);
}

/* Enter Button */
.splash-enter-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: transparent;
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 50px;
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    transition: all 0.4s ease;
    overflow: hidden;
}

.splash-enter-btn:hover,
.splash-enter-btn:active {
    background: rgba(0, 240, 255, 0.08);
    border-color: var(--primary);
    box-shadow: 0 0 30px var(--primary-glow), inset 0 0 30px rgba(0, 240, 255, 0.05);
    transform: translateY(-2px);
}

.btn-glow {
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.1), transparent);
    animation: btnGlow 3s linear infinite;
}

@keyframes btnGlow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.btn-icon {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.splash-enter-btn:hover .btn-icon {
    transform: translateX(4px);
}

/* CMYK Bar */
.splash-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.cmyk-bar {
    display: flex;
    gap: 6px;
}

.cmyk-bar div {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0;
}

.cmyk-c { background: var(--cmyk-c); }
.cmyk-m { background: var(--cmyk-m); }
.cmyk-y { background: var(--cmyk-y); color: #333 !important; }
.cmyk-k { background: var(--cmyk-k); border: 1px solid rgba(255,255,255,0.1); }

.splash-copy {
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: var(--font-mono);
}

/* ===== APP HEADER ===== */
.app-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(3, 3, 8, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
}

.app-header.scrolled {
    background: rgba(3, 3, 8, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    max-width: 600px;
    margin: 0 auto;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-logo-icon {
    width: 34px;
    height: 34px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
}

.header-logo-text {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.h-neural {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.h-print {
    color: var(--text-primary);
}

.header-actions {
    display: flex;
    gap: 8px;
}

.header-search-btn,
.header-contact-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    background: var(--bg-card);
    color: var(--text-secondary);
    border: 1px solid var(--border-subtle);
}

.header-search-btn:hover,
.header-search-btn:active {
    background: rgba(0, 240, 255, 0.1);
    color: var(--primary);
    border-color: rgba(0, 240, 255, 0.2);
}

.header-contact-btn {
    background: rgba(37, 211, 102, 0.1);
    color: var(--success);
    border-color: rgba(37, 211, 102, 0.2);
}

.header-contact-btn:hover,
.header-contact-btn:active {
    background: rgba(37, 211, 102, 0.2);
}

/* ===== SEARCH OVERLAY ===== */
.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: var(--bg-deepblack);
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
}

.search-overlay.active {
    transform: translateY(0);
}

.search-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 16px;
}

.search-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-top: 8px;
}

.search-input-wrap {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 14px;
    color: var(--text-muted);
    font-size: 14px;
}

.search-input-wrap input {
    width: 100%;
    padding: 14px 40px 14px 42px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: var(--font-body);
    outline: none;
    transition: border-color 0.3s ease;
}

.search-input-wrap input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
}

.search-input-wrap input::placeholder {
    color: var(--text-muted);
}

.search-clear {
    position: absolute;
    right: 10px;
    width: 28px;
    height: 28px;
    background: var(--bg-elevated);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 12px;
    transition: all 0.2s ease;
}

.search-clear.visible {
    display: flex;
}

.search-close {
    background: none;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px;
    white-space: nowrap;
}

.search-results {
    min-height: 200px;
}

.search-placeholder {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.search-placeholder i {
    font-size: 40px;
    margin-bottom: 16px;
    opacity: 0.3;
    display: block;
}

.search-placeholder p {
    font-size: 0.85rem;
}

/* Search Result Items */
.search-result-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    margin-bottom: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.search-result-item:hover,
.search-result-item:active {
    background: var(--bg-card-hover);
    border-color: var(--border-glow);
}

.search-result-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.search-result-icon.tarjetas { background: rgba(0, 240, 255, 0.1); color: var(--primary); }
.search-result-icon.volantes { background: rgba(123, 47, 247, 0.1); color: var(--accent); }
.search-result-icon.laser { background: rgba(0, 255, 136, 0.1); color: var(--neon-green); }

.search-result-info {
    flex: 1;
    min-width: 0;
}

.search-result-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-detail {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.search-result-price {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

.search-no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.search-no-results i {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.3;
    display: block;
}

/* Highlight in search results */
.highlight {
    background: rgba(0, 240, 255, 0.2);
    color: var(--primary);
    border-radius: 2px;
    padding: 0 2px;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    padding: 100px 16px 40px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 240, 255, 0.06);
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 20px;
    font-family: var(--font-mono);
}

.hero-badge i {
    font-size: 10px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.hero-highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 440px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.stat-item {
    text-align: center;
    padding: 16px 8px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: var(--border-glow);
    box-shadow: var(--shadow-glow);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== CATEGORY NAV ===== */
.category-nav {
    position: sticky;
    top: 58px;
    z-index: 50;
    background: rgba(3, 3, 8, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 12px 0;
}

.category-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 0 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    max-width: 600px;
    margin: 0 auto;
}

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

.cat-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    color: var(--text-muted);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: all 0.3s ease;
    min-width: fit-content;
}

.cat-btn .cat-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border-radius: 8px;
    background: var(--bg-elevated);
    transition: all 0.3s ease;
}

.cat-btn.active {
    background: rgba(0, 240, 255, 0.08);
    border-color: rgba(0, 240, 255, 0.25);
    color: var(--primary);
}

.cat-btn.active .cat-icon {
    background: var(--gradient-primary);
    color: white;
}

.cat-btn:not(.active):hover,
.cat-btn:not(.active):active {
    background: var(--bg-card-hover);
    color: var(--text-secondary);
}

/* ===== INFO BANNER ===== */
.info-banner {
    padding: 12px 16px;
    max-width: 600px;
    margin: 0 auto;
}

.info-banner-inner {
    display: flex;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255, 179, 0, 0.06);
    border: 1px solid rgba(255, 179, 0, 0.15);
    border-radius: var(--radius-md);
    align-items: flex-start;
}

.info-icon-wrap {
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 179, 0, 0.1);
    border-radius: 8px;
    color: var(--warning);
    font-size: 14px;
}

.info-text {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.info-text strong {
    color: var(--warning);
}

/* ===== PRODUCT SECTIONS ===== */
.product-section {
    padding: 28px 16px 0;
    max-width: 600px;
    margin: 0 auto;
}

.product-section.hidden-section {
    display: none;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    gap: 12px;
}

.section-title-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.section-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.section-badge {
    padding: 5px 12px;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 50px;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
    white-space: nowrap;
}

/* ===== PRODUCT CARDS ===== */
.product-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 16px;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
}

.product-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.product-card:hover {
    border-color: var(--border-glow);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.card-image-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.card-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .card-image-container img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(3, 3, 8, 0.8) 100%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 12px;
}

.card-tag {
    padding: 5px 12px;
    background: rgba(0, 240, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 50px;
    font-family: var(--font-mono);
    font-size: 0.55rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
}

.card-tag.best {
    background: rgba(255, 45, 120, 0.2);
    border-color: rgba(255, 45, 120, 0.3);
    color: var(--neon-pink);
}

.card-tag.premium {
    background: rgba(123, 47, 247, 0.2);
    border-color: rgba(123, 47, 247, 0.3);
    color: var(--accent-light);
}

.card-tag.eco {
    background: rgba(0, 255, 136, 0.15);
    border-color: rgba(0, 255, 136, 0.25);
    color: var(--neon-green);
}

.card-body {
    padding: 16px;
}

.card-title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.card-desc {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 12px;
}

.card-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.spec {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: var(--bg-elevated);
    border-radius: 50px;
    font-size: 0.65rem;
    color: var(--text-muted);
}

.spec i {
    font-size: 9px;
    color: var(--primary);
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--border-subtle);
}

.card-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.price-currency {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
}

.price-amount {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-unit {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-left: 4px;
}

.card-order-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.25);
    border-radius: 50px;
    color: var(--success);
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.card-order-btn i {
    font-size: 16px;
}

.card-order-btn:hover,
.card-order-btn:active {
    background: var(--success);
    color: white;
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.3);
    transform: scale(1.02);
}

/* ===== LASER SECTION ===== */
.laser-section .section-icon {
    background: rgba(0, 255, 136, 0.08);
    border-color: rgba(0, 255, 136, 0.15);
    color: var(--neon-green);
}

.laser-badge {
    background: rgba(0, 255, 136, 0.08) !important;
    border-color: rgba(0, 255, 136, 0.15) !important;
    color: var(--neon-green) !important;
}

.printer-showcase {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: var(--gradient-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    align-items: center;
}

.printer-image-wrap {
    width: 100px;
    min-width: 100px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--bg-elevated);
}

.printer-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.printer-info h4 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--neon-green);
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.printer-info p {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Laser Search */
.laser-search-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    transition: border-color 0.3s ease;
}

.laser-search-bar:focus-within {
    border-color: var(--neon-green);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.1);
}

.laser-search-bar i {
    color: var(--text-muted);
    font-size: 14px;
}

.laser-search-bar input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-size: 0.85rem;
    font-family: var(--font-body);
}

.laser-search-bar input::placeholder {
    color: var(--text-muted);
}

/* Laser Tables */
.laser-table-group {
    margin-bottom: 16px;
    background: var(--gradient-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.laser-table-group.highlight-group {
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.1);
}

.laser-table-group.hidden-laser {
    display: none;
}

.laser-group-header {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-subtle);
}

.laser-group-header h4 {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.laser-group-header h4 i {
    color: var(--neon-green);
    font-size: 14px;
}

.laser-table-scroll {
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--bg-elevated) transparent;
}

.laser-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 400px;
}

.laser-table thead tr {
    background: var(--bg-elevated);
}

.laser-table th {
    padding: 10px 12px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-align: center;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border-subtle);
}

.laser-table th:first-child {
    text-align: left;
    min-width: 140px;
}

.laser-table th small {
    display: block;
    font-weight: 400;
    color: var(--text-muted);
    font-size: 0.6rem;
    margin-top: 2px;
}

.laser-table td {
    padding: 10px 12px;
    text-align: center;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 0.8rem;
    transition: background 0.2s ease;
}

.laser-table tbody tr:last-child td {
    border-bottom: none;
}

.laser-table tbody tr:hover td {
    background: rgba(0, 255, 136, 0.03);
}

.type-cell {
    text-align: left !important;
    font-size: 0.72rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.laser-price {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--neon-green);
    font-size: 0.85rem;
}

.laser-code {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: var(--text-muted);
    opacity: 0.6;
}

.laser-table td.highlight-cell {
    background: rgba(0, 255, 136, 0.08);
}

.laser-table td.highlight-cell .laser-price {
    color: #fff;
    text-shadow: 0 0 10px var(--neon-green);
}

/* ===== SPECS SECTION ===== */
.specs-section {
    padding: 40px 16px;
    max-width: 600px;
    margin: 0 auto;
}

.specs-header {
    margin-bottom: 20px;
}

.specs-header h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.specs-header h3 i {
    color: var(--accent);
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.spec-card {
    padding: 18px 14px;
    background: var(--gradient-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.spec-card:hover {
    border-color: rgba(123, 47, 247, 0.2);
    box-shadow: var(--shadow-accent);
}

.spec-card-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(123, 47, 247, 0.1);
    border: 1px solid rgba(123, 47, 247, 0.15);
    border-radius: 8px;
    color: var(--accent-light);
    font-size: 14px;
    margin-bottom: 10px;
}

.spec-card h4 {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.spec-card p {
    font-size: 0.68rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ===== FOOTER ===== */
.app-footer {
    padding: 0 16px 100px;
    max-width: 600px;
    margin: 0 auto;
}

.footer-cta {
    text-align: center;
    padding: 32px 20px;
    background: var(--gradient-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    margin-bottom: 24px;
}

.footer-cta h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.footer-cta p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.footer-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--success);
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.footer-whatsapp-btn:hover,
.footer-whatsapp-btn:active {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.footer-whatsapp-btn i {
    font-size: 20px;
}

.footer-info {
    text-align: center;
    padding: 24px 0;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: white;
}

.footer-brand-name {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.footer-brand-name span {
    color: var(--text-primary);
}

.footer-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.footer-details p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.footer-details p i {
    color: var(--primary);
    font-size: 12px;
    width: 14px;
    text-align: center;
}

.footer-cmyk {
    margin-bottom: 16px;
}

.cmyk-strip {
    display: flex;
    height: 3px;
    border-radius: 10px;
    overflow: hidden;
    max-width: 200px;
    margin: 0 auto;
}

.cmyk-c-strip { flex: 1; background: var(--cmyk-c); }
.cmyk-m-strip { flex: 1; background: var(--cmyk-m); }
.cmyk-y-strip { flex: 1; background: var(--cmyk-y); }
.cmyk-k-strip { flex: 1; background: #444; }

.footer-copy {
    font-size: 0.65rem;
    color: var(--text-muted);
    opacity: 0.5;
}

/* ===== FLOATING WHATSAPP ===== */
.floating-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 16px;
    width: 56px;
    height: 56px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    z-index: 90;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:active {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.wa-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--success);
    animation: waPulse 2s ease-out infinite;
}

@keyframes waPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* ===== SCROLL ANIMATIONS ===== */
@keyframes slideInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===== RESPONSIVE ===== */
@media (min-width: 375px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .splash-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 414px) {
    .hero-title {
        font-size: 2.4rem;
    }
    .card-image-container {
        height: 220px;
    }
}

@media (min-width: 600px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .splash-title {
        font-size: 3rem;
    }
    .specs-grid {
        gap: 14px;
    }
    .card-image-container {
        height: 260px;
    }
}

/* ===== DARK SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--bg-deepblack);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-elevated);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 240, 255, 0.2);
}

/* ===== SELECTION ===== */
::selection {
    background: rgba(0, 240, 255, 0.2);
    color: var(--primary);
}

/* ===== TOAST NOTIFICATION ===== */
.toast {
    position: fixed;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    padding: 12px 24px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-glow);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 300;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-glow);
    pointer-events: none;
    white-space: nowrap;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ===== LOADING SKELETON ===== */
.skeleton {
    background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-card-hover) 50%, var(--bg-card) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-sm);
}

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