/* Velbehag Booking Form - Redesigned to match Olio/Timma design */

:root {
    /* Background colors */
    --vtb-bg: #FAF9F8;
    --vtb-card-bg: #FFFFFF;
    --vtb-white: #FFFFFF;
    
    /* Text colors */
    --vtb-text-primary: #333333;
    --vtb-text-secondary: #666666;
    --vtb-text-muted: #999999;
    
    /* Sidebar (dark red/burgundy) */
    --vtb-sidebar-bg: #4d3523;
    --vtb-sidebar-text: #FFFFFF;
    
    /* Buttons (green/teal) */
    --vtb-button-bg: #3DB88A;
    --vtb-button-text: #FFFFFF;
    --vtb-button-hover: #2FA876;
    
    /* Accent (for selected states) */
    --vtb-accent: #4d3523;
    --vtb-accent-light: #9B6B70;
    --vtb-accent-dark: #7B4A4F;
    
    /* Borders */
    --vtb-border: #E0E0E0;
    --vtb-border-light: #F0F0F0;
    --vtb-separator: #E0E0E0;
    
    /* Checkbox */
    --vtb-checkbox-checked: #4d3523;
    
    /* Badges */
    --vtb-badge-bg: transparent;
    --vtb-badge-border: #4d3523;
    --vtb-badge-text: #4d3523;
    --vtb-bestseller-bg: #4d3523;
    --vtb-bestseller-text: #FFFFFF;
    
    /* Border radius */
    --vtb-radius-sm: 8px;
    --vtb-radius-md: 12px;
    --vtb-radius-lg: 16px;
    --vtb-radius-xl: 20px;
    --vtb-radius-pill: 50px;
    
    /* Shadows */
    --vtb-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --vtb-shadow-md: 0 2px 8px rgba(0, 0, 0, 0.1);
    
    /* Fonts */
    --vtb-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --vtb-font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Reset and base */
* {
    box-sizing: border-box;
}

/* Main wrapper - warm cream background */
body .vtb-booking-wrapper {
    background: var(--vtb-bg) !important;
    min-height: 100vh;
    padding: 40px 20px !important;
    margin-left: -9999px !important;
    margin-right: -9999px !important;
    padding-left: calc(9999px + 20px) !important;
    padding-right: calc(9999px + 20px) !important;
    font-family: var(--vtb-font-sans);
    color: var(--vtb-text-primary);
}

/* ===== LOCATION SELECTOR ===== */
.vtb-location-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40vh;
    padding: 40px 20px;
}

.vtb-location-selector-content {
    max-width: 700px;
    width: 100%;
}

.vtb-location-title {
    font-family: var(--vtb-font-family);
    font-size: 32px;
    font-weight: 400;
    color: var(--vtb-text-primary);
    margin-bottom: 16px;
}

.vtb-location-separator {
    width: 100%;
    height: 2px;
    background: var(--vtb-text-primary);
    margin-bottom: 30px;
}

.vtb-location-search {
    margin-bottom: 30px;
    display: none; /* Hidden by default, shown when many locations */
}

.vtb-search-input {
    width: 100%;
    padding: 14px 20px;
    font-size: 15px;
    border: 1px solid var(--vtb-border);
    border-radius: var(--vtb-radius-pill);
    outline: none;
    background: var(--vtb-white);
    color: var(--vtb-text-primary);
    font-family: var(--vtb-font-sans);
}

.vtb-search-input:focus {
    border-color: var(--vtb-accent);
}

.vtb-location-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start;
}

.vtb-location-pill {
    display: inline-block;
    padding: 12px 24px;
    margin: 8px;
    background: transparent !important;
    color: #4d3523 !important;
    border: 2px solid #4d3523 !important;
    border-radius: var(--vtb-radius-pill);
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--vtb-font-sans);
}

.vtb-location-pill:hover {
    background: transparent !important;
    color: #000000 !important;
    border-color: #000000 !important;
}

.vtb-location-pill.selected {
    background: transparent !important;
    color: #000000 !important;
    border-color: #000000 !important;
}

/* ===== BOOKING FORM ===== */
.vtb-booking-form {
    max-width: 1000px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

/* Steps navigation container */
.vtb-steps-navigation-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 20px 0 20px;
    margin-bottom: 20px;
}

.vtb-change-location-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: 14px;
    color: #4d3523 !important;
    background: transparent !important;
    border: 2px solid #4d3523 !important;
    border-radius: var(--vtb-radius-pill);
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--vtb-font-sans);
}

.vtb-change-location-button:hover {
    border-color: #000000 !important;
    color: #000000 !important;
}

.vtb-back-icon {
    width: 16px;
    height: 16px;
}

/* Step indicators */
.vtb-steps {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex: 1;
}

.vtb-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.vtb-step.active {
    opacity: 1;
}

.vtb-step-clickable {
    cursor: pointer;
}

.vtb-step-clickable:hover {
    opacity: 0.7;
}

.vtb-step-clickable.active:hover {
    opacity: 1;
}

.vtb-step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--vtb-border);
    color: var(--vtb-text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--vtb-font-sans);
    transition: all 0.3s ease;
}

.vtb-step.active .vtb-step-number {
    background: var(--vtb-steps-active) !important;
    color: var(--vtb-steps-text) !important;
}

