/**
 * Venue Ticketing - V2 Stepper Styles
 * Premium booking stepper with Lotus Tower branding
 * 
 * @package VenueTicketing
 * @since 2.0.0
 */

/* ===== CUSTOM FONTS ===== */
@font-face {
    font-family: 'Esphimere';
    src: url('https://media-route-dphxh9awe6fmd2gu.a01.azurefd.net/fonts/Esphimere.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GillSans';
    src: url('https://media-route-dphxh9awe6fmd2gu.a01.azurefd.net/fonts/GillSans.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ===== CSS VARIABLES ===== */
* {
    -webkit-tap-highlight-color: transparent;
}

:root {
    --vt-white: #FBFBFB;
    --vt-black: #2F2F2F;
    --vt-purple: #8C4D9C;
    --vt-pink: #D766A5;
    --vt-bg-light: #EDD9ED;
    --vt-bg-main: #E8D4EA;
    --vt-sidebar-bg: linear-gradient(180deg, #E8D4EA 0%, #DEC8E0 100%);
    --vt-card-bg: #FFFFFF;
    --vt-input-bg: #FFFFFF;
    --vt-border-light: rgba(140, 77, 156, 0.15);
    --vt-shadow: 0 2px 10px rgba(140, 77, 156, 0.1);
    --vt-font-display: 'Esphimere', Georgia, serif;
    --vt-font-body: 'GillSans', 'Gill Sans MT', Calibri, sans-serif;
    --vt-radius: 8px;
    --vt-radius-sm: 6px;
    --vt-transition: all 0.25s ease;
}

/* ===== GLOBAL SCROLLBAR STYLING ===== */
/* WebKit browsers (Chrome, Safari, Edge) */
#vt-stepper-v2 *::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

#vt-stepper-v2 *::-webkit-scrollbar-track {
    background: rgba(140, 77, 156, 0.08);
    border-radius: 10px;
}

#vt-stepper-v2 *::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--vt-purple) 0%, var(--vt-pink) 100%);
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

#vt-stepper-v2 *::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #7a3f8a 0%, #c55593 100%);
}

#vt-stepper-v2 *::-webkit-scrollbar-thumb:active {
    background: linear-gradient(180deg, #6a2f7a 0%, #b34583 100%);
}

/* Firefox */
#vt-stepper-v2 * {
    scrollbar-width: thin;
    scrollbar-color: var(--vt-purple) rgba(140, 77, 156, 0.08);
}

/* ===== MAIN CONTAINER ===== */
.vt-stepper-container {
    display: flex;
    min-height: 600px;
    max-width: 1100px;
    margin: 0 auto;
    background: var(--vt-bg-main);
    font-family: var(--vt-font-body);
    color: var(--vt-black);
    line-height: 1.5;
    border-radius: var(--vt-radius);
    overflow: hidden;
    transition: min-height 0.3s ease-out;
    /* Smooth height changes */
}

/* ===== SIDEBAR ===== */
.vt-sidebar {
    width: 180px;
    background: #D766A5;
    padding: 25px 0;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    border-right: 1px solid rgba(140, 77, 156, 0.1);
}

.vt-logo {
    text-align: center;
    padding: 0 15px 25px;
    margin-bottom: 15px;
}

.vt-logo img {
    max-width: 100%;
    height: auto;
    max-height: 100px;
    filter: brightness(0) invert(1);
}

/* ===== STEP NAVIGATION ===== */
.vt-step-nav {
    list-style: none;
    padding: 0 12px;
    margin: 0;
}

/* Hide carousel on desktop */
.vt-step-nav-carousel {
    display: none;
}

.vt-step-nav-item {
    margin-bottom: 10px;
}

.vt-step-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 12px 14px;
    color: #000000;
    text-decoration: none;
    font-family: var(--vt-font-display);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 16px;
    border-radius: var(--vt-radius-sm);
    transition: var(--vt-transition);
    cursor: pointer;
    background: #FBFBFB;
    border: 1px solid transparent;
}

.vt-step-label {
    flex: 1;
}

.vt-step-status {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--vt-white);
    border: 1px solid rgba(140, 77, 156, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vt-purple);
    box-shadow: 0 2px 6px rgba(47, 47, 47, 0.15);
    opacity: 0;
    transform: scale(0.8);
    transition: var(--vt-transition);
}

.vt-step-status svg {
    width: 12px;
    height: 12px;
}

.vt-step-nav-link:hover {
    background: var(--vt-purple) !important;
    color: var(--vt-white) !important;
    border-color: var(--vt-purple) !important;
}

.vt-step-nav-item.active .vt-step-nav-link {
    background: #8C4D9C;
    color: #FBFBFB;
    border-color: #8C4D9C;
}

.vt-step-nav-item.completed .vt-step-nav-link {
    background: #FBFBFB;
    color: #000000;
}

.vt-step-nav-item.completed .vt-step-status {
    opacity: 1;
    transform: scale(1);
}

/* ===== MAIN CONTENT ===== */
.vt-main-content {
    flex: 1;
    padding: 30px 40px;
    overflow-y: auto;
    background: var(--vt-bg-main);
}

/* ===== STEP HEADER ===== */
.vt-step-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 8px;
}

