/* 
 * Maithra E-commerce - Official Brand Color Scheme
 * Colors based on official Maithra branding guidelines
 * Symbolizes: Trust, Authority, Stability, Premium Feel, Warmth
 */

:root {
    /* Primary Colors - Deep Indigo/Royal Purple (Official Maithra Brand) */
    --color-primary: #4F46E5;
    --color-primary-light: #6366F1;
    --color-primary-dark: #4338CA;
    
    /* Accent Colors - Soft Rose/Peach (Official Maithra Accent) */
    --color-accent: #F472B6;
    --color-accent-light: #F9A8D4;
    --color-accent-dark: #EC4899;
    
    /* Neutral Colors */
    --color-neutral-light: #F9FAFB;
    --color-neutral: #F3F4F6;
    --color-neutral-dark: #111827;
    
    /* Text Colors */
    --color-text-primary: #111827;
    --color-text-secondary: #6B7280;
    --color-text-light: #9CA3AF;
    
    /* Gradient Colors - Matching Maithra Logo */
    --gradient-primary: linear-gradient(135deg, #4F46E5 0%, #6366F1 100%);
    --gradient-accent: linear-gradient(135deg, #F472B6 0%, #EC4899 100%);
    --gradient-hero: linear-gradient(135deg, #111827 0%, #1F2937 100%);
    --gradient-logo: linear-gradient(135deg, #4338CA 0%, #6366F1 50%, #8B5CF6 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--color-neutral-light);
}

/* Apply custom colors to override Tailwind */
.text-red-600 {
    color: var(--color-accent) !important;
}

.text-red-500 {
    color: var(--color-accent-light) !important;
}

.bg-red-600 {
    background-color: var(--color-accent) !important;
}

.bg-red-700 {
    background-color: var(--color-accent-dark) !important;
}

.bg-red-500 {
    background-color: var(--color-accent-light) !important;
}

.bg-red-100 {
    background-color: rgba(244, 63, 94, 0.1) !important;
}

.hover\:bg-red-600:hover {
    background-color: var(--color-accent) !important;
}

.hover\:bg-red-700:hover {
    background-color: var(--color-accent-dark) !important;
}

.hover\:text-red-600:hover {
    color: var(--color-accent) !important;
}

.hover\:text-red-700:hover {
    color: var(--color-accent-dark) !important;
}

.border-red-600 {
    border-color: var(--color-accent) !important;
}

.from-red-400 {
    --tw-gradient-from: var(--color-accent-light) !important;
}

.from-red-500 {
    --tw-gradient-from: var(--color-accent) !important;
}

.to-red-600 {
    --tw-gradient-to: var(--color-accent) !important;
}

.to-red-700 {
    --tw-gradient-to: var(--color-accent-dark) !important;
}

.ring-red-700 {
    --tw-ring-color: var(--color-accent-dark) !important;
}

/* Enhanced gradients for product cards - Maithra Brand Colors */
.product-gradient-1 {
    background: linear-gradient(135deg, #F472B6 0%, #EC4899 100%);
}

.product-gradient-2 {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
}

.product-gradient-3 {
    background: linear-gradient(135deg, #EC4899 0%, #DB2777 100%);
}

.product-gradient-4 {
    background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
}

.product-gradient-5 {
    background: linear-gradient(135deg, #4F46E5 0%, #4338CA 100%);
}

.product-gradient-6 {
    background: linear-gradient(135deg, #A78BFA 0%, #8B5CF6 100%);
}

.product-gradient-7 {
    background: linear-gradient(135deg, #F9A8D4 0%, #F472B6 100%);
}

.product-gradient-8 {
    background: linear-gradient(135deg, #C084FC 0%, #A855F7 100%);
}

.product-gradient-9 {
    background: linear-gradient(135deg, #E879F9 0%, #D946EF 100%);
}

.product-gradient-10 {
    background: linear-gradient(135deg, #F0ABFC 0%, #E879F9 100%);
}

.product-gradient-11 {
    background: linear-gradient(135deg, #818CF8 0%, #6366F1 100%);
}

.product-gradient-12 {
    background: linear-gradient(135deg, #FBCFE8 0%, #F9A8D4 100%);
}

/* Smooth transitions */
a,
button {
    transition: all 0.3s ease;
}

/* Premium Navigation Styles */
.nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--color-text-secondary);
    position: relative;
    padding-bottom: 2px;
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-link.active {
    color: var(--color-primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
}

/* Category Links */
.category-link {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-secondary);
    padding: 6px 16px;
    border-radius: 8px;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.category-link:hover {
    background: var(--color-neutral);
    color: var(--color-primary);
}

/* Hide scrollbar but keep functionality */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Footer Styles */
.footer-link {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #9CA3AF;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: white;
    padding-left: 4px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    background: #1F2937;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D1D5DB;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
}

/* Custom hover effects */
.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
