/* Modern Color Palette Theme */
:root {
    --primary-dark: #1e1b4b;
    --primary-light: #6d28d9;
    --accent-cyan: #06b6d4;
    --accent-amber: #f59e0b;
    --accent-emerald: #10b981;
    --accent-rose: #ec4899;
    --neutral-bg: #f8fafc;
    --neutral-dark: #0f172a;
    --neutral-text: #334155;
}

* {
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
}

body {
    background: linear-gradient(to bottom, #f8fafc, #e0f2fe, #f1e7fe);
    color: #0f172a;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Glass Morphism Navigation */
.glass-nav {
    background: rgba(248, 250, 252, 0.92) !important;
    backdrop-filter: blur(30px);
    border-bottom: 2px solid rgba(6, 182, 212, 0.2) !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* Gradient Text Utility */
.text-gradient {
    background: linear-gradient(135deg, #1e1b4b 0%, #6d28d9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Primary Gradient Button */
.btn-primary {
    background: linear-gradient(135deg, #1e1b4b 0%, #6d28d9 100%);
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(109, 40, 217, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(109, 40, 217, 0.45);
}

.btn-primary:active {
    transform: translateY(-1px);
}

/* Accent Cyan Button */
.btn-accent {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
    border: none;
    cursor: pointer;
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(6, 182, 212, 0.45);
}

/* Service Card Styling */
.service-card {
    background: rgba(248, 250, 252, 0.6);
    border: 2px solid rgba(6, 182, 212, 0.15);
    border-radius: 1.5rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2rem;
}

.service-card:hover {
    background: rgba(6, 182, 212, 0.08);
    border-color: rgba(6, 182, 212, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(6, 182, 212, 0.15);
}

/* Icon Badge */
.icon-badge {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(109, 40, 217, 0.15));
    border: 2px solid rgba(6, 182, 212, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.service-card:hover .icon-badge {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.25), rgba(109, 40, 217, 0.25));
    border-color: rgba(6, 182, 212, 0.5);
    transform: scale(1.1) rotate(5deg);
}

/* Modern Input Styling */
.input-modern {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(6, 182, 212, 0.25) !important;
    color: #0f172a;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1rem;
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
}

.input-modern:focus {
    background: rgba(255, 255, 255, 1);
    border-color: #06b6d4 !important;
    outline: none;
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.1);
    transform: translateY(-2px);
}

.input-modern::placeholder {
    color: rgba(51, 65, 85, 0.6);
}

/* Hero Gradient Background */
.hero-gradient {
    background: linear-gradient(135deg, rgba(30, 27, 75, 0.03) 0%, rgba(109, 40, 217, 0.03) 100%);
}

/* Product Card */
.product-card {
    background: rgba(248, 250, 252, 0.8);
    border: 1px solid rgba(6, 182, 212, 0.15);
    border-radius: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.product-card:hover {
    border-color: rgba(6, 182, 212, 0.4);
    box-shadow: 0 20px 45px rgba(6, 182, 212, 0.15);
    transform: translateY(-6px);
}

/* Category Badge */
.category-badge {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(109, 40, 217, 0.1));
    border: 1px solid rgba(6, 182, 212, 0.2);
    color: #1e1b4b;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.category-badge:hover {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(109, 40, 217, 0.2));
    border-color: rgba(6, 182, 212, 0.4);
    color: #06b6d4;
}

/* Navigation Links */
.nav-link {
    color: #64748b;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #06b6d4;
}

.nav-link.active {
    background: linear-gradient(135deg, #1e1b4b 0%, #6d28d9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Card Hover Effect */
.card-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(6, 182, 212, 0.2);
}

/* Testimonial Card */
.testimonial-card {
    background: #ffffff;
    border: 2px solid rgba(6, 182, 212, 0.15);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(6, 182, 212, 0.4);
    box-shadow: 0 15px 40px rgba(6, 182, 212, 0.12);
    transform: translateY(-3px);
}

/* Footer Links */
footer a {
    transition: color 0.3s ease;
    color: #64748b;
}

footer a:hover {
    color: #06b6d4;
}

/* Accent Text Colors */
.text-indigo-900 {
    color: #312e81 !important;
}

.text-cyan-500 {
    color: #06b6d4 !important;
}

.text-slate-600 {
    color: #475569 !important;
}

.text-slate-700 {
    color: #334155 !important;
}

/* Background Gradients */
.bg-gradient-to-b {
    background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}

.from-slate-50 {
    --tw-gradient-from: #f8fafc;
    --tw-gradient-to: rgba(248, 250, 252, 0);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.via-blue-50 {
    --tw-gradient-to: rgba(239, 246, 255, 0);
    --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to);
}

.to-slate-100 {
    --tw-gradient-to: #e2e8f0;
}

.to-blue-50 {
    --tw-gradient-to: #eff6ff;
}

/* Border Colors */
.border-cyan-100 {
    border-color: rgba(6, 182, 212, 0.2) !important;
}

.border-cyan-200 {
    border-color: rgba(6, 182, 212, 0.3) !important;
}

/* Cart Count Badge */
#cart-count, #mobile-cart-count {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

/* Green Button for WhatsApp */
.whatsapp-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(248, 250, 252, 0.5);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #06b6d4, #6d28d9);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #0891b2, #5b21b6);
}

/* Print Styles */
@media print {
    body {
        background: white;
    }
    
    .glass-nav, .btn-primary, .btn-accent {
        box-shadow: none;
    }
}

/* High Contrast for Accessibility */
@media (prefers-contrast: more) {
    .glass-nav {
        background: #ffffff;
        border-bottom: 2px solid #06b6d4;
    }
    
    .btn-primary, .btn-accent {
        font-weight: 800;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
    
    .input-modern {
        border-width: 2px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}