#seat-booking {
    margin: 3rem auto;
    padding: 2rem;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(40, 47, 68, 0.92), rgba(25, 29, 50, 0.98));
    border: 1px solid rgba(216, 189, 138, 0.22);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
    color: var(--soft-fawn);
}

#seat-booking .top {
    margin-bottom: 2rem;
}

#seat-booking .top a {
    color: var(--honey-bronze);
    font-weight: 700;
}

#seat-booking .movie-header {
    margin-bottom: 2rem;
}

#seat-booking .movie-header h2 {
    color: var(--white);
    margin: 0 0 .5rem;
}

#seat-booking .movie-header p {
    margin: 0;
}

#seat-booking .screen-area {
    display: grid;
    grid-template-columns: 60px 1fr 60px;
    align-items: center;
    gap: 1rem;
    margin: 2.5rem 0;
}

#seat-booking .screen {
    padding: 1rem;
    text-align: center;
    border-radius: 999px;
    border: 1px solid rgba(216, 189, 138, 0.3);
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
    font-weight: 800;
    letter-spacing: .16em;
}

#seat-booking .speaker {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(216, 189, 138, 0.22);
    background: rgba(236, 167, 44, 0.1);
}

#seat-booking .cinema-room {
    padding: 2rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(216, 189, 138, 0.16);
}

#seat-booking .seat-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    margin-bottom: .8rem;
}

#seat-booking .row-label {
    width: 28px;
    color: var(--honey-bronze);
    font-weight: 800;
    text-align: center;
}

#seat-booking .seat {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    border: 1px solid rgba(216, 189, 138, 0.35);
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

#seat-booking .seat:hover {
    transform: translateY(-2px);
    border-color: var(--honey-bronze);
    box-shadow: 0 0 0 3px rgba(236, 167, 44, 0.18);
}

#seat-booking .seat.available {
    background: rgba(216, 189, 138, 0.8);
}

#seat-booking .seat.selected {
    background: var(--honey-bronze);
}

#seat-booking .seat.occupied {
    background: var(--deep-crimson);
    cursor: not-allowed;
    opacity: .8;
}

#seat-booking .seat-gap {
    width: 2rem;
}

#seat-booking .seat-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

#seat-booking .legend-item {
    display: flex;
    align-items: center;
    gap: .6rem;
}

#seat-booking .legend-seat {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border: 1px solid rgba(216, 189, 138, 0.35);
}

#seat-booking .legend-seat.available {
    background: rgba(216, 189, 138, 0.8);
}

#seat-booking .legend-seat.selected {
    background: var(--honey-bronze);
}

#seat-booking .legend-seat.occupied {
    background: var(--deep-crimson);
}

#seat-booking .checkout-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

#seat-booking .checkout-actions .btn {
    width: 220px;
}

#seat-booking .checkout-actions .btn.is-disabled {
    cursor: not-allowed;
    opacity: .45;
    filter: saturate(.45);
    transform: none;
    pointer-events: none;
}

#seat-booking .seat-selection-message {
    display: none;
    margin: 1rem 0 0;
    padding: .8rem 1rem;
    border-left: 3px solid var(--honey-bronze);
    border-radius: 6px;
    background: rgba(236, 167, 44, .1);
    color: var(--white);
    font-weight: 600;
}

#seat-booking .seat-selection-message.is-visible {
    display: block;
}

#seat-booking .empty-state {
    text-align: center;
    color: var(--soft-fawn);
}
