html, body {
    min-height: 100vh;
    margin: 0;
    background: var(--bg);
    font-family: 'Inter', sans-serif;
    color: var(--muted);
    overflow-y: auto;
}

.container {
    max-width: 480px;
    margin: 32px auto;
    padding: 16px;
}

.card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}

.page-header {
    color: var(--white);
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 0 !important;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.page-header .step {
    color: var(--muted);
    font-weight: 400;
    font-size: 18px;
}

.date-box {
    width: 68px;
    height: 68px;
    background: var(--soft);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
}

.date-box .month {
    font-size: 11px;
    color: var(--muted);
}

.date-box .day {
    font-size: 22px;
    margin-top: 4px;
}

.event-meta h2 {
    margin: 0;
    color: var(--white);
    font-size: 18px;
    display: flex;
    flex-direction: column;
    align-items: baseline;
}

.event-meta .datetime, .event-meta .venue {
    font-size: 13px;
    margin-top: 0;
}

.venue p {
    margin-top: 3px;
}

.datetime {
    margin-top: 10px !important;
}

.ticket-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.ticket-row:last-child {
    border-bottom: none;
}

.ticket-info .title {
    color: var(--white);
    font-weight: 700;
    font-size: 15px;
}

.ticket-info .subtitle {
    font-size: 13px;
    color: var(--muted);
}

.qty-control {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qty-control button {
    width: 22px !important;
    height: 22px !important;
    text-align: center !important;
    font-size: 16px !important;
    border-radius: 50%;
    border: none;
    background: var(--accent);
    color: var(--white);
    font-weight: 700;
    cursor: pointer;
}

.qty-display {
    min-width: 24px;
    text-align: center;
    color: var(--white);
}

.price {
    color: var(--white);
    font-weight: 600 !important;
    min-width: 90px;
    text-align: right;
    font-size: 18px;
    display: flex;
    justify-content: end;
    align-self: center;
    flex-direction: column;
}

.coupon {
    border: 1px solid var(--border);
    padding: 12px;
    border-radius: 10px;
    color: var(--accent);
    font-weight: 500 !important;
}

.coupon-btn {
    background: var(--muted);
    border-radius: 20px;
    align-items: center;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100% !important;
    justify-content: center;
    text-transform: capitalize;
    text-align: center;
    color: #1a1a1a;
    display: flex;
    padding: 10px 20px;
}

.terms {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--border);
    padding: 12px;
    border-radius: 10px;
    margin-top: 10px;
    font-size: 14px;
}

.terms input {
    accent-color: var(--accent);
}

.terms a {
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
}

.total-box {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px;
}

.total-box .amount {
    color: var(--white);
    font-size: 20px;
    font-weight: 700 !important;
}

.btn-next {
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 20px;
    padding: 12px 24px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
}

.btn-loading {
    background: var(--muted);
    color: var(--white);
    border: none;
    border-radius: 20px;
    padding: 12px 24px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
}

.wizard-step {
    display: none;
}

.wizard-step.active {
    display: block;
}

.btn-back {
    background: none;
    border: none;
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.form-label {
    display: block;
    font-size: 13px;
    margin-bottom: 10px;
    color: var(--muted);
}

.req {
    color: var(--accent);
}

.form-input {
    width: 95%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: #2b323b;
    color: var(--white);
    font-size: 14px;
}

.age-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    background: #2b323b;
    border-radius: 6px;
    overflow: hidden;
    padding: 9px;
}

.age-control button {
    background: var(--border);
    color: var(--white);
    width: 20px;
    height: 20px;
    cursor: pointer;
    font-weight: 500;
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
}

.age-control span {
    flex: 1;
    text-align: center;
    color: var(--white);
    font-weight: 600;
}

.w-50 {
    width: 89% !important;
}

.divider {
    border-top: 1px solid #e5e9f2 !important;
    margin: 28px 0;
    display: block;
}

.ticket-qty {
    color: var(--white);
    font-weight: 600;
    font-size: 18px;
    padding: 0 10px;
}

.ccap {
    text-transform: capitalize !important;
}

.footer-design {
    justify-content: center;
    display: flex;
    margin-bottom: 20px;
    align-items: center
}

input.no-spin::-webkit-outer-spin-button,
input.no-spin::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input.no-spin {
    -moz-appearance: textfield;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.form-col {
    /*flex: 1 1 220px;*/
    min-width: 200px;
}

.form-col .form-label {
    display: block;
    width: 100%;
    margin-bottom: 6px;
}

.form-col .form-input {
    width: 100%;
    box-sizing: border-box;
}

.address-row {
    margin-top: 12px;
}

.ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--border);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 10px;
}

.w-100 {
    width: 100% !important;
}

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

.minus {
    background-color: transparent !important;
}

.event-data {
    display: flex;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 12px;
    margin-bottom: 12px;
}

.input-group {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    max-width: 100%;
    padding: 6px;
}

.input-group .input-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    background: #f5f5f5;
    border-right: 1px solid #ccc;
}

.input-group input {
    flex: 1;
    border: none;
    outline: none;
    padding: 8px 12px;
    font-size: 14px;
    background: transparent;
    color: var(--muted);
}

.total-price-title {
    margin-bottom: 10px;
    text-transform: capitalize;
}

.big-checkbox {
    transform: scale(1.4);
    cursor: pointer;
}

.disabled-btn {
    background-color: var(--muted) !important;
    pointer-events: none;
}

.active-btn {
    background-color: var(--accent) !important;
}

.text-danger {
    font-size: 12px !important;
    color: #e6453b !important;
}

.only-first {
    text-transform: none;
}

.only-first::first-letter {
    text-transform: uppercase;
}

.logo-image {
    text-align: center;
    justify-content: center;
    display: flex;
    margin-bottom: 20px;
    padding: 20px
}

#age-decrease {
    background: var(--accent);
}

#page-header-number {
    display: flex !important;
    align-items: center !important;
}

#gender {
    width: 100%;
}

#promotion-code-btn {
    display: flex !important;
}

@media (max-width: 600px) {
    .form-col {
        flex: 1 1 100%;
        min-width: 0;
    }

    .form-row {
        gap: 8px;
    }
}