.vtb-step-label {
    font-size: 14px;
    color: var(--vtb-text-primary) !important;
    font-family: var(--vtb-font-sans);
    text-align: center;
}

/* Content area */
.vtb-content {
    position: relative;
}

.vtb-step-content {
    display: none;
}

.vtb-step-content[data-step="1"] {
    display: block;
}

/* Two-column layout */
.vtb-booking-container {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
    max-width: 1000px !important;
    margin: 0 auto !important;
}

/* ===== LEFT COLUMN: SERVICES ===== */
.vtb-services-section {
    position: relative;
    max-width: 680px;
}

.vtb-services-section .vtb-section-title {
    font-family: var(--vtb-font-family);
    font-size: 28px;
    font-weight: 400;
    color: var(--vtb-text-primary);
    margin-bottom: 12px;
}

.vtb-services-section .vtb-section-separator {
    width: 100%;
    height: 2px;
    background: var(--vtb-text-primary);
    margin-bottom: 24px;
}

.vtb-loading {
    text-align: center;
    padding: 60px 20px;
    color: var(--vtb-text-muted);
    font-size: 16px;
}

/* Back button */
.vtb-back-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--vtb-text-secondary);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
    font-family: var(--vtb-font-sans);
}

.vtb-back-button:hover {
    color: var(--vtb-accent);
}

/* ===== CATEGORY LIST (Collapsible accordion) ===== */
.vtb-category-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.vtb-category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 4px;
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: 1px solid var(--vtb-separator);
}

.vtb-category-item:first-child {
    border-top: none;
}

.vtb-category-item:hover {
    opacity: 0.8;
}

.vtb-category-item.expanded {
    border-bottom-color: transparent;
}

.vtb-category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.vtb-category-name {
    font-family: var(--vtb-font-family);
    font-size: 18px;
    font-weight: 400;
    color: var(--vtb-text-primary);
    line-height: 1.3;
}

/* Category discount badge (e.g., "- 30%") */
.vtb-category-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--vtb-badge-text);
    background: var(--vtb-badge-bg);
    border: 1px solid var(--vtb-badge-border);
    border-radius: var(--vtb-radius-pill);
    white-space: nowrap;
    font-family: var(--vtb-font-sans);
}

.vtb-category-arrow {
    color: var(--vtb-text-secondary);
    font-size: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.vtb-category-item.expanded .vtb-category-arrow {
    transform: rotate(180deg);
}

/* ===== SERVICE LIST (inside expanded category) ===== */
.vtb-services-container {
    padding: 8px 0 16px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-bottom: 1px solid var(--vtb-separator);
}

.vtb-service-item {
    background: var(--vtb-card-bg);
    border: 1.5px solid var(--vtb-border-light);
    border-radius: var(--vtb-radius-md);
    padding: 16px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.vtb-service-item:hover {
    border-color: var(--vtb-border);
    box-shadow: var(--vtb-shadow-sm);
}

.vtb-service-item.selected {
    border-color: var(--vtb-accent);
    background: var(--vtb-card-bg);
}

.vtb-service-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

/* Custom checkbox */
.vtb-checkbox {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border: 2px solid var(--vtb-border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    margin-top: 2px;
}

.vtb-service-item.selected .vtb-checkbox {
    background: var(--vtb-checkbox-checked);
    border-color: var(--vtb-checkbox-checked);
}

.vtb-checkbox-icon {
    display: none;
    color: var(--vtb-white);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

.vtb-service-item.selected .vtb-checkbox-icon {
    display: block;
}

.vtb-service-info {
    flex: 1;
    min-width: 0;
}

.vtb-service-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--vtb-text-primary);
    margin-bottom: 4px;
    line-height: 1.3;
}

.vtb-service-description {
    font-size: 13px;
    line-height: 1.5;
    color: var(--vtb-text-secondary);
    margin-top: 4px;
}

.vtb-service-meta {
    font-size: 12px;
    color: var(--vtb-text-muted);
    margin-top: 4px;
}

/* Price display */
.vtb-service-price-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    white-space: nowrap;
    position: relative;
}

.vtb-price-original {
    font-size: 15px;
    color: var(--vtb-text-muted);
    text-decoration: line-through;
    font-weight: 400;
}

.vtb-price-current {
    font-size: 16px;
    font-weight: 600;
    color: var(--vtb-text-primary);
}

.vtb-price-only {
    font-size: 16px;
    font-weight: 600;
    color: var(--vtb-text-primary);
}

/* Bestseller badge */
.vtb-bestseller-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
    color: var(--vtb-bestseller-text);
    background: var(--vtb-bestseller-bg);
    border-radius: 4px;
    text-transform: none;
    letter-spacing: 0.3px;
    font-family: var(--vtb-font-sans);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

/* ===== ADDITIONAL SERVICES (sub-options inside selected service) ===== */
.vtb-addons {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--vtb-border-light);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vtb-addon-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: var(--vtb-white);
    border: 1px solid var(--vtb-border-light);
    border-radius: var(--vtb-radius-sm);
    cursor: pointer;
    transition: all 0.2s ease;
    margin-left: 20px;
}

.vtb-addon-item:hover {
    border-color: var(--vtb-border);
    background: var(--vtb-card-bg);
}

.vtb-addon-item.selected {
    border-color: var(--vtb-accent);
}

