/* ══════════════════════════════════════════════
   BOOKING WIZARD — LIGHT & CLEAN THEME
   ══════════════════════════════════════════════ */

/* === BACKGROUND: Warm Light Gradient === */
.booking-page {
    position: relative;
    background: linear-gradient(175deg,
        #fefcf9 0%,
        #f8f5ff 15%,
        #f5f0ff 40%,
        #fef7f4 65%,
        #f0f7ff 85%,
        #fefcf9 100%
    );
    padding: 3rem 1rem 3rem;
    overflow-x: clip;
    overflow-y: clip;
    min-height: 100vh;
}

/* Subtle light orbs */
.booking-page::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 10%, rgba(124,58,237,0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 20%, rgba(236,72,153,0.04) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 85%, rgba(16,185,129,0.04) 0%, transparent 40%),
        radial-gradient(ellipse at 70% 60%, rgba(251,191,36,0.03) 0%, transparent 35%);
    pointer-events: none;
    z-index: 0;
    animation: auroraDrift 12s ease-in-out infinite alternate;
}

@keyframes auroraDrift {
    0% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.01); }
    100% { opacity: 0.6; transform: scale(0.99); }
}

/* Subtle light particles */
.booking-page::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(2px 2px at 20% 30%, rgba(124,58,237,0.1) 0%, transparent 100%),
        radial-gradient(2px 2px at 45% 60%, rgba(236,72,153,0.08) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 65% 20%, rgba(16,185,129,0.06) 0%, transparent 100%),
        radial-gradient(2px 2px at 80% 70%, rgba(251,191,36,0.07) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 10% 75%, rgba(167,139,250,0.08) 0%, transparent 100%),
        radial-gradient(2.5px 2.5px at 90% 15%, rgba(244,114,182,0.06) 0%, transparent 100%),
        radial-gradient(2px 2px at 35% 40%, rgba(99,102,241,0.05) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 55% 80%, rgba(52,211,153,0.05) 0%, transparent 100%),
        radial-gradient(2px 2px at 72% 40%, rgba(168,85,247,0.07) 0%, transparent 100%),
        radial-gradient(3px 3px at 28% 10%, rgba(252,211,77,0.06) 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
    animation: particleGlow 8s ease-in-out infinite alternate;
}

@keyframes particleGlow {
    0% { opacity: 0.4; }
    50% { opacity: 0.8; }
    100% { opacity: 0.5; }
}

/* === Party Decorations === */
.party-deco {
    position: absolute; pointer-events: none; z-index: 0;
    animation: partyFloat 7s ease-in-out infinite;
    filter: drop-shadow(0 0 4px currentColor);
}

.party-confetti {
    position: absolute; pointer-events: none; z-index: 0;
    border-radius: 50%; opacity: 0;
    animation: confettiFall 10s linear infinite;
}

.party-star {
    position: absolute; pointer-events: none; z-index: 0;
    opacity: 0; animation: starTwinkle 4s ease-in-out infinite;
}

.party-bubble {
    position: absolute; pointer-events: none; z-index: 0;
    border-radius: 50%; opacity: 0;
    animation: bubbleRise 12s ease-in-out infinite;
}

@keyframes partyFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-14px) rotate(5deg); }
}
@keyframes confettiFall {
    0% { transform: translateY(-20px) rotate(0deg); opacity: 0; }
    10% { opacity: 0.25; }
    90% { opacity: 0.15; }
    100% { transform: translateY(105vh) rotate(720deg); opacity: 0; }
}
@keyframes starTwinkle {
    0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
    40% { opacity: 0.2; transform: scale(1) rotate(20deg); }
    60% { opacity: 0.12; transform: scale(0.8) rotate(-10deg); }
}
@keyframes bubbleRise {
    0% { transform: translateY(0) scale(0.5); opacity: 0; }
    10% { opacity: 0.2; }
    90% { opacity: 0.1; }
    100% { transform: translateY(-100vh) scale(1.2); opacity: 0; }
}

/* === Container === */
.booking-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}
@media (min-width: 1400px) {
    .booking-container { max-width: 1320px; }
}
@media (max-width: 768px) {
    .booking-container { padding: 0 0.75rem; }
}

.booking-header {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.bh-desc {
    font-size: 0.95rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

.btn-start-over {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    border: 1.5px solid #e5e7eb;
    background: #fff;
    color: #374151;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.btn-start-over:hover {
    border-color: #7c3aed;
    color: #7c3aed;
    background: rgba(124,58,237,0.04);
    box-shadow: 0 2px 8px rgba(124,58,237,0.1);
}

/* === Steps Progress Bar === */
.steps-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.25rem;
    padding: 1.5rem 1.25rem;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 22px;
    border: 1px solid rgba(124,58,237,0.08);
    box-shadow:
        0 4px 24px rgba(124,58,237,0.06),
        0 1px 0 rgba(255,255,255,0.8) inset;
    overflow-x: auto;
    gap: 0;
    position: relative;
    animation: progressBarEntrance 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.steps-progress::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 22px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(124,58,237,0.12), transparent 40%, rgba(16,185,129,0.08), transparent 60%, rgba(124,58,237,0.06));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Step dots */
.step-dot {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    cursor: default;
    flex-shrink: 0;
    z-index: 2;
    min-width: 68px;
    animation: stepDotEntrance 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}
.step-dot:nth-child(1) { animation-delay: 0.05s; }
.step-dot:nth-child(3) { animation-delay: 0.12s; }
.step-dot:nth-child(5) { animation-delay: 0.19s; }
.step-dot:nth-child(7) { animation-delay: 0.26s; }
.step-dot:nth-child(9) { animation-delay: 0.33s; }
.step-dot:nth-child(11) { animation-delay: 0.40s; }
.step-dot:nth-child(13) { animation-delay: 0.47s; }

.step-dot .step-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    background: #f3f4f6;
    color: #9ca3af;
    border: 2.5px solid #e5e7eb;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: visible;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.step-dot .step-number {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #9ca3af;
    font-size: 0.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.step-dot .step-circle i {
    font-size: 1.15rem;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Active step */
.step-dot.active .step-circle {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: #fff;
    border-color: #7c3aed;
    box-shadow:
        0 0 0 4px rgba(124,58,237,0.15),
        0 0 24px rgba(124,58,237,0.12),
        0 4px 12px rgba(124,58,237,0.1);
    transform: scale(1.12);
}
.step-dot.active .step-circle i {
    animation: stepActiveBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.step-dot.active .step-number {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: #fff;
    transform: scale(1.15);
    box-shadow: 0 2px 8px rgba(124,58,237,0.3);
}
.step-dot.active .step-circle::after {
    content: '';
    position: absolute;
    z-index: -1;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(124,58,237,0.15);
    animation: stepPulseRing 2s ease-in-out infinite;
    pointer-events: none;
}

/* Done step */
.step-dot.done .step-circle {
    background: linear-gradient(135deg, #10b981, #34d399);
    color: #fff;
    border-color: #10b981;
    box-shadow:
        0 0 0 4px rgba(16,185,129,0.15),
        0 4px 12px rgba(16,185,129,0.1);
}
.step-dot.done .step-circle i { transform: scale(0.9); }
.step-dot.done .step-number {
    background: linear-gradient(135deg, #10b981, #34d399);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 2px 6px rgba(16,185,129,0.2);
}

/* Step labels */
.step-dot .step-label {
    margin-top: 0.6rem;
    font-size: 0.62rem;
    color: #9ca3af;
    white-space: nowrap;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.4s ease;
    position: relative;
}
.step-dot.active .step-label {
    color: #7c3aed;
    font-weight: 700;
    letter-spacing: 0.06em;
}
.step-dot.done .step-label {
    color: #10b981;
}
.step-dot.active .step-label::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 2.5px;
    border-radius: 2px;
    background: #7c3aed;
    animation: labelUnderline 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Connectors */
.step-connector {
    flex: 1;
    min-width: 20px;
    max-width: 40px;
    height: 3px;
    background: #e5e7eb;
    position: relative;
    z-index: 1;
    align-self: center;
    margin-bottom: 1.6rem;
    border-radius: 3px;
    transition: background 0.6s ease;
    overflow: hidden;
}
.step-connector.done {
    background: linear-gradient(90deg, #10b981, #34d399);
}
.step-connector.done::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.5) 50%, transparent 100%);
    animation: connectorShimmer 1.5s ease-in-out infinite;
}
.step-connector.active {
    background: linear-gradient(90deg, #10b981, #34d399, #7c3aed, #a855f7);
    background-size: 300% 100%;
    animation: connectorFlow 2s linear infinite;
}

/* === Keyframes === */
@keyframes progressBarEntrance {
    from { opacity: 0; transform: translateY(-20px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes stepDotEntrance {
    from { opacity: 0; transform: translateY(12px) scale(0.9); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes stepPulseRing {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.25); opacity: 0.4; }
}
@keyframes stepActiveBounce {
    0% { transform: scale(1); }
    40% { transform: scale(1.3); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); }
}
@keyframes labelUnderline {
    from { width: 0; opacity: 0; }
    to { width: 16px; opacity: 1; }
}
@keyframes connectorFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}
@keyframes connectorShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* === Step Card === */
.step-card {
    background: #fff;
    backdrop-filter: blur(24px);
    border-radius: 24px;
    padding: 2rem;
    box-shadow:
        0 4px 24px rgba(124,58,237,0.06),
        0 1px 0 rgba(255,255,255,0.8) inset;
    border: 1px solid rgba(124,58,237,0.08);
    animation: stepFadeIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    color: #374151;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}
.step-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(124,58,237,0.03), transparent 50%, rgba(16,185,129,0.02));
    pointer-events: none;
}
@keyframes stepFadeIn {
    from { opacity: 0; transform: translateY(16px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.25rem;
}
.step-subtitle {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

/* === City Grid === */
.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(220px, 100%), 1fr));
    gap: 1.25rem;
    padding: 0.5rem;
}
.city-card {
    position: relative;
    background: #fff;
    border: 1.5px solid #f0edff;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.city-card:hover {
    transform: translateY(-4px);
    border-color: rgba(124,58,237,0.25);
    box-shadow: 0 12px 40px rgba(124,58,237,0.1);
}
.city-card.selected {
    border-color: #7c3aed;
    background: rgba(124,58,237,0.04);
    box-shadow: 0 8px 30px rgba(124,58,237,0.12);
}
.city-card .city-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    transition: transform 0.3s;
}
.city-card:hover .city-icon { transform: scale(1.1); }
.city-card .city-img {
    width: 72px;
    height: 72px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 2px solid rgba(124,58,237,0.1);
}
.city-card:hover .city-img { transform: scale(1.05); }
.city-card .city-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.25rem;
}
.city-card .city-sub {
    font-size: 0.8rem;
    color: #6b7280;
}
.city-card .selected-check {
    display: none;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #7c3aed;
    color: #fff;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}
.city-card.selected .selected-check { display: flex; }

/* === Selection Cards === */
.selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(180px, 100%), 1fr));
    gap: 1rem;
}
.selection-card {
    padding: 1.25rem;
    border: 1.5px solid #f0edff;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: center;
    background: #fff;
    position: relative;
    overflow: hidden;
}
.selection-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(124,58,237,0.04), transparent);
    opacity: 0;
    transition: opacity 0.25s;
}
.selection-card:hover {
    border-color: rgba(167,139,250,0.3);
    background: #fff;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(124,58,237,0.08);
}
.selection-card:hover::before { opacity: 1; }
.selection-card.selected {
    border-color: #7c3aed;
    background: rgba(124,58,237,0.04);
    box-shadow: 0 0 0 3px rgba(124,58,237,0.1), 0 8px 24px rgba(124,58,237,0.08);
    transform: translateY(-2px);
}
.selection-card.selected::before { opacity: 1; }
.selection-card .card-icon {
    font-size: 2rem;
    color: #7c3aed;
    margin-bottom: 0.5rem;
    transition: transform 0.3s;
}
.selection-card:hover .card-icon { transform: scale(1.15); }
.selection-card .card-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: #1f2937;
}
.selection-card .card-desc {
    font-size: 0.78rem;
    color: #6b7280;
    margin-top: 0.15rem;
}
.selection-card .card-price {
    font-weight: 700;
    color: #10b981;
    font-size: 0.9rem;
    margin-top: 0.35rem;
}
.selection-card .selected-check {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 22px;
    height: 22px;
    background: #7c3aed;
    color: #fff;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    box-shadow: 0 2px 8px rgba(124,58,237,0.3);
    animation: checkPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes checkPop {
    from { transform: scale(0); }
    to { transform: scale(1); }
}
.selection-card.selected .selected-check { display: flex; }

/* === Form Controls === */
.wizard-form .form-label {
    font-weight: 600;
    font-size: 0.85rem;
    color: #374151;
}
.wizard-form .form-control,
.wizard-form .form-select {
    border-radius: 12px;
    padding: 0.65rem 1rem;
    border: 1.5px solid #e5e7eb;
    font-size: 0.9rem;
    transition: all 0.2s;
    background: #fff;
    color: #1f2937;
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}
.wizard-form .form-control:focus,
.wizard-form .form-select:focus {
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124,58,237,0.1), 0 1px 3px rgba(0,0,0,0.05);
    background: #fff;
    color: #1f2937;
}
.wizard-form .form-control::placeholder { color: #9ca3af; }

/* === Price Badge (mobile-only, hidden on desktop) === */
.price-badge { display: none !important; }

/* === Wizard Nav === */
.wizard-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    gap: 1rem;
}
.btn-wizard-prev {
    padding: 0.65rem 1.5rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    color: #6b7280;
    font-weight: 500;
    font-size: 0.88rem;
    transition: all 0.2s;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}
.btn-wizard-prev:hover {
    border-color: #7c3aed;
    color: #7c3aed;
    background: rgba(124,58,237,0.04);
    transform: translateX(-2px);
    box-shadow: 0 2px 8px rgba(124,58,237,0.08);
}
.btn-wizard-next {
    padding: 0.65rem 1.5rem;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: #fff;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 14px rgba(124,58,237,0.25);
    position: relative;
    overflow: hidden;
}
.btn-wizard-next::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
    background-size: 200% 100%;
    animation: btnShimmer 3s infinite;
    pointer-events: none;
}
@keyframes btnShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
.btn-wizard-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(124,58,237,0.3);
}
.btn-wizard-next:active { transform: translateY(0); }
.btn-wizard-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}
.btn-wizard-confirm {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #10b981, #34d399);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 16px rgba(16,185,129,0.3);
    position: relative;
    overflow: hidden;
}
.btn-wizard-confirm::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
    background-size: 200% 100%;
    animation: btnShimmer 3s infinite;
    pointer-events: none;
}
.btn-wizard-confirm:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(16,185,129,0.4);
}
.btn-wizard-confirm:active { transform: translateY(-1px); }

