@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary-gradient: linear-gradient(135deg, #0f172a 0%, #1e40af 50%, #3b82f6 100%);
    --accent-gradient: linear-gradient(135deg, #3b82f6 0%, #2dd4bf 100%);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.5);
}

body {
    font-family: 'Outfit', sans-serif;
    background: #f1f5f9;
    background-image: radial-gradient(at 0% 0%, rgba(59, 130, 246, 0.05) 0, transparent 50%), 
                      radial-gradient(at 50% 0%, rgba(45, 212, 191, 0.05) 0, transparent 50%);
    min-height: 100vh;
}

.premium-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.03), 0 10px 10px -5px rgba(0, 0, 0, 0.01);
}

.btn-primary {
    background: var(--primary-gradient);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 15px 30px rgba(30, 64, 175, 0.3);
}

.glass-nav {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Status Badge Styles - More Vibrant */
.status-keep { background: #fffbeb; color: #b45309; border: 1px solid #fde68a; }
.status-dp { background: #fff7ed; color: #c2410c; border: 1px solid #fed7aa; }
.status-lunas { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }
.status-batal { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }

/* Product Selection Scrollable Area */
.product-scroll-container {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 8px 4px 20px 4px;
    scrollbar-width: thin;
}

.product-scroll-container::-webkit-scrollbar {
    height: 4px;
}

.product-scroll-container::-webkit-scrollbar-thumb {
    background: #e2e8f0;
    border-radius: 10px;
}

.product-item-vibrant {
    transition: all 0.3s ease;
}

.product-item-vibrant.selected {
    transform: scale(1.05);
}

.product-item-vibrant.selected .image-box {
    border-color: #3b82f6;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
    background: #eff6ff;
}

.product-item-vibrant.selected p {
    color: #1e40af;
    font-weight: 900;
}

/* Floating Action Button for Mobile */
.fab-add {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 20px rgba(45, 212, 191, 0.4);
    z-index: 50;
    transition: all 0.3s ease;
}

.fab-add:active {
    transform: scale(0.9);
}