.vtb-addon-checkbox {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid var(--vtb-border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.vtb-addon-item.selected .vtb-addon-checkbox {
    background: var(--vtb-checkbox-checked);
    border-color: var(--vtb-checkbox-checked);
}

.vtb-addon-check-icon {
    display: none;
    color: var(--vtb-white);
    font-size: 12px;
    font-weight: 700;
}

.vtb-addon-item.selected .vtb-addon-check-icon {
    display: block;
}

.vtb-addon-info {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 6px;
}

.vtb-addon-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--vtb-text-primary);
}

.vtb-addon-info-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid var(--vtb-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--vtb-text-muted);
    cursor: help;
}

.vtb-addon-price-container {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.vtb-addon-price-original {
    font-size: 14px;
    color: var(--vtb-text-muted);
    text-decoration: line-through;
}

.vtb-addon-price-current {
    font-size: 14px;
    font-weight: 600;
    color: var(--vtb-text-primary);
}

/* ===== RIGHT COLUMN: SUMMARY SIDEBAR ===== */
.vtb-summary-section {
    position: sticky;
    top: 20px;
}

.vtb-summary-box {
    background: var(--vtb-sidebar-bg);
    border: none;
    border-radius: var(--vtb-radius-xl);
    padding: 28px 24px;
    color: var(--vtb-sidebar-text);
    overflow: hidden;
}

.vtb-summary-header {
    margin-bottom: 16px;
}

.vtb-summary-duration {
    font-size: 18px;
    font-weight: 700;
    color: var(--vtb-sidebar-text);
    margin-bottom: 2px;
}

.vtb-summary-duration-note {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
}

.vtb-summary-location {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 0;
}

.vtb-summary-location-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--vtb-sidebar-text);
}

.vtb-summary-location-icon {
    width: 16px;
    height: 16px;
    opacity: 0.8;
}

/* Summary items card (white inset) */
.vtb-summary-items-card {
    background: var(--vtb-white);
    border-radius: var(--vtb-radius-md);
    padding: 16px;
    margin: 16px 0;
    color: var(--vtb-text-primary) !important;
}

.vtb-summary-items-card * {
    color: var(--vtb-text-primary) !important;
}

/* Empty state */
.vtb-summary-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    background: transparent;
    border-radius: var(--vtb-radius-sm);
    text-align: center;
}

.vtb-summary-empty-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 12px;
    border-radius: 50%;
    object-fit: cover;
}

.vtb-summary-empty-text {
    font-size: 14px;
    color: #333333;
    font-weight: 500;
}

.vtb-summary-items {
    display: flex;
    flex-direction: column;
}

/* Empty state */
.vtb-summary-empty {
    text-align: center;
    padding: 30px 16px;
}

.vtb-summary-empty-icon {
    font-size: 36px;
    margin-bottom: 10px;
    opacity: 0.6;
}

.vtb-summary-empty-text {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}

/* Summary service items */
.vtb-summary-service {
    padding: 10px 0;
    border-bottom: 1px solid var(--vtb-border-light);
}

.vtb-summary-service:last-child {
    border-bottom: none;
}

.vtb-summary-service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.vtb-summary-service-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--vtb-text-primary);
    flex: 1;
    padding-right: 8px;
}

.vtb-summary-service-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--vtb-text-primary);
    text-align: right;
}

.vtb-summary-service-duration {
    font-size: 12px;
    color: var(--vtb-text-muted);
    text-align: right;
    margin-top: 2px;
}

.vtb-summary-service-details {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.vtb-summary-remove {
    display: none; /* Hidden in new design, deselect from main list */
}

/* Total section (inside white card) */
.vtb-summary-total {
    padding-top: 12px;
    border-top: 1px solid var(--vtb-border-light);
}

.vtb-summary-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vtb-summary-total-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--vtb-text-primary);
}

.vtb-summary-total-note {
    font-size: 12px;
    color: var(--vtb-text-muted);
    font-weight: 400;
}

.vtb-summary-total-amount {
    font-size: 16px;
    font-weight: 700;
    color: var(--vtb-text-primary);
}

/* Campaign code link */
.vtb-campaign-code {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 0;
    font-size: 14px;
    color: var(--vtb-sidebar-text);
    cursor: pointer;
    text-decoration: underline;
}

.vtb-campaign-code:hover {
    opacity: 0.8;
}

/* Terms text */
.vtb-terms-text {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
    margin-bottom: 16px;
}

.vtb-terms-text a {
    color: var(--vtb-sidebar-text);
    text-decoration: underline;
}

/* Bestill / Continue button */
.vtb-booking-wrapper .vtb-continue-button,
.vtb-booking-wrapper button.vtb-continue-button {
    width: 100% !important;
    padding: 16px 20px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    color: var(--vtb-button-text) !important;
    background: var(--vtb-button-bg) !important;
    border: none !important;
    border-radius: var(--vtb-radius-pill) !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    font-family: var(--vtb-font-sans) !important;
    text-align: center !important;
}

.vtb-booking-wrapper .vtb-continue-button:hover:not(:disabled),
.vtb-booking-wrapper button.vtb-continue-button:hover:not(:disabled) {
    background: var(--vtb-button-hover) !important;
}

