/* خلفية النيون المتحركة بشكل خافت لعدم تشتيت العميل */
.neon-bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 243, 255, 0.05) 0%, rgba(157, 0, 255, 0.02) 50%, transparent 100%);
    top: -10%;
    left: -10%;
    z-index: 0;
    filter: blur(80px);
    will-change: transform;
}

/* حواف النيون للمدخلات والفورم */
.neon-border-cyan {
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.2), inset 0 0 15px rgba(0, 243, 255, 0.1);
    border: 1px solid rgba(0, 243, 255, 0.4);
}

.neon-border-cyan:focus-within {
    box-shadow: 0 0 25px rgba(0, 243, 255, 0.5), inset 0 0 10px rgba(0, 243, 255, 0.2);
    border: 1px solid rgba(0, 243, 255, 0.8);
}

.neon-btn {
    background: linear-gradient(135deg, #00f3ff 0%, #9d00ff 100%);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
    transition: all 0.3s ease-in-out;
}

.neon-btn:hover {
    box-shadow: 0 0 35px rgba(157, 0, 255, 0.8);
    transform: translateY(-2px);
}

.product-card-neon {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card-neon:hover {
    border-color: rgba(0, 243, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.05);
    transform: translateY(-5px);
}