/* ===== COMPONENTES MODERNOS ADICIONAIS ===== */

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

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

/* Tags e Badges */
.tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: var(--border-radius-full);
    font-size: var(--font-size-xs);
    font-weight: 500;
    background: var(--bg-tertiary);
    color: var(--text-secondary);
}

.tag-primary {
    background: rgba(67, 97, 238, 0.1);
    color: var(--primary-color);
}

.tag-success {
    background: rgba(76, 201, 240, 0.1);
    color: var(--success-color);
}

.tag-warning {
    background: rgba(248, 150, 30, 0.1);
    color: var(--warning-color);
}

.tag-danger {
    background: rgba(249, 65, 68, 0.1);
    color: var(--danger-color);
}

/* Cards Especiais */
.feature-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-lg);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: var(--spacing-lg);
}

.feature-content h3 {
    margin: 0 0 var(--spacing-sm) 0;
    font-size: var(--font-size-lg);
    color: var(--text-primary);
}

.feature-content p {
    margin: 0;
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

/* Tooltips */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltip-text {
    visibility: hidden;
    width: 200px;
    background: var(--bg-card);
    color: var(--text-primary);
    text-align: center;
    padding: var(--spacing-sm);
    border-radius: var(--border-radius-md);
    position: absolute;
    z-index: 1000;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity var(--transition-fast);
    font-size: var(--font-size-sm);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.tooltip .tooltip-text::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: var(--bg-card) transparent transparent transparent;
}

.tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    bottom: var(--spacing-xl);
    right: var(--spacing-xl);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.toast {
    background: var(--bg-card);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-xl);
    border-left: 4px solid;
    min-width: 300px;
    max-width: 400px;
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    animation: slideInRight 0.3s ease;
    border: 1px solid var(--border-color);
}

.toast.success {
    border-left-color: var(--success-color);
}

.toast.warning {
    border-left-color: var(--warning-color);
}

.toast.error {
    border-left-color: var(--danger-color);
}

.toast.info {
    border-left-color: var(--info-color);
}

.toast-icon {
    font-size: 1.2rem;
    margin-top: 2px;
}

.toast.success .toast-icon {
    color: var(--success-color);
}

.toast.warning .toast-icon {
    color: var(--warning-color);
}

.toast.error .toast-icon {
    color: var(--danger-color);
}

.toast.info .toast-icon {
    color: var(--info-color);
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 600;
    margin: 0 0 4px 0;
    color: var(--text-primary);
}

.toast-message {
    margin: 0;
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

.toast-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 2px;
    border-radius: var(--border-radius-sm);
}

.toast-close:hover {
    background: var(--bg-tertiary);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Skeletons Loading */
.skeleton {
    background: linear-gradient(90deg, 
        var(--bg-tertiary) 25%, 
        var(--bg-secondary) 50%, 
        var(--bg-tertiary) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: var(--border-radius-md);
}

.skeleton-text {
    height: 12px;
    margin-bottom: 8px;
    border-radius: var(--border-radius-full);
}

.skeleton-text:last-child {
    margin-bottom: 0;
    width: 80%;
}

.skeleton-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.skeleton-card {
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

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

/* Switch Toggle Modern */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--border-color);
    transition: all var(--transition-fast);
    border-radius: var(--border-radius-full);
}

.switch-slider:before {
    position: absolute;
    content: '';
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background: white;
    transition: all var(--transition-fast);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

input:checked + .switch-slider {
    background: var(--primary-color);
}

input:checked + .switch-slider:before {
    transform: translateX(30px);
}

/* Range Slider */
.range-slider {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: var(--bg-tertiary);
    border-radius: var(--border-radius-full);
    outline: none;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    border: 3px solid white;
    box-shadow: var(--shadow-md);
}

.range-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    border: 3px solid white;
    box-shadow: var(--shadow-md);
}

/* Avatar Groups */
.avatar-group {
    display: flex;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    border: 2px solid var(--bg-card);
    margin-left: -10px;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar.more {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

/* Chip */
.chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--bg-tertiary);
    border-radius: var(--border-radius-full);
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.chip:hover {
    background: var(--border-color);
}

.chip-close {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 0;
    font-size: 10px;
    opacity: 0.7;
}

.chip-close:hover {
    opacity: 1;
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    justify-content: center;
}

.pagination-item {
    width: 36px;
    height: 36px;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: var(--font-size-sm);
    font-weight: 500;
    transition: all var(--transition-fast);
}

.pagination-item:hover {
    background: var(--primary-color);
    color: white;
}

.pagination-item.active {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.pagination-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-item.disabled:hover {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    color: var(--text-muted);
}

.breadcrumb-item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: var(--text-primary);
    font-weight: 500;
}

/* Steps Wizard */
.steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: var(--spacing-xl) 0;
}

.steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--border-color);
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}