.vt-step-number {
    width: 32px;
    height: 32px;
    background: var(--vt-purple);
    color: var(--vt-white);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.vt-step-title {
    font-family: var(--vt-font-body);
    font-size: 24px;
    font-weight: 500;
    color: var(--vt-purple);
    margin: 0;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: capitalize;
}

.vt-step-subtitle {
    font-family: var(--vt-font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--vt-black);
    margin-bottom: 25px;
    opacity: 0.7;
    border-bottom: 1px solid var(--vt-border-light);
    padding-bottom: 20px;
    line-height: 18px;
    letter-spacing: -0.01em;
}

/* ===== CONTENT CARDS ===== */
.vt-content-card {
    background: var(--vt-card-bg);
    border-radius: var(--vt-radius);
    padding: 25px;
    box-shadow: var(--vt-shadow);
}

/* ===== STEP CONTENT ===== */
.vt-step-content {
    display: none;
    position: relative;
    min-height: 500px;
    /* Consistent baseline height */
    flex-direction: column;
}

.vt-step-content.active {
    display: flex;
    /* Flexbox for CTA positioning */
    animation: vt-step-fade-in 0.25s ease-out;
}

/* Smooth fade-in animation for step transitions */
@keyframes vt-step-fade-in {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Step content inner area (grows to fill space) */
.vt-step-inner,
.vt-content-card {
    flex: 1;
}

/* CTA wrapper at bottom of step (pushed down by flex) */
.vt-step-footer,
.vt-step-actions,
.vt-btn-wrapper {
    margin-top: auto;
    padding-top: 20px;
}

/* ===== GUEST COUNTER ===== */
.vt-guest-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid var(--vt-border-light);
}

.vt-guest-row:last-of-type {
    border-bottom: none;
}

.vt-guest-label {
    font-size: 15px;
    font-weight: 500;
    color: var(--vt-black);
}

.vt-counter-controls {
    display: flex;
    align-items: center;
    gap: 0;
}

.vt-counter-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--vt-purple);
    color: var(--vt-white);
    font-size: 22px;
    font-weight: 300;
    cursor: pointer;
    transition: var(--vt-transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vt-counter-btn:first-child {
    border-radius: var(--vt-radius-sm) 0 0 var(--vt-radius-sm);
}

.vt-counter-btn:last-child {
    border-radius: 0 var(--vt-radius-sm) var(--vt-radius-sm) 0;
}

.vt-counter-btn:active {
    background: var(--vt-purple);
    transform: scale(0.95);
}

@media (hover: hover) {
    .vt-counter-btn:hover {
        background: var(--vt-pink);
    }
}

.vt-counter-value {
    width: 70px;
    height: 40px;
    background: var(--vt-white);
    border-top: 2px solid var(--vt-purple);
    border-bottom: 2px solid var(--vt-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--vt-purple);
}

.vt-guest-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 15px;
    background: rgba(140, 77, 156, 0.06);
    border-radius: var(--vt-radius-sm);
    margin-top: 18px;
}

.vt-guest-note-icon {
    width: 18px;
    height: 18px;
    background: var(--vt-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vt-white);
    font-size: 11px;
    flex-shrink: 0;
    margin-top: 2px;
}

.vt-guest-note-text {
    font-family: var(--vt-font-body);
    font-size: 12px;
    font-weight: 400;
    color: var(--vt-purple);
    line-height: 14px;
    letter-spacing: -0.01em;
}

.vt-guest-note-text a {
    color: var(--vt-pink);
    text-decoration: underline;
}

.vt-id-notice {
    margin-top: 18px;
    padding: 14px 16px;
    background: rgba(215, 102, 165, 0.08);
    border-left: 3px solid var(--vt-pink);
    border-radius: 0 var(--vt-radius-sm) var(--vt-radius-sm) 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.vt-id-notice-icon {
    display: flex;
    width: 16px;
    height: 16px;
    background: var(--vt-pink);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--vt-white);
    font-size: 10px;
    flex-shrink: 0;
    margin-top: 2px;
}

.vt-id-notice-text {
    font-family: var(--vt-font-body);
    font-size: 12px;
    font-weight: 400;
    color: var(--vt-black);
    opacity: 0.85;
    line-height: 14px;
    letter-spacing: -0.01em;
}

/* ===== EXPERIENCE CARDS ===== */
.vt-experience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Removed fixed grid-template-rows - let grid auto-flow handle rows */
    gap: 15px;
    margin-bottom: 15px;
    max-height: 450px;
    /* Limit height on desktop for many venues */
    overflow-y: auto;
    /* Scroll if overflow */
}

/* Scrollbar styling for experience grid (matches time slots) */
.vt-experience-grid::-webkit-scrollbar {
    width: 6px;
}

.vt-experience-grid::-webkit-scrollbar-track {
    background: rgba(140, 77, 156, 0.1);
    border-radius: 3px;
}

.vt-experience-grid::-webkit-scrollbar-thumb {
    background: var(--vt-purple);
    border-radius: 3px;
}

.vt-experience-card {
    position: relative;
    min-height: 180px;
    border-radius: var(--vt-radius);
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    border: 3px solid transparent;
    display: flex;
    flex-direction: column;
}

/* Subtle hover - no translateY animation */
.vt-experience-card:hover {
    box-shadow: 0 4px 16px rgba(140, 77, 156, 0.15);
}

.vt-experience-card.selected {
    border-color: #F380B1;
}

/* Single venues come first, combos come after */
.vt-experience-card {
    order: 1;
    /* Singles appear first */
}

/* Combo cards: no longer larger; behave like single cards */
.vt-experience-card.combo {
    grid-column: span 1;
    min-height: 160px;
    order: 1;
}