.vtb-booking-wrapper .vtb-continue-button:disabled,
.vtb-booking-wrapper button.vtb-continue-button:disabled {
    background: var(--vtb-button-inactive-bg) !important;
    color: var(--vtb-button-inactive-text) !important;
    cursor: not-allowed !important;
}

/* Validation messages below sidebar */
.vtb-validation-messages {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vtb-validation-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--vtb-text-primary);
}

.vtb-validation-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1.5px solid var(--vtb-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--vtb-text-muted);
}

.vtb-validation-item.valid .vtb-validation-icon {
    border-color: #4CAF50;
    color: #4CAF50;
}

/* ===== STEP 2: DATE & TIME SELECTION ===== */
.vtb-time-selection {
    background: transparent;
    border: none;
    padding: 0;
    margin-bottom: 20px;
}

.vtb-time-section-title {
    font-family: var(--vtb-font-family);
    font-size: 28px;
    font-weight: 400;
    color: var(--vtb-text-primary);
    margin-bottom: 12px;
}

.vtb-time-section-separator {
    width: 100%;
    height: 2px;
    background: var(--vtb-text-primary);
    margin-bottom: 24px;
}

/* Staff selection */
.vtb-staff-selection {
    margin-bottom: 30px;
}

.vtb-staff-selection h3 {
    font-family: var(--vtb-font-family);
    font-size: 18px;
    font-weight: 400;
    color: var(--vtb-text-primary);
    margin-bottom: 16px;
}

.vtb-staff-list {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.vtb-staff-avatar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px;
    border: 2px solid var(--vtb-border-light);
    border-radius: var(--vtb-radius-md);
    cursor: pointer;
    transition: all 0.2s;
    background: var(--vtb-white);
}

.vtb-staff-avatar:hover {
    border-color: var(--vtb-accent);
}

.vtb-staff-avatar.selected {
    border-color: var(--vtb-accent);
    background: var(--vtb-card-bg);
}

.vtb-staff-avatar-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    overflow: hidden;
}

.vtb-staff-avatar-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vtb-staff-avatar-img svg {
    width: 100%;
    height: 100%;
    color: var(--vtb-text-muted);
}

.vtb-staff-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--vtb-text-primary);
}

/* Extend booking prompt */
.vtb-extend-booking {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.vtb-extend-text {
    font-size: 14px;
    color: var(--vtb-text-secondary);
}

.vtb-booking-wrapper .vtb-extend-button,
.vtb-booking-wrapper button.vtb-extend-button {
    padding: 8px 20px !important;
    font-size: 14px !important;
    color: var(--vtb-button-text) !important;
    background: var(--vtb-button-bg) !important;
    border: none !important;
    border-radius: var(--vtb-radius-pill) !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
    font-family: var(--vtb-font-sans) !important;
}

.vtb-booking-wrapper .vtb-extend-button:hover,
.vtb-booking-wrapper button.vtb-extend-button:hover {
    background: var(--vtb-button-hover) !important;
}

/* Date carousel */
.vtb-date-carousel {
    margin-bottom: 8px;
}

.vtb-date-carousel-track {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Custom scrollbar for date carousel */
.vtb-date-carousel-track::-webkit-scrollbar {
    height: 6px;
}

.vtb-date-carousel-track::-webkit-scrollbar-track {
    background: var(--vtb-border-light);
    border-radius: 3px;
}

.vtb-date-carousel-track::-webkit-scrollbar-thumb {
    background: var(--vtb-text-primary);
    border-radius: 3px;
}

.vtb-date-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    padding: 12px 16px;
    border: 1.5px solid var(--vtb-border-light);
    border-radius: var(--vtb-radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
    background: var(--vtb-white);
    flex-shrink: 0;
}

.vtb-date-card:hover {
    border-color: var(--vtb-border);
}

.vtb-date-card.selected {
    background: var(--vtb-accent);
    border-color: var(--vtb-accent);
    color: var(--vtb-white);
}

.vtb-date-card.disabled {
    opacity: 0.4;
    cursor: default;
}

.vtb-date-day-name {
    font-size: 12px;
    font-weight: 400;
    color: var(--vtb-text-muted);
    margin-bottom: 4px;
    text-transform: lowercase;
}

.vtb-date-card.selected .vtb-date-day-name {
    color: rgba(255,255,255,0.8);
}

.vtb-date-number {
    font-size: 22px;
    font-weight: 700;
    color: var(--vtb-text-primary);
    line-height: 1.2;
}

.vtb-date-card.selected .vtb-date-number {
    color: var(--vtb-white);
}

.vtb-date-month {
    font-size: 12px;
    font-weight: 500;
    color: var(--vtb-text-secondary);
    margin-top: 2px;
}

.vtb-date-card.selected .vtb-date-month {
    color: rgba(255,255,255,0.8);
}

/* Time slots */
.vtb-time-slots-section {
    margin-top: 24px;
}

.vtb-time-period-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--vtb-text-primary);
    margin-bottom: 12px;
}

.vtb-time-slots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.vtb-time-slot {
    padding: 12px 8px;
    text-align: center;
    background: transparent;
    border: 1.5px solid var(--vtb-border-light);
    border-radius: var(--vtb-radius-pill);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 500;
    color: var(--vtb-text-primary);
    font-family: var(--vtb-font-sans);
}

.vtb-time-slot:hover {
    border-color: var(--vtb-accent);
    color: var(--vtb-accent);
}

