/*
Theme Name: Plastiki Dark Neon Tech
Theme URI: https://plastiki.net
Author: MiniMax Agent
Author URI: https://plastiki.net
Description: Dynamiczny motyw z intensywnymi efektami neonowymi WordPress z efektami dark, neon, tech, vibrantami i hologramami dla premium kart plastikowych.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: plastiki-dark-neon
Tags: modern, futuristic, ecommerce, neon, cyberpunk
*/

/* Import Product Gallery & Video Styles */
@import url('product-styles.css');

/* ========================================
   CYBERPUNK PREMIUM CARDS - WORDPRESS THEME
   ======================================== */

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

:root {
    /* Colors */
    --neon-cyan: #00f3ff;
    --neon-pink: #ff00ea;
    --neon-purple: #8b00ff;
    --gold: #ffd700;
    --bg-dark: #0a0a0f;
    --bg-card: #1a1a2e;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b8;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* === HOLOGRAPHIC BACKGROUND === */
.holo-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(139, 0, 255, 0.1), transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 243, 255, 0.08), transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 243, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 243, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
}

#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* === NAVIGATION === */
.cyber-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 243, 255, 0.2);
    padding: 20px 0;
    z-index: 1000;
}

.cyber-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.logo-glitch {
    font-size: 24px;
    font-weight: 900;
    color: var(--neon-cyan);
    position: relative;
    letter-spacing: 2px;
    text-decoration: none;
}

.logo-subtitle {
    font-size: 10px;
    color: var(--text-secondary);
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    position: relative;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-cyan);
    transition: width 0.3s;
    box-shadow: 0 0 10px var(--neon-cyan);
}

.nav-link:hover {
    color: var(--neon-cyan);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--neon-cyan);
    transition: all 0.3s;
}

/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--section-padding);
    padding-top: 150px;
    z-index: 2;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-label {
    display: inline-block;
    font-size: 12px;
    color: var(--neon-cyan);
    border: 1px solid var(--neon-cyan);
    padding: 8px 16px;
    margin-bottom: 20px;
    letter-spacing: 2px;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
}

.cyber-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
}

.title-line {
    display: block;
}

.title-line.highlight {
    color: var(--neon-cyan);
    text-shadow: 0 0 30px var(--neon-cyan);
}

.hero-desc {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
}

.cta-group {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.cyber-btn {
    padding: 16px 32px;
    font-size: 14px;
    font-weight: 700;
    border: 2px solid;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cyber-btn.primary {
    background: var(--neon-cyan);
    border-color: var(--neon-cyan);
    color: var(--bg-dark);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.5);
}

.cyber-btn.primary:hover {
    box-shadow: 0 0 50px rgba(0, 243, 255, 0.8);
    transform: translateY(-2px);
}

.cyber-btn.secondary {
    background: transparent;
    border-color: var(--text-primary);
    color: var(--text-primary);
}

.cyber-btn.secondary:hover {
    background: var(--text-primary);
    color: var(--bg-dark);
}

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

.stat-item {
    padding: 20px;
    border-left: 2px solid var(--neon-cyan);
    background: rgba(0, 243, 255, 0.05);
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--neon-cyan);
    margin-bottom: 5px;
}

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

/* === HOLOGRAM CARD === */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hologram-card {
    position: relative;
    width: 350px;
    height: 220px;
    transform-style: preserve-3d;
    animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0) rotateY(0deg); }
    50% { transform: translateY(-20px) rotateY(5deg); }
}

.card-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.2), rgba(139, 0, 255, 0.2));
    border-radius: 16px;
    border: 1px solid rgba(0, 243, 255, 0.3);
    backdrop-filter: blur(10px);
}

.card-layer.layer-1 {
    transform: translateZ(-20px);
    opacity: 0.3;
}

.card-layer.layer-2 {
    transform: translateZ(-10px);
    opacity: 0.5;
}

.card-layer.layer-3 {
    transform: translateZ(0px);
    box-shadow: 0 20px 60px rgba(0, 243, 255, 0.4);
}

.scan-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    box-shadow: 0 0 20px var(--neon-cyan);
    animation: scan 3s linear infinite;
}

@keyframes scan {
    0% { top: 0; }
    100% { top: 100%; }
}

/* === PRODUCTS SECTION === */
.products-section {
    position: relative;
    padding: var(--section-padding);
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    color: var(--neon-cyan);
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
}