/* === Step: City & Branch === */
.cb-layout {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.cb-dropdown-wrap {
    display: flex;
    justify-content: center;
}
.cb-select-wrapper {
    position: relative;
    width: 100%;
    max-width: 420px;
}
.cb-select {
    width: 100%;
    padding: 0.85rem 2.5rem 0.85rem 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    color: #1f2937;
    background: #fff;
    border: 2px solid #e0e7ff;
    border-radius: 14px;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: all 0.25s ease;
    outline: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}
.cb-select:hover { border-color: #c4b5fd; }
.cb-select:focus {
    border-color: #7c3aed;
    box-shadow: 0 0 0 4px rgba(124,58,237,0.08);
}
.cb-select-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #7c3aed;
    font-size: 0.85rem;
    pointer-events: none;
    transition: transform 0.3s;
}
.cb-select:focus + .cb-select-icon { transform: translateY(-50%) rotate(180deg); }
.cb-section-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
    padding-left: 0.25rem;
}
.cb-branch-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}
.cb-branch-card {
    position: relative;
    padding: 1rem;
    border: 1.5px solid #f0edff;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: center;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}
.cb-branch-card:hover {
    border-color: rgba(124,58,237,0.25);
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124,58,237,0.08);
}
.cb-branch-card.selected {
    border-color: #7c3aed;
    background: rgba(124,58,237,0.04);
    box-shadow: 0 0 0 3px rgba(124,58,237,0.1);
}
.cb-branch-check {
    display: none;
    position: absolute;
    top: 6px;
    right: 6px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #7c3aed;
    color: #fff;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}
.cb-branch-card.selected .cb-branch-check { display: flex; }
.cb-branch-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 0.5rem;
    display: block;
    border: 2px solid rgba(124,58,237,0.08);
}
.cb-branch-placeholder {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin: 0 auto 0.5rem;
    background: #ede9fe;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7c3aed;
    font-size: 1.2rem;
}
.cb-branch-name {
    font-weight: 600;
    font-size: 0.88rem;
    color: #1f2937;
}
.cb-branch-addr {
    font-size: 0.72rem;
    color: #6b7280;
    margin-top: 0.2rem;
}
.cb-branch-phone {
    font-size: 0.72rem;
    color: #7c3aed;
    margin-top: 0.25rem;
}
.cb-branch-phone i { font-size: 0.65rem; margin-right: 0.25rem; }
.cb-no-branches {
    text-align: center;
    padding: 2rem 1rem;
    color: #9ca3af;
}
.cb-no-branches i {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
    color: #d1d5db;
}
.cb-no-branches p { font-size: 0.85rem; margin: 0; }