.vt-experience-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dynamic overlay with CSS variable for color */
.vt-experience-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    padding-top: 40px;
    /* Extra padding for gradient fade-in effect */
    background: linear-gradient(to top,
            var(--overlay-color, rgba(0, 0, 0, 0.75)) 0%,
            color-mix(in srgb, var(--overlay-color, #000000) 60%, transparent) 50%,
            transparent 100%);
    color: var(--vt-white);
}

.vt-experience-name {
    font-family: var(--vt-font-display);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vt-experience-desc {
    font-family: var(--vt-font-body);
    font-size: 12px;
    font-weight: 400;
    line-height: 14px;
    letter-spacing: -0.01em;
    opacity: 0.85;
}

.vt-experience-check {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    background: #F380B1;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--vt-white);
}

.vt-experience-card.selected .vt-experience-check {
    display: flex;
}



/* ===== CALENDAR ===== */
.vt-calendar-container {
    padding: 0;
    margin-bottom: 20px;
}

.vt-calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 0 5px;
}

.vt-calendar-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--vt-black);
    display: flex;
    gap: 6px;
}

.vt-calendar-nav {
    width: 32px;
    height: 32px;
    background: var(--vt-white);
    border: none;
    border-radius: var(--vt-radius);
    color: var(--vt-purple);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.1s ease-out;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

@media (hover: hover) {
    .vt-calendar-nav:hover:not(:disabled) {
        background: var(--vt-purple);
        color: var(--vt-white);
    }
}

.vt-calendar-nav:active:not(:disabled),
.vt-calendar-nav:focus {
    transform: scale(0.95);
    background: var(--vt-purple) !important;
    color: var(--vt-white) !important;
    outline: none;
    border-color: transparent;
}

.vt-calendar-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.5);
}

.vt-calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin-bottom: 10px;
    text-align: center;
}

.vt-calendar-weekday {
    font-size: 11px;
    font-weight: 600;
    color: rgba(47, 47, 47, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 0;
}

.vt-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.vt-calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.1s ease-out;
    color: var(--vt-black);
    position: relative;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

@media (hover: hover) {

    /* Exclude .selected to prevent hover color from overriding selection color */
    .vt-calendar-day:hover:not(.disabled):not(.other-month):not(.selected) {
        background: rgba(140, 77, 156, 0.08);
        color: var(--vt-purple);
    }
}

.vt-calendar-day:active:not(.disabled):not(.other-month) {
    transform: scale(0.95);
}

/* Increased specificity to prevent hover/active fights */
/* Increased specificity to prevent hover/active fights - STRICT ENFORCEMENT */
.vt-calendar-grid .vt-calendar-day.selected {
    background: var(--vt-purple) !important;
    color: var(--vt-white) !important;
    font-weight: 600;
}

.vt-calendar-grid .vt-calendar-day.today {
    color: var(--vt-purple);
    font-weight: 700;
    border: 1px solid rgba(140, 77, 156, 0.3);
}

.vt-calendar-grid .vt-calendar-day.today.selected {
    border-color: var(--vt-purple);
    background: var(--vt-purple);
    color: var(--vt-white);
}

.vt-calendar-day.disabled {
    color: rgba(47, 47, 47, 0.25);
    cursor: not-allowed;
    background: transparent;
    pointer-events: none;
}

.vt-calendar-day.other-month {
    color: rgba(47, 47, 47, 0.15);
    cursor: default;
}

/* ===== TIME SLOTS ===== */
.vt-time-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.vt-time-slot {
    padding: 14px 8px;
    background: var(--vt-white);
    border: 1px solid var(--vt-border-light);
    border-radius: var(--vt-radius-sm);
    text-align: center;
    cursor: pointer;
    transition: var(--vt-transition);
    font-size: 13px;
    font-weight: 500;
}

/* FIX: Prevent hover fighting by excluding selected items from hover styles */
.vt-time-slot:hover:not(.sold-out):not(.selected) {
    border-color: var(--vt-purple);
    background: rgba(140, 77, 156, 0.04);
}

/* FIX: Ensure selected state overrides everything else */
.vt-time-slot.selected {
    background: var(--vt-purple) !important;
    border-color: var(--vt-purple) !important;
    color: var(--vt-white) !important;
}

.vt-time-slot.sold-out {
    background: repeating-linear-gradient(45deg,
            var(--vt-white),
            var(--vt-white) 4px,
            rgba(140, 77, 156, 0.08) 4px,
            rgba(140, 77, 156, 0.08) 8px);
    color: rgba(47, 47, 47, 0.35);
    cursor: not-allowed;
    border-color: transparent;
}

.vt-time-legend {
    display: flex;
    gap: 30px;
    margin-top: 18px;
    padding-top: 15px;
    border-top: 1px solid var(--vt-border-light);
}

.vt-legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--vt-purple);
    opacity: 1;
    line-height: 1.4;
}

.vt-legend-box {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: 2px solid var(--vt-purple);
    flex-shrink: 0;
}

.vt-legend-box.available {
    background: var(--vt-white);
}

.vt-legend-box.sold-out {
    background: repeating-linear-gradient(45deg,
            var(--vt-white),
            var(--vt-white) 3px,
            rgba(140, 77, 156, 0.25) 3px,
            rgba(140, 77, 156, 0.25) 6px);
}

/* ===== CONTACT FORM ===== */
.vt-form-required {
    font-size: 11px;
    color: var(--vt-pink);
    margin-bottom: 18px;
}

.vt-title-selector {
    display: flex;
    gap: 22px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}

.vt-title-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.vt-title-radio {
    width: 20px;
    height: 20px;
    border: 2px solid var(--vt-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--vt-transition);
    flex-shrink: 0;
}

