/* ==========================================================================
   HOMEMADE DASHBOARD - DARK THEME WITH GRADIENTS
   Primary Colors: #0d6efd (Bootstrap Blue) and #6610f2 (Bootstrap Purple)
   ========================================================================== */

:root {
    /* Primary Brand Colors */
    --primary-blue: #0d6efd;
    --primary-purple: #6610f2;
    
    /* Dark Theme Color Palette */
    --dark-bg-primary: #0a0a0a;
    --dark-bg-secondary: #1a1a1a;
    --dark-bg-tertiary: #2a2a2a;
    --dark-bg-card: #1e1e1e;
    --dark-bg-modal: #242424;
    
    /* Glass Morphism Colors */
    --glass-bg: rgba(26, 26, 26, 0.8);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: rgba(0, 0, 0, 0.3);
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-muted: #666666;
    --text-accent: #f8f9fa;
    
    /* Gradient Combinations */
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 100%);
    --gradient-primary-soft: linear-gradient(135deg, rgba(13, 110, 253, 0.1) 0%, rgba(102, 16, 242, 0.1) 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    --gradient-card: linear-gradient(135deg, rgba(30, 30, 30, 0.9) 0%, rgba(42, 42, 42, 0.9) 100%);
    
    /* Status Colors */
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --info-color: #17a2b8;
    
    /* Borders & Shadows */
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border-radius-sm: 8px;
    --shadow-primary: 0 4px 20px rgba(13, 110, 253, 0.3);
    --shadow-secondary: 0 2px 10px rgba(0, 0, 0, 0.2);
    --shadow-large: 0 8px 40px rgba(0, 0, 0, 0.4);
    
    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition-smooth: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* ==========================================================================
   GLOBAL DARK THEME STYLES
   ========================================================================== */

body.dashboard-dark {
    background: var(--gradient-dark);
    color: var(--text-primary);
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Custom Scrollbar */
body.dashboard-dark::-webkit-scrollbar {
    width: 8px;
}

body.dashboard-dark::-webkit-scrollbar-track {
    background: var(--dark-bg-secondary);
}

body.dashboard-dark::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: var(--border-radius-sm);
}

body.dashboard-dark::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #1e7bff 0%, #7a1fff 100%);
}

/* ==========================================================================
   GLASS MORPHISM CARDS
   ========================================================================== */

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-secondary);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
    opacity: 0.5;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
    border-color: rgba(13, 110, 253, 0.3);
}

.glass-card-lg {
    border-radius: var(--border-radius-lg);
    padding: 2rem;
}

.glass-card-sm {
    border-radius: var(--border-radius-sm);
    padding: 1rem;
}

/* ==========================================================================
   DASHBOARD LAYOUT
   ========================================================================== */

.dashboard-container {
    min-height: auto;
    background: var(--gradient-dark);
    position: relative;
    padding: 20px;
}

.dashboard-container::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(13, 110, 253, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(102, 16, 242, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(13, 110, 253, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.dashboard-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    max-width: 100%;
    overflow-x: hidden;
}

/* ==========================================================================
   STATISTICS CARDS
   ========================================================================== */

.stat-card {
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-primary);
    border-color: rgba(13, 110, 253, 0.4);
}

.stat-card .stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-primary);
}

.stat-card .stat-icon i {
    font-size: 1.5rem;
    color: white;
}