.section-title .highlight {
    color: var(--neon-cyan);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 243, 255, 0.2);
    padding: 30px;
    position: relative;
    transition: all 0.3s;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-cyan);
    box-shadow: 0 20px 60px rgba(0, 243, 255, 0.2);
}

.product-card:hover::before {
    opacity: 1;
}

.product-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--neon-cyan);
}

.product-corner.tl {
    top: -1px;
    left: -1px;
    border-right: none;
    border-bottom: none;
}

.product-corner.tr {
    top: -1px;
    right: -1px;
    border-left: none;
    border-bottom: none;
}

.product-corner.bl {
    bottom: -1px;
    left: -1px;
    border-right: none;
    border-top: none;
}

.product-corner.br {
    bottom: -1px;
    right: -1px;
    border-left: none;
    border-top: none;
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--neon-cyan);
    color: var(--bg-dark);
    padding: 6px 12px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
}

.product-visual {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.product-card-3d {
    width: 200px;
    height: 130px;
    border-radius: 12px;
    position: relative;
    transition: transform 0.3s;
}

.product-card-3d.black {
    background: linear-gradient(135deg, #1a1a1a, #000000);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.product-card-3d.transparent {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(0, 243, 255, 0.2));
    border: 1px solid rgba(0, 243, 255, 0.5);
    backdrop-filter: blur(10px);
}

.product-card-3d.blue {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

/* Featured Image Thumbnail styling */
.product-thumbnail {
    width: 200px;
    height: 130px;
    border-radius: 12px;
    object-fit: cover;
    transition: transform 0.3s;
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.3);
    border: 1px solid rgba(0, 243, 255, 0.2);
}

.product-card:hover .product-thumbnail {
    transform: rotateY(10deg) rotateX(5deg);
}

.product-card:hover .product-card-3d {
    transform: rotateY(10deg) rotateX(5deg);
}

.product-info h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--neon-cyan);
}

.product-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.product-specs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 25px;
}

.spec {
    font-size: 12px;
    color: var(--text-secondary);
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 243, 255, 0.2);
}

.price {
    font-size: 32px;
    font-weight: 900;
    color: var(--neon-cyan);
}

.currency {
    font-size: 16px;
    color: var(--text-secondary);
}

.add-to-cart {
    padding: 12px 24px;
    background: transparent;
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.add-to-cart:hover {
    background: var(--neon-cyan);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
}

/* === TECH SECTION === */
.tech-section {
    position: relative;
    padding: var(--section-padding);
    z-index: 2;
}

.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.tech-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 243, 255, 0.2), transparent);
    border: 2px solid var(--neon-cyan);
    animation: pulse 3s ease-in-out infinite;
}

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

.tech-rings {
    position: absolute;
    width: 100%;
    height: 100%;
}

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 50%;
    animation: ringExpand 4s ease-out infinite;
}

.ring:nth-child(1) {
    width: 300px;
    height: 300px;
    animation-delay: 0s;
}

.ring:nth-child(2) {
    width: 300px;
    height: 300px;
    animation-delay: 1.3s;
}

.ring:nth-child(3) {
    width: 300px;
    height: 300px;
    animation-delay: 2.6s;
}

@keyframes ringExpand {
    0% {
        width: 300px;
        height: 300px;
        opacity: 1;
    }
    100% {
        width: 600px;
        height: 600px;
        opacity: 0;
    }
}

.tech-content h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 40px;
}

.tech-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tech-list li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.tech-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 243, 255, 0.1);
    border: 2px solid var(--neon-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    color: var(--neon-cyan);
    flex-shrink: 0;
}

.tech-list h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--neon-cyan);
}

.tech-list p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* === CONTACT SECTION === */
.contact-section {
    position: relative;
    padding: var(--section-padding);
    z-index: 2;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-label {
    font-size: 12px;
    color: var(--text-secondary);
    letter-spacing: 2px;
}

.info-value {
    font-size: 18px;
    color: var(--neon-cyan);
    font-weight: 600;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    background: rgba(0, 243, 255, 0.05);
    border: 1px solid rgba(0, 243, 255, 0.2);
    padding: 16px 20px;
    color: var(--text-primary);
    font-size: 14px;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-secondary);
}

/* === FOOTER === */
.cyber-footer {
    position: relative;
    padding: 40px 0;
    border-top: 1px solid rgba(0, 243, 255, 0.2);
    text-align: center;
    z-index: 2;
}

.cyber-footer p {
    font-size: 12px;
    color: var(--text-secondary);
    letter-spacing: 2px;
}

/* === LIVE CHAT WIDGET === */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10000;
}

