/* VibeShop Premium Styles */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #F97316;
    --primary-dark: #C2410C;
    --dark-bg: #0F172A;
}

body {
    font-family: 'Outfit', 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-dark {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Custom Scrollbar Hide */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(249, 115, 22, 0.2);
    }

    50% {
        box-shadow: 0 0 30px rgba(249, 115, 22, 0.6);
    }
}

.animate-glow {
    animation: pulse-glow 3s infinite;
}

/* Swiper Custom */
.swiper-pagination-bullet-active {
    background-color: var(--primary) !important;
    width: 24px !important;
    border-radius: 99px !important;
    transition: width 0.3s;
}

/* Text Gradients */
.text-gradient {
    background: linear-gradient(to right, #F97316, #EC4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}