.stat-card .stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0.5rem 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card .stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.stat-card .stat-change {
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.stat-change.positive {
    color: var(--success-color);
}

.stat-change.negative {
    color: var(--danger-color);
}

.stat-change.neutral {
    color: var(--text-muted);
}

/* ==========================================================================
   CHARTS & DATA VISUALIZATION
   ========================================================================== */

.chart-container {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.chart-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
}

.chart-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.chart-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.chart-subtitle {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0.25rem 0 0 0;
}

/* ==========================================================================
   TABLES
   ========================================================================== */

.dark-table {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.dark-table .table {
    color: var(--text-primary);
    margin: 0;
}

.dark-table .table thead th {
    background: var(--gradient-primary);
    color: white;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.8rem;
    padding: 1rem;
}

.dark-table .table tbody tr {
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-fast);
}

.dark-table .table tbody tr:hover {
    background: rgba(13, 110, 253, 0.1);
}

.dark-table .table tbody td {
    border: none;
    padding: 1rem;
    vertical-align: middle;
}

/* ==========================================================================
   NAVIGATION & SIDEBAR
   ========================================================================== */

.dashboard-sidebar {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-right: 1px solid var(--glass-border);
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.dashboard-sidebar.collapsed {
    width: 80px;
}

.sidebar-brand {
    padding: 2rem 1.5rem;
    border-bottom: 1px solid var(--glass-border);
    text-align: center;
}

.sidebar-brand h4 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin: 0;
}

.sidebar-nav {
    padding: 1rem 0;
}

.sidebar-nav .nav-item {
    margin: 0.25rem 1rem;
}

.sidebar-nav .nav-link {
    color: var(--text-secondary);
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.sidebar-nav .nav-link:hover,
.sidebar-nav .nav-link.active {
    background: var(--gradient-primary-soft);
    color: var(--text-primary);
    border-left: 3px solid var(--primary-blue);
}

.sidebar-nav .nav-link i {
    width: 20px;
    text-align: center;
}

/* ==========================================================================
   DASHBOARD HEADER
   ========================================================================== */

.dashboard-header {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 2rem;
    margin-left: 280px;
    position: sticky;
    top: 0;
    z-index: 999;
}

.dashboard-header.sidebar-collapsed {
    margin-left: 80px;
}

.dashboard-title {
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.dashboard-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0.25rem 0 0 0;
}

/* ==========================================================================
   BUTTONS & CONTROLS
   ========================================================================== */

.btn-gradient {
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

.btn-ghost {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
    text-decoration: none;
}

.btn-ghost:hover {
    background: var(--gradient-primary-soft);
    border-color: var(--primary-blue);
    color: var(--text-primary);
}

/* ==========================================================================
   BADGES & STATUS INDICATORS
   ========================================================================== */

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.success {
    background: rgba(40, 167, 69, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.status-badge.warning {
    background: rgba(255, 193, 7, 0.2);
    color: var(--warning-color);
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.status-badge.danger {
    background: rgba(220, 53, 69, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.status-badge.info {
    background: rgba(23, 162, 184, 0.2);
    color: var(--info-color);
    border: 1px solid rgba(23, 162, 184, 0.3);
}

.status-badge.primary {
    background: var(--gradient-primary-soft);
    color: var(--primary-blue);
    border: 1px solid rgba(13, 110, 253, 0.3);
}

/* ==========================================================================
   ACTIVITY FEED
   ========================================================================== */

.activity-feed {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 1.5rem;
}

.activity-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-fast);
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-item:hover {
    background: rgba(13, 110, 253, 0.05);
    border-radius: var(--border-radius-sm);
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.activity-icon i {
    color: white;
    font-size: 1rem;
}

.activity-content h6 {
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.activity-content p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.875rem;
}

.activity-time {
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

/* ==========================================================================
   CUSTOM CHART ALTERNATIVES
   ========================================================================== */

/* Sales Trend Bars */
.sales-trend-container {
    padding: 20px 0;
}

.sales-bar-container {
    position: relative;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.sales-bar {
    width: 100%;
    max-width: 20px;
    min-height: 4px;
    border-radius: 4px 4px 0 0;
    transition: all 0.3s ease;
    transform: scaleY(0);
    transform-origin: bottom;
    opacity: 0;
    position: relative;
    cursor: pointer;
}

.sales-bar:hover {
    transform: scaleY(1.05) !important;
    filter: brightness(1.2);
}

.sales-bar-today {
    box-shadow: 0 0 15px rgba(13, 110, 253, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Status Rings */
.order-status-container {
    padding: 20px 0;
}

.status-ring-container {
    margin-bottom: 20px;
}

.status-ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: relative;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: conic-gradient(from 0deg, var(--gradient-primary), var(--gradient-primary));
    padding: 4px;
}

.status-ring::before {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: var(--dark-bg-card);
}

.status-ring-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-primary);
}

.status-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 4px;
}

.status-ring-completed {
    background: conic-gradient(from 0deg, #28a745, #20c997);
}

.status-ring-pending {
    background: conic-gradient(from 0deg, #ffc107, #fd7e14);
}

.status-ring-processing {
    background: conic-gradient(from 0deg, #17a2b8, #6f42c1);
}

.status-ring-cancelled {
    background: conic-gradient(from 0deg, #dc3545, #e83e8c);
}

.status-ring:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.animate-ring {
    animation: ringPulse 0.6s ease-out;
}

@keyframes ringPulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Sales Tooltip */
.sales-tooltip {
    font-family: var(--font-family);
    font-weight: 600;
    white-space: nowrap;
    animation: tooltipFadeIn 0.2s ease;
}

@keyframes tooltipFadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Chart Container Improvements */
.chart-container {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-large);
}

.chart-header h5 {
    margin-bottom: 0.5rem;
}

.chart-header p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

/* ==========================================================================
   PRODUCT VIEWS STYLING
   ========================================================================== */

/* Product Cards */
.product-card {
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
}

.product-image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-badges {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.product-badges .badge {
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: var(--border-radius-sm);
}

.product-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.product-description {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    flex: 1;
}

.product-details {
    margin-top: auto;
}

.product-price {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.price-current {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.price-original {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.price-discounted {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--success-color);
}

.discount-badge {
    background: var(--danger-color);
    color: white;
    padding: 2px 6px;
    border-radius: var(--border-radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.product-actions {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.02);
}

.admin-actions {
    display: flex;
    gap: 0.5rem;
}

/* Form Controls Dark Theme */
.form-control-dark {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    border-radius: var(--border-radius);
}

.form-control-dark:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
    color: var(--text-primary);
}

.form-control-dark::placeholder {
    color: var(--text-muted);
}

.form-select.form-control-dark {
    background: rgba(255, 255, 255, 0.05) url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e") no-repeat right 0.75rem center/16px 12px;
}

/* Pagination Dark Theme */
.pagination-dark .page-link {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    margin: 0 2px;
    border-radius: var(--border-radius);
}

.pagination-dark .page-link:hover {
    background: rgba(13, 110, 253, 0.2);
    border-color: var(--primary-blue);
    color: var(--text-primary);
}

.pagination-dark .page-item.active .page-link {
    background: var(--gradient-primary);
    border-color: var(--primary-blue);
    color: white;
}

.pagination-dark .page-item.disabled .page-link {
    background: rgba(255, 255, 255, 0.02);
    border-color: var(--glass-border);
    color: var(--text-muted);
}

/* Empty State */
.empty-state {
    padding: 3rem 2rem;
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.6;
}

/* Vendor Specific Styles */
.vendor-badge {
    background: var(--gradient-primary);
    color: white;
    padding: 4px 12px;
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.vendor-stats {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.vendor-stat {
    text-align: center;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid var(--glass-border);
}

.vendor-stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue);
    display: block;
}

.vendor-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 768px) {
    .dashboard-sidebar {
        transform: translateX(-100%);
    }
    
    .dashboard-sidebar.show {
        transform: translateX(0);
    }
    
    .dashboard-header {
        margin-left: 0;
    }
    
    .dashboard-content {
        padding: 1rem;
    }
    
    .stat-card .stat-value {
        font-size: 2rem;
    }
    
    .glass-card-lg {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .dashboard-content {
        padding: 0.75rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-card .stat-value {
        font-size: 1.75rem;
    }
    
    .chart-container {
        padding: 1rem;
    }
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}

.animate-slideInLeft {
    animation: slideInLeft 0.5s ease-out;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */

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

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

.border-gradient {
    border: 2px solid;
    border-image: var(--gradient-primary) 1;
}

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

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

.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}