.step:not(:last-child) {
    margin-right: var(--spacing-md);
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
    color: var(--text-secondary);
    font-weight: 600;
    border: 2px solid var(--border-color);
}

.step.active .step-icon {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.step.completed .step-icon {
    background: var(--success-color);
    color: white;
    border-color: var(--success-color);
}

.step-label {
    font-size: var(--font-size-xs);
    color: var(--text-secondary);
    font-weight: 500;
}

.step.active .step-label {
    color: var(--primary-color);
    font-weight: 600;
}

/* Accordion */
.accordion {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.accordion-item {
    border-bottom: 1px solid var(--border-color);
}

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

.accordion-header {
    padding: var(--spacing-lg);
    background: var(--bg-tertiary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color var(--transition-fast);
}

.accordion-header:hover {
    background: var(--border-color);
}

.accordion-header h4 {
    margin: 0;
    font-size: var(--font-size-base);
    color: var(--text-primary);
}

.accordion-icon {
    transition: transform var(--transition-fast);
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.accordion-item.active .accordion-content {
    padding: var(--spacing-lg);
    max-height: 1000px;
}

/* Timeline Vertical */
.timeline-vertical {
    position: relative;
    padding-left: var(--spacing-xl);
}

.timeline-vertical::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    margin-bottom: var(--spacing-xl);
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -27px;
    top: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 3px solid var(--bg-card);
}

.timeline-content {
    background: var(--bg-card);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.timeline-date {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
}

/* Rating Stars */
.rating {
    display: flex;
    gap: 2px;
}

.rating-star {
    color: var(--border-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.rating-star.active {
    color: #ffc107;
}

.rating-star.hover {
    color: #ffc107;
}

/* Countdown */
.countdown {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
}

.countdown-item {
    text-align: center;
    min-width: 60px;
}

.countdown-number {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}

.countdown-label {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    margin-top: var(--spacing-xs);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Progress Circle */
.progress-circle {
    position: relative;
    width: 100px;
    height: 100px;
}

.progress-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.progress-circle-bg {
    fill: none;
    stroke: var(--bg-tertiary);
    stroke-width: 8;
}

.progress-circle-fill {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 8;
    stroke-linecap: round;
    transition: stroke-dasharray var(--transition-slow);
}

.progress-circle-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--text-primary);
}

/* File Upload Area Modern */
.file-upload-modern {
    border: 2px dashed var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-2xl);
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    background: var(--bg-tertiary);
}

.file-upload-modern:hover {
    border-color: var(--primary-color);
    background: var(--bg-secondary);
}

.file-upload-modern.active {
    border-color: var(--success-color);
    background: rgba(76, 201, 240, 0.1);
}

.file-upload-icon {
    font-size: 3rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
}

.file-upload-modern.active .file-upload-icon {
    color: var(--success-color);
}

.file-upload-text {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
}

.file-upload-hint {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
}

.file-list {
    margin-top: var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-sm);
    background: var(--bg-card);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
}

.file-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.file-icon {
    color: var(--primary-color);
}

.file-name {
    font-size: var(--font-size-sm);
    color: var(--text-primary);
}

.file-size {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
}

.file-remove {
    background: none;
    border: none;
    color: var(--danger-color);
    cursor: pointer;
    padding: var(--spacing-xs);
    border-radius: var(--border-radius-sm);
}

.file-remove:hover {
    background: rgba(249, 65, 68, 0.1);
}

/* Color Picker */
.color-picker {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.color-option {
    width: 30px;
    height: 30px;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-fast);
}

.color-option:hover {
    transform: scale(1.1);
}

.color-option.selected {
    border-color: var(--text-primary);
    transform: scale(1.1);
}

/* Code Block */
.code-block {
    background: var(--bg-tertiary);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-lg);
    font-family: 'Courier New', monospace;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    overflow-x: auto;
    border: 1px solid var(--border-color);
}

.code-block pre {
    margin: 0;
}

.code-block .keyword {
    color: #d73a49;
}

.code-block .string {
    color: #032f62;
}

.code-block .comment {
    color: var(--text-muted);
    font-style: italic;
}

/* Statistics Chart Mini */
.chart-mini {
    height: 60px;
    display: flex;
    align-items: flex-end;
    gap: 2px;
}

.chart-bar {
    flex: 1;
    background: var(--primary-color);
    border-radius: var(--border-radius-sm) var(--border-radius-sm) 0 0;
    min-height: 2px;
    transition: height var(--transition-slow);
}

.chart-bar:nth-child(odd) {
    background: var(--primary-light);
}

/* Watermark */
.watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.05);
    user-select: none;
    pointer-events: none;
    white-space: nowrap;
    z-index: -1;
}