.chat-bubble {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.4);
    transition: all 0.3s;
    position: relative;
    animation: chatPulse 2s ease-in-out infinite;
}

@keyframes chatPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.chat-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 243, 255, 0.6);
}

.chat-bubble svg {
    width: 28px;
    height: 28px;
    color: white;
}

.chat-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 24px;
    height: 24px;
    background: #ff0055;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: white;
    border: 3px solid var(--bg-dark);
    animation: notificationBounce 1s ease-in-out infinite;
}

@keyframes notificationBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.chat-options {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    background: var(--bg-card);
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s;
}

.chat-options.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(0, 243, 255, 0.2);
}

.chat-header h4 {
    font-size: 16px;
    color: var(--neon-cyan);
}

.chat-close {
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.chat-close svg {
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
}

.chat-close:hover svg {
    color: var(--neon-cyan);
}

.chat-methods {
    padding: 10px;
}

.chat-method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    margin-bottom: 8px;
}

.chat-method:hover {
    background: rgba(0, 243, 255, 0.1);
}

.method-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon.live-chat {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.method-icon.whatsapp {
    background: #25D366;
}

.method-icon.email {
    background: #EA4335;
}

.method-icon.phone {
    background: #0088cc;
}

.method-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.method-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.method-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.method-desc {
    font-size: 12px;
    color: var(--text-secondary);
}

.status-online {
    width: 10px;
    height: 10px;
    background: #00ff00;
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.chat-footer {
    padding: 15px 20px;
    border-top: 1px solid rgba(0, 243, 255, 0.2);
    text-align: center;
}

.chat-footer span {
    font-size: 12px;
    color: var(--text-secondary);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .cyber-title {
        font-size: 56px;
    }
    
    .hero .container,
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 15, 0.98);
        padding: 20px;
        border-top: 1px solid rgba(0, 243, 255, 0.2);
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .cyber-title {
        font-size: 42px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-group {
        flex-direction: column;
    }
    
    .chat-options {
        width: 300px;
        right: -10px;
    }
    
    .chat-widget {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .cyber-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .hero {
        padding-top: 120px;
    }
}

/* === PRODUCT LINK WRAPPER === */
.product-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: none;
}

.product-link:hover,
.product-link:focus,
.product-link:active {
    text-decoration: none;
    color: inherit;
    outline: none;
}


/* Neonowe menu - Koncepcja 2 */
@import url("assets/css/menu-neon.css");
/* === ULEPSZONE MENU === */
.cyber-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid rgba(0, 243, 255, 0.3);
    padding: 18px 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 243, 255, 0.1);
    transition: all 0.3s ease;
}

.cyber-nav.scrolled {
    background: rgba(10, 10, 15, 0.98);
    box-shadow: 0 10px 40px rgba(0, 243, 255, 0.2);
}

.cyber-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.logo-section {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.logo-glitch {
    font-size: 26px;
    font-weight: 900;
    color: var(--neon-cyan);
    position: relative;
    letter-spacing: 2px;
    text-decoration: none;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
    transition: all 0.3s ease;
}

.logo-glitch:hover {
    text-shadow: 0 0 20px rgba(0, 243, 255, 0.8);
    transform: scale(1.05);
}

.logo-subtitle {
    font-size: 10px;
    color: rgba(0, 243, 255, 0.6);
    letter-spacing: 3px;
    font-weight: 600;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    position: relative;
    padding: 8px 16px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-links a:hover::before,
.nav-links a.current_page_item::before,
.nav-links .current-menu-item a::before {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
}

.nav-links a:hover,
.nav-links a.current_page_item,
.nav-links .current-menu-item a {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.6);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links .current-menu-item a::after {
    width: 80%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(0, 243, 255, 0.2);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--neon-cyan);
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 15, 0.98);
        flex-direction: column;
        gap: 0;
        padding: 30px 0;
        border-left: 2px solid rgba(0, 243, 255, 0.3);
        box-shadow: -10px 0 40px rgba(0, 243, 255, 0.2);
        transition: right 0.4s ease;
        align-items: flex-start;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        width: 100%;
        padding: 18px 30px;
        border-bottom: 1px solid rgba(0, 243, 255, 0.1);
    }
    
    .nav-links a:hover {
        background: rgba(0, 243, 255, 0.1);
        padding-left: 40px;
    }
    
    .hamburger {
        display: flex;
    }
}

/* ====================================
   HERO CARD IMAGE
   ==================================== */
.hero-card-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    z-index: 5;
    opacity: 0.9;
    pointer-events: none;
}

