@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, sans-serif;
}

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Ticket checkbox states */
input.ticket-check:checked + label {
    border-color: #8b5cf6 !important;
    background-color: #f5f3ff !important;
    color: #7c3aed !important;
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.3);
}

input.reserved-check:checked + label {
    border-color: #8b5cf6 !important;
    background-color: #f5f3ff !important;
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.3);
}

/* Category chip checked state */
.chip-check:checked + label {
    background-color: #f5f3ff !important;
    border-color: #8b5cf6 !important;
    color: #7c3aed !important;
}

/* Popup animation */
#ticket-popup {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
}
#ticket-popup.show {
    opacity: 1;
    transform: translateY(0);
}

/* Modal backdrop */
.modal-backdrop {
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
}

/* Gradient text */
.text-gradient {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Progress bar animation */
.progress-fill {
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Toastify overrides */
.toastify {
    border-radius: 12px !important;
    font-family: 'Inter', sans-serif !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
}