.vt-title-radio::after {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--vt-purple);
    border-radius: 50%;
    opacity: 0;
    transition: var(--vt-transition);
}

.vt-title-option.selected .vt-title-radio::after {
    opacity: 1;
}

.vt-title-label {
    font-family: var(--vt-font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.32px;
    color: var(--vt-purple);
}

.vt-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.vt-form-group {
    position: relative;
}

.vt-form-group.full-width {
    grid-column: span 2;
}

.vt-form-input {
    width: 100%;
    padding: 16px;
    border: 1px solid var(--vt-border-light);
    border-radius: var(--vt-radius-sm);
    font-family: var(--vt-font-body);
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.24px;
    background: var(--vt-input-bg);
    color: var(--vt-purple);
    transition: var(--vt-transition);
}

.vt-form-input::placeholder {
    color: rgba(98, 99, 108, 0.60);
    font-family: var(--vt-font-body);
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.24px;
    opacity: 1;
}

.vt-form-input:focus {
    outline: none;
    border-color: var(--vt-purple);
    box-shadow: 0 0 0 3px rgba(140, 77, 156, 0.08);
}

.vt-input-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: var(--vt-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vt-white);
    font-size: 10px;
    cursor: help;
}

.vt-form-notice {
    font-family: var(--vt-font-body);
    font-size: 12px;
    font-weight: 400;
    color: var(--vt-purple);
    opacity: 0.75;
    margin: 20px 0;
    line-height: 14px;
    letter-spacing: -0.01em;
}

.vt-field-error {
    display: none;
    margin-top: 6px;
    font-size: 12px;
    color: #d32f2f;
    line-height: 1.3;
}

.vt-field-error.show {
    display: block;
}

.vt-form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    cursor: pointer;
}

.vt-checkbox {
    width: 18px;
    height: 18px;
    border: 2px solid var(--vt-purple);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--vt-transition);
    margin-top: 1px;
}

.vt-checkbox.checked {
    background: var(--vt-purple);
}

.vt-checkbox-label {
    font-family: var(--vt-font-body);
    font-size: 12px;
    font-weight: 400;
    color: var(--vt-black);
    opacity: 0.75;
    line-height: 14px;
    letter-spacing: -0.01em;
}

.vt-checkbox-label a {
    color: var(--vt-pink);
    text-decoration: underline;
}