/* === Step: Theatre + Date + Slots === */
.ts-date-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    background: #f9f8ff;
    padding: 1rem 1.25rem;
    border-radius: 14px;
    border: 1px solid #f0edff;
}
.gp-preview {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1rem;
    padding: 0.65rem 1rem;
    background: #f9f8ff;
    border: 1px solid #f0edff;
    border-radius: 10px;
    font-size: 0.82rem;
    color: #6b7280;
}
.gp-preview .gp-plus { color: #7c3aed; font-weight: 500; }
.gp-preview .gp-total { color: #1f2937; font-weight: 700; font-size: 0.95rem; margin-left: auto; }

.ts-date-label {
    font-weight: 600;
    font-size: 0.88rem;
    color: #374151;
    white-space: nowrap;
}
.ts-date-label i { color: #7c3aed; margin-right: 0.4rem; }
.ts-date-input {
    flex: 1;
    max-width: 240px;
    padding: 0.5rem 0.75rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    font-size: 0.88rem;
    background: #fff;
    color: #1f2937;
    transition: all 0.2s;
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}
.ts-date-input:focus {
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124,58,237,0.1);
    outline: none;
}
.ts-placeholder {
    text-align: center;
    padding: 3rem 1rem;
    color: #9ca3af;
}
.ts-placeholder i { font-size: 3rem; display: block; margin-bottom: 0.75rem; color: #d1d5db; }
.ts-placeholder p { font-size: 0.9rem; margin: 0; }

/* Theatre Ticket Cards */
.ts-ticket-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.ts-ticket-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1.5px solid #f0edff;
    overflow: hidden;
}
.ts-ticket-card:hover {
    border-color: #c4b5fd;
    box-shadow: 0 8px 32px rgba(124,58,237,0.08);
    transform: translateY(-3px);
}
.ts-ticket-card.selected {
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124,58,237,0.1), 0 8px 32px rgba(124,58,237,0.06);
}
.ts-ticket-inner {
    display: flex;
    gap: 0;
}
.ts-ticket-poster {
    position: relative;
    flex-shrink: 0;
    width: 180px;
    min-height: 210px;
    overflow: hidden;
    display: flex;
    background: #f3f0ff;
}
.ts-ticket-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.ts-ticket-poster-placeholder {
    width: 100%;
    min-height: 210px;
    background: linear-gradient(145deg, #ede9fe, #f5f3ff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(124,58,237,0.3);
    font-size: 2.5rem;
    flex: 1;
}
.ts-post-sprockets {
    position: absolute;
    right: -4px;
    top: 0;
    bottom: 0;
    width: 8px;
    background: repeating-linear-gradient(0deg, #fff 0px, #fff 10px, #ddd6fe 10px, #ddd6fe 12px, #fff 12px, #fff 22px);
    z-index: 2;
}
.ts-ticket-content {
    flex: 1;
    padding: 0.9rem 1.25rem 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    position: relative;
    background: #fff;
}
.ts-ticket-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 1.5px;
    background: repeating-linear-gradient(0deg, transparent, transparent 5px, rgba(124,58,237,0.1) 5px, rgba(124,58,237,0.1) 7px);
}
.ts-tkt-slot-badge {
    position: absolute;
    top: 0.6rem;
    right: 0;
    font-size: 0.62rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    padding: 0.25rem 0.75rem 0.25rem 0.9rem;
    border-radius: 0 4px 4px 0;
    white-space: nowrap;
    z-index: 3;
    box-shadow: 0 2px 6px rgba(124,58,237,0.25);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.ts-tkt-slot-badge::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid #6d28d9;
}
.ts-tkt-slot-badge.badge-danger { background: linear-gradient(135deg, #ef4444, #dc2626); }
.ts-tkt-slot-badge.badge-danger::before { border-right-color: #dc2626; }
.ts-tkt-slot-badge.badge-urgent { background: linear-gradient(135deg, #f59e0b, #d97706); }
.ts-tkt-slot-badge.badge-urgent::before { border-right-color: #d97706; }
.ts-tkt-slot-badge.badge-warning { background: linear-gradient(135deg, #fbbf24, #f59e0b); color: #1e0a3c; }
.ts-tkt-slot-badge.badge-warning::before { border-right-color: #f59e0b; }
.ts-tkt-slot-badge.badge-green { background: linear-gradient(135deg, #10b981, #059669); }
.ts-tkt-slot-badge.badge-green::before { border-right-color: #059669; }
.ts-tkt-slot-badge.badge-available { background: linear-gradient(135deg, #7c3aed, #6d28d9); }
.ts-tkt-slot-badge.badge-available::before { border-right-color: #6d28d9; }
.ts-slot-chip.chip-held { border-color: rgba(245,158,11,0.5); background: rgba(245,158,11,0.08); cursor: not-allowed; }
.ts-slot-chip.chip-held::after { content: 'Held'; position: absolute; top: -4px; right: -4px; font-size: 0.45rem; font-weight: 700; color: #d97706; background: #fffbeb; padding: 0 4px; border-radius: 3px; border: 1px solid rgba(245,158,11,0.3); }

.ts-tkt-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #7c3aed;
    background: rgba(124,58,237,0.06);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    text-transform: uppercase;
    align-self: flex-start;
}
.ts-tkt-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
}
.ts-tkt-title {
    font-weight: 800;
    font-size: 1.1rem;
    color: #1f2937;
    letter-spacing: -0.01em;
}
.ts-tkt-location {
    font-size: 0.78rem;
    color: #6b7280;
    margin-top: 0.15rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(239,68,68,0.06);
    padding: 0.1rem 0.5rem 0.1rem 0.3rem;
    border-radius: 5px;
}
.ts-tkt-location i { color: #ef4444; font-size: 0.8rem; display: inline-block; }
.ts-tkt-price-box {
    text-align: right;
    flex-shrink: 0;
}
.ts-tkt-price {
    font-weight: 800;
    font-size: 1.2rem;
    color: #10b981;
    white-space: nowrap;
    line-height: 1.1;
}
.ts-tkt-price-label {
    font-size: 0.6rem;
    color: #9ca3af;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.ts-tkt-dash {
    height: 1.5px;
    background: repeating-linear-gradient(90deg, #e5e7eb 0px, #e5e7eb 6px, transparent 6px, transparent 10px);
    margin: 0.15rem 0;
}
.ts-tkt-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.2rem 0.75rem;
    font-size: 0.73rem;
    color: #6b7280;
}
.ts-tkt-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}
.ts-tkt-meta i { color: #7c3aed; font-size: 0.7rem; }
.ts-tkt-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
}
.ts-tkt-features .ts-feature {
    font-size: 0.65rem;
    color: #374151;
    background: rgba(124,58,237,0.06);
    padding: 0.15rem 0.5rem;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
}
.ts-tkt-features .ts-feature i { color: #10b981; font-size: 0.55rem; }
.ts-tkt-slots-section {
    margin-top: 0.1rem;
}
.ts-tkt-slots-label {
    font-size: 0.73rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.ts-tkt-slots-label i { color: #7c3aed; font-size: 0.7rem; }
.ts-tkt-trailer {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.72rem;
    color: #7c3aed;
    text-decoration: none;
    font-weight: 600;
    margin-top: 0.2rem;
    transition: gap 0.2s;
}
.ts-tkt-trailer i { font-size: 0.85rem; }
.ts-tkt-trailer:hover { gap: 0.5rem; text-decoration: underline; }
.ts-tkt-extrainfo {
    font-size: 0.65rem;
    color: #6b7280;
    background: rgba(251,191,36,0.06);
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.15rem;
}
.ts-tkt-extrainfo i { color: #f59e0b; font-size: 0.65rem; }
.ts-slots-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.ts-slot-chip {
    padding: 0.3rem 0.65rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.73rem;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s;
    background: #fff;
}
.ts-slot-chip:hover {
    border-color: #7c3aed;
    color: #7c3aed;
    background: rgba(124,58,237,0.04);
}
.ts-slot-chip.selected {
    border-color: #7c3aed;
    background: #7c3aed;
    color: #fff;
    box-shadow: 0 2px 8px rgba(124,58,237,0.2);
}
.ts-slot-chip.selected.ts-chip-time,
.ts-slot-chip.selected .ts-chip-time { color: #fff; }
.ts-slot-chip.selected .ts-chip-sep { color: rgba(255,255,255,0.5); }
.ts-slot-chip.selected .ts-chip-price { color: #d8f5e8; }
.ts-slot-chip.disabled {
    opacity: 0.25;
    cursor: not-allowed;
    pointer-events: none;
    background: #f9fafb;
}

/* Slot Hold Countdown */
.hold-countdown {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: linear-gradient(135deg, rgba(16,185,129,0.08), rgba(5,150,105,0.04));
    border: 1px solid rgba(16,185,129,0.2);
    border-radius: 10px;
    font-size: 0.82rem;
    color: #065f46;
    margin-bottom: 1rem;
}
.hold-countdown.hold-warning {
    background: linear-gradient(135deg, rgba(245,158,11,0.12), rgba(217,119,6,0.06));
    border-color: rgba(245,158,11,0.3);
    color: #92400e;
    animation: holdPulse 1s ease-in-out infinite;
}
@keyframes holdPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}
.hold-extend-btn {
    margin-left: auto;
    padding: 0.2rem 0.6rem;
    font-size: 0.7rem;
    font-weight: 600;
    background: rgba(124,58,237,0.08);
    border: 1px solid rgba(124,58,237,0.2);
    border-radius: 6px;
    color: #7c3aed;
    cursor: pointer;
}
.hold-extend-btn:hover { background: rgba(124,58,237,0.15); }
.hold-release-btn {
    padding: 0.2rem 0.6rem;
    font-size: 0.7rem;
    font-weight: 600;
    background: rgba(239,68,68,0.06);
    border: 1px solid rgba(239,68,68,0.15);
    border-radius: 6px;
    color: #ef4444;
    cursor: pointer;
}
.hold-release-btn:hover { background: rgba(239,68,68,0.12); }
.hold-expired-alert {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, rgba(239,68,68,0.1), rgba(220,38,38,0.04));
    border: 1px solid rgba(239,68,68,0.2);
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #991b1b;
    margin-bottom: 1rem;
}
.ts-chip-time { font-weight: 600; }
.ts-chip-sep { margin: 0 0.15rem; opacity: 0.4; }
.ts-chip-price { font-size: 0.6rem; font-weight: 700; color: #059669; margin-left: 0.25rem; white-space: nowrap; }
.ts-slot-chip.slot-discount { border-color: rgba(16,185,129,0.3); background: rgba(16,185,129,0.05); }
.ts-slot-chip.slot-discount.selected { border-color: #10b981; background: #10b981; color: #fff; }
.ts-slot-chip.slot-discount.selected .ts-chip-price { color: #d8f5e8; }

/* Slot status background colors */
.ts-slot-chip.status-available { background: rgba(34,197,94,0.08); border-color: rgba(34,197,94,0.25); }
.ts-slot-chip.status-booked { background: rgba(239,68,68,0.08); border-color: rgba(239,68,68,0.25); }
.ts-slot-chip.status-blocked { background: rgba(107,114,128,0.1); border-color: rgba(107,114,128,0.3); }
.ts-slot-chip.status-expired { background: rgba(107,114,128,0.06); border-color: rgba(107,114,128,0.15); }
.ts-slot-chip.status-held { background: rgba(245,158,11,0.1); border-color: rgba(245,158,11,0.3); }
.ts-slot-chip.status-maintenance { background: repeating-linear-gradient(-45deg, rgba(239,68,68,0.04), rgba(239,68,68,0.04) 4px, rgba(239,68,68,0.08) 4px, rgba(239,68,68,0.08) 8px); border-color: rgba(239,68,68,0.3); }

/* Selected state must override status backgrounds (higher specificity) */
.ts-slot-chip.selected.status-available,
.ts-slot-chip.selected.status-booked,
.ts-slot-chip.selected.status-blocked,
.ts-slot-chip.selected.status-expired,
.ts-slot-chip.selected.status-held,
.ts-slot-chip.selected.status-maintenance {
    border-color: #7c3aed;
    background: #7c3aed;
    color: #fff;
}

/* Slot status legend */
.ts-status-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0.6rem 0.8rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.72rem;
}
.ts-status-legend-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.ts-status-legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 3px;
    border: 1px solid #e5e7eb;
}
.ts-status-legend-dot.dot-available { background: rgba(34,197,94,0.4); border-color: rgba(34,197,94,0.5); }
.ts-status-legend-dot.dot-booked { background: rgba(239,68,68,0.4); border-color: rgba(239,68,68,0.5); }
.ts-status-legend-dot.dot-blocked { background: rgba(107,114,128,0.4); border-color: rgba(107,114,128,0.5); }
.ts-status-legend-dot.dot-expired { background: rgba(107,114,128,0.2); border-color: rgba(107,114,128,0.3); }
.ts-status-legend-dot.dot-held { background: rgba(245,158,11,0.4); border-color: rgba(245,158,11,0.5); }
.ts-status-legend-dot.dot-maintenance { background: repeating-linear-gradient(-45deg, rgba(239,68,68,0.15), rgba(239,68,68,0.15) 3px, rgba(239,68,68,0.25) 3px, rgba(239,68,68,0.25) 6px); border-color: rgba(239,68,68,0.5); }
.ts-ticket-stub {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(124,58,237,0.04), rgba(167,139,250,0.02));
    border-top: 2px dashed rgba(167,139,250,0.15);
    padding: 0.5rem 1rem;
    gap: 0.5rem;
    position: relative;
}
.ts-ticket-stub::before,
.ts-ticket-stub::after {
    content: '';
    position: absolute;
    top: -11px;
    width: 22px;
    height: 22px;
    background: #fff;
    border-radius: 50%;
    border: 2px solid #fff;
    z-index: 3;
}
.ts-ticket-stub::before { left: -5px; }
.ts-ticket-stub::after { right: -5px; }
.ts-stub-left, .ts-stub-right {
    font-size: 0.7rem;
    font-weight: 600;
    color: #7c3aed;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    white-space: nowrap;
}
.ts-stub-left i { font-size: 0.7rem; }
.ts-stub-ticketno {
    font-size: 0.6rem;
    font-weight: 700;
    color: #7c3aed;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.06em;
    background: rgba(124,58,237,0.06);
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
}
.ts-stub-barcode {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 18px;
    flex-shrink: 0;
}
.ts-stub-barcode span {
    display: block;
    background: #7c3aed;
    border-radius: 1px;
    opacity: 0.4;
}
.ts-stub-barcode span:nth-child(1) { width: 2px; height: 14px; }
.ts-stub-barcode span:nth-child(2) { width: 4px; height: 18px; }
.ts-stub-barcode span:nth-child(3) { width: 1.5px; height: 10px; }
.ts-stub-barcode span:nth-child(4) { width: 3px; height: 16px; }
.ts-stub-barcode span:nth-child(5) { width: 2px; height: 12px; }
.ts-stub-barcode span:nth-child(6) { width: 4px; height: 18px; }
.ts-stub-barcode span:nth-child(7) { width: 1.5px; height: 11px; }
.ts-stub-barcode span:nth-child(8) { width: 3px; height: 15px; }

/* === Occasion Grid === */
.occasion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(150px, 100%), 1fr));
    gap: 0.85rem;
}
.occasion-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1.5px solid #f0edff;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}
.occasion-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(124,58,237,0.08);
    border-color: rgba(167,139,250,0.2);
}
.occasion-card.selected {
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124,58,237,0.1);
}
.occasion-card img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    display: block;
}
.occ-icon {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(124,58,237,0.06), rgba(167,139,250,0.03));
    color: #7c3aed;
    font-size: 2.2rem;
}
.occ-check {
    display: none;
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #7c3aed;
    color: #fff;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(124,58,237,0.3);
}
.occasion-card.selected .occ-check { display: flex; }
.occ-name {
    padding: 0.6rem 0.75rem;
    font-weight: 600;
    font-size: 0.82rem;
    color: #1f2937;
    text-align: center;
}

/* === Package Grid (Legacy) === */
.pkg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(240px, 100%), 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}
.pkg-card {
    position: relative;
    padding: 1.25rem;
    border: 2px solid #f0edff;
    border-radius: 18px;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.pkg-card:hover {
    border-color: #c4b5fd;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(124,58,237,0.08);
}
.pkg-card.selected {
    border-color: #7c3aed;
    background: rgba(124,58,237,0.04);
    box-shadow: 0 0 0 3px rgba(124,58,237,0.1);
}
.pkg-card.pkg-none {
    opacity: 0.7;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    text-align: center;
}
.pkg-card.pkg-none.selected { opacity: 1; }
.pkg-check {
    display: none;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #7c3aed;
    color: #fff;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(124,58,237,0.25);
}
.pkg-card.selected .pkg-check { display: flex; }
.pkg-badge {
    display: inline-block;
    padding: 0.2rem 0.65rem;
    border-radius: 20px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    margin-bottom: 0.5rem;
}
.pkg-name {
    font-weight: 700;
    font-size: 1rem;
    color: #1f2937;
    margin-bottom: 0.25rem;
}
.pkg-price {
    font-weight: 700;
    font-size: 1.2rem;
    color: #10b981;
    margin-bottom: 0.25rem;
}
.pkg-label {
    font-size: 0.78rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}
.pkg-items-title {
    font-size: 0.72rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.3rem;
}
.pkg-item-included, .pkg-item-excluded {
    display: inline-block;
    font-size: 0.72rem;
    padding: 0.15rem 0.5rem;
    border-radius: 6px;
    margin: 0.15rem;
}
.pkg-item-included {
    background: rgba(16,185,129,0.06);
    color: #059669;
}
.pkg-item-included i { color: #10b981; font-size: 0.6rem; margin-right: 0.2rem; }
.pkg-item-excluded {
    background: rgba(239,68,68,0.04);
    color: #9ca3af;
}
.pkg-item-excluded i { color: #d1d5db; font-size: 0.6rem; margin-right: 0.2rem; }
.pkg-saving {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #f59e0b;
    background: rgba(245,158,11,0.06);
    padding: 0.25rem 0.6rem;
    border-radius: 8px;
    display: inline-block;
}

/* ══════════════════════════════════════════════
   TIER PACKAGE CARDS — PREMIUM GRADIENT DESIGN
   ══════════════════════════════════════════════ */
.tier-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.tier-card {
    position: relative;
    padding: 1.75rem 1.25rem 1.25rem;
    border: none;
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    text-align: center;
    background: linear-gradient(165deg, #f8f5ff 0%, #f0eaff 50%, #e8e0ff 100%);
    box-shadow: 0 4px 24px rgba(124,58,237,0.08), 0 1px 3px rgba(0,0,0,0.04);
}
.tier-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(160deg, rgba(124,58,237,0.2) 0%, transparent 50%, rgba(16,185,129,0.15) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 0;
    transition: opacity 0.4s;
    opacity: 0.6;
    pointer-events: none;
}
.tier-card-silver::before {
    background: linear-gradient(160deg, rgba(100,116,139,0.35) 0%, transparent 40%, rgba(148,163,184,0.25) 100%);
}
.tier-card-gold::before {
    background: linear-gradient(160deg, rgba(245,158,11,0.4) 0%, transparent 40%, rgba(251,191,36,0.3) 100%);
}
.tier-card-platinum::before {
    background: linear-gradient(160deg, rgba(196,181,253,0.5) 0%, transparent 40%, rgba(221,214,254,0.4) 100%);
}
.tier-card > * { position: relative; z-index: 1; }

.tier-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(124,58,237,0.12), 0 4px 12px rgba(0,0,0,0.06);
}
.tier-card-silver {
    background: linear-gradient(165deg, #f1f5f9 0%, #e2e8f0 30%, #cbd5e1 70%, #94a3b8 100%);
    color: #334155;
}
.tier-card-silver:hover {
    box-shadow: 0 20px 50px rgba(100,116,139,0.15), 0 4px 12px rgba(0,0,0,0.05);
}
.tier-card-gold {
    background: linear-gradient(165deg, #fffbeb 0%, #fef3c7 25%, #fde68a 60%, #f59e0b 100%);
    color: #78350f;
}
.tier-card-gold:hover {
    box-shadow: 0 20px 50px rgba(245,158,11,0.18), 0 4px 12px rgba(0,0,0,0.05);
}
.tier-card-platinum {
    background: linear-gradient(165deg, #3b1f7e 0%, #5b21b6 25%, #7c3aed 55%, #a78bfa 100%);
    color: #fff;
}
.tier-card-platinum:hover {
    box-shadow: 0 20px 50px rgba(124,58,237,0.2), 0 4px 12px rgba(0,0,0,0.06);
}
.tier-card.selected {
    transform: translateY(-6px) scale(1.03);
}
.tier-card-silver.selected {
    box-shadow: 0 0 0 3px rgba(100,116,139,0.4), 0 20px 50px rgba(100,116,139,0.2);
}
.tier-card-gold.selected {
    box-shadow: 0 0 0 3px rgba(245,158,11,0.4), 0 20px 50px rgba(245,158,11,0.22);
}
.tier-card-platinum.selected {
    box-shadow: 0 0 0 3px rgba(167,139,250,0.5), 0 20px 50px rgba(124,58,237,0.25);
}
.tier-card.selected:not(.tier-card-silver):not(.tier-card-gold):not(.tier-card-platinum) {
    box-shadow: 0 0 0 3px #7c3aed, 0 20px 50px rgba(124,58,237,0.15);
}
.tier-card.selected .tier-check {
    opacity: 1;
    transform: scale(1);
}

/* Popular Ribbon */
.tier-popular-ribbon {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    font-size: 0.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.2rem 1rem;
    border-radius: 20px;
    z-index: 5;
    box-shadow: 0 4px 16px rgba(245,158,11,0.3);
    animation: ribbonPulse 2s ease-in-out infinite;
}
@keyframes ribbonPulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(245,158,11,0.3); }
    50% { box-shadow: 0 4px 24px rgba(245,158,11,0.4); }
}

/* Icon Wrapper */
.tier-icon-wrap {
    width: 64px;
    height: 64px;
    margin: 0 auto 0.85rem;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}
.tier-icon-wrap::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 21px;
    background: inherit;
    opacity: 0.3;
    filter: blur(8px);
    z-index: -1;
    transition: opacity 0.4s;
}
.tier-card:hover .tier-icon-wrap {
    transform: scale(1.15) rotate(-5deg);
    border-radius: 14px;
}
.tier-card-silver .tier-icon-wrap {
    background: linear-gradient(135deg, #94a3b8, #64748b);
    color: #fff;
    border: none;
}
.tier-card-gold .tier-icon-wrap {
    background: linear-gradient(135deg, #fbbf24, #d97706);
    color: #fff;
    border: none;
}
.tier-card-platinum .tier-icon-wrap {
    background: linear-gradient(135deg, #c4b5fd, #7c3aed);
    color: #fff;
    border: none;
}
.tier-card:not(.tier-card-silver):not(.tier-card-gold):not(.tier-card-platinum) .tier-icon-wrap {
    background: linear-gradient(135deg, #ede9fe, #ddd6fe);
    color: #7c3aed;
    border: 1px solid rgba(124,58,237,0.15);
}

/* Checkmark */
.tier-check {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    z-index: 3;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.tier-card-silver .tier-check { background: #475569; color: #fff; }
.tier-card-gold .tier-check { background: #d97706; color: #fff; }
.tier-card-platinum .tier-check { background: #fff; color: #7c3aed; }
.tier-card-default .tier-check,
.tier-card:not(.tier-card-silver):not(.tier-card-gold):not(.tier-card-platinum) .tier-check { background: #7c3aed; color: #fff; }

/* Selected card pseudo checkmark (fallback) */
.tier-card.selected::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #7c3aed;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    box-shadow: 0 2px 10px rgba(124,58,237,0.3);
    z-index: 5;
    animation: checkPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    display: none;
}

/* Glow Orb */
.tier-glow {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.06;
    z-index: 0;
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.tier-card:hover .tier-glow {
    opacity: 0.2;
    transform: scale(1.3);
}
.tier-card-silver .tier-glow { background: radial-gradient(circle, #94a3b8, transparent 70%); top: -60px; right: -40px; opacity: 0.08; }
.tier-card-gold .tier-glow { background: radial-gradient(circle, #fbbf24, transparent 70%); top: -60px; right: -40px; opacity: 0.10; }
.tier-card-platinum .tier-glow { background: radial-gradient(circle, #a78bfa, transparent 70%); top: -60px; right: -40px; opacity: 0.10; }

/* Badge Label */
.tier-badge {
    display: inline-block;
    padding: 0.2rem 0.75rem;
    border-radius: 20px;
    font-size: 0.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.6rem;
}
.tier-card-silver .tier-badge { background: rgba(148,163,184,0.1); color: #64748b; }
.tier-card-gold .tier-badge { background: rgba(245,158,11,0.1); color: #d97706; }
.tier-card-platinum .tier-badge { background: rgba(167,139,250,0.1); color: #7c3aed; }
.tier-card:not(.tier-card-silver):not(.tier-card-gold):not(.tier-card-platinum) .tier-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
}

/* Name */
.tier-name {
    font-weight: 800;
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
    color: #1f2937;
}
.tier-card-silver .tier-name { color: #1e293b; }
.tier-card-gold .tier-name { color: #78350f; }
.tier-card-platinum .tier-name { color: #fff; }

/* Price */
.tier-price {
    font-weight: 900;
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 0.4rem;
    letter-spacing: -0.02em;
    color: #1f2937;
}
.tier-card-silver .tier-price { color: #0f172a; }
.tier-card-gold .tier-price { color: #92400e; }
.tier-card-platinum .tier-price { color: #fff; }
.tier-price-symbol { font-size: 1rem; font-weight: 700; vertical-align: top; margin-right: 2px; }

/* Tagline */
.tier-tagline {
    font-size: 0.72rem;
    color: #6b7280;
    margin-bottom: 0.85rem;
    line-height: 1.4;
    font-style: italic;
    min-height: 2.8em;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tier-card-platinum .tier-tagline { color: rgba(255,255,255,0.8); }
.tier-card-gold .tier-tagline { color: #78350f; }
.tier-desc {
    font-size: 0.72rem;
    color: #6b7280;
    margin-bottom: 0;
    line-height: 1.35;
}

/* Highlights List */
.tier-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 0.85rem;
    text-align: left;
    padding: 0.7rem 0.85rem;
    background: rgba(255,255,255,0.5);
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(4px);
}
.tier-card-silver .tier-highlights { background: rgba(255,255,255,0.45); border-color: rgba(255,255,255,0.3); }
.tier-card-gold .tier-highlights { background: rgba(255,255,255,0.4); border-color: rgba(255,255,255,0.3); }
.tier-card-platinum .tier-highlights { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.12); }
.tier-hl-item {
    font-size: 0.68rem;
    color: #4b5563;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.1rem 0;
}
.tier-card-platinum .tier-hl-item { color: rgba(255,255,255,0.9); }
.tier-card-gold .tier-hl-item { color: #78350f; }
.tier-hl-item i {
    font-size: 0.5rem;
    flex-shrink: 0;
}
.tier-card-silver .tier-hl-item i { color: #64748b; }
.tier-card-gold .tier-hl-item i { color: #b45309; }
.tier-card-platinum .tier-hl-item i { color: rgba(255,255,255,0.8); }

/* Select Label */
.tier-select-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.55rem 1rem;
    border-radius: 30px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin-top: 0.25rem;
    border: 1px solid transparent;
}
.tier-card-silver .tier-select-label { background: rgba(148,163,184,0.08); color: #64748b; border-color: rgba(148,163,184,0.08); }
.tier-card-gold .tier-select-label { background: rgba(245,158,11,0.08); color: #d97706; border-color: rgba(245,158,11,0.08); }
.tier-card-platinum .tier-select-label { background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.2); }
.tier-card:not(.tier-card-silver):not(.tier-card-gold):not(.tier-card-platinum) .tier-select-label {
    background: rgba(124,58,237,0.08); color: #7c3aed; border-color: rgba(124,58,237,0.08);
}
.tier-card.selected .tier-select-label {
    background: linear-gradient(135deg, rgba(16,185,129,0.15), rgba(52,211,153,0.1)) !important;
    color: #059669 !important;
    border-color: rgba(16,185,129,0.25) !important;
    box-shadow: 0 0 16px rgba(16,185,129,0.08);
}
.tier-card-platinum.selected .tier-select-label {
    background: rgba(255,255,255,0.2) !important;
    color: #fff !important;
    border-color: rgba(255,255,255,0.3) !important;
    box-shadow: 0 0 16px rgba(255,255,255,0.1);
}
.tier-card:not(.selected):hover .tier-select-label {
    transform: scale(1.05);
}

/* No-Package Card */
.tier-card-none {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    text-align: center;
    border-style: dashed;
    border-color: #e5e7eb;
    background: #fafafa !important;
}
.tier-card-none::before { display: none !important; }
.tier-card-none.selected { border-color: #7c3aed; border-style: solid; }
.tier-card-none .tier-check { display: none; }
.tier-none-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #f3f4f6;
    border: 1px dashed #d1d5db;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* === Tier Detail Panel === */
.tier-detail-panel {
    margin-top: 0.5rem;
    padding: 1.25rem;
    border: 1px solid #f0edff;
    border-radius: 18px;
    background: #faf9fe;
    animation: tierPanelIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-sizing: border-box;
    width: 100%;
}
@keyframes tierPanelIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}
.tier-detail-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f0edff;
}
.tier-detail-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.tier-mini-badge {
    padding: 0.15rem 0.5rem;
    border-radius: 5px;
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: #fff;
}
.tier-detail-change {
    font-size: 0.72rem;
    color: #7c3aed;
    font-weight: 600;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.3rem 0.6rem;
    border-radius: 8px;
    transition: background 0.2s;
}
.tier-detail-change:hover { background: rgba(124,58,237,0.05); }
.tier-detail-section-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

/* Included Chips */
.tier-included-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 1rem;
}
.tier-included-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.65rem;
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 500;
    background: rgba(16,185,129,0.06);
    color: #059669;
    border: 1px solid rgba(16,185,129,0.12);
}
.tier-included-chip i { font-size: 0.6rem; color: #10b981; }

/* Tier Add-ons (in detail panel) */
.tier-addons-section {
    border-top: 1px solid #f0edff;
    padding-top: 0.85rem;
}
.tier-addons-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.tier-addons-title i { color: #7c3aed; font-size: 0.75rem; }
.tier-addon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(155px, 100%), 1fr));
    gap: 0.6rem;
}
.tier-addon-card {
    padding: 0.75rem 0.6rem;
    border: 1.5px solid #f0edff;
    border-radius: 14px;
    background: #fff;
    text-align: center;
    transition: all 0.25s;
}
.tier-addon-card:hover {
    border-color: rgba(167,139,250,0.2);
    box-shadow: 0 4px 16px rgba(124,58,237,0.06);
    transform: translateY(-2px);
}
.tier-addon-card.selected {
    border-color: #7c3aed;
    background: rgba(124,58,237,0.04);
    box-shadow: 0 0 0 2px rgba(124,58,237,0.1);
}
.tier-addon-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #ede9fe, #f5f3ff);
    color: #7c3aed;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    margin: 0 auto 0.4rem;
}
.tier-addon-card.selected .tier-addon-icon {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: #fff;
}
.tier-addon-name {
    font-size: 0.72rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.15rem;
    line-height: 1.3;
}
.tier-addon-price {
    font-size: 0.78rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 0.35rem;
}
.tier-addon-qty {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}
.tier-addon-qty .aqty-btn {
    width: 26px;
    height: 26px;
    border-radius: 7px;
    border: 1.5px solid #e5e7eb;
    background: #fff;
    color: #6b7280;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.tier-addon-qty .aqty-btn:hover {
    border-color: #7c3aed;
    color: #7c3aed;
    background: rgba(124,58,237,0.04);
}
.tier-addon-qty .aqty-val {
    font-size: 0.82rem;
    font-weight: 700;
    color: #1f2937;
    min-width: 18px;
    text-align: center;
}

/* === Add-on Tabs & Gallery === */
.addon-tabs {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 1rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
}
.addon-tab {
    white-space: nowrap;
    padding: 0.5rem 1rem;
    border: 1.5px solid #f0edff;
    border-radius: 10px;
    background: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.addon-tab:hover {
    border-color: rgba(167,139,250,0.3);
    color: #7c3aed;
}
.addon-tab.active {
    border-color: #7c3aed;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: #fff;
}
.addon-panel { display: none; }
.addon-panel.active { display: block; animation: stepFadeIn 0.3s ease; }
.addon-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(170px, 100%), 1fr));
    gap: 0.85rem;
}
.addon-card {
    border: 1.5px solid #f0edff;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: #fff;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}
.addon-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124,58,237,0.06);
    border-color: rgba(167,139,250,0.2);
}
.addon-card.selected {
    border-color: #7c3aed;
    box-shadow: 0 0 0 2px rgba(124,58,237,0.1);
    background: rgba(124,58,237,0.03);
}
.addon-card-img {
    width: 100%;
    height: 110px;
    overflow: hidden;
}
.addon-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.addon-card-placeholder {
    width: 100%;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(124,58,237,0.06), rgba(167,139,250,0.03));
    color: #7c3aed;
    font-size: 2rem;
}
.addon-card-body {
    padding: 0.65rem 0.75rem 0.75rem;
}
.addon-card-name {
    font-weight: 600;
    font-size: 0.82rem;
    color: #1f2937;
    margin-bottom: 0.1rem;
}
.addon-card-meta {
    font-size: 0.7rem;
    color: #6b7280;
    margin-bottom: 0.2rem;
}
.addon-card-price {
    font-weight: 700;
    font-size: 0.85rem;
    color: #10b981;
    margin-bottom: 0.5rem;
}
.addon-card-qty {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.aqty-btn {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    border: 1.5px solid #e5e7eb;
    background: #fff;
    color: #6b7280;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s;
}
.aqty-btn:hover {
    border-color: #7c3aed;
    color: #7c3aed;
    background: rgba(124,58,237,0.04);
}
.aqty-val {
    min-width: 20px;
    text-align: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: #1f2937;
}
.aqty-single {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    border: 1.5px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: transparent;
    transition: all 0.2s;
}
.aqty-single.selected {
    background: #7c3aed;
    border-color: #7c3aed;
    color: #fff;
}

/* === Review & Payment === */
.rv-summary {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.rv-section {
    background: #faf9fe;
    border: 1px solid #f0edff;
    border-radius: 16px;
    padding: 1.25rem;
    box-sizing: border-box;
    width: 100%;
}
.rv-section-title {
    font-weight: 700;
    font-size: 0.88rem;
    color: #1f2937;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.rv-section-title i { color: #7c3aed; }
.rv-chips {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}
.rv-chip {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0.75rem;
    background: #fff;
    border: 1px solid #f0edff;
    border-radius: 12px;
    transition: all 0.2s;
}
.rv-chip:hover { border-color: rgba(167,139,250,0.15); }
.rv-chip-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(167,139,250,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7c3aed;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.rv-chip-text { display: flex; flex-direction: column; min-width: 0; }
.rv-chip-label { font-size: 0.65rem; color: #6b7280; text-transform: uppercase; letter-spacing: 0.03em; }
.rv-chip-val { font-size: 0.82rem; font-weight: 600; color: #1f2937; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Bill Style */
.rv-bill {
    padding: 0.25rem 0;
}
.rv-bill-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.55rem 0;
    font-size: 0.85rem;
    color: #6b7280;
}
.rv-bill-row .rv-bill-label i { margin-right: 0.35rem; color: #7c3aed; font-size: 0.75rem; }
.rv-bill-val { font-weight: 600; text-align: right; color: #374151; }
.rv-bill-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #e5e7eb, transparent);
    margin: 0.25rem 0;
}
.rv-bill-total { padding-top: 0.5rem; font-size: 1rem; }
.rv-bill-total .rv-bill-val { color: #10b981; font-size: 1.05rem; }
.bill-pill {
    display: inline-block;
    padding: 0.05rem 0.45rem;
    background: rgba(124,58,237,0.06);
    border-radius: 20px;
    font-size: 0.7rem;
    color: #7c3aed;
    font-weight: 500;
    vertical-align: middle;
}

/* Coupon & Payment */
.rv-coupon {
    background: #faf9fe;
    border: 1px solid #f0edff;
    border-radius: 16px;
    padding: 1rem 1.25rem;
}
.rv-payment {
    background: #faf9fe;
    border: 1px solid #f0edff;
    border-radius: 16px;
    padding: 1.25rem;
}
.coupon-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 0.85rem;
    color: #6b7280;
    padding: 0.5rem 0;
    transition: color 0.2s;
}
.coupon-toggle:hover { color: #7c3aed; }
.coupon-toggle i { transition: transform 0.3s; }
.coupon-input-row {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}
.coupon-input-row .form-control {
    flex: 1;
    border-radius: 8px;
    border: 1.5px solid #e5e7eb;
    font-size: 0.85rem;
    padding: 0.4rem 0.75rem;
}
.coupon-input-row .btn {
    border-radius: 8px;
    white-space: nowrap;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.payment-method-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border: 1.5px solid #f0edff;
    border-radius: 16px;
    background: #fff;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}
.payment-method-btn:hover {
    border-color: rgba(167,139,250,0.25);
    background: #faf9fe;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(124,58,237,0.06);
}
.payment-method-btn .pm-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.payment-method-btn .pm-info {
    flex: 1;
    text-align: left;
}
.payment-method-btn .pm-info small {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    font-weight: 400;
    font-size: 0.78rem;
    color: #9ca3af;
    margin-top: 0.1rem;
}
.pm-sub-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.1rem 0.5rem;
    background: rgba(124,58,237,0.06);
    border-radius: 20px;
    font-size: 0.72rem;
    color: #6b7280;
}
.payment-method-btn .pm-info small .pm-sub-icon i { font-size: 0.65rem; }

/* Payment Details Card */
.payment-detail-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border: 1.5px solid #f0edff;
    border-radius: 14px;
    background: #fff;
    margin-bottom: 0.75rem;
    transition: all 0.2s;
}
.payment-detail-card .pd-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.payment-detail-card .pd-info {
    flex: 1;
    text-align: left;
    font-size: 0.88rem;
    line-height: 1.5;
    color: #374151;
}
.payment-detail-card .pd-info .text-muted { color: #6b7280; }
.payment-detail-card button { flex-shrink: 0; }

/* Hide scroll-to-top on booking page — button lives in footer outside .booking-page */
.booking-page-active #scroll-top-btn { display: none !important; }

/* === Sidebar === */
.booking-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 1.5rem;
    align-items: start;
}
.booking-main { min-width: 0; }
.booking-sidebar { position: sticky; top: 100px; }

.sidebar-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #f0edff;
    box-shadow: 0 4px 24px rgba(124,58,237,0.06);
    overflow: hidden;
}
.booking-wizard-sidebar-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
}
.booking-wizard-sidebar-header i { font-size: 1rem; }
.booking-wizard-sidebar-body {
    padding: 1rem 1.25rem;
}
.sidebar-empty {
    text-align: center;
    padding: 1.5rem 0;
    color: #9ca3af;
}
.sidebar-empty i { font-size: 1.5rem; display: block; margin-bottom: 0.5rem; }
.sidebar-empty p { margin: 0; font-size: 0.8rem; }

/* Sidebar Rows */
.sb-row {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.55rem 0;
}
.sb-row + .sb-row { border-top: 1px solid #f3f4f6; }
.sb-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #f3f0ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #7c3aed;
    font-size: 0.7rem;
    margin-top: 1px;
}
.sb-row > div {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.sb-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #6b7280;
    font-weight: 500;
    line-height: 1.2;
}
.sb-value {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.4;
}
.sb-divider {
    height: 1px;
    background: #f3f4f6;
    margin: 0.5rem 0;
}
.sb-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.3rem 0;
    font-size: 0.8rem;
    color: #6b7280;
}
.sb-price-row.sb-small { font-size: 0.75rem; color: #9ca3af; }
.sb-price-row.sb-discount { color: #10b981; font-weight: 500; }
.sb-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0 0.2rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1f2937;
    border-top: 2px solid #f0edff;
    margin-top: 0.4rem;
}
.sb-extra-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    color: #ef4444;
    background: rgba(239,68,68,0.06);
    border: 1px solid rgba(239,68,68,0.15);
    border-radius: 4px;
    padding: 0 0.35rem;
    margin-left: 0.35rem;
    white-space: nowrap;
}

/* === Extra Utilities === */
.confirmation-box {
    text-align: center;
    padding: 2rem;
}
.confirmation-box .success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    animation: successBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes successBounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}
.confirmation-box h3 {
    font-weight: 700;
    color: #1f2937;
}
.step-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}
.step-loader .spinner-border {
    width: 2.5rem;
    height: 2.5rem;
    color: #7c3aed !important;
}

/* ══════════════════════════════════════════════
   SHIMMER SKELETON LOADING
   ══════════════════════════════════════════════ */
.shimmer-loader {
    width: 100%;
    padding: 0.5rem 0;
}
.shimmer-loader .shimmer-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #f0edff;
    padding: 1.25rem;
    margin-bottom: 1rem;
}
.shimmer-loader .shimmer-card:last-child { margin-bottom: 0; }

.shimmer-line {
    height: 14px;
    border-radius: 8px;
    background: linear-gradient(90deg, #f0edff 25%, #f8f6ff 50%, #f0edff 75%);
    background-size: 200% 100%;
    animation: shimmerMove 1.6s ease-in-out infinite;
    margin-bottom: 10px;
}
.shimmer-line:last-child { margin-bottom: 0; }

.shimmer-line.w-60 { width: 60%; }
.shimmer-line.w-45 { width: 45%; }
.shimmer-line.w-80 { width: 80%; }
.shimmer-line.w-35 { width: 35%; }
.shimmer-line.w-50 { width: 50%; }
.shimmer-line.w-70 { width: 70%; }
.shimmer-line.w-25 { width: 25%; }
.shimmer-line.h-10 { height: 10px; }
.shimmer-line.h-12 { height: 12px; }
.shimmer-line.h-32 { height: 32px; }
.shimmer-line.h-40 { height: 40px; }
.shimmer-line.h-80 { height: 80px; }
.shimmer-line.mb-6 { margin-bottom: 6px; }
.shimmer-line.mb-14 { margin-bottom: 14px; }
.shimmer-line.mb-18 { margin-bottom: 18px; }
.shimmer-line.mb-8 { margin-bottom: 8px; }

.shimmer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.shimmer-grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
}
.shimmer-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.shimmer-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(90deg, #f0edff 25%, #f8f6ff 50%, #f0edff 75%);
    background-size: 200% 100%;
    animation: shimmerMove 1.6s ease-in-out infinite;
    flex-shrink: 0;
}
.shimmer-row {
    display: flex;
    align-items: center;
    gap: 12px;
}
.shimmer-row .shimmer-lines {
    flex: 1;
}

@keyframes shimmerMove {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
.step-error {
    color: #dc2626;
    background: rgba(239,68,68,0.06);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    display: none;
    border: 1px solid rgba(239,68,68,0.15);
}
.booked-badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: #ef4444;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    z-index: 2;
}

/* ══════════════════════════════════════════════
   PAYMENT PROCESSING LOADING OVERLAY
   ══════════════════════════════════════════════ */
.payment-loading-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    animation: paymentOverlayIn 0.4s ease;
}
@keyframes paymentOverlayIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.payment-loading-overlay img {
    width: min(300px, 75vw);
    height: auto;
    animation: paymentPulse 2s ease-in-out infinite;
}
@keyframes paymentPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.03); opacity: 0.85; }
}
.payment-loading-text {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
}
.payment-loading-sub {
    font-size: 0.85rem;
    color: #6b7280;
    text-align: center;
    margin-top: -0.5rem;
}
.payment-loading-dots {
    display: flex;
    gap: 6px;
    margin-top: 0.5rem;
}
.payment-loading-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #7c3aed;
    animation: dotBounce 1.2s ease-in-out infinite;
}
.payment-loading-dots span:nth-child(2) { animation-delay: 0.15s; }
.payment-loading-dots span:nth-child(3) { animation-delay: 0.3s; }
@keyframes dotBounce {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
    40% { transform: scale(1); opacity: 1; }
}
.selection-card.booked {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    filter: grayscale(0.8);
    border-color: #d1d5db;
}
.selection-card.booked:hover {
    transform: none;
    box-shadow: none;
    border-color: #d1d5db;
}

/* ══════════════════════════════════════════════
   RESPONSIVE — MOBILE NATIVE APP STYLES
   ══════════════════════════════════════════════ */

/* === Touch feedback helper === */
@media (hover: none) and (pointer: coarse) {
    .tier-card:active,
    .ts-slot-chip:active,
    .occasion-card:active,
    .addon-card:active,
    .cb-branch-card:active,
    .selection-card:active,
    .payment-method-btn:active,
    .tier-addon-card:active,
    .btn-wizard-next:active,
    .btn-wizard-prev:active { transform: scale(0.97) !important; }

    .aqty-btn:active,
    .tier-addon-qty .aqty-btn:active {
        transform: scale(0.88) !important;
        border-color: #7c3aed !important;
        background: rgba(124,58,237,0.1) !important;
    }
}

/* ═══════════════════════════════════════════════════════════════
   320px–576px: MOBILE PWA — Full-Screen App-Like Booking Flow
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 576px) {

    /* ── Base Layout ── */
    .booking-page {
        padding: 0;
        min-height: 100dvh;
        background: linear-gradient(175deg, #fefcf9 0%, #f8f5ff 50%, #fefcf9 100%);
    }
    .booking-page::before,
    .booking-page::after { display: none; }

    .page-header { padding: 100px 0 40px; margin-top: 0; }
    .page-header::after { background-size: cover; }
    .page-header-box h1 { font-size: clamp(20px, 5vw, 26px); }
    .page-header-box nav ol.breadcrumb { font-size: clamp(0.55rem, 1.5vw, 0.7rem); margin-top: 2px; }

    .party-deco, .party-confetti, .party-star, .party-bubble { display: none; }

    .booking-container { padding: 0 clamp(0.7rem, 2vw, 1rem); max-width: 100%; }
    .booking-layout {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    /* ── Compact Step Counter (replaces dot progress on mobile) ── */
    .steps-progress {
        display: none;
    }
    .steps-progress.mobile-counter {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: clamp(0.4rem, 1.3vw, 0.6rem) clamp(0.7rem, 2vw, 1rem);
        margin-bottom: clamp(0.55rem, 1.6vw, 0.75rem);
        border-radius: clamp(10px, 2.8vw, 14px);
        background: rgba(255,255,255,0.85);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(124,58,237,0.08);
        box-shadow: 0 2px 12px rgba(124,58,237,0.04);
    }
    .mobile-step-counter {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: clamp(0.5rem, 1.6vw, 0.75rem);
    }
    .mobile-step-label {
        font-size: clamp(0.6rem, 1.6vw, 0.72rem);
        font-weight: 600;
        color: #6b7280;
        display: flex;
        align-items: center;
        gap: clamp(0.25rem, 0.9vw, 0.4rem);
    }
    .mobile-step-label i { color: #7c3aed; font-size: clamp(0.55rem, 1.5vw, 0.7rem); }
    .mobile-step-label .step-current { color: #7c3aed; font-weight: 800; }
    .mobile-step-total {
        font-size: clamp(0.5rem, 1.4vw, 0.62rem);
        color: #9ca3af;
        font-weight: 500;
    }
    .mobile-progress-bar {
        width: 100%;
        height: clamp(3px, 0.8vw, 4px);
        background: #f0edff;
        border-radius: clamp(3px, 0.8vw, 4px);
        overflow: hidden;
        margin-top: clamp(0.35rem, 1.1vw, 0.5rem);
    }
    .mobile-progress-fill {
        height: 100%;
        background: linear-gradient(90deg, #7c3aed, #a855f7);
        border-radius: clamp(3px, 0.8vw, 4px);
        transition: width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    /* ── Booking Header ── */
    .booking-header {
        margin-bottom: clamp(0.55rem, 1.6vw, 0.75rem);
        padding: clamp(0.7rem, 2vw, 1rem) 0 0;
        flex-wrap: wrap;
        gap: clamp(0.25rem, 0.9vw, 0.4rem);
        text-align: center;
    }
    .booking-header .section-title { flex: 1; min-width: 0; text-align: center; }
    .booking-header .section-title h3 { font-size: clamp(0.6rem, 1.6vw, 0.72rem); margin-bottom: 4px; opacity: 0.7; text-transform: uppercase; letter-spacing: 0.08em; color: #7c3aed; }
    .booking-header .section-title h2 { font-size: clamp(1.1rem, 5vw, 1.4rem); line-height: 1.25; }
    .bh-desc { font-size: clamp(0.62rem, 1.7vw, 0.75rem); color: #9ca3af; margin-top: clamp(0.2rem, 0.6vw, 0.3rem); display: block; }
    .btn-start-over {
        font-size: clamp(0.5rem, 1.4vw, 0.62rem);
        padding: clamp(0.2rem, 0.6vw, 0.3rem) clamp(0.4rem, 1.3vw, 0.6rem);
        border-radius: clamp(8px, 2vw, 10px);
        gap: clamp(0.15rem, 0.5vw, 0.25rem);
        min-height: clamp(28px, 7.4vw, 34px);
    }
    .btn-start-over i { font-size: clamp(0.48rem, 1.3vw, 0.6rem); }

    /* ── Step Card (app-like, full-width) ── */
    .step-card {
        padding: clamp(0.8rem, 2.4vw, 1.1rem) clamp(0.7rem, 2vw, 1rem);
        border-radius: clamp(14px, 3.8vw, 18px);
        margin-bottom: 0;
        box-shadow: 0 2px 16px rgba(124,58,237,0.05);
        width: 100%;
        box-sizing: border-box;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: 1px solid rgba(124,58,237,0.06);
        position: relative;
        overflow-x: hidden;
        overflow-y: auto;
    }
    .step-card::after { display: none; }
    #stepBody {
        display: block !important;
        width: 100%;
        min-height: clamp(40px, 13vw, 60px);
        box-sizing: border-box;
        overflow-x: hidden;
    }
    .step-title { font-size: clamp(0.95rem, 3.5vw, 1.1rem); margin-bottom: 0.2rem; font-weight: 700; color: #1f2937; }
    .step-subtitle { font-size: clamp(0.72rem, 2.5vw, 0.8rem); margin-bottom: 1rem; color: #9ca3af; }

    /* ── Step Transitions ── */
    .step-card.step-exit-left {
        animation: stepExitLeft 0.2s ease-in forwards;
    }
    .step-card.step-exit-right {
        animation: stepExitRight 0.2s ease-in forwards;
    }
    .step-card.step-enter-right {
        animation: stepEnterRight 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    }
    .step-card.step-enter-left {
        animation: stepEnterLeft 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    }
    @keyframes stepExitLeft {
        from { opacity: 1; transform: translateX(0); }
        to { opacity: 0; transform: translateX(-40px); }
    }
    @keyframes stepExitRight {
        from { opacity: 1; transform: translateX(0); }
        to { opacity: 0; transform: translateX(40px); }
    }
    @keyframes stepEnterRight {
        from { opacity: 0; transform: translateX(40px); }
        to { opacity: 1; transform: translateX(0); }
    }
    @keyframes stepEnterLeft {
        from { opacity: 0; transform: translateX(-40px); }
        to { opacity: 1; transform: translateX(0); }
    }

    /* ── Fixed Bottom Nav — Swiggy/Osmo style (Back | Price Badge | Continue) ── */
    .wizard-nav {
        position: fixed;
        bottom: 0; left: 0; right: 0;
        display: flex;
        align-items: center;
        gap: clamp(0.35rem, 1.1vw, 0.5rem);
        padding: clamp(0.4rem, 1.2vw, 0.55rem) clamp(0.55rem, 1.6vw, 0.75rem);
        padding-bottom: calc(clamp(0.4rem, 1.2vw, 0.55rem) + env(safe-area-inset-bottom, 12px));
        background: rgba(255,255,255,0.95);
        backdrop-filter: blur(16px) saturate(180%);
        -webkit-backdrop-filter: blur(16px) saturate(180%);
        border-top: 1px solid rgba(124,58,237,0.08);
        box-shadow: 0 -4px 24px rgba(0,0,0,0.08);
        z-index: 100;
        margin-top: 0;
        transition: transform 0.3s ease;
    }
    .booking-main {
        padding-bottom: calc(clamp(4rem, 10vw, 5rem) + env(safe-area-inset-bottom, 12px));
        min-height: 50vh;
    }

    .btn-wizard-prev {
        padding: 0 clamp(0.6rem, 2vw, 0.9rem);
        font-size: clamp(0.7rem, 1.9vw, 0.82rem);
        border-radius: clamp(9px, 2.4vw, 12px);
        flex: 0 0 auto;
        white-space: nowrap;
        min-height: clamp(40px, 10.5vw, 48px);
        min-width: clamp(40px, 10.5vw, 48px);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .btn-wizard-prev .btn-text-label { display: none; }
    .btn-wizard-next, .btn-wizard-confirm {
        flex: 0 0 auto;
        padding: 0 clamp(0.75rem, 2.4vw, 1.1rem);
        font-size: clamp(0.72rem, 1.9vw, 0.85rem);
        border-radius: clamp(9px, 2.4vw, 12px);
        text-align: center;
        justify-content: center;
        min-height: clamp(40px, 10.5vw, 48px);
        font-weight: 600;
        letter-spacing: 0.01em;
        white-space: nowrap;
    }

    /* ── Price Badge (center of bottom bar, tappable) ── */
    .price-badge {
        display: none;
        align-items: center;
        justify-content: center;
        gap: clamp(0.25rem, 0.8vw, 0.35rem);
        padding: clamp(0.3rem, 1vw, 0.45rem) clamp(0.6rem, 1.8vw, 0.85rem);
        background: linear-gradient(135deg, rgba(16,185,129,0.08), rgba(16,185,129,0.04));
        border: 1.5px solid rgba(16,185,129,0.2);
        border-radius: clamp(9px, 2.4vw, 12px);
        cursor: pointer;
        flex: 1;
        min-height: clamp(40px, 10.5vw, 48px);
        min-width: 0;
        transition: all 0.2s ease;
        -webkit-tap-highlight-color: transparent;
        user-select: none;
        -webkit-user-select: none;
    }
    .price-badge:active { transform: scale(0.97); background: rgba(16,185,129,0.12); }
    .price-badge.visible { display: flex !important; }
    .price-badge-icon {
        width: clamp(22px, 6vw, 28px);
        height: clamp(22px, 6vw, 28px);
        border-radius: clamp(6px, 1.6vw, 8px);
        background: linear-gradient(135deg, #10b981, #34d399);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: clamp(0.55rem, 1.5vw, 0.7rem);
        color: #fff;
        flex-shrink: 0;
    }
    .price-badge-info {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        min-width: 0;
    }
    .price-badge-label {
        font-size: clamp(0.42rem, 1.2vw, 0.55rem);
        font-weight: 600;
        color: #6b7280;
        line-height: 1.1;
    }
    .price-badge-total {
        font-size: clamp(0.72rem, 1.9vw, 0.85rem);
        font-weight: 800;
        color: #059669;
        line-height: 1.2;
        white-space: nowrap;
    }
    .price-badge-chevron {
        font-size: clamp(0.48rem, 1.3vw, 0.6rem);
        color: #9ca3af;
        flex-shrink: 0;
    }

    /* ── Price Overlay (full-screen modal on mobile) ── */
    .price-overlay {
        position: fixed;
        inset: 0;
        z-index: 200;
        background: rgba(0,0,0,0.5);
        display: flex;
        align-items: flex-end;
        justify-content: center;
        animation: overlayFadeIn 0.25s ease;
        -webkit-tap-highlight-color: transparent;
    }
    @keyframes overlayFadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    .price-overlay-backdrop {
        position: absolute;
        inset: 0;
    }
    .price-overlay-content {
        position: relative;
        width: 100%;
        max-height: 85vh;
        background: #fff;
        border-radius: clamp(16px, 4.5vw, 22px) clamp(16px, 4.5vw, 22px) 0 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        animation: overlaySlideUp 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
        padding-bottom: env(safe-area-inset-bottom, 0px);
    }
    @keyframes overlaySlideUp {
        from { transform: translateY(100%); }
        to { transform: translateY(0); }
    }
    @keyframes overlaySlideDown {
        from { transform: translateY(0); opacity: 1; }
        to { transform: translateY(100%); opacity: 0; }
    }
    .po-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: clamp(0.8rem, 2.4vw, 1.1rem) clamp(0.9rem, 2.7vw, 1.25rem) clamp(0.55rem, 1.6vw, 0.75rem);
        border-bottom: 1px solid #f3f4f6;
        position: sticky;
        top: 0;
        background: #fff;
        z-index: 1;
        border-radius: clamp(16px, 4.5vw, 22px) clamp(16px, 4.5vw, 22px) 0 0;
    }
    .po-header h3 {
        font-size: clamp(0.85rem, 2.2vw, 1rem);
        font-weight: 700;
        color: #1f2937;
        margin: 0;
    }
    .po-close {
        width: clamp(28px, 7.5vw, 36px);
        height: clamp(28px, 7.5vw, 36px);
        border-radius: 50%;
        background: #f3f4f6;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: clamp(0.72rem, 2vw, 0.9rem);
        color: #6b7280;
        transition: all 0.2s;
    }
    .po-close:active { background: #e5e7eb; transform: scale(0.93); }
    .po-body {
        padding: clamp(0.55rem, 1.6vw, 0.75rem) clamp(0.9rem, 2.7vw, 1.25rem) clamp(0.9rem, 2.7vw, 1.25rem);
    }
    .po-section {
        margin-bottom: clamp(0.55rem, 1.6vw, 0.75rem);
    }
    .po-section-title {
        font-size: clamp(0.6rem, 1.6vw, 0.72rem);
        font-weight: 700;
        color: #6b7280;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        margin-bottom: clamp(0.35rem, 1.1vw, 0.5rem);
    }
    .po-row {
        display: flex;
        align-items: center;
        gap: clamp(0.4rem, 1.3vw, 0.6rem);
        padding: clamp(0.35rem, 1.1vw, 0.5rem) 0;
    }
    .po-row + .po-row { border-top: 1px solid #f9fafb; }
    .po-row-icon {
        width: clamp(22px, 6vw, 28px);
        height: clamp(22px, 6vw, 28px);
        border-radius: clamp(6px, 1.6vw, 8px);
        background: #f3f0ff;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-size: clamp(0.55rem, 1.5vw, 0.7rem);
        color: #7c3aed;
    }
    .po-row-label {
        font-size: clamp(0.58rem, 1.6vw, 0.7rem);
        color: #6b7280;
    }
    .po-row-value {
        font-size: clamp(0.68rem, 1.9vw, 0.82rem);
        font-weight: 600;
        color: #1f2937;
        margin-left: auto;
        flex-shrink: 0;
    }
    .po-price-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: clamp(0.25rem, 0.8vw, 0.4rem) 0;
    }
    .po-price-row-label {
        font-size: clamp(0.68rem, 1.9vw, 0.82rem);
        color: #374151;
    }
    .po-price-row-value {
        font-size: clamp(0.68rem, 1.9vw, 0.82rem);
        font-weight: 600;
        color: #1f2937;
    }
    .po-price-row.discount .po-price-row-label { color: #059669; }
    .po-price-row.discount .po-price-row-value { color: #059669; }
    .po-divider {
        height: 1px;
        background: #f3f4f6;
        margin: clamp(0.35rem, 1.1vw, 0.5rem) 0;
    }
    .po-total {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: clamp(0.4rem, 1.3vw, 0.6rem) 0 0.2rem;
    }
    .po-total-label {
        font-size: clamp(0.8rem, 2.2vw, 0.95rem);
        font-weight: 700;
        color: #1f2937;
    }
    .po-total-value {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
        font-weight: 800;
        color: #059669;
    }

    /* ── Sidebar HIDDEN on mobile (replaced by price badge + overlay) ── */
    .booking-sidebar {
        display: none !important;
    }

    /* ── Step card: allow content to flow freely ── */
    .step-card {
        overflow-x: hidden;
        overflow-y: auto;
    }

    /* ── City & Branch Step ── */
    .cb-layout {
        display: block;
        width: 100%;
    }
    .cb-layout .cb-dropdown-wrap {
        display: block;
        width: 100%;
        margin-bottom: clamp(0.7rem, 2vw, 1rem);
    }
    .cb-layout .cb-select-wrapper {
        display: block;
        width: 100%;
        max-width: 100%;
    }
    .cb-layout .cb-select {
        width: 100% !important;
        display: block !important;
        visibility: visible !important;
        padding: clamp(0.6rem, 1.8vw, 0.85rem) clamp(0.7rem, 2vw, 1rem) !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        min-height: clamp(42px, 11vw, 52px) !important;
        border-radius: clamp(10px, 2.8vw, 14px) !important;
        background: #f9f8ff !important;
        border: 2px solid #e0e7ff !important;
        color: #1f2937 !important;
        appearance: auto !important;
        -webkit-appearance: auto !important;
        outline: none !important;
        cursor: pointer !important;
    }
    .cb-layout .cb-select:focus { border-color: #7c3aed !important; box-shadow: 0 0 0 3px rgba(124,58,237,0.1) !important; }
    .cb-layout .cb-select option { padding: 10px; font-size: 1rem; background: #fff; color: #1f2937; }
    .cb-layout .cb-select-icon { display: none !important; }
    .cb-layout .cb-branch-grid {
        display: flex;
        flex-direction: column;
        gap: clamp(0.4rem, 1.3vw, 0.6rem);
    }
    .cb-layout .cb-branch-card {
        display: flex;
        align-items: center;
        gap: clamp(0.55rem, 1.6vw, 0.75rem);
        padding: clamp(0.6rem, 1.8vw, 0.85rem) clamp(0.6rem, 1.8vw, 0.85rem);
        border-radius: clamp(10px, 2.8vw, 14px);
        text-align: left;
        position: relative;
        border: 1.5px solid #f0edff;
        background: #fff;
        transition: all 0.25s ease;
    }
    .cb-layout .cb-branch-card:active { transform: scale(0.98); }
    .cb-layout .cb-branch-card.selected {
        border-color: #7c3aed;
        background: rgba(124,58,237,0.03);
        box-shadow: 0 0 0 3px rgba(124,58,237,0.08);
    }
    .cb-layout .cb-branch-img { width: clamp(38px, 10vw, 48px); height: clamp(38px, 10vw, 48px); margin: 0; display: block; border-radius: clamp(9px, 2.4vw, 12px); object-fit: cover; flex-shrink: 0; }
    .cb-layout .cb-branch-placeholder { width: clamp(38px, 10vw, 48px); height: clamp(38px, 10vw, 48px); margin: 0; display: flex; align-items: center; justify-content: center; border-radius: clamp(9px, 2.4vw, 12px); font-size: clamp(0.9rem, 2.4vw, 1.1rem); background: #ede9fe; flex-shrink: 0; }
    .cb-layout .cb-branch-name { display: block; font-size: clamp(0.75rem, 2.1vw, 0.88rem); font-weight: 600; color: #1f2937; }
    .cb-layout .cb-branch-addr { display: block; font-size: clamp(0.55rem, 1.5vw, 0.68rem); color: #6b7280; margin-top: clamp(0.1rem, 0.3vw, 0.15rem); }
    .cb-layout .cb-branch-phone { display: block; font-size: clamp(0.55rem, 1.5vw, 0.68rem); color: #7c3aed; margin-top: clamp(0.05rem, 0.2vw, 0.1rem); }
    .cb-layout .cb-section-label { display: block; font-size: clamp(0.68rem, 1.8vw, 0.78rem); font-weight: 600; color: #6b7280; margin-bottom: clamp(0.3rem, 0.9vw, 0.4rem); }

    .selection-grid { grid-template-columns: 1fr 1fr; gap: clamp(0.35rem, 1.1vw, 0.5rem); }
    .selection-card { padding: clamp(0.5rem, 1.4vw, 0.7rem) clamp(0.35rem, 1.1vw, 0.5rem); border-radius: clamp(9px, 2.4vw, 12px); }
    .selection-card .card-icon { font-size: clamp(0.95rem, 2.6vw, 1.2rem); margin-bottom: clamp(0.15rem, 0.5vw, 0.25rem); }
    .selection-card .card-name { font-size: clamp(0.62rem, 1.7vw, 0.75rem); }
    .selection-card .card-desc { font-size: clamp(0.52rem, 1.5vw, 0.65rem); }
    .selection-card .card-price { font-size: clamp(0.65rem, 1.8vw, 0.78rem); }

    /* ── Customer Form Step ── */
    .wizard-form .row > div { margin-bottom: clamp(0.4rem, 1.3vw, 0.6rem); }
    .wizard-form .form-label {
        font-size: clamp(0.62rem, 1.7vw, 0.75rem);
        margin-bottom: clamp(0.12rem, 0.4vw, 0.2rem);
        font-weight: 600;
        color: #374151;
    }
    .wizard-form .form-control,
    .wizard-form .form-select {
        padding: clamp(0.45rem, 1.4vw, 0.65rem) clamp(0.6rem, 1.8vw, 0.85rem);
        font-size: 16px;
        border-radius: clamp(9px, 2.4vw, 12px);
        background: #fff;
        border: 1.5px solid #e5e7eb;
        color: #1f2937;
        min-height: clamp(40px, 10.5vw, 48px);
        transition: border-color 0.2s, box-shadow 0.2s;
    }
    .wizard-form .form-control:focus,
    .wizard-form .form-select:focus {
        border-color: #7c3aed;
        box-shadow: 0 0 0 3px rgba(124,58,237,0.08);
    }
    .wizard-form .form-control::placeholder { color: #9ca3af; }
    .gp-preview {
        flex-direction: column;
        gap: clamp(0.2rem, 0.6vw, 0.3rem);
        font-size: clamp(0.62rem, 1.7vw, 0.75rem);
        padding: clamp(0.4rem, 1.3vw, 0.6rem) clamp(0.6rem, 1.8vw, 0.85rem);
        border-radius: clamp(8px, 2vw, 10px);
        align-items: flex-start;
    }
    .gp-preview .gp-total { margin-left: 0; }

    /* ── Theatre + Slots Step ── */
    .ts-date-row {
        flex-direction: column;
        align-items: stretch;
        gap: clamp(0.3rem, 0.9vw, 0.4rem);
        padding: clamp(0.55rem, 1.6vw, 0.75rem) clamp(0.6rem, 1.8vw, 0.85rem);
        border-radius: clamp(9px, 2.4vw, 12px);
        margin-bottom: clamp(0.6rem, 1.8vw, 0.85rem);
    }
    .ts-date-label { font-size: clamp(0.65rem, 1.8vw, 0.78rem); }
    .ts-date-input {
        max-width: 100%;
        padding: clamp(0.4rem, 1.2vw, 0.55rem) clamp(0.6rem, 1.8vw, 0.85rem);
        font-size: 16px;
        min-height: clamp(36px, 9.5vw, 44px);
        border-radius: clamp(8px, 2vw, 10px);
    }
    .ts-ticket-list { gap: clamp(0.55rem, 1.6vw, 0.75rem); }

    /* Theatre ticket — stacked poster on top */
    .ts-ticket-inner {
        flex-direction: column;
    }
    .ts-ticket-poster {
        width: 100%;
        min-height: clamp(80px, 24vw, 110px);
        height: clamp(120px, 34vw, 160px);
        flex-shrink: 0;
        display: flex;
        overflow: hidden;
        background: #f3f0ff;
        border-radius: clamp(10px, 2.8vw, 14px) clamp(10px, 2.8vw, 14px) 0 0;
        position: relative;
    }
    .ts-ticket-poster img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    .ts-ticket-poster-placeholder {
        min-height: clamp(80px, 24vw, 110px);
        height: clamp(120px, 34vw, 160px);
        font-size: clamp(1.5rem, 4.2vw, 2rem);
        background: linear-gradient(145deg, #ede9fe, #f5f3ff);
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(124,58,237,0.3);
        flex: 1;
    }
    .ts-post-sprockets { display: none; }
    .ts-ticket-content {
        padding: clamp(0.55rem, 1.6vw, 0.75rem) clamp(0.6rem, 1.8vw, 0.85rem) clamp(0.45rem, 1.4vw, 0.65rem);
        gap: clamp(0.2rem, 0.6vw, 0.3rem);
        border-radius: 0 0 clamp(10px, 2.8vw, 14px) clamp(10px, 2.8vw, 14px);
    }
    .ts-ticket-content::before { display: none; }
    .ts-ticket-card {
        border-radius: clamp(10px, 2.8vw, 14px);
        overflow: hidden;
    }
    .ts-tkt-slot-badge {
        position: relative;
        top: auto;
        right: auto;
        font-size: clamp(0.48rem, 1.3vw, 0.58rem);
        padding: clamp(0.12rem, 0.4vw, 0.2rem) clamp(0.4rem, 1.3vw, 0.6rem);
        border-radius: clamp(4px, 1.2vw, 6px);
        display: inline-flex;
        align-self: flex-start;
        margin-bottom: clamp(0.1rem, 0.3vw, 0.15rem);
    }
    .ts-tkt-slot-badge::before { display: none; }
    .ts-tkt-badge { font-size: clamp(0.42rem, 1.2vw, 0.52rem); padding: clamp(0.08rem, 0.3vw, 0.12rem) clamp(0.25rem, 0.9vw, 0.4rem); border-radius: clamp(3px, 0.8vw, 4px); }
    .ts-tkt-header {
        flex-wrap: wrap;
        gap: clamp(0.15rem, 0.5vw, 0.25rem);
        align-items: center;
    }
    .ts-tkt-title { font-size: clamp(0.88rem, 3.2vw, 1rem); line-height: 1.2; font-weight: 700; }
    .ts-tkt-location {
        font-size: clamp(0.52rem, 1.5vw, 0.65rem);
        padding: clamp(0.05rem, 0.2vw, 0.1rem) clamp(0.25rem, 0.9vw, 0.4rem);
        margin-top: clamp(0.05rem, 0.2vw, 0.1rem);
        display: inline-flex;
        background: rgba(239,68,68,0.06);
        border-radius: 5px;
        color: #6b7280;
        gap: clamp(0.15rem, 0.5vw, 0.25rem);
    }
    .ts-tkt-location i { color: #ef4444; font-size: clamp(0.52rem, 1.5vw, 0.65rem); }
    .ts-tkt-price-box { text-align: left; margin-left: auto; flex-shrink: 0; }
    .ts-tkt-price { font-size: clamp(0.92rem, 3.5vw, 1.05rem); font-weight: 800; }
    .ts-tkt-price-label { font-size: clamp(0.4rem, 1.1vw, 0.5rem); }
    .ts-tkt-dash { display: none; }
    .ts-tkt-meta {
        font-size: clamp(0.52rem, 1.5vw, 0.65rem);
        gap: clamp(0.05rem, 0.2vw, 0.1rem) clamp(0.35rem, 1.1vw, 0.5rem);
        flex-direction: row;
        flex-wrap: wrap;
    }
    .ts-tkt-meta span { font-size: clamp(0.52rem, 1.5vw, 0.65rem); display: inline-flex; align-items: center; gap: clamp(0.12rem, 0.4vw, 0.2rem); }
    .ts-tkt-meta span i { font-size: clamp(0.48rem, 1.3vw, 0.6rem); color: #7c3aed; }
    .ts-tkt-features { display: none; }
    .ts-tkt-slots-label { font-size: clamp(0.55rem, 1.5vw, 0.68rem); margin-bottom: clamp(0.25rem, 0.8vw, 0.35rem); display: flex; align-items: center; gap: clamp(0.2rem, 0.6vw, 0.3rem); font-weight: 600; }
    .ts-tkt-slots-label i { font-size: clamp(0.52rem, 1.5vw, 0.65rem); color: #7c3aed; }
    .ts-slots-grid { gap: clamp(0.2rem, 0.6vw, 0.3rem); }
    .ts-slot-chip {
        padding: clamp(0.25rem, 0.8vw, 0.35rem) clamp(0.45rem, 1.4vw, 0.65rem);
        font-size: clamp(0.55rem, 1.5vw, 0.68rem);
        border-radius: clamp(6px, 1.6vw, 8px);
        min-height: clamp(30px, 7.8vw, 36px);
        display: flex;
        align-items: center;
        gap: clamp(0.02rem, 0.1vw, 0.05rem);
        border-width: 1.5px;
        transition: all 0.2s ease;
    }
    .ts-slot-chip:active { transform: scale(0.95); }
    .ts-chip-time { font-weight: 700; }
    .ts-chip-sep { margin: 0 clamp(0.05rem, 0.2vw, 0.1rem); opacity: 0.4; }

    /* Watch Preview — VISIBLE on mobile */
    .ts-tkt-trailer {
        display: inline-flex;
        align-items: center;
        gap: clamp(0.2rem, 0.6vw, 0.3rem);
        font-size: clamp(0.55rem, 1.5vw, 0.68rem);
        color: #7c3aed;
        text-decoration: none;
        font-weight: 600;
        margin-top: clamp(0.15rem, 0.5vw, 0.25rem);
        padding: clamp(0.2rem, 0.6vw, 0.3rem) 0;
    }
    .ts-tkt-trailer i { font-size: clamp(0.65rem, 1.8vw, 0.8rem); }
    .ts-tkt-trailer:active { opacity: 0.7; }

    .ts-tkt-extrainfo {
        font-size: clamp(0.48rem, 1.3vw, 0.6rem);
        padding: clamp(0.12rem, 0.4vw, 0.2rem) clamp(0.3rem, 1vw, 0.45rem);
        margin-top: clamp(0.05rem, 0.2vw, 0.1rem);
        line-height: 1.3;
    }
    .ts-tkt-extrainfo i { font-size: clamp(0.48rem, 1.3vw, 0.6rem); }
    .ts-ticket-stub { display: none; }
    .ts-placeholder { text-align: center; padding: clamp(1.8rem, 5.3vw, 2.5rem) clamp(0.7rem, 2vw, 1rem); }
    .ts-placeholder i { font-size: clamp(1.5rem, 4.2vw, 2rem); }
    .ts-placeholder p { font-size: clamp(0.65rem, 1.8vw, 0.78rem); }

    /* ── Occasion Step (2-column, larger cards) ── */
    .occasion-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(0.35rem, 1.1vw, 0.5rem);
    }
    .occasion-card {
        border-radius: clamp(10px, 2.8vw, 14px);
        min-height: clamp(80px, 22vw, 100px);
    }
    .occasion-card img { height: clamp(60px, 17vw, 80px); }
    .occ-icon { height: clamp(60px, 17vw, 80px); font-size: clamp(1.1rem, 3.2vw, 1.5rem); }
    .occ-name { padding: clamp(0.3rem, 1vw, 0.45rem) clamp(0.35rem, 1.1vw, 0.5rem); font-size: clamp(0.6rem, 1.6vw, 0.72rem); font-weight: 600; }
    .occ-check { width: clamp(16px, 4.2vw, 20px); height: clamp(16px, 4.2vw, 20px); font-size: clamp(0.42rem, 1.2vw, 0.55rem); top: 5px; right: 5px; }

    /* ── Add-ons Step ── */
    .addon-tabs {
        gap: clamp(0.2rem, 0.6vw, 0.3rem);
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap;
        padding-bottom: clamp(5px, 1.7vw, 8px);
        scrollbar-width: none;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        scroll-padding-left: clamp(0.35rem, 1.1vw, 0.5rem);
    }
    .addon-tabs::-webkit-scrollbar { display: none; }
    .addon-tab {
        white-space: nowrap;
        font-size: clamp(0.55rem, 1.5vw, 0.68rem);
        padding: clamp(0.3rem, 0.9vw, 0.4rem) clamp(0.55rem, 1.6vw, 0.75rem);
        border-radius: clamp(8px, 2vw, 10px);
        min-height: clamp(30px, 7.8vw, 36px);
        flex-shrink: 0;
    }
    .addon-card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(0.35rem, 1.1vw, 0.5rem);
        width: 100%;
        box-sizing: border-box;
    }
    .addon-panel.active {
        max-height: calc(100vh - 280px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding-right: 2px;
    }
    .addon-card { border-radius: clamp(9px, 2.4vw, 12px); }
    .addon-card-img { height: clamp(55px, 16vw, 75px); }
    .addon-card-img img { height: clamp(55px, 16vw, 75px); }
    .addon-card-placeholder { height: clamp(55px, 16vw, 75px); font-size: clamp(1rem, 2.8vw, 1.3rem); }
    .addon-card-body { padding: clamp(0.3rem, 1vw, 0.45rem) clamp(0.35rem, 1.1vw, 0.5rem) clamp(0.35rem, 1.2vw, 0.55rem); }
    .addon-card-name { font-size: clamp(0.6rem, 1.6vw, 0.72rem); font-weight: 600; }
    .addon-card-price { font-size: clamp(0.62rem, 1.7vw, 0.75rem); font-weight: 700; color: #10b981; }
    .addon-card-meta { font-size: clamp(0.48rem, 1.3vw, 0.6rem); }
    .addon-card-qty { gap: clamp(0.25rem, 0.8vw, 0.35rem); }
    .addon-card-qty .aqty-btn {
        width: clamp(26px, 7vw, 32px);
        height: clamp(26px, 7vw, 32px);
        font-size: clamp(0.7rem, 1.9vw, 0.85rem);
        border-radius: clamp(6px, 1.6vw, 8px);
    }
    .addon-card-qty .aqty-val { font-size: 0.82rem; min-width: 20px; font-weight: 600; }

    /* ── Tier Package Cards (vertical stack, no horizontal scroll) ── */
    .pkg-grid { grid-template-columns: 1fr; }
    .tier-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: clamp(0.4rem, 1.5vw, 0.75rem);
        padding: 0;
        margin-bottom: 0;
        box-sizing: border-box;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        overflow: visible;
    }
    .tier-grid::-webkit-scrollbar { display: none; }
    .tier-grid > :first-child { scroll-margin-left: 0; }
    .tier-card {
        width: 100%;
        scroll-snap-align: start;
        padding: clamp(0.7rem, 2.5vw, 1.25rem) clamp(0.6rem, 2vw, 1rem) clamp(0.6rem, 2vw, 1rem);
        border-radius: clamp(12px, 3vw, 18px);
        display: flex;
        flex-direction: column;
        min-width: 0;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    .tier-card > * { min-width: 0; max-width: 100%; }
    .tier-card-none {
        width: 100%;
        min-height: 50px;
        padding: clamp(0.5rem, 1.5vw, 0.75rem);
        border-radius: clamp(12px, 3vw, 18px);
        box-sizing: border-box;
        overflow: hidden;
    }
    .tier-card-none .tier-name { font-size: clamp(0.72rem, 2vw, 0.82rem) !important; }
    .tier-icon-wrap { width: clamp(36px, 8vw, 48px); height: clamp(36px, 8vw, 48px); font-size: clamp(0.9rem, 2.5vw, 1.2rem); margin-bottom: clamp(0.3rem, 1vw, 0.5rem); border-radius: clamp(10px, 2.5vw, 14px); }
    .tier-icon-wrap::after { display: none; }
    .tier-card:hover .tier-icon-wrap { transform: none; }
    .tier-name { font-size: clamp(0.8rem, 2.2vw, 0.92rem); line-height: 1.2; word-wrap: break-word; overflow-wrap: break-word; min-width: 0; }
    .tier-price { font-size: clamp(1.15rem, 3.2vw, 1.5rem); margin: clamp(0.15rem, 0.8vw, 0.3rem) 0; }
    .tier-price-symbol { font-size: clamp(0.65rem, 1.8vw, 0.8rem); }
    .tier-tagline { font-size: clamp(0.55rem, 1.5vw, 0.65rem); min-height: 1.8em; margin-bottom: clamp(0.3rem, 1vw, 0.45rem); line-height: 1.3; word-wrap: break-word; overflow-wrap: break-word; }
    .tier-highlights {
        padding: clamp(0.35rem, 1.2vw, 0.5rem) clamp(0.4rem, 1.3vw, 0.6rem);
        gap: clamp(0.1rem, 0.5vw, 0.2rem);
        margin-bottom: clamp(0.3rem, 1vw, 0.5rem);
        border-radius: clamp(8px, 2vw, 10px);
        max-width: 100%;
        overflow: hidden;
    }
    .tier-hl-item { font-size: clamp(0.5rem, 1.4vw, 0.62rem); gap: clamp(0.15rem, 0.6vw, 0.3rem); word-wrap: break-word; overflow-wrap: break-word; min-width: 0; }
    .tier-hl-item i { font-size: clamp(0.35rem, 1vw, 0.42rem); flex-shrink: 0; }
    .tier-select-label {
        font-size: clamp(0.58rem, 1.6vw, 0.68rem);
        padding: clamp(0.4rem, 1.2vw, 0.55rem) clamp(0.6rem, 1.8vw, 0.85rem);
        margin-top: clamp(0.1rem, 0.4vw, 0.15rem);
        border-radius: clamp(14px, 3.5vw, 20px);
    }
    .tier-popular-ribbon { font-size: clamp(0.32rem, 0.9vw, 0.4rem); padding: clamp(0.08rem, 0.3vw, 0.12rem) clamp(0.4rem, 1.2vw, 0.6rem); top: 6px; }
    .tier-badge { font-size: clamp(0.35rem, 1vw, 0.42rem); padding: clamp(0.08rem, 0.3vw, 0.12rem) clamp(0.3rem, 0.9vw, 0.45rem); margin-bottom: clamp(0.2rem, 0.6vw, 0.3rem); max-width: 100%; word-wrap: break-word; overflow-wrap: break-word; }
    .tier-glow { width: clamp(80px, 25vw, 120px); height: clamp(80px, 25vw, 120px); opacity: 0.08; }
    .tier-card:hover { transform: none; }
    .tier-card.selected { transform: none; border-width: 2px; }
    .tier-check { width: clamp(18px, 4.5vw, 22px); height: clamp(18px, 4.5vw, 22px); font-size: clamp(0.42rem, 1.2vw, 0.55rem); top: 6px; right: 6px; }

    .tier-detail-panel {
        padding: clamp(0.45rem, 1.5vw, 0.7rem);
        border-radius: clamp(10px, 2.5vw, 14px);
        margin-top: clamp(0.15rem, 0.5vw, 0.25rem);
    }
    .tier-detail-header {
        margin-bottom: clamp(0.25rem, 0.8vw, 0.4rem);
        padding-bottom: clamp(0.2rem, 0.7vw, 0.35rem);
        flex-wrap: wrap;
        gap: 0.3rem;
    }
    .tier-detail-title { font-size: clamp(0.65rem, 1.8vw, 0.75rem); flex-wrap: wrap; }
    .tier-mini-badge { font-size: clamp(0.38rem, 1.1vw, 0.48rem); padding: clamp(0.06rem, 0.2vw, 0.1rem) clamp(0.25rem, 0.8vw, 0.38rem); }
    .tier-detail-change { font-size: clamp(0.5rem, 1.4vw, 0.62rem); padding: clamp(0.12rem, 0.4vw, 0.18rem) clamp(0.3rem, 0.9vw, 0.45rem); }
    .tier-detail-section-label { font-size: clamp(0.48rem, 1.3vw, 0.58rem); margin-bottom: clamp(0.25rem, 0.8vw, 0.38rem); }
    .tier-included-chips { gap: clamp(0.12rem, 0.4vw, 0.2rem); }
    .tier-included-chip {
        font-size: clamp(0.48rem, 1.3vw, 0.58rem);
        padding: clamp(0.12rem, 0.4vw, 0.18rem) clamp(0.25rem, 0.8vw, 0.4rem);
        border-radius: clamp(4px, 1.2vw, 6px);
        gap: clamp(0.12rem, 0.4vw, 0.2rem);
    }
    .tier-included-chip i { font-size: clamp(0.38rem, 1.1vw, 0.48rem); }

    .tier-addons-section { padding-top: clamp(0.35rem, 1.2vw, 0.55rem); }
    .tier-addons-title { font-size: clamp(0.62rem, 1.7vw, 0.72rem); margin-bottom: clamp(0.3rem, 1vw, 0.45rem); }
    .tier-addon-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(0.25rem, 0.9vw, 0.4rem);
    }
    .tier-addon-card {
        padding: clamp(0.35rem, 1.1vw, 0.5rem) clamp(0.3rem, 1vw, 0.45rem);
        border-radius: clamp(8px, 2vw, 10px);
    }
    .tier-addon-icon { width: clamp(20px, 5.5vw, 26px); height: clamp(20px, 5.5vw, 26px); border-radius: clamp(5px, 1.5vw, 7px); font-size: clamp(0.55rem, 1.5vw, 0.68rem); }
    .tier-addon-name { font-size: clamp(0.5rem, 1.4vw, 0.62rem); }
    .tier-addon-price { font-size: clamp(0.55rem, 1.5vw, 0.68rem); margin-bottom: clamp(0.15rem, 0.5vw, 0.25rem); }
    .tier-addon-qty { gap: clamp(0.2rem, 0.7vw, 0.3rem); }
    .tier-addon-qty .aqty-btn {
        width: clamp(24px, 6.5vw, 30px);
        height: clamp(24px, 6.5vw, 30px);
        font-size: clamp(0.65rem, 1.8vw, 0.82rem);
        border-radius: clamp(5px, 1.5vw, 7px);
    }
    .tier-addon-qty .aqty-val { font-size: clamp(0.6rem, 1.6vw, 0.72rem); min-width: clamp(14px, 4vw, 18px); }

    /* ── Review & Payment Step (checkout style) ── */
    .rv-summary { gap: clamp(0.35rem, 1.2vw, 0.55rem); }
    .rv-section { padding: clamp(0.55rem, 1.8vw, 0.75rem); border-radius: clamp(10px, 2.8vw, 14px); box-sizing: border-box; width: 100%; }
    .rv-section-title { font-size: clamp(0.68rem, 1.8vw, 0.78rem); margin-bottom: clamp(0.3rem, 1vw, 0.45rem); font-weight: 700; }
    .rv-chips { grid-template-columns: 1fr 1fr; gap: clamp(0.2rem, 0.7vw, 0.3rem); }
    .rv-chip { padding: clamp(0.3rem, 1vw, 0.4rem) clamp(0.35rem, 1.1vw, 0.5rem); gap: clamp(0.2rem, 0.8vw, 0.35rem); border-radius: clamp(8px, 2vw, 10px); box-sizing: border-box; min-width: 0; }
    .rv-chip-icon { width: clamp(20px, 5.5vw, 26px); height: clamp(20px, 5.5vw, 26px); border-radius: clamp(6px, 1.6vw, 8px); font-size: clamp(0.55rem, 1.5vw, 0.7rem); flex-shrink: 0; }
    .rv-chip-label { font-size: clamp(0.45rem, 1.3vw, 0.55rem); }
    .rv-chip-val { font-size: clamp(0.55rem, 1.5vw, 0.68rem); font-weight: 500; word-break: break-word; }
    .rv-bill-row { padding: clamp(0.25rem, 0.8vw, 0.35rem) 0; font-size: clamp(0.65rem, 1.7vw, 0.75rem); }
    .rv-bill-row .rv-bill-label { min-width: 0; word-break: break-word; }
    .rv-bill-row .rv-bill-label i { font-size: clamp(0.48rem, 1.3vw, 0.6rem); margin-right: clamp(0.15rem, 0.5vw, 0.25rem); }
    .rv-bill-val { font-size: clamp(0.65rem, 1.7vw, 0.75rem); flex-shrink: 0; }
    .rv-bill-total { font-size: clamp(0.75rem, 2vw, 0.85rem); }
    .rv-bill-total .rv-bill-val { font-size: clamp(0.78rem, 2.1vw, 0.9rem); font-weight: 800; }
    .bill-pill { font-size: clamp(0.45rem, 1.3vw, 0.55rem); padding: clamp(0.03rem, 0.1vw, 0.05rem) clamp(0.18rem, 0.6vw, 0.28rem); }

    .rv-coupon { padding: clamp(0.45rem, 1.5vw, 0.65rem) clamp(0.5rem, 1.6vw, 0.7rem); border-radius: clamp(10px, 2.8vw, 14px); box-sizing: border-box; width: 100%; }
    .rv-payment { padding: clamp(0.5rem, 1.6vw, 0.7rem); border-radius: clamp(10px, 2.8vw, 14px); box-sizing: border-box; width: 100%; }
    .coupon-toggle { font-size: clamp(0.65rem, 1.7vw, 0.75rem); padding: clamp(0.25rem, 0.8vw, 0.35rem) 0; }
    .coupon-input-row {
        flex-direction: column;
        gap: clamp(0.25rem, 0.8vw, 0.35rem);
    }
    .coupon-input-row .form-control {
        font-size: 16px;
        min-height: clamp(36px, 9vw, 44px);
        border-radius: clamp(8px, 2vw, 10px);
        width: 100%;
        box-sizing: border-box;
    }
    .coupon-input-row .btn { min-height: clamp(36px, 9vw, 44px); border-radius: clamp(8px, 2vw, 10px); }
    .coupon-input-group { flex-direction: column; gap: clamp(0.25rem, 0.8vw, 0.35rem); }
    .coupon-input-group .btn { width: 100%; }

    .payment-methods { gap: clamp(0.35rem, 1.2vw, 0.5rem); }
    .payment-method-btn {
        padding: clamp(0.55rem, 1.7vw, 0.75rem) clamp(0.6rem, 1.9vw, 0.85rem);
        border-radius: clamp(10px, 2.8vw, 14px);
        font-size: clamp(0.72rem, 1.9vw, 0.85rem);
        min-height: clamp(44px, 12vw, 56px);
        transition: all 0.2s ease;
    }
    .payment-method-btn:active { transform: scale(0.98); }
    .payment-method-btn .pm-icon {
        width: clamp(28px, 7.5vw, 36px);
        height: clamp(28px, 7.5vw, 36px);
        border-radius: clamp(7px, 2vw, 10px);
        font-size: clamp(0.8rem, 2.2vw, 1rem);
    }
    .payment-method-btn .pm-info small {
        font-size: clamp(0.55rem, 1.5vw, 0.68rem);
        gap: clamp(0.18rem, 0.6vw, 0.28rem);
    }
    .pm-sub-icon { font-size: clamp(0.5rem, 1.4vw, 0.62rem); padding: clamp(0.05rem, 0.2vw, 0.08rem) clamp(0.25rem, 0.8vw, 0.38rem); }

    .review-table { font-size: clamp(0.65rem, 1.7vw, 0.75rem); }
    .review-table td { padding: clamp(0.18rem, 0.6vw, 0.28rem) 0; }
    .review-coupon-section { margin-top: clamp(0.45rem, 1.5vw, 0.65rem); }

    .payment-detail-card {
        padding: clamp(0.55rem, 1.7vw, 0.75rem);
        border-radius: clamp(8px, 2.5vw, 12px);
        gap: clamp(0.45rem, 1.5vw, 0.65rem);
    }
    .payment-detail-card .pd-icon { width: clamp(26px, 7vw, 34px); height: clamp(26px, 7vw, 34px); font-size: clamp(0.75rem, 2.1vw, 0.95rem); }
    .payment-detail-card .pd-info { font-size: clamp(0.65rem, 1.8vw, 0.78rem); }

    /* ── Confirmation Step (celebration) ── */
    .confirmation-box {
        padding: clamp(1rem, 3vw, 1.5rem) clamp(0.7rem, 2vw, 1rem);
        text-align: center;
    }
    .confirmation-box .success-icon {
        width: clamp(42px, 12vw, 56px);
        height: clamp(42px, 12vw, 56px);
        margin: 0 auto clamp(0.7rem, 2vw, 1rem);
        animation: confirmPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .confirmation-box h3 { font-size: clamp(0.95rem, 2.7vw, 1.15rem); font-weight: 800; }
    .confirmation-box p { font-size: clamp(0.7rem, 1.9vw, 0.82rem); }
    @keyframes confirmPop {
        0% { transform: scale(0); opacity: 0; }
        60% { transform: scale(1.2); }
        100% { transform: scale(1); opacity: 1; }
    }

    /* ── Shimmer Loaders (responsive grids) ── */
    .shimmer-grid-4 { grid-template-columns: repeat(2, 1fr) !important; }
    .shimmer-grid-3 { grid-template-columns: repeat(2, 1fr) !important; }
    .shimmer-grid { grid-template-columns: 1fr 1fr; }

    /* ── Misc ── */
    .step-error {
        font-size: clamp(0.65rem, 1.7vw, 0.75rem);
        padding: clamp(0.35rem, 1.2vw, 0.5rem) clamp(0.55rem, 1.6vw, 0.75rem);
        border-radius: clamp(8px, 2vw, 10px);
    }
    .step-loader { padding: 2rem 0; }
    .step-loader .spinner-border { width: 2rem; height: 2rem; }

    /* Hide site footer on mobile — full-screen booking wizard */
    .main-footer { display: none !important; }
}

/* === 577px–768px: Small Tablets (hybrid mobile/tablet) === */
@media (min-width: 577px) and (max-width: 768px) {
    .booking-page { padding: 2rem 0.5rem; }
    .booking-container { max-width: 100%; padding: 0 1rem; }
    .booking-layout { grid-template-columns: 1fr; gap: 0.75rem; }
    .booking-sidebar { position: static; }
    .step-dot .step-circle { width: 34px; height: 34px; }
    .step-dot .step-circle i { font-size: 0.78rem; }
    .step-dot .step-number { width: 16px; height: 16px; font-size: 0.5rem; }
    .step-connector { min-width: 12px; max-width: 20px; }
    .cb-branch-grid { grid-template-columns: repeat(2, 1fr); }
    .tier-grid { grid-template-columns: repeat(2, 1fr); }
    .occasion-grid { grid-template-columns: repeat(3, 1fr); }
    .addon-card-grid { grid-template-columns: repeat(2, 1fr); }
    .tier-addon-grid { grid-template-columns: repeat(2, 1fr); }
    .rv-chips { grid-template-columns: 1fr 1fr; }
}

/* === 769px–1024px: Tablets / Landscape === */
@media (min-width: 769px) and (max-width: 1024px) {
    .booking-layout { grid-template-columns: 1fr 300px; gap: 1rem; }
    .booking-sidebar { position: sticky; top: 90px; }
    .booking-container { max-width: 100%; padding: 0 1.5rem; }
    .step-dot .step-circle { width: 38px; height: 38px; }
    .step-dot .step-circle i { font-size: 0.85rem; }
    .step-dot .step-number { width: 18px; height: 18px; font-size: 0.55rem; }
    .step-connector { min-width: 14px; max-width: 24px; }
    .cb-branch-grid { grid-template-columns: repeat(2, 1fr); }
    .tier-grid { grid-template-columns: repeat(3, 1fr); }
    .occasion-grid { grid-template-columns: repeat(4, 1fr); }
    .occasion-card img { height: 90px; }
    .occ-icon { height: 90px; }
    .addon-card-grid { grid-template-columns: repeat(3, 1fr); }
    .tier-addon-grid { grid-template-columns: repeat(3, 1fr); }
}

/* === Responsive sizing safeguards ===
   The booking container previously used width: 100% with horizontal padding
   in the content-box model, making it wider than the viewport on mobile. */
.booking-page,
.booking-page *,
.booking-page *::before,
.booking-page *::after {
    box-sizing: border-box;
}

.booking-container,
.booking-layout,
.booking-main,
#stepContent,
#stepBody,
.tier-grid,
.tier-card,
.tier-card-none,
.tier-highlights,
.addon-panels,
.addon-panel,
.addon-card-grid,
.addon-card,
.addon-card-body,
.addon-tabs,
.addon-tab {
    min-width: 0;
    max-width: 100%;
}

.booking-container,
.booking-layout,
.booking-main,
#stepContent,
#stepBody,
.tier-grid,
.tier-card,
.tier-card-none,
.addon-panels,
.addon-panel,
.addon-card-grid,
.addon-card,
.addon-card-body {
    width: 100%;
}

.booking-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 320px);
}

.tier-grid,
.addon-card-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
}

.tier-card,
.tier-card-none,
.addon-card {
    margin-left: 0;
    margin-right: 0;
}

.tier-card *,
.addon-card *,
.tier-highlights,
.tier-hl-item {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: normal;
}

.tier-card img,
.addon-card img,
.tier-card svg,
.addon-card svg {
    display: block;
    max-width: 100%;
    height: auto;
}

.step-card,
#stepBody {
    overflow: visible;
}

@media (max-width: 768px) {
    .booking-container {
        width: 100%;
        max-width: 100%;
    }

    .booking-layout {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
    }

    .tier-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: clamp(0.5rem, 2vw, 0.75rem);
    }

    .tier-card {
        padding: clamp(0.75rem, 3vw, 1rem);
    }

    .tier-highlights {
        padding: clamp(0.55rem, 2.5vw, 0.75rem);
    }

    .addon-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .tier-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Premium package card refresh */
#stepBody .tier-grid { align-items: stretch; gap: clamp(.9rem, 1.8vw, 1.25rem); }
#stepBody .tier-card { display: flex; flex-direction: column; min-height: 100%; padding: clamp(1.15rem, 2vw, 1.55rem); border: 1px solid rgba(124,58,237,.14); border-radius: 22px; text-align: left; background: radial-gradient(circle at 100% 0%,rgba(196,181,253,.34),transparent 34%),linear-gradient(145deg,rgba(255,255,255,.98),rgba(248,247,255,.93)); box-shadow: 0 10px 28px rgba(76,29,149,.08),inset 0 1px 0 rgba(255,255,255,.96); transition: transform .22s ease,box-shadow .22s ease,border-color .22s ease; }
#stepBody .tier-card::before { padding: 1px; border-radius: inherit; opacity: 1; background: linear-gradient(135deg,rgba(139,92,246,.45),rgba(255,255,255,.15) 45%,rgba(236,72,153,.25)); }
#stepBody .tier-card:hover { transform: translateY(-5px); border-color: rgba(124,58,237,.38); box-shadow: 0 20px 42px rgba(76,29,149,.16),inset 0 1px 0 rgba(255,255,255,.98); }
#stepBody .tier-card.selected { transform: translateY(-4px); border-color: rgba(124,58,237,.76); box-shadow: 0 0 0 3px rgba(124,58,237,.12),0 20px 42px rgba(76,29,149,.2); }
#stepBody .tier-card-silver { background: radial-gradient(circle at 100% 0%,rgba(203,213,225,.72),transparent 36%),linear-gradient(145deg,#fff,#f1f5f9); border-color: rgba(100,116,139,.2); }
#stepBody .tier-card-gold,#stepBody .tier-card.tier-popular { background: radial-gradient(circle at 100% 0%,rgba(251,191,36,.3),transparent 38%),linear-gradient(145deg,#fffdf6,#fff7df); border-color: rgba(217,119,6,.3); }
#stepBody .tier-card-platinum { color: #f8fafc; background: radial-gradient(circle at 100% 0%,rgba(196,181,253,.38),transparent 36%),linear-gradient(145deg,#24104f,#4c1d95 56%,#6d28d9); border-color: rgba(221,214,254,.42); box-shadow: 0 12px 30px rgba(46,16,101,.28),inset 0 1px 0 rgba(255,255,255,.16); }
#stepBody .tier-icon-wrap { width: 48px; height: 48px; margin: 0 0 1rem; border-radius: 15px; font-size: 1.15rem; box-shadow: 0 8px 18px rgba(109,40,217,.18); }
#stepBody .tier-card:hover .tier-icon-wrap { transform: translateY(-2px) rotate(-3deg); }
#stepBody .tier-badge { width: fit-content; max-width: calc(100% - 2rem); margin: 0 0 .7rem; padding: .32rem .62rem; border: 1px solid rgba(124,58,237,.13); border-radius: 999px; font-size: .6rem; line-height: 1.2; letter-spacing: .08em; background: rgba(124,58,237,.07); color: #6d28d9; }
#stepBody .tier-name { margin-bottom: .3rem; font-size: clamp(1.1rem,1.65vw,1.35rem); font-weight: 800; letter-spacing: -.035em; }
#stepBody .tier-price { margin: 0 0 .5rem; font-size: clamp(1.8rem,2.8vw,2.25rem); letter-spacing: -.06em; color: #30116e; }
#stepBody .tier-price-symbol { font-size: .54em; color: #7c3aed; }
#stepBody .tier-tagline { justify-content: flex-start; min-height: 0; margin-bottom: 1rem; font-size: .76rem; font-style: normal; color: #64748b; }
#stepBody .tier-highlights { flex: 1; gap: .42rem; margin-bottom: 1rem; padding: .82rem; border: 1px solid rgba(124,58,237,.09); border-radius: 14px; background: rgba(255,255,255,.6); backdrop-filter: blur(12px); }
#stepBody .tier-hl-item { font-size: .69rem; gap: .46rem; color: #475569; }
#stepBody .tier-hl-item i { color: #7c3aed; }
#stepBody .tier-select-label { width: 100%; margin-top: auto; padding: .7rem .9rem; border: 1px solid rgba(124,58,237,.2); border-radius: 12px; font-size: .66rem; color: #6d28d9; text-align: center; background: rgba(124,58,237,.06); }
#stepBody .tier-card:hover .tier-select-label { transform: none; background: linear-gradient(135deg,#7c3aed,#a855f7); border-color: transparent; color: #fff; box-shadow: 0 8px 16px rgba(124,58,237,.22); }
#stepBody .tier-card.selected .tier-select-label { background: linear-gradient(135deg,#059669,#10b981)!important; border-color: transparent!important; color: #fff!important; }
#stepBody .tier-popular-ribbon { top: 14px; left: auto; right: 14px; transform: none; padding: .35rem .62rem; font-size: .55rem; letter-spacing: .08em; border: 1px solid rgba(255,255,255,.4); box-shadow: 0 6px 16px rgba(217,119,6,.24); }
#stepBody .tier-card-platinum .tier-name,#stepBody .tier-card-platinum .tier-price { color: #fff; }
#stepBody .tier-card-platinum .tier-price-symbol,#stepBody .tier-card-platinum .tier-tagline { color: #ddd6fe; }
#stepBody .tier-card-platinum .tier-badge,#stepBody .tier-card-platinum .tier-highlights { background: rgba(255,255,255,.11); border-color: rgba(255,255,255,.16); color: #f5f3ff; }
#stepBody .tier-card-platinum .tier-hl-item { color: #ede9fe; }
#stepBody .tier-card-platinum .tier-hl-item i { color: #c4b5fd; }
#stepBody .tier-card-platinum .tier-select-label { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.24); color: #fff; }
#stepBody .tier-card-none { min-height: 150px; border: 1px dashed rgba(124,58,237,.3); border-radius: 22px; background: linear-gradient(145deg,#fcfbff,#f7f5ff)!important; box-shadow: none; }
@media (max-width:576px) { #stepBody .tier-grid { gap:.85rem; } #stepBody .tier-card { padding:1rem; border-radius:18px; } #stepBody .tier-icon-wrap { width:43px; height:43px; margin-bottom:.75rem; } #stepBody .tier-name { font-size:1.08rem; } #stepBody .tier-price { font-size:1.75rem; } #stepBody .tier-tagline { font-size:.72rem; margin-bottom:.8rem; } #stepBody .tier-highlights { padding:.7rem; } #stepBody .tier-hl-item { font-size:.66rem; } #stepBody .tier-popular-ribbon { top:11px; right:11px; font-size:.48rem; } }