.vtb-time-slot.vtb-selected {
    background: transparent;
    color: var(--vtb-accent);
    border-color: var(--vtb-accent);
    border-width: 2px;
    font-weight: 600;
}

.vtb-time-slot.disabled {
    opacity: 0.35;
    cursor: default;
    border-color: var(--vtb-border-light);
}

.vtb-no-times {
    text-align: center;
    padding: 40px;
    color: var(--vtb-text-muted);
    font-size: 14px;
}

/* Old calendar styles - hidden */
.vtb-calendar-header {
    display: none;
}

.vtb-calendar h3 {
    display: none;
}

/* Navigation buttons (old - hidden) */
.vtb-navigation {
    display: none !important;
}

/* New back button */
.vtb-back-button-container {
    margin-top: 32px;
    display: flex;
    justify-content: flex-start;
}

.vtb-back-button {
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 500;
    color: #FFFFFF;
    background: var(--vtb-back-button);
    border: none;
    border-radius: var(--vtb-radius-pill);
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--vtb-font-sans);
}

.vtb-back-button:hover {
    opacity: 0.9;
    transform: translateX(-2px);
}

.vtb-prev-step,
.vtb-next-step {
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--vtb-radius-pill);
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--vtb-font-sans);
}

.vtb-prev-step {
    background: transparent;
    color: var(--vtb-text-primary);
    border: 1.5px solid var(--vtb-border);
}

.vtb-prev-step:hover {
    border-color: var(--vtb-accent);
    color: var(--vtb-accent);
}

.vtb-booking-wrapper .vtb-next-step,
.vtb-booking-wrapper button.vtb-next-step {
    background: var(--vtb-button-bg) !important;
    color: var(--vtb-button-text) !important;
    border: none !important;
}

.vtb-booking-wrapper .vtb-next-step:hover:not(:disabled),
.vtb-booking-wrapper button.vtb-next-step:hover:not(:disabled) {
    background: var(--vtb-button-hover) !important;
}

.vtb-booking-wrapper .vtb-next-step:disabled,
.vtb-booking-wrapper button.vtb-next-step:disabled {
    background: rgba(61, 184, 138, 0.3) !important;
    cursor: not-allowed !important;
}

/* ===== STEP 3: CUSTOMER INFO ===== */
.vtb-customer-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

/* Floating label form groups */
.vtb-form-group.vtb-floating-label {
    position: relative;
    display: flex;
    flex-direction: column;
}

.vtb-form-group.vtb-floating-label input,
.vtb-form-group.vtb-floating-label textarea {
    padding: 24px 20px 12px 20px;
    font-size: 16px;
    border: 2px solid var(--vtb-border);
    border-radius: 24px;
    outline: none;
    font-family: var(--vtb-font-sans);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
}

.vtb-form-group.vtb-floating-label textarea {
    resize: vertical;
    min-height: 120px;
    padding-top: 28px;
}

.vtb-form-group.vtb-floating-label label {
    position: absolute;
    left: 20px;
    top: 18px;
    font-size: 16px;
    font-weight: 400;
    color: var(--vtb-text-muted);
    font-family: var(--vtb-font-sans);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    padding: 0 4px;
}

/* Float label up when input has value or is focused */
.vtb-form-group.vtb-floating-label input:focus + label,
.vtb-form-group.vtb-floating-label input:not(:placeholder-shown) + label,
.vtb-form-group.vtb-floating-label textarea:focus + label,
.vtb-form-group.vtb-floating-label textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--vtb-accent);
    background: #ffffff;
}

.vtb-form-group.vtb-floating-label input:focus,
.vtb-form-group.vtb-floating-label textarea:focus {
    border-color: var(--vtb-accent);
    box-shadow: 0 0 0 4px rgba(139, 90, 95, 0.08);
}

/* Customer Club Section */
.vtb-customer-club {
    background: #ffffff;
    border: 2px solid var(--vtb-border);
    border-radius: 24px;
    padding: 28px;
    margin-top: 12px;
}

.vtb-customer-club-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--vtb-text-primary);
    font-family: var(--vtb-font-sans);
    margin: 0 0 20px 0;
}

.vtb-customer-club-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vtb-club-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #F9F9F9;
    border: 2px solid transparent;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.vtb-club-option:hover {
    background: #F5F5F5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.vtb-club-option.active {
    background: #ffffff;
    border-color: var(--vtb-checkbox);
    box-shadow: 0 0 0 4px rgba(76, 53, 37, 0.08);
}

.vtb-club-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.vtb-club-content {
    flex: 1;
}

.vtb-club-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--vtb-text-primary);
    font-family: var(--vtb-font-sans);
    margin-bottom: 4px;
}

.vtb-club-subtitle {
    font-size: 13px;
    color: var(--vtb-text-muted);
    font-family: var(--vtb-font-sans);
    line-height: 1.4;
}

.vtb-club-checkmark {
    width: 24px;
    height: 24px;
    border: 2px solid var(--vtb-border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.vtb-club-checkmark svg {
    width: 16px;
    height: 16px;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s ease;
    color: #ffffff;
}

.vtb-club-option.active .vtb-club-checkmark {
    background: var(--vtb-checkbox);
    border-color: var(--vtb-checkbox);
}

.vtb-club-option.active .vtb-club-checkmark svg {
    opacity: 1;
    transform: scale(1);
}100px;
}

/* ===== STEP 4: CONFIRMATION ===== */
.vtb-confirmation {
    text-align: center;
    padding: 60px 20px;
}

.vtb-success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--vtb-accent);
    color: var(--vtb-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
}