/* ===== SKELETON LOADING ===== */
.vt-sk-summary-customer {
    height: 60px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.vt-sk-summary-row {
    height: 40px;
    border-radius: 6px;
    margin-bottom: 10px;
}

.vt-sk-summary-ticket {
    height: 50px;
    border-radius: 6px;
    margin: 20px 0;
}

.vt-sk-summary-total {
    height: 30px;
    width: 150px;
    border-radius: 6px;
    margin-left: auto;
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

.shimmer {
    background: linear-gradient(90deg,
            rgba(140, 77, 156, 0.05) 0%,
            rgba(140, 77, 156, 0.15) 50%,
            rgba(140, 77, 156, 0.05) 100%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* ===== SUMMARY ===== */
.vt-summary-customer {
    background: rgba(140, 77, 156, 0.08);
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.vt-summary-name {
    font-family: var(--vt-font-body);
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -0.32px;
    color: var(--vt-purple);
    margin-bottom: 6px;
}

.vt-summary-email {
    font-family: var(--vt-font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: -0.28px;
    color: var(--vt-purple);
    opacity: 0.8;
}

.vt-summary-customer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.vt-summary-customer-divider {
    height: 1px;
    background: rgba(140, 77, 156, 0.15);
    margin: 12px 0;
}

.vt-summary-details {
    background: rgba(140, 77, 156, 0.05);
    padding: 16px;
    border-radius: 6px;
    margin-top: 20px;
}

.vt-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(140, 77, 156, 0.1);
}

.vt-summary-row:last-child {
    border-bottom: none;
}

.vt-summary-label {
    font-family: var(--vt-font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.32px;
    color: var(--vt-purple);
}

.vt-summary-value {
    font-family: var(--vt-font-body);
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -0.32px;
    color: var(--vt-purple);
    flex: 1;
    margin-left: 10px;
}

.vt-summary-edit {
    width: 22px;
    height: 22px;
    background: transparent;
    border: 1px solid var(--vt-purple);
    border-radius: 4px;
    color: var(--vt-purple);
    cursor: pointer;
    transition: var(--vt-transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vt-summary-edit:hover {
    background: var(--vt-purple);
    color: var(--vt-white);
}

.vt-summary-edit .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    color: var(--vt-purple);
}

.vt-summary-edit:hover .dashicons {
    color: var(--vt-white);
}

.vt-summary-ticket {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(140, 77, 156, 0.05);
    padding: 16px;
    border-radius: 6px;
    margin-top: 20px;
}

.vt-summary-ticket-info {
    flex: 1;
}

.vt-summary-ticket-name {
    font-family: var(--vt-font-body);
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -0.32px;
    color: var(--vt-purple);
}

.vt-summary-ticket-link {
    font-size: 12px;
    color: var(--vt-pink);
    text-decoration: underline;
    cursor: pointer;
}

.vt-ticket-breakdown {
    background: rgba(140, 77, 156, 0.05);
    padding: 16px;
    border-radius: 6px;
    margin-top: 12px;
}

.vt-breakdown-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
}

.vt-breakdown-row:not(:last-child) {
    border-bottom: 1px solid rgba(140, 77, 156, 0.1);
}

.vt-breakdown-label {
    font-family: var(--vt-font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--vt-purple);
    white-space: nowrap;
}

.vt-breakdown-dots {
    flex: 1;
    border-bottom: 1px dashed rgba(140, 77, 156, 0.3);
    height: 1px;
    margin: 0 8px;
}

.vt-breakdown-price {
    font-family: var(--vt-font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--vt-purple);
    white-space: nowrap;
}

.vt-summary-total {
    text-align: right;
    padding-top: 18px;
}

.vt-summary-total-value {
    font-family: var(--vt-font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--vt-purple);
}

/* ===== NAVIGATION BUTTONS ===== */
.vt-nav-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 45px;
}

.vt-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border: none;
    border-radius: var(--vt-radius-sm);
    font-family: var(--vt-font-display);
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 20px;
    cursor: pointer;
    transition: var(--vt-transition);
}

.vt-btn-primary {
    background: var(--vt-purple);
    color: var(--vt-white);
}

.vt-btn-primary:active {
    background: var(--vt-purple);
    transform: scale(0.98);
}

@media (hover: hover) {
    .vt-btn-primary:hover {
        background: var(--vt-pink);
        box-shadow: 0 4px 12px rgba(215, 102, 165, 0.35);
    }
}



.vt-btn-arrow {
    font-size: 16px;
    line-height: 1;
}

/* ===== DATE PICKER ===== */
.vt-date-picker {
    text-align: center;
    padding: 30px 20px;
}

.vt-date-label {
    display: block;
    font-family: var(--vt-font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--vt-purple);
    margin-bottom: 15px;
}

.vt-date-input {
    width: 100%;
    max-width: 300px;
    padding: 15px 20px;
    font-size: 18px;
    font-family: var(--vt-font-body);
    border: 2px solid var(--vt-purple);
    border-radius: var(--vt-radius-md);
    background: var(--vt-white);
    color: var(--vt-black);
    cursor: pointer;
    transition: var(--vt-transition);
}

.vt-date-input:focus {
    border-color: var(--vt-purple);
    outline: none;
    box-shadow: 0 0 0 3px rgba(140, 77, 156, 0.15);
}

@media (hover: hover) {
    .vt-date-input:hover {
        border-color: var(--vt-pink);
    }
}

.vt-date-input::-webkit-calendar-picker-indicator {
    cursor: pointer;
    filter: invert(32%) sepia(45%) saturate(1000%) hue-rotate(260deg) brightness(85%);
}

.vt-date-help {
    margin-top: 12px;
    font-family: var(--vt-font-body);
    font-size: 12px;
    font-weight: 400;
    color: rgba(47, 47, 47, 0.6);
    line-height: 14px;
    letter-spacing: -0.01em;
}



/* ===== LOADING ===== */


/* ===== TABLET AND MOBILE STYLES ===== */
/* Show mobile stacked layout on tablets and phones */
@media (max-width: 1200px) {
    .vt-stepper-container {
        flex-direction: column;
    }

    .vt-sidebar {
        width: 100%;
        padding: 15px 20px;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        border-right: none;
        border-bottom: 1px solid rgba(140, 77, 156, 0.1);
    }

    .vt-logo {
        padding: 0;
        margin: 0;
        flex-shrink: 0;
        width: 100%;
        text-align: center;
    }

    .vt-logo img {
        max-height: 80px;
    }

    .vt-step-nav {
        display: none;
    }

    /* Mobile Navigation Carousel */
    .vt-step-nav-carousel {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 8px;
    }

    .vt-nav-controls {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 15px;
    }

    .vt-nav-arrow {
        width: 40px;
        height: 40px;
        background: var(--vt-white);
        border: none;
        border-radius: var(--vt-radius);
        color: var(--vt-purple);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: opacity 0.2s, background 0.2s;
        padding: 0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        -webkit-tap-highlight-color: transparent;
    }

    /* Mobile: Show only two skeleton experience cards and add space between them */
    .vt-experience-grid-skeleton {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .vt-experience-grid-skeleton .vt-skeleton-card:nth-child(n+3) {
        display: none;
    }

    /* Interactive States - ensuring NO red hover/active colors */
    @media (hover: hover) {
        .vt-nav-arrow:hover:not(:disabled) {
            background: var(--vt-white);
            color: var(--vt-purple);
            box-shadow: 0 4px 12px rgba(140, 77, 156, 0.2);
            transform: translateY(-1px);
        }
    }

    .vt-nav-arrow:active:not(:disabled),
    .vt-nav-arrow:focus {
        background: var(--vt-white) !important;
        color: var(--vt-purple) !important;
        transform: scale(0.95);
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
        outline: none;
        border-color: transparent;
        -webkit-tap-highlight-color: transparent;
    }

    .vt-nav-arrow:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        box-shadow: none;
    }

    .vt-nav-arrow svg {
        width: 24px;
        height: 24px;
    }

    .vt-nav-display {
        flex: 1;
        position: relative;
        height: 28px;
        overflow: hidden;
        text-align: center;
        max-width: 240px;
        /* Limit width */
    }

    .vt-nav-step-name {
        position: absolute;
        width: 100%;
        left: 0;
        top: 0;
        font-family: var(--vt-font-display);
        font-size: 18px;
        font-weight: 600;
        color: var(--vt-white);
        opacity: 0;
        transition: opacity 0.3s, transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
        transform: translateX(100%);
        pointer-events: none;
        /* Let clicks pass through */
    }

    .vt-nav-step-name.active {
        opacity: 1;
        transform: translateX(0);
        pointer-events: auto;
    }

    .vt-nav-step-name.prev {
        transform: translateX(-100%);
    }

    .vt-nav-progress {
        font-size: 12px;
        color: var(--vt-white);
        text-align: center;
        opacity: 0.9;
    }

    .vt-current-step {
        font-weight: 600;
        color: var(--vt-white);
    }

    .vt-step-nav-item {
        margin: 0;
    }

    .vt-step-nav-link {
        padding: 8px 12px;
        font-size: 10px;
        white-space: nowrap;
    }

    .vt-main-content {
        padding: 20px;
    }

    .vt-time-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .vt-experience-grid {
        grid-template-columns: 1fr;
    }

    .vt-experience-card.combo {
        grid-column: span 1;
    }

    /* Additional Mobile Styles for Better Tablet/Mobile Experience */

    /* Counter Controls */
    .vt-counter-controls {
        --vt-counter-size: 36px;
    }

    .vt-counter-btn {
        width: 36px;
        min-width: 36px;
        font-size: 20px;
    }

    .vt-counter-input {
        width: 60px;
        min-width: 60px;
    }

    /* Guest Notes */
    .vt-guest-note {
        padding: 10px 12px;
        font-size: 11px;
    }

    .vt-id-notice {
        padding: 12px 14px;
    }

    .vt-id-notice-text {
        font-size: 10px;
    }

    /* Experience Cards */
    .vt-experience-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    /* Ensure skeleton matches the single-column mobile layout */
    .vt-experience-grid-skeleton {
        grid-template-columns: 1fr;
    }

    /* Stronger rule to guard against overrides from later CSS or external sources */
    .vt-main-content .vt-experience-grid-skeleton {
        grid-template-columns: 1fr !important;
    }

    .vt-experience-card,
    .vt-experience-card.combo {
        grid-column: span 1;
        grid-row: auto;
        min-height: 160px;
    }



    .vt-experience-name {
        font-size: 13px;
    }

    .vt-experience-desc {
        font-size: 10px;
    }

    /* Time Slots - already has grid adjustment, add more */
    .vt-time-slot {
        font-size: 11px;
        padding: 10px 6px;
    }

    /* Forms */
    .vt-form-input {
        font-size: 14px;
        padding: 12px 14px;
    }

    .vt-form-notice {
        font-size: 11px;
    }

    .vt-checkbox-label {
        font-size: 11px;
    }

    /* Summary */
    .vt-summary-name {
        font-size: 14px;
    }

    .vt-summary-email {
        font-size: 12px;
    }

    .vt-summary-label,
    .vt-summary-value {
        font-size: 12px;
    }

    .vt-summary-ticket-name {
        font-size: 13px;
    }

    .vt-summary-ticket-link {
        font-size: 11px;
    }

    .vt-summary-total-value {
        font-size: 24px;
    }

    /* Buttons */
    .vt-btn {
        padding: 10px 18px;
        font-size: 11px;
    }

    /* Date Picker */
    .vt-date-label {
        font-size: 14px;
    }

    .vt-date-input {
        font-size: 14px;
        padding: 12px 14px;
    }

    /* Legend Items */
    .vt-legend-item {
        font-size: 11px;
    }

    /* Guest Label */
    .vt-guest-label {
        font-size: 14px;
    }

    /* Title Options */
    .vt-title-label {
        font-size: 12px;
    }

    /* Hide step header and subtitle on mobile/tablet to save space */
    .vt-step-header,
    .vt-step-subtitle {
        display: none !important;
    }
}

/* ===== ERROR MESSAGES ===== */
.vt-step-error {
    display: none;
    position: absolute;
    bottom: 58px;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
    border-left: none;
    border-radius: 0;
    color: #B91C1C;
    font-size: 13px;
    line-height: normal;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vt-step-error.show {
    display: block;
    opacity: 1;
}

.vt-error {
    color: #B91C1C;
    padding: 20px;
    text-align: center;
    background: #FEE2E2;
    border-radius: var(--vt-radius-sm);
}

/* ===== LOADING STATES ===== */
.vt-loading {
    text-align: center;
    padding: 30px 20px;
    color: var(--vt-purple);
    font-size: 14px;
}

.vt-loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--vt-border-light);
    border-top-color: var(--vt-purple);
    border-radius: 50%;
    margin: 0 auto;
    animation: vt-spin 1s linear infinite;
}

@keyframes vt-spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== PLACEHOLDER IMAGES ===== */
.vt-experience-image.placeholder {
    background: linear-gradient(135deg, var(--vt-purple) 0%, var(--vt-pink) 100%);
}

/* ===== CHECKBOX SVG ===== */
.vt-checkbox.checked::after {
    content: '';
    width: 10px;
    height: 8px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* ===== ANIMATIONS & FEEDBACK ===== */
@keyframes vt-shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-5px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(5px);
    }
}

.vt-shake {
    animation: vt-shake 0.5s cubic-bezier(.36, .07, .19, .97) both;
}

.vt-step-nav-link.disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.vt-step-nav-link.disabled:hover {
    background: transparent;
    border-color: transparent;
    color: #000000;
}

/* ===== SKELETON LOADER ===== */
/* Desktop: two-column skeleton */
@media (min-width: 1201px) {
    .vt-experience-grid-skeleton {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 1fr auto;
        gap: 15px;
        margin-bottom: 15px;
    }
}

/* Shared skeleton card styling */
.vt-skeleton-card {
    background: #fff;
    border-radius: var(--vt-radius);
    padding: 15px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid var(--vt-border-light);
    position: relative;
    overflow: hidden;
}

.vt-skeleton-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    z-index: 0;
}

.vt-skeleton-text {
    height: 16px;
    background: #e0e0e0;
    border-radius: 4px;
    position: relative;
    z-index: 1;
    margin-bottom: 8px;
}

.shimmer {
    background: #f6f7f8;
    background-image: linear-gradient(to right,
            #f6f7f8 0%,
            #edeef1 20%,
            #f6f7f8 40%,
            #f6f7f8 100%);
    background-repeat: no-repeat;
    background-size: 800px 100%;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: shimmer;
    animation-timing-function: linear;
}

@keyframes shimmer {
    0% {
        background-position: -468px 0;
    }

    100% {
        background-position: 468px 0;
    }
}

/* ===== UNAVAILABLE STATE ===== */
.vt-experience-card.vt-is-sold-out {
    opacity: 0.6;
    pointer-events: none;
    filter: grayscale(1);
    position: relative;
}

.vt-experience-card.vt-is-sold-out::after {
    content: "Unavailable";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    z-index: 10;
}

/* ===== REVAMPED STEP 3 UI (Guest Selection) ===== */

/* Typography Overrides */
.vt-guest-note,
.vt-id-notice {
    font-family: "Gill Sans", "Gill Sans MT", Calibri, sans-serif !important;
    font-weight: 400;
    font-style: normal;
    letter-spacing: -0.01em;
}

/* Guest Note Logic */
.vt-guest-note {
    background: transparent !important;
    border: none !important;
    padding: 10px 0 !important;
    color: #128CA6 !important;
    font-size: 12px;
    line-height: 14px;
    display: flex;
    /* Flex alignment for icon */
    align-items: flex-start;
    gap: 8px;
    margin-top: 10px;
}

.vt-guest-note-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: #128CA6;
    color: #fff;
    border-radius: 50%;
    /* Circle Badge */
    font-size: 10px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: -1px;
    /* Optical alignment */
}

/* ID Notice Logic */
.vt-id-notice {
    background: transparent !important;
    border: none !important;
    padding: 10px 0 !important;
    color: #8C4D9C !important;
    font-size: 12px;
    line-height: 14px;
    margin-top: 10px;
    display: flex;
    /* Flex alignment for icon */
    align-items: flex-start;
    gap: 8px;
}

.vt-id-notice-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: #8C4D9C;
    color: #fff;
    border-radius: 50%;
    /* Circle Badge */
    font-size: 10px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: -1px;
    /* Optical alignment */
}

