/* 
 * STOKER PREMIUM GLOBAL THEME - FULL MIDNIGHT
 * High-end dark mode for world-class e-commerce experience.
 */

:root {
    --bg-color: #0f172a;
    --card-bg: #1e293b;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --primary-btn: #3b82f6;
    --primary-dark: #1e40af;
    --accent-pink: #f43f5e;
    --success: #10b981;
    --error: #e11d48;
    --soft-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2), 0 4px 6px -2px rgba(0, 0, 0, 0.1);
    --premium-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
    --border-radius: 16px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Transitions & Layout */
body {
    background-color: var(--bg-color) !important;
    color: var(--text-main);
    transition: background-color 0.3s ease;
}

/* Shared Components - Glassmorphism */
.header,
.bottom-nav {
    background: rgba(15, 23, 42, 0.8) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

/* Standard Product Cards */
.product-card {
    background: var(--card-bg) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    box-shadow: var(--soft-shadow) !important;
    transition: var(--transition) !important;
}

.product-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: var(--premium-shadow) !important;
    border-color: rgba(59, 130, 246, 0.3) !important;
}

/* Skeleton Loaders */
.skeleton {
    background-color: #1e293b !important;
}

.skeleton::after {
    background: linear-gradient(90deg, transparent 0, rgba(255, 255, 255, 0.05) 50%, transparent 100%) !important;
}

/* Common Text Classes */
.text-gradient {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Fav Badges */
.badge-fav {
    background: rgba(15, 23, 42, 0.6) !important;
    backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: white !important;
}

.badge-fav:hover {
    background: var(--accent-pink) !important;
    border-color: var(--accent-pink) !important;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-up {
    animation: fadeInUp 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}