/**
 * ორსულები.ge Design System
 * Based on Momly - AI Pregnancy App
 * 
 * Clean, Modern, Trust-inspiring
 * Primary: Purple/Blue gradient
 * Accent: Soft pastels
 */

:root {
    /* Primary Colors - Purple/Blue (Momly Style) */
    --primary-purple: #7B68EE;
    --primary-blue: #4A90E2;
    --primary-dark: #2C3E50;
    --primary-gradient: linear-gradient(135deg, #7B68EE 0%, #4A90E2 100%);
    
    /* Secondary Colors */
    --secondary-pink: #FFB6C1;
    --secondary-mint: #B0E0E6;
    --secondary-peach: #FFDAB9;
    --secondary-lavender: #E6E6FA;
    
    /* Accent Colors */
    --accent-coral: #FF6B6B;
    --accent-teal: #4ECDC4;
    --accent-gold: #FFD700;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --light-gray: #F5F5F5;
    --gray-100: #E8E8E8;
    --gray-200: #CDCDCD;
    --gray-300: #B0B0B0;
    --gray-400: #909090;
    --gray-500: #707070;
    --gray-600: #595959;
    --gray-700: #474747;
    --gray-800: #303030;
    --gray-900: #191919;
    --black: #000000;
    
    /* Semantic Colors */
    --success: #4CAF50;
    --warning: #FFC107;
    --error: #F44336;
    --info: #2196F3;
    
    /* Background Gradients */
    --bg-gradient-soft: linear-gradient(180deg, #F8F9FF 0%, #FFFFFF 100%);
    --bg-gradient-card: linear-gradient(135deg, #FFFFFF 0%, #F8F9FF 100%);
    --bg-gradient-primary: linear-gradient(135deg, #7B68EE 0%, #4A90E2 100%);
    --bg-gradient-secondary: linear-gradient(135deg, #FFB6C1 0%, #E6E6FA 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);
    --shadow-card: 0 4px 20px rgba(123, 104, 238, 0.1);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;
    --spacing-3xl: 64px;
    
    /* Typography */
    --font-family-primary: 'FiraGO', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-family-secondary: 'FiraGO', sans-serif;
    
    /* Font Sizes */
    --text-xs: 12px;
    --text-sm: 14px;
    --text-base: 16px;
    --text-lg: 18px;
    --text-xl: 20px;
    --text-2xl: 24px;
    --text-3xl: 30px;
    --text-4xl: 36px;
    --text-5xl: 48px;
    
    /* Font Weights */
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    
    /* Line Heights */
    --leading-tight: 1.2;
    --leading-normal: 1.5;
    --leading-relaxed: 1.75;
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Z-Index Scale */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-popover: 600;
    --z-tooltip: 700;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family-primary);
    font-size: var(--text-base);
    line-height: var(--leading-normal);
    color: var(--gray-800);
    background: var(--bg-gradient-soft);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography Classes */
.text-primary {
    color: var(--primary-purple);
}

.text-secondary {
    color: var(--gray-600);
}

.text-muted {
    color: var(--gray-500);
}

/* Gradient Text */
.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: var(--text-base);
    font-weight: var(--font-medium);
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    gap: var(--spacing-sm);
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: var(--shadow-card);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
}

.btn-secondary:hover {
    background: var(--primary-purple);
    color: var(--white);
}

.btn-ghost {
    background: transparent;
    color: var(--gray-700);
}

.btn-ghost:hover {
    background: var(--light-gray);
}

/* Cards */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.card-gradient {
    background: var(--bg-gradient-card);
}

/* Progress Bar */
.progress-container {
    width: 100%;
    height: 8px;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--primary-gradient);
    border-radius: var(--radius-full);
    transition: width var(--transition-slow);
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    border-radius: var(--radius-full);
    background: var(--light-gray);
    color: var(--gray-700);
}

.badge-primary {
    background: rgba(123, 104, 238, 0.1);
    color: var(--primary-purple);
}

.badge-success {
    background: rgba(76, 175, 80, 0.1);
    color: var(--success);
}

/* Input Fields */
.input {
    width: 100%;
    padding: 12px 16px;
    font-size: var(--text-base);
    font-family: var(--font-family-primary);
    color: var(--gray-800);
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.input:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 4px rgba(123, 104, 238, 0.1);
}

.input::placeholder {
    color: var(--gray-400);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn var(--transition-base) ease-out;
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-sm {
    gap: var(--spacing-sm);
}

.gap-md {
    gap: var(--spacing-md);
}

.gap-lg {
    gap: var(--spacing-lg);
}

.text-center {
    text-align: center;
}

.rounded-full {
    border-radius: var(--radius-full);
}

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

/* Responsive */
@media (max-width: 768px) {
    :root {
        --text-xs: 11px;
        --text-sm: 13px;
        --text-base: 15px;
        --text-lg: 17px;
        --text-xl: 19px;
        --text-2xl: 22px;
        --text-3xl: 26px;
        --text-4xl: 32px;
        --text-5xl: 40px;
    }
    
    .container {
        padding: 0 var(--spacing-md);
    }
}
.ors-divider{display:flex;align-items:center;gap:12px;margin:14px 0;color:#8b8b98;font-size:13px}.ors-divider:before,.ors-divider:after{content:"";height:1px;background:#ececf4;flex:1}