.vt-id-notice-text strong {
    font-weight: 600;
}

.vt-divider {
    border: 0;
    height: 1px;
    background: #E5E7EB;
    /* Light gray divider */
    margin: 15px 0;
    width: 100%;
}

/* Continuous Counter Controls */
.vt-counter-controls {
    --vt-counter-size: 44px;
    display: flex;
    align-items: stretch;
    gap: 0 !important;
    /* Force no gap */
    border: 1px solid #8C4D9C;
    /* Match button color for seamless look */
    border-radius: var(--vt-radius-sm);
    overflow: hidden;
    /* To clip children */
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    min-width: 150px;
    max-width: 210px;
    flex: 0 0 auto;
    height: var(--vt-counter-size);
}
.vt-counter-controls,
.vt-counter-controls * {
    box-sizing: border-box;
}

.vt-counter-btn {
    width: var(--vt-counter-size);
    min-width: var(--vt-counter-size);
    height: 100%;
    min-height: 100%;
    border: none;
    background: #8C4D9C;
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    border-radius: 0 !important;
    /* Square */
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    outline: none !important;
    line-height: 1;
    flex: 0 0 var(--vt-counter-size);
    box-sizing: border-box;
}

.vt-counter-btn:hover {
    background: #fff;
    color: #8C4D9C;
}