[data-theme="dark"] .watermark {
    color: rgba(255, 255, 255, 0.05);
}

/* Glass Effect */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .glass {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Animated Background */
.animated-bg {
    background: linear-gradient(-45deg, 
        var(--primary-color), 
        var(--secondary-color), 
        var(--accent-color), 
        var(--success-color));
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Hover Lift Effect */
.hover-lift {
    transition: transform var(--transition-normal);
}

.hover-lift:hover {
    transform: translateY(-10px);
}

/* Shine Effect */
.shine {
    position: relative;
    overflow: hidden;
}

.shine::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    transition: transform 0.6s;
}

.shine:hover::before {
    transform: rotate(30deg) translate(20%, 20%);
}

/* Custom Scrollbar para elementos específicos */
.custom-scrollbar {
    scrollbar-width: thin;
    scrollbar-color: var(--border-color) var(--bg-tertiary);
}

.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: var(--bg-tertiary);
    border-radius: var(--border-radius-full);
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: var(--border-radius-full);
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* Print Styles */
@media print {
    .no-print {
        display: none !important;
    }
    
    .top-nav,
    .main-footer,
    .section-actions,
    .action-buttons {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .card,
    .stat-card,
    .quick-action-card,
    .products-section,
    .activity-section {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
        page-break-inside: avoid;
    }
    
    .modal {
        position: static !important;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        background: white !important;
    }
    
    .modal-content {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
        max-height: none !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --border-color: #000000;
        --text-primary: #000000;
        --text-secondary: #333333;
        --bg-primary: #ffffff;
        --bg-secondary: #f0f0f0;
        --bg-tertiary: #e0e0e0;
    }
    
    .btn,
    .form-select,
    input,
    select,
    textarea {
        border: 2px solid var(--border-color);
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Dark Mode Auto Detection */
@media (prefers-color-scheme: dark) {
    :root:not([data-theme]) {
        --primary-color: #4895ef;
        --primary-dark: #3a56d4;
        --primary-light: #4cc9f0;
        --bg-primary: #121212;
        --bg-secondary: #1e1e1e;
        --bg-tertiary: #2d2d2d;
        --bg-card: #1e1e1e;
        --bg-input: #2d2d2d;
        --border-color: #404040;
        --text-primary: #f8f9fa;
        --text-secondary: #adb5bd;
        --text-muted: #6c757d;
    }
}

/* Performance Optimizations */
.will-change {
    will-change: transform, opacity;
}

/* Accessibility Focus Styles */
.focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Selection Color */
::selection {
    background: rgba(67, 97, 238, 0.3);
    color: var(--text-primary);
}

/* Placeholder Animation */
.placeholder-wave {
    background: linear-gradient(90deg, 
        var(--bg-tertiary) 25%, 
        var(--bg-secondary) 50%, 
        var(--bg-tertiary) 75%);
    background-size: 200% 100%;
    animation: wave 1.5s infinite;
}

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

/* Custom Cursor */
.custom-cursor {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><circle cx="16" cy="16" r="14" fill="%234361ee" opacity="0.3"/><circle cx="16" cy="16" r="8" fill="%234361ee"/></svg>') 16 16, auto;
}

/* Custom Selection */
.custom-selection ::selection {
    background: var(--primary-color);
    color: white;
}

/* Lazy Load Fade In */
.lazy-load {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.lazy-load.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Outline */
.custom-outline:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
}

/* Custom Border Animation */
.border-animate {
    position: relative;
    overflow: hidden;
}

.border-animate::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.border-animate:hover::after {
    transform: translateX(0);
}