/* Custom Styles for Orven Store - Purple Cosmic Theme & Luxury UI */

@layer base {
    * {
        box-sizing: border-box;
        scroll-behavior: smooth;
        -webkit-user-drag: none;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #07040d;
}
::-webkit-scrollbar-thumb {
    background: #6d28d9;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #8b5cf6;
}

/* Glassmorphism & Borders */
.glass-card {
    background: rgba(15, 10, 28, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(147, 51, 234, 0.35);
}

.tier-option.selected {
    border-color: #a855f7 !important;
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.45), rgba(76, 29, 149, 0.65)) !important;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.45);
}

.payment-method-card {
    transition: all 0.25s ease-in-out;
}

.payment-method-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(147, 51, 234, 0.3);
}

.payment-method-card.selected-method {
    border-color: #a855f7 !important;
    background: rgba(88, 28, 135, 0.4) !important;
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.4);
}

/* Product Card Image Container */
.orven-product-img {
    filter: brightness(1.0) contrast(1.05);
    transition: transform 0.5s ease;
}

.orven-img-container {
    background: radial-gradient(circle at center, rgba(147, 51, 234, 0.3) 0%, rgba(15, 10, 28, 0.95) 85%);
}

/* Keyframes & Animations */
@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

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

.animate-scaleUp {
    animation: scaleUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-slideIn {
    animation: slideIn 0.3s ease-out forwards;
}

/* Infinite Reviews Marquee Ticker */
@keyframes marquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(50%);
    }
}

.reviews-marquee-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: marquee 35s linear infinite;
}

.reviews-marquee-track:hover {
    animation-play-state: paused;
}

.active-nav {
    color: #c084fc !important;
    font-weight: 700;
}