/* Force no active styling changes */
.vt-counter-btn:active,
.vt-counter-btn:focus {
    background: #8C4D9C !important;
    color: #fff !important;
    box-shadow: none !important;
    outline: none !important;
}

/* Exception: maintain hover state even if focused if mouse is over (handled by order, but active overrides)
   User asked primarily to remove default active states. */
.vt-counter-btn:hover:active {
    background: #fff !important;
    color: #8C4D9C !important;
}

.vt-counter-input {
    width: 72px;
    min-width: 72px;
    height: 100%;
    min-height: 100%;
    max-height: var(--vt-counter-size);
    display: block;
    border: none !important;
    /* Remove individual border */
    border-left: 1px solid #E5E7EB !important;
    border-right: 1px solid #E5E7EB !important;
    background: #fff;
    text-align: center;
    font-family: var(--vt-font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--vt-black);
    padding: 0;
    margin: 0;
    border-radius: 0 !important;
    -moz-appearance: textfield;
    appearance: textfield;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    font-feature-settings: 'tnum' 1;
    flex: 0 0 72px;
    box-sizing: border-box;
    line-height: 1;
    padding: 0;
    margin: 0;
    outline: none;
}

.vt-counter-input:focus {
    box-shadow: inset 0 0 0 2px rgba(140, 77, 156, 0.1);
}

.vt-counter-input::-webkit-inner-spin-button,
.vt-counter-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Guest Row Layout */
.vt-guest-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--vt-border-light);
}

.vt-guest-row:last-of-type {
    border-bottom: none;
}

.vt-guest-label {
    font-family: var(--vt-font-display);
    font-size: 15px;
    font-weight: 500;
    color: var(--vt-purple);
}

/* Mobile Responsiveness for Counters */
@media (max-width: 768px) {
    .vt-counter-btn {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
        flex: 0 0 40px;
        font-size: 18px;
    }

    .vt-counter-input {
        width: 56px;
        height: 40px;
        min-width: 56px;
        min-height: 40px;
        font-size: 15px;
        flex: 0 0 56px;
    }
}

