:root {
    --color-primary: #F97316;
    --color-accent: #1F2937;
}

.main-gradient {
    background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
}

.primary-button {
    background-color: var(--color-primary);
}

.primary-button:hover {
    background-color: #EA580C;
}

#loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #fff;
    border-top: 5px solid var(--color-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.status-success {
    background-color: #f0fdf4;
    color: #15803d;
}

.status-error {
    background-color: #fef2f2;
    color: #b91c1c;
}

.mobile-menu-slide {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.mobile-menu-slide.active {
    max-height: 1000px;
}