/* Zachowaj animacje i glow ramki */
.hologram-card .hero-card-image {
    will-change: opacity;
}


/* ====================================
   UPLOAD CARD TRIGGER - NEON BUTTON
   ==================================== */
.upload-card-trigger {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(10, 10, 15, 0.8);
    border: 2px solid transparent;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    
    /* Gradient border effect */
    background-image: 
        linear-gradient(rgba(10, 10, 15, 0.9), rgba(10, 10, 15, 0.9)),
        linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-purple) 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    
    box-shadow: 
        0 0 15px rgba(0, 243, 255, 0.3),
        inset 0 0 20px rgba(0, 243, 255, 0.05);
}

.upload-card-trigger:hover {
    transform: translateY(-2px);
    background-image: 
        linear-gradient(rgba(10, 10, 15, 0.95), rgba(10, 10, 15, 0.95)),
        linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-purple) 100%);
    
    box-shadow: 
        0 0 25px rgba(0, 243, 255, 0.5),
        0 0 40px rgba(139, 0, 255, 0.3),
        inset 0 0 30px rgba(0, 243, 255, 0.1);
}

.upload-card-trigger:active {
    transform: translateY(0);
    box-shadow: 
        0 0 15px rgba(0, 243, 255, 0.4),
        inset 0 0 20px rgba(0, 243, 255, 0.15);
}

.upload-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.upload-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--neon-cyan);
    filter: drop-shadow(0 0 8px rgba(0, 243, 255, 0.6));
    transition: all 0.3s ease;
}

.upload-card-trigger:hover .upload-icon svg {
    stroke: #ffffff;
    filter: drop-shadow(0 0 12px rgba(0, 243, 255, 0.9));
    transform: rotate(90deg);
}

.upload-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
    transition: all 0.3s ease;
}

.upload-card-trigger:hover .upload-text {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(0, 243, 255, 0.8);
}

/* Responsywność */
@media (max-width: 768px) {
    .upload-card-trigger {
        bottom: 10px;
        right: 10px;
        padding: 10px 18px;
        gap: 8px;
    }
    
    .upload-icon {
        width: 20px;
        height: 20px;
    }
    
    .upload-text {
        font-size: 12px;
    }
}

/* Animacja loading po wybraniu pliku */
.upload-card-trigger.uploading {
    pointer-events: none;
    opacity: 0.7;
}