/* Step 3 Skeleton */
.vt-guest-skeleton {
    display: none;
    /* Hidden by default */
    flex-direction: column;
    width: 100%;
}

.vt-guest-row-skeleton {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    /* Match .vt-guest-row padding */
    border-bottom: 1px solid var(--vt-border-light);
    /* Match row border */
}

.vt-guest-row-skeleton:last-child {
    border-bottom: none;
}

.vt-skeleton-label {
    width: 120px;
    height: 20px;
    background: #f0f0f0;
    border-radius: 4px;
}

.vt-skeleton-counter {
    width: 140px;
    /* Approx width of continuous control */
    height: 44px;
    /* Exact height of control */
    background: #f0f0f0;
    border-radius: var(--vt-radius-sm);
}

/* Step 4: Time Slot Skeleton */
/* Step 4: Time Slot Skeleton */
.vt-time-slot-skeleton-grid,
.vt-time-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 15px;
    /* High Volume UX: Scrollable Container */
    max-height: 320px;
    /* Shows approx 5 rows */
    overflow-y: auto;
    padding-right: 5px;
    /* Space for scrollbar */
}

/* Custom Scrollbar for Time Slots */
.vt-time-slot-skeleton-grid::-webkit-scrollbar,
.vt-time-grid::-webkit-scrollbar {
    width: 6px;
}

.vt-time-slot-skeleton-grid::-webkit-scrollbar-track,
.vt-time-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.vt-time-slot-skeleton-grid::-webkit-scrollbar-thumb,
.vt-time-grid::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.vt-time-slot-skeleton-grid::-webkit-scrollbar-thumb:hover,
.vt-time-grid::-webkit-scrollbar-thumb:hover {
    background: #bbb;
}

.vt-skeleton-time-slot {
    height: 44px;
    background: #f0f0f0;
    border-radius: 6px;
    width: 100%;
}

@media (max-width: 600px) {
    .vt-time-slot-skeleton-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 400px) {
    .vt-time-slot-skeleton-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Time Group Headers (Sticky) */
.vt-time-group-header {
    grid-column: 1 / -1;
    /* Span all columns */
    font-size: 12px;
    font-weight: 700;
    color: var(--vt-c-text-muted);
    background: #fff;
    /* Required for sticky to cover scrolling content */
    padding: 10px 5px 5px;
    margin-top: 5px;
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 1px solid var(--vt-border-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vt-time-group-header:first-child {
    margin-top: 0;
}

/* ===== STALE BOOKING MODAL ===== */
.vt-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    animation: vt-modal-fade-in 0.2s ease-out;
    pointer-events: auto;
    /* Active when visible */
}

/* Ensure hidden modal doesn't block touch/click events */
.vt-modal-overlay[style*="display: none"],
.vt-modal-overlay[style*="display:none"] {
    pointer-events: none !important;
}

@keyframes vt-modal-fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.vt-modal {
    background: var(--vt-white);
    border-radius: var(--vt-radius);
    padding: 30px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: vt-modal-slide-up 0.25s ease-out;
}

@keyframes vt-modal-slide-up {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.vt-modal-icon {
    font-size: 48px;
    margin-bottom: 15px;
    line-height: 1;
}

.vt-modal-title {
    color: var(--vt-purple);
    font-family: var(--vt-font-display);
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.vt-modal-message {
    color: var(--vt-black);
    font-family: var(--vt-font-body);
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.8;
    margin: 0 0 20px 0;
}

.vt-modal .vt-btn {
    width: 100%;
    justify-content: center;
}

/* ===== TOAST NOTIFICATIONS ===== */
.vt-toast-container {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.vt-toast {
    pointer-events: auto;
    background: #1f1f1f;
    color: #fff;
    border-radius: 10px;
    padding: 12px 14px;
    min-width: 220px;
    max-width: 320px;
    font-size: 13px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    animation: vt-toast-in 0.2s ease-out;
}

.vt-toast-warning {
    background: #3a2b00;
    color: #f3d07a;
    border: 1px solid rgba(243, 208, 122, 0.2);
}

.vt-toast-error {
    background: #3a0b0b;
    color: #ffb3b3;
    border: 1px solid rgba(255, 179, 179, 0.2);
}

.vt-toast-success {
    background: #0f2e1a;
    color: #b7f5c8;
    border: 1px solid rgba(183, 245, 200, 0.2);
}

.vt-toast-hide {
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

@keyframes vt-toast-in {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== TABLET & MOBILE RESPONSIVE ===== */
/* NOTE: No separate mobile breakpoint - tablet styles apply to mobile too */
@media (max-width: 1200px) {

    /* Experience grid: Single column layout */
    .vt-experience-grid {
        max-height: none;
        overflow-y: visible;
        grid-template-columns: 1fr;
    }

    .vt-experience-card.combo {
        grid-column: span 1;
    }

    /* Form: Single column layout */
    .vt-form-row {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 14px;
    }

    /* Title selector: Reduced gap */
    .vt-title-selector {
        gap: 16px;
    }
}

/* ===== SUMMARY EDIT ICONS ===== */
.vt-summary-edit {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    padding: 0;
    cursor: pointer;
    width: 24px;
    height: 24px;
}

.vt-summary-edit:hover {
    background: transparent !important;
}

.vt-summary-edit svg {
    display: block;
    width: 14px;
    height: 14px;
    color: #8C4D9C;
}
