/* * EXIGOSHOP Modern SaaS CSS
 * Concept: Minimalist, Typography-driven, Professional.
 */

/* 1. Base Variables & Reset */
:root {
    --primary: #0d6efd;
    --primary-hover: #0a58ca;
    --bg-light: #f8f9fa;
    --text-main: #1a1d23;
    --text-muted: #64748b;
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    --card-hover-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* 2. Vue Cloak - Fixes the Placeholder Issue */
[v-cloak] {
    display: none !important;
}

/* 3. Global UI Elements */
.section-title {
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.btn {
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 8px; /* Slightly rounded for SaaS look */
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    border: none;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(13, 110, 253, 0.3);
}

/* 4. Navigation & Header Updates */
.navbar {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 800;
    letter-spacing: -1px;
    font-size: 1.5rem;
    color: var(--primary) !important;
}

/* 5. Modern Product Cards */
.product-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.03) !important;
    border-radius: 16px;
    transition: var(--transition);
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-hover-shadow);
    border-color: rgba(13, 110, 253, 0.1) !important;
}

.product-card img {
    transition: transform 0.5s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-card .card-title {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.4em;
}

/* 6. Utility Components */
.badge-custom {
    padding: 0.4em 0.8em;
    font-weight: 600;
    border-radius: 6px;
    font-size: 0.75rem;
}

.shadow-soft {
    box-shadow: var(--card-shadow);
}

/* 7. Skeleton / Loading Animation (Optional Placeholder Fix) */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* 8. Responsive Adjustments */
@media (max-width: 768px) {
    .hero-banner {
        height: 350px !important;
        border-radius: 0;
    }
    
    .display-4 {
        font-size: 2.2rem;
    }
}