.upload-card-trigger.uploading .upload-icon svg {
    animation: rotate 1s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Success state */
.upload-card-trigger.success {
    background-image: 
        linear-gradient(rgba(10, 10, 15, 0.9), rgba(10, 10, 15, 0.9)),
        linear-gradient(135deg, #00ff88 0%, #00d4ff 100%);
    
    box-shadow: 
        0 0 20px rgba(0, 255, 136, 0.5),
        inset 0 0 20px rgba(0, 255, 136, 0.1);
}

.upload-card-trigger.success .upload-icon svg {
    stroke: #00ff88;
}

.upload-card-trigger.success .upload-text {
    color: #00ff88;
}


/* ====================================
   GLIGHTBOX - PRZYCISK ZAMKNIĘCIA I NAWIGACJA
   ==================================== */

/* Przycisk zamknięcia - wyraźny i widoczny */
.glightbox-clean .gclose,
.glightbox-modern .gclose {
    position: absolute !important;
    right: 20px !important;
    top: 20px !important;
    width: 40px !important;
    height: 40px !important;
    background: rgba(10, 10, 15, 0.9) !important;
    border: 2px solid var(--neon-cyan) !important;
    border-radius: 8px !important;
    color: var(--neon-cyan) !important;
    font-size: 32px !important;
    line-height: 36px !important;
    cursor: pointer !important;
    z-index: 99999 !important;
    opacity: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 
        0 0 20px rgba(0, 243, 255, 0.5),
        inset 0 0 15px rgba(0, 243, 255, 0.1) !important;
    transition: all 0.3s ease !important;
}

.glightbox-clean .gclose:hover,
.glightbox-modern .gclose:hover {
    background: rgba(0, 243, 255, 0.2) !important;
    transform: scale(1.1) !important;
    box-shadow: 
        0 0 30px rgba(0, 243, 255, 0.8),
        inset 0 0 20px rgba(0, 243, 255, 0.2) !important;
}

/* Strzałki nawigacji - większe i bardziej widoczne */
.glightbox-clean .gnext,
.glightbox-clean .gprev,
.glightbox-modern .gnext,
.glightbox-modern .gprev {
    background: rgba(10, 10, 15, 0.8) !important;
    border: 2px solid var(--neon-cyan) !important;
    border-radius: 8px !important;
    width: 50px !important;
    height: 50px !important;
    opacity: 1 !important;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.4) !important;
}

.glightbox-clean .gnext:hover,
.glightbox-clean .gprev:hover,
.glightbox-modern .gnext:hover,
.glightbox-modern .gprev:hover {
    background: rgba(0, 243, 255, 0.2) !important;
    box-shadow: 0 0 25px rgba(0, 243, 255, 0.7) !important;
    transform: scale(1.1) !important;
}

/* Strzałki SVG */
.glightbox-clean .gnext svg,
.glightbox-clean .gprev svg,
.glightbox-modern .gnext svg,
.glightbox-modern .gprev svg {
    stroke: var(--neon-cyan) !important;
    filter: drop-shadow(0 0 8px rgba(0, 243, 255, 0.6)) !important;
}

/* Container lightbox - dark background */
.glightbox-container {
    background: rgba(0, 0, 0, 0.95) !important;
}

/* Overlay */
.goverlay {
    background: rgba(0, 0, 0, 0.95) !important;
}


/* ====================================
   UJEDNOLICONE GRAFIKI PRODUKTÓW - RÓŻNE ODCIENIE KOLORÓW
   ==================================== */

/* PLASTIK#1 - Zielonkawy (oryginalny) */
.product-color-green {
    /* Brak filtra - zachowuje oryginalny kolor */
}

/* PLASTIK#2 - Pomarańczowy */
.product-color-orange {
    filter: hue-rotate(40deg) saturate(1.3) brightness(1.1);
}

.product-card:hover .product-color-orange {
    filter: hue-rotate(40deg) saturate(1.4) brightness(1.15);
}

/* PLASTIK#3 - Żółty */
.product-color-yellow {
    filter: hue-rotate(70deg) saturate(1.2) brightness(1.2);
}

.product-card:hover .product-color-yellow {
    filter: hue-rotate(70deg) saturate(1.3) brightness(1.25);
}

/* Fallback dla product-card-3d jeśli brak thumbnail */
.product-card-3d.product-color-orange {
    background: linear-gradient(135deg, #ff6b35, #ff9d76);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.product-card-3d.product-color-yellow {
    background: linear-gradient(135deg, #ffc038, #ffe066);
    box-shadow: 0 10px 30px rgba(255, 192, 56, 0.4);
}

.product-card-3d.product-color-green {
    background: linear-gradient(135deg, #3d8b3d, #5cb85c);
    box-shadow: 0 10px 30px rgba(61, 139, 61, 0.4);
}


/* ============================================
   GLIGHTBOX CLOSE BUTTON - UKRYJ NA STRONIE GŁÓWNEJ
   ============================================ */

/* Domyślnie ukryj krzyżyk (×) GLightbox na całej stronie */
.gclose {
    display: none !important;
}

/* Pokaż krzyżyk TYLKO gdy lightbox jest otwarty */
.glightbox-open .gclose {
    display: flex !important;
}

/* === HERO CARD IMAGE - STAŁY ELEMENT DEKORACYJNY === */
.hero-card-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 85%;
    max-height: 85%;
    width: auto;
    height: auto;
    object-fit: contain;
    z-index: 5;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.3));
}

@media (max-width: 768px) {
    .hero-card-image {
        max-width: 90%;
        max-height: 90%;
    }
    
    .hologram-card {
        width: 280px;
        height: 180px;
    }
}

/* === HERO CARD IMAGE - STALY ELEMENT DEKORACYJNY === */
.hologram-card .hero-card-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 88%;
    max-height: 88%;
    width: auto;
    height: auto;
    object-fit: contain;
    z-index: 5;
    pointer-events: none !important;
    user-select: none !important;
    -webkit-user-drag: none;
    filter: drop-shadow(0 0 25px rgba(0, 255, 255, 0.4));
    border-radius: 12px;
}

/* Responsywnosc */
@media (max-width: 768px) {
    .hologram-card .hero-card-image {
        max-width: 92%;
        max-height: 92%;
    }
    
    .hologram-card {
        width: 300px;
        height: 190px;
    }
}

@media (max-width: 480px) {
    .hologram-card {
        width: 260px;
        height: 165px;
    }
}

/* Usun stare style uploadu */
.upload-card-trigger,
.upload-icon,
.upload-text {
    display: none !important;
}
