/* WhisezCX Development High-End Cyberpunk Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@500;700;800&display=swap');

:root {
    --bg-dark: #090d16;
    --bg-dark-900: #0f172a;
    --bg-dark-950: #050811;
    --neon-blue: #3b82f6;
    --neon-purple: #8b5cf6;
    --neon-cyan: #06b6d4;
    --text-main: #f8fafc;
}

body {
    background-color: var(--bg-dark) !important;
    color: var(--text-main) !important;
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
}

.font-grotesk {
    font-family: 'Space Grotesk', sans-serif !important;
}

/* Ambient Glow Orbs */
.glow-orb {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    filter: blur(160px);
    opacity: 0.18;
    animation: floatGlow 14s ease-in-out infinite alternate;
}

.glow-orb.top-left {
    top: -240px;
    left: -240px;
    background: radial-gradient(circle, #06b6d4, #3b82f6, #8b5cf6);
}

.glow-orb.bottom-right {
    bottom: -240px;
    right: -240px;
    background: radial-gradient(circle, #8b5cf6, #ec4899, #3b82f6);
}

@keyframes floatGlow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(70px, 70px) scale(1.15); }
}

/* Cyber Grid Effect */
.cyber-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                      linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 25%, rgba(0,0,0,0) 85%);
}

/* Top Banner Animation */
.promo-banner {
    background: linear-gradient(90deg, #0284c7, #7c3aed, #db2777, #0284c7);
    background-size: 300% 100%;
    animation: gradientMove 8s ease infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Glassmorphism Card */
.glass-card {
    background: rgba(15, 23, 42, 0.8) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(59, 130, 246, 0.18);
}

/* Cyber Neon Border Card */
.cyber-border {
    position: relative;
    border: 1px solid transparent;
    background-image: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), linear-gradient(135deg, #06b6d4, #8b5cf6, #ec4899);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.cyber-border:hover {
    box-shadow: 0 0 35px rgba(6, 182, 212, 0.35);
}

/* Filter Tab Navigation */
.filter-tabs-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 6px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    backdrop-filter: blur(12px);
    max-width: 900px;
    margin: 0 auto;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    color: #94a3b8;
    background: transparent;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
}

.filter-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.filter-btn.active {
    color: #fff;
    background: linear-gradient(135deg, #06b6d4, #3b82f6, #8b5cf6);
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.filter-btn .tab-count {
    padding: 2px 7px;
    border-radius: 10px;
    font-size: 10px;
    background: rgba(0, 0, 0, 0.25);
}

.filter-btn.active .tab-count {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

/* Badge Styles */
.badge {
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Product Card Animations */
.product-card {
    transition: transform 0.35s ease, opacity 0.35s ease;
    animation: cardFadeIn 0.5s ease-out forwards;
}

@keyframes cardFadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.product-card.hide {
    display: none !important;
}

/* Laser sweep animation on cards */
.product-card:hover .product-img {
    transform: scale(1.08);
}

.product-img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Toast Notification Animation */
@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.animate-slide-up {
    animation: slideUp 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* Glow Text */
.glow-text-cyan {
    text-shadow: 0 0 20px rgba(6, 182, 212, 0.6);
}

.glow-text-purple {
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
}

/* Pulsing Badge */
.pulse-badge {
    animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {
    0% { box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.6); }
    70% { box-shadow: 0 0 0 10px rgba(6, 182, 212, 0); }
    100% { box-shadow: 0 0 0 0 rgba(6, 182, 212, 0); }
}