.vtb-confirmation h2 {
    font-family: var(--vtb-font-family);
    font-size: 28px;
    font-weight: 400;
    color: var(--vtb-text-primary);
    margin-bottom: 8px;
}

.vtb-confirmation p {
    font-size: 15px;
    color: var(--vtb-text-secondary);
}

.vtb-confirmation-details {
    margin-top: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.vtb-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--vtb-border-light);
    font-size: 14px;
    color: var(--vtb-text-primary);
}

/* ===== ERROR & LOADING ===== */
.vtb-error {
    background: #FEE;
    color: #C33;
    padding: 12px 16px;
    border-radius: var(--vtb-radius-sm);
    margin: 16px 0;
    font-size: 14px;
}

.vtb-error-message {
    background: #FEE;
    color: #C33;
    padding: 12px 16px;
    border-radius: var(--vtb-radius-sm);
    margin: 16px 0;
    font-size: 14px;
    display: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .vtb-booking-container,
    .vtb-customer-form-container {
        grid-template-columns: 1fr;
    }
    
    .vtb-summary-section {
        position: static;
        order: -1;
    }
}

@media (max-width: 768px) {
    body .vtb-booking-wrapper {
        margin: 0 !important;
        padding: 20px !important;
    }
    
    .vtb-booking-form {
        padding: 0;
    }
    
    .vtb-time-slots-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .vtb-location-title,
    .vtb-services-section .vtb-section-title,
    .vtb-time-section-title {
        font-size: 24px;
    }
    
    .vtb-date-card {
        min-width: 70px;
        padding: 10px 12px;
    }
}

@media (max-width: 480px) {
    .vtb-time-slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vtb-location-pills {
        flex-direction: column;
    }
    
    .vtb-location-pill {
        text-align: center;
    }
}

/* ========================================
   MOBILE OPTIMIZATION (< 768px)
   ======================================== */

/* Mobile elements - only hidden on desktop */
@media (min-width: 768px) {
    .vtb-mobile-header,
    .vtb-mobile-cart-modal,
    .vtb-mobile-bottom-button {
        display: none !important;
    }
}

@media (max-width: 767px) {
    /* ===== MOBILE HEADER ===== */
    .vtb-mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 16px;
        background: #ffffff;
        border-bottom: 1px solid #e5e5e5;
        position: sticky;
        top: 0;
        z-index: 100;
        margin-left: 0;
        margin-right: 0;
    }
    
    /* ===== MODERN CIRCULAR STEP INDICATOR ===== */
    .vtb-mobile-step-indicator {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .vtb-mobile-step-circle {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: transparent;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 18px;
        color: #000000;
        position: relative;
    }
    
    /* Progress border with shimmer effect */
    .vtb-mobile-step-circle::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 50%;
        padding: 4px;
        background: conic-gradient(
            from 0deg,
            #4d3523 0deg,
            #4d3523 var(--progress-angle, 0deg),
            transparent var(--progress-angle, 0deg),
            transparent 360deg
        );
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        animation: vtb-shimmer 2s linear infinite;
    }
    
    @keyframes vtb-shimmer {
        0% {
            filter: brightness(1) contrast(1);
        }
        50% {
            filter: brightness(1.3) contrast(1.2);
        }
        100% {
            filter: brightness(1) contrast(1);
        }
    }
    
    .vtb-mobile-step-circle span {
        position: relative;
        z-index: 2;
    }
    
    .vtb-mobile-step-current {
        font-size: 18px;
        font-weight: 700;
    }
    
    .vtb-mobile-step-separator,
    .vtb-mobile-step-total {
        font-size: 11px;
        font-weight: 500;
        opacity: 0.7;
    }
    
    .vtb-mobile-step-separator {
        margin: 0 2px;
    }
    
    .vtb-mobile-step-label {
        font-size: 16px;
        font-weight: 600;
        color: var(--vtb-text-primary);
    }
    
    /* ===== CART BUTTON ===== */
    .vtb-mobile-cart-button,
    .vtb-booking-wrapper .vtb-mobile-cart-button,
    .vtb-mobile-header .vtb-mobile-cart-button {
        position: relative;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: transparent !important;
        border: none !important;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: none !important;
        padding: 0 !important;
    }
    
    .vtb-mobile-cart-button:active {
        transform: scale(0.95);
    }
    
    .vtb-cart-icon {
        width: 30px !important;
        height: 30px !important;
    }
    
    .vtb-cart-badge {
        position: absolute;
        top: -4px;
        right: -4px;
        background: #e74c3c;
        color: #ffffff;
        font-size: 11px;
        font-weight: 700;
        min-width: 20px;
        height: 20px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 6px;
        border: 2px solid #ffffff;
    }
    
    .vtb-cart-badge:empty {
        display: none;
    }
    
    /* ===== CART MODAL ===== */
    .vtb-mobile-cart-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1000;
    }
    
    .vtb-mobile-cart-modal.active {
        display: block;
    }
    
    .vtb-cart-modal-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        animation: vtb-fadeIn 0.3s ease;
    }
    
    @keyframes vtb-fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    .vtb-cart-modal-content {
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 85%;
        max-width: 400px;
        background: #ffffff;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
        animation: vtb-slideInRight 0.3s ease;
        display: flex;
        flex-direction: column;
    }
    
    @keyframes vtb-slideInRight {
        from { transform: translateX(100%); }
        to { transform: translateX(0); }
    }
    
    .vtb-cart-modal-header {
        padding: 20px;
        border-bottom: 1px solid #e5e5e5;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .vtb-cart-modal-header h3 {
        margin: 0;
        font-size: 20px;
        font-weight: 700;
        color: var(--vtb-text-primary);
    }
    
    .vtb-cart-modal-close {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: #f5f5f5;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.2s ease;
    }
    
    .vtb-cart-modal-close:active {
        transform: scale(0.9);
    }
    
    .vtb-cart-modal-close svg {
        width: 20px;
        height: 20px;
        stroke: var(--vtb-text-primary);
    }
    
    .vtb-cart-modal-body {
        flex: 1;
        overflow-y: auto;
        padding: 20px;
    }
    
    /* Style continue button inside cart modal */
    .vtb-cart-modal-body .vtb-continue-button {
        background: #000000 !important;
        border-radius: 28px !important;
        color: #ffffff !important;
        font-weight: 700 !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
    }
    
    .vtb-cart-modal-body .vtb-continue-button:hover:not(:disabled) {
        background: #1a1a1a !important;
    }
    
    /* ===== STICKY BOTTOM BUTTON ===== */
    .vtb-mobile-bottom-button {
        display: none;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 12px 20px 20px;
        background: linear-gradient(to top, #ffffff 80%, rgba(255, 255, 255, 0.95) 100%);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
        z-index: 90;
        animation: vtb-slideUp 0.3s ease;
    }
    
    @keyframes vtb-slideUp {
        from { transform: translateY(100%); }
        to { transform: translateY(0); }
    }
    
    .vtb-mobile-continue-btn {
        width: 100%;
        height: 56px;
        background: #000000;
        border: none;
        border-radius: 28px;
        color: #ffffff;
        font-size: 16px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }
    
    .vtb-mobile-continue-btn:active {
        transform: translateY(2px);
        box-shadow: 0 2px 8px rgba(77, 53, 35, 0.2);
    }
    
    .vtb-mobile-btn-arrow {
        width: 20px;
        height: 20px;
        stroke: #ffffff;
    }
    
    /* Hide desktop elements on mobile */
    .vtb-steps-navigation-container {
        display: none !important;
    }
    
    /* Hide desktop sidebar on mobile */
    .vtb-summary-section {
        display: none !important;
    }
    
    /* Full width content on mobile */
    .vtb-booking-container {
        display: block !important;
    }
    
    .vtb-services-section {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Remove horizontal padding and add bottom padding on mobile */
    .vtb-booking-form {
        padding: 0 0 100px 0 !important;
    }
}

/* ========================================
   MOBILE TOUCH OPTIMIZATION
   ======================================== */

@media (max-width: 767px) {
    /* ===== LOCATION SELECTOR ===== */
    .vtb-location-selector {
        padding: 20px 5px;
    }
    
    .vtb-location-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .vtb-location-pills {
        gap: 12px;
    }
    
    .vtb-location-pill {
        min-height: 56px;
        padding: 16px 20px;
        font-size: 16px;
        border-radius: 12px;
        width: 100%;
        justify-content: space-between;
    }
    
    .vtb-location-pill:active {
        transform: scale(0.98);
    }
    
    /* ===== SERVICE CATEGORIES ===== */
    .vtb-services-section {
        padding: 20px 0px;
    }
    
    .vtb-category-item {
        min-height: 60px;
        padding: 18px 16px;
        font-size: 16px;
        border-radius: 0px;
        margin-bottom: 0px;
        border-bottom: 1px solid var(--vtb-separator);
    }
    
    .vtb-category-arrow {
        width: 24px;
        height: 24px;
    }
    
    .vtb-category-content {
        padding: 16px 0;
    }
    
    /* ===== SERVICE ITEMS ===== */
    .vtb-service-item {
        padding: 16px;
        border-radius: 0px;
        margin-bottom: 0px;
        min-height: 80px;
        border-bottom: 1px solid var(--vtb-border-light);
    }
    
    .vtb-service-item:active {
        transform: scale(0.98);
    }
    
    .vtb-service-name {
        font-size: 16px;
        line-height: 1.4;
    }
    
    .vtb-service-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        margin-top: 8px;
    }
    
    .vtb-service-price,
    .vtb-service-duration {
        font-size: 14px;
    }
    
    .vtb-service-checkbox {
        width: 24px;
        height: 24px;
        min-width: 24px;
    }
    
    /* ===== ADDON ITEMS ===== */
    .vtb-addon-item {
        padding: 16px;
        border-radius: 10px;
        margin-bottom: 10px;
        min-height: 70px;
    }
    
    .vtb-addon-name {
        font-size: 15px;
    }
    
    /* ===== STAFF SELECTION ===== */
    .vtb-staff-selection h3 {
        font-size: 18px;
        margin-bottom: 16px;
    }
    
    .vtb-staff-list {
        gap: 12px;
    }
    
    .vtb-staff-avatar {
        flex: 0 0 auto;
        width: 100px;
        padding: 12px;
    }
    
    .vtb-staff-avatar-img {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        overflow: hidden;
    }
    
    .vtb-staff-avatar-img img {
        width: 70px;
        height: 70px;
        object-fit: cover;
    }
    
    .vtb-staff-name {
        font-size: 14px;
        margin-top: 8px;
    }
    
    /* ===== DATE CAROUSEL ===== */
    .vtb-calendar {
        margin-top: 20px;
    }
    
    .vtb-calendar-header {
        padding: 12px 0;
        margin-bottom: 16px;
    }
    
    .vtb-prev-week,
    .vtb-next-week {
        width: 44px;
        height: 44px;
        font-size: 20px;
        border-radius: 12px;
    }
    
    .vtb-week-label {
        font-size: 16px;
    }
    
    .vtb-date-carousel {
        margin-bottom: 20px;
        padding: 8px 0;
    }
    
    .vtb-date-card {
        min-width: 80px;
        padding: 16px 12px;
        border-radius: 12px;
    }
    
    .vtb-date-card:active:not(.disabled) {
        transform: scale(0.95);
    }
    
    .vtb-date-weekday {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .vtb-date-day {
        font-size: 24px;
        margin-bottom: 4px;
    }
    
    .vtb-date-month {
        font-size: 13px;
    }
    
    /* ===== TIME SLOTS ===== */
    .vtb-calendar-body {
        gap: 10px;
    }
    
    .vtb-time-slot {
        min-height: 52px;
        padding: 14px 16px;
        font-size: 16px;
        border-radius: 10px;
        flex: 1 1 calc(50% - 5px);
        max-width: calc(50% - 5px);
    }
    
    .vtb-time-slot:active:not(.disabled) {
        transform: scale(0.95);
    }
    
    /* ===== CUSTOMER FORM ===== */
    .vtb-customer-form-container {
        padding: 0 16px;
    }
    
    .vtb-customer-form {
        padding: 0;
    }
    
    .vtb-form-group {
        margin-bottom: 8px;
    }
    
    .vtb-form-group input,
    .vtb-form-group textarea {
        min-height: 44px;
        padding: 12px 16px;
        font-size: 16px;
        border-radius: 22px;
    }
    
    .vtb-form-group textarea {
        min-height: 120px;
    }
    
    .vtb-form-group label {
        font-size: 14px;
        padding: 0 16px;
    }
    
    /* ===== CUSTOMER CLUB ===== */
    .vtb-customer-club {
        margin-top: 24px;
        margin-left: -16px;
        margin-right: -16px;
        padding: 20px 16px;
        background: var(--vtb-card-bg);
    }
    
    .vtb-customer-club-title {
        font-size: 18px;
        margin-bottom: 16px;
    }
    
    .vtb-club-option {
        padding: 14px;
        border-radius: 12px;
        margin-bottom: 12px;
        min-height: 70px;
    }
    
    .vtb-club-option:active {
        transform: scale(0.98);
    }
    
    .vtb-club-icon {
        width: 36px;
        height: 36px;
    }
    
    .vtb-club-title {
        font-size: 16px;
    }
    
    .vtb-club-subtitle {
        font-size: 13px;
        margin-top: 4px;
    }
    
    .vtb-club-checkmark {
        width: 28px;
        height: 28px;
    }
    
    /* ===== CONFIRMATION ===== */
    .vtb-confirmation {
        padding: 40px 20px;
        text-align: center;
    }
    
    .vtb-success-icon {
        width: 80px;
        height: 80px;
        font-size: 48px;
        margin: 0 auto 24px;
    }
    
    .vtb-confirmation h2 {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .vtb-confirmation p {
        font-size: 16px;
    }
    
    /* ===== LOADING STATES ===== */
    .vtb-loading {
        padding: 40px 20px;
        font-size: 16px;
    }
    
    /* ===== SECTION TITLES ===== */
    .vtb-time-section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    /* ===== GENERAL SPACING ===== */
    .vtb-booking-wrapper {
        padding: 0;
    }
    
    .vtb-booking-form {
        padding: 0;
    }
    
    /* ===== SCROLL BEHAVIOR ===== */
    .vtb-date-carousel-track {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    
    /* ===== PREVENT TEXT SELECTION ON TOUCH ===== */
    .vtb-service-item,
    .vtb-addon-item,
    .vtb-date-card,
    .vtb-time-slot,
    .vtb-staff-avatar,
    .vtb-club-option,
    .vtb-location-pill,
    .vtb-category-item {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* ===== IMPROVE TOUCH TARGETS ===== */
    button,
    a,
    .vtb-service-item,
    .vtb-addon-item,
    .vtb-date-card,
    .vtb-time-slot {
        min-height: 44px; /* iOS recommended minimum */
    }
}

/* ========================================
   TABLET OPTIMIZATION (768px - 1024px)
   ======================================== */

@media (min-width: 768px) and (max-width: 1024px) {
    .vtb-booking-container {
        gap: 30px;
    }
    
    .vtb-services-section {
        flex: 1;
    }
    
    .vtb-summary-section {
        width: 320px;
    }
    
    .vtb-service-item {
        padding: 16px;
    }
    
    .vtb-time-slot {
        flex: 1 1 calc(33.333% - 8px);
        max-width: calc(33.333% - 8px);
    }
}
