:root {
    --booking-accent: #9f1239;
    --booking-accent-contrast: #ffffff;
    --booking-ink: #31252a;
    --booking-muted: #77666b;
    --booking-surface: #fffdfb;
    --booking-border: #e6d8d9;
    --booking-focus: #b45309;
    --booking-soft: #fff1f2;
    --booking-success: #166534;
}

.salon-booking {
    color: var(--booking-ink);
    background: var(--booking-surface);
    font: 400 16px/1.45 Jost, sans-serif;
}

.booking-container .salon-booking {
    height: 80vh;
    max-height: 80vh;
    padding: 0;
}

.salon-booking .booking-panel {
    position: relative;
    box-sizing: border-box;
    height: 100%;
    max-height: none;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border: 0;
    border-radius: 0;
    background: var(--booking-surface);
    scrollbar-color: var(--booking-accent) #f9eeee;
}

.salon-booking .booking-panel::-webkit-scrollbar {
    width: 8px;
}

.salon-booking .booking-panel::-webkit-scrollbar-thumb {
    border: 2px solid var(--booking-surface);
    border-radius: 999px;
    background: var(--booking-accent);
}

.salon-booking label {
    display: block;
    margin: 0 0 0.35rem;
    font-weight: 700;
    color: #575757;
}

.salon-booking input,
.salon-booking select,
.salon-booking textarea {
    box-sizing: border-box;
    width: 100%;
    min-height: 2.7rem;
    padding: 0.6rem 0.7rem;
    border: 1px solid var(--booking-border);
    border-radius: 4px;
    color: var(--booking-ink);
    background: #fff;
}

.salon-booking input:focus,
.salon-booking select:focus,
.salon-booking textarea:focus {
    outline: 3px solid color-mix(in srgb, var(--booking-focus) 45%, transparent);
    outline-offset: 1px;
}

.salon-booking button {
    min-height: 2.7rem;
    padding: 0.6rem 1rem;
    border: 0;
    border-radius: 5px;
    color: var(--booking-accent-contrast);
    background: var(--booking-accent);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.salon-booking .booking-field {
    margin: 0 0 1rem;
}

.salon-booking .booking-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.salon-booking .booking-customer-form {
    display: grid;
    gap: 1.4rem;
}

.salon-booking .booking-customer-form .booking-grid {
    gap: 1.25rem;
}

.salon-booking .booking-customer-form label:not(.booking-check) {
    display: grid;
    gap: 0.5rem;
    margin: 0;
    color: #2c1a22;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-transform: uppercase;
}

.salon-booking .booking-slot-artist {
    margin: 0 0 0.8rem;
    color: var(--booking-ink);
    font: 600 1.05rem/1.25 "Cormorant Garamond", Georgia, serif;
}

.salon-booking .booking-slot-artist strong {
    color: #2c1a22;
}

.salon-booking .booking-customer-form .booking-field-label {
    display: flex;
    align-items: baseline;
    gap: 0.55rem;
}

.salon-booking .booking-customer-form input,
.salon-booking .booking-customer-form textarea {
    min-height: 3.25rem;
    padding: 0.75rem 0.85rem;
    border: 1px solid #cdb9bf;
    border-radius: 3px;
    color: #31252a;
    background: #fffdfb;
    box-shadow: inset 0 1px 0 rgb(91 31 60 / 4%);
    font: 400 1rem/1.25 Jost, sans-serif;
    letter-spacing: 0;
    text-transform: none;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.salon-booking .booking-customer-form input:hover,
.salon-booking .booking-customer-form textarea:hover {
    border-color: #9a6b79;
}

.salon-booking .booking-customer-form input:focus,
.salon-booking .booking-customer-form textarea:focus {
    outline: 0;
    border-color: #5b1f3c;
    box-shadow: 0 0 0 3px rgb(179 138 47 / 22%);
}

.salon-booking .booking-customer-form input::placeholder,
.salon-booking .booking-customer-form textarea::placeholder {
    color: #9b858b;
}

.salon-booking .booking-progress {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 0 1.25rem;
    color: var(--booking-muted);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.salon-booking .booking-progress-track {
    display: block;
    flex: 1;
    height: 3px;
    overflow: hidden;
    border-radius: 999px;
    background: #f0e2e3;
}

.salon-booking .booking-progress-track i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: var(--booking-accent);
    transition: width 220ms ease;
}

.salon-booking .booking-stage h2 {
    margin: 0 0 1rem;
    font: 500 clamp(1.65rem, 4vw, 2.25rem)/1.05 "Cormorant Garamond", Georgia, serif;
}

.salon-booking .booking-stage-content {
    animation: booking-stage-in 260ms ease-out both;
}

.salon-booking .booking-message {
    display: none;
    grid-template-columns: 2rem minmax(0, 1fr);
    align-items: start;
    gap: 0.75rem;
    margin: 0 0 1.25rem;
    padding: 0.85rem 1rem;
    border: 1px solid #d7c8cb;
    border-radius: 3px;
    color: #5f4d53;
    background: #fdf9f8;
}

.salon-booking .booking-message.is-visible {
    display: grid;
}

.salon-booking .booking-message-icon {
    display: grid;
    width: 2rem;
    height: 2rem;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: #735f66;
    font-weight: 700;
}

.salon-booking .booking-message-copy {
    display: grid;
    gap: 0.15rem;
    font-size: 0.925rem;
    line-height: 1.45;
}

.salon-booking .booking-message-copy strong {
    color: #3e2931;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.salon-booking .booking-intro {
    margin: -0.45rem 0 1.1rem;
    color: var(--booking-muted);
}

.salon-booking .booking-message.is-error {
    border-color: #e7adad;
    color: #8a2020;
    background: #fff7f7;
}

.salon-booking .booking-message.is-error .booking-message-icon {
    background: #ad2929;
}

.salon-booking .booking-message.is-error .booking-message-copy strong {
    color: #8a2020;
}

.salon-booking .booking-message.is-success {
    border-color: #b4d5bf;
    color: #27613b;
    background: #f4fbf5;
}

.salon-booking .booking-message.is-success .booking-message-icon {
    background: #347247;
}

.salon-booking .booking-message.is-success .booking-message-copy strong {
    color: #27613b;
}

.salon-booking .booking-message.is-loading .booking-message-icon {
    font-size: 0.75rem;
    letter-spacing: 0.04em;
}

.salon-booking .booking-message-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.65rem;
}

.salon-booking .booking-message-button,
.salon-booking .booking-message-call {
    display: inline-flex;
    min-height: 2rem;
    align-items: center;
    padding: 0.35rem 0.7rem;
    border: 1px solid currentColor;
    border-radius: 999px;
    color: #8a2020;
    background: transparent;
    font: 700 0.75rem/1 Jost, sans-serif;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
}

.salon-booking .booking-message-button:hover,
.salon-booking .booking-message-call:hover {
    color: #fff;
    background: #8a2020;
}

.salon-booking .booking-loading {
    display: none;
    position: absolute;
    z-index: 2;
    inset: 0;
    align-items: center;
    justify-content: center;
    background: rgb(255 253 251 / 72%);
    backdrop-filter: blur(1px);
}

.salon-booking .booking-loading.is-visible {
    display: flex;
}

.salon-booking .booking-spinner {
    width: 2.5rem;
    height: 2.5rem;
    border: 3px solid #eadcdf;
    border-top-color: #5b1f3c;
    border-radius: 50%;
    animation: booking-spin 700ms linear infinite;
}

.salon-booking .booking-choices,
.salon-booking .booking-slots {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin: 0 0 1rem;
}

.salon-booking .booking-paths {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.salon-booking .booking-path-choice {
    display: flex;
    min-height: 10rem;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    color: var(--booking-ink);
    background: #fffdfb;
    border: 1px solid var(--booking-border);
    border-radius: 3px;
    text-align: left;
}

.salon-booking .booking-path-choice:hover {
    color: var(--booking-ink);
    border-color: #b38a2f;
    background: #fff9e9;
    box-shadow: inset 3px 0 0 #b38a2f;
}

.salon-booking .booking-path-choice>span:last-child {
    display: grid;
    gap: 0.35rem;
}

.salon-booking .booking-path-choice strong {
    font: 600 1.15rem/1.1 "Cormorant Garamond", Georgia, serif;
}

.salon-booking .booking-path-choice span:last-child span {
    color: var(--booking-muted);
    font-size: 0.875rem;
    font-weight: 400;
}

.salon-booking .booking-path-icon {
    display: grid;
    flex: 0 0 2.5rem;
    width: 2.5rem;
    height: 2.5rem;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: #5b1f3c;
    font-size: 1.1rem;
}

.salon-booking .booking-choice {
    min-height: 5.5rem;
    text-align: left;
    color: var(--booking-ink);
    background: #fffdfb;
    border: 1px solid var(--booking-border);
    border-radius: 3px;
    box-shadow: none;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.salon-booking .booking-choice:hover {
    color: var(--booking-ink);
    border-color: #b38a2f;
    background: #fff9e9;
    box-shadow: inset 3px 0 0 #b38a2f;
    transform: none;
}

.salon-booking .booking-category-list {
    grid-template-columns: 1fr;
}

.salon-booking .booking-category-choice,
.salon-booking .booking-specialist-route {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    width: 100%;
    min-height: 4.75rem;
    padding: 0.9rem 1rem;
    border: 1px solid var(--booking-border);
    border-radius: 3px;
    color: var(--booking-ink);
    background: #fffdfb;
    text-align: left;
}

.salon-booking .booking-category-choice:hover,
.salon-booking .booking-specialist-route:hover {
    border-color: #b38a2f;
    color: var(--booking-ink);
    background: #fff9e9;
    box-shadow: inset 3px 0 0 #b38a2f;
}

.salon-booking .booking-category-choice:disabled {
    border-color: var(--booking-border);
    color: var(--booking-muted);
    background: #f8f4f3;
    box-shadow: none;
    cursor: not-allowed;
    opacity: 0.75;
}

.salon-booking .booking-category-choice:disabled .booking-category-mark {
    background: #9b858b;
}

.salon-booking .booking-category-choice>span:nth-child(2),
.salon-booking .booking-specialist-route>span:nth-child(2) {
    display: grid;
    flex: 1;
    gap: 0.15rem;
}

.salon-booking .booking-category-choice>span:nth-child(2)>span,
.salon-booking .booking-specialist-route>span:nth-child(2)>span {
    color: var(--booking-muted);
    font-size: 0.85rem;
    font-weight: 400;
}

.salon-booking .booking-category-mark {
    display: grid;
    flex: 0 0 2.4rem;
    width: 2.4rem;
    height: 2.4rem;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: #5b1f3c;
}

.salon-booking .booking-category-arrow {
    color: #b38a2f;
    font-size: 1.25rem;
    line-height: 1;
}

.salon-booking .booking-path-divider {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0.75rem;
    margin: 1.5rem 0;
    color: var(--booking-muted);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.salon-booking .booking-path-divider::before,
.salon-booking .booking-path-divider::after {
    content: "";
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--booking-border));
}

.salon-booking .booking-path-divider::after {
    transform: scaleX(-1);
}

.salon-booking .booking-choice strong,
.salon-booking .booking-choice span {
    display: block;
}

.salon-booking .booking-choice span {
    margin-top: 0.2rem;
    color: var(--booking-muted);
    font-weight: 400;
}

.salon-booking .booking-choice .booking-category-mark {
    display: grid;
    margin: 0;
    color: #fff;
}

.salon-booking .booking-choice .booking-category-arrow {
    display: block;
    margin: 0;
    color: #b38a2f;
}

.salon-booking .booking-service-list-full {
    grid-template-columns: 1fr;
}

.salon-booking .booking-technician-list-full {
    grid-template-columns: 1fr;
}

.salon-booking .booking-service-choice-full {
    display: flex;
    align-items: stretch;
    gap: 0.9rem;
    min-height: 7rem;
    padding: 0;
}

.salon-booking .booking-service-choice-full .booking-service-swatch {
    flex: 0 0 0.5rem;
    width: 0.5rem;
    height: auto;
    min-height: 100%;
    margin: 0;
    border-radius: 0;
}

.salon-booking .booking-service-choice-full .booking-service-copy {
    display: grid;
    flex: 1;
    align-content: center;
    gap: 0.35rem;
    margin: 0;
    padding: 1rem 0;
}

.salon-booking .booking-service-choice-full .booking-service-copy strong {
    color: var(--booking-ink);
    font: 600 1.2rem/1.05 "Cormorant Garamond", Georgia, serif;
}

.salon-booking .booking-service-choice-full .booking-service-meta {
    display: block;
    margin: 0;
    color: #8a6a27;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.salon-booking .booking-service-choice-full .booking-service-description {
    display: block;
    margin: 0;
    color: var(--booking-muted);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.35;
}

.salon-booking .booking-service-choice-full .booking-category-arrow {
    align-self: center;
    padding-right: 1rem;
}

.salon-booking .booking-technician-choice-full {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 7rem;
    padding: 1rem;
}

.salon-booking .booking-technician-choice-full .booking-avatar {
    flex-basis: 4.5rem;
    width: 4.5rem;
    height: 4.5rem;
    font-size: 1rem;
}

.salon-booking .booking-technician-choice-full .booking-technician-copy {
    display: grid;
    flex: 1;
    gap: 0.35rem;
    margin: 0;
}

.salon-booking .booking-technician-choice-full .booking-technician-copy strong {
    color: var(--booking-ink);
    font: 600 1.3rem/1.05 "Cormorant Garamond", Georgia, serif;
}

.salon-booking .booking-technician-choice-full .booking-technician-description {
    display: block;
    margin: 0;
    color: var(--booking-muted);
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.4;
}

.salon-booking .booking-technician-choice-full .booking-category-arrow {
    align-self: center;
    padding-right: 0.2rem;
}

.salon-booking .booking-technician-choice,
.salon-booking .booking-service-choice,
.salon-booking .booking-choice-anyone {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.salon-booking .booking-avatar {
    display: grid;
    flex: 0 0 2.6rem;
    width: 2.6rem;
    height: 2.6rem;
    place-items: center;
    overflow: hidden;
    border-radius: 50%;
    color: #fff;
    background: #5b1f3c;
    font: 700 0.8rem/1 Jost, sans-serif;
}

.salon-booking img.booking-avatar {
    object-fit: cover;
}

.salon-booking .booking-avatar-anyone {
    background: #b38a2f;
    font-size: 1.1rem;
}

.salon-booking .booking-service-swatch {
    width: 0.8rem;
    height: 2.6rem;
    margin: 0;
    border-radius: 2px;
    background: var(--service-color);
}

.salon-booking .booking-slot {
    min-height: 2.35rem;
    padding: 0.35rem 0.25rem;
    color: var(--booking-ink);
    background: #fffdfb;
    border: 1px solid var(--booking-border);
    border-radius: 3px;
    font-size: 0.875rem;
}

.salon-booking .booking-slot:hover {
    color: #fff;
    background: #5b1f3c;
    border-color: #5b1f3c;
}

.salon-booking .booking-slots:has(.booking-slot-period) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
}

.salon-booking .booking-slot-period {
    min-width: 0;
}

.salon-booking .booking-slot-period h3 {
    margin: 0 0 0.4rem;
    color: #5b1f3c;
    font: 600 0.9rem/1 var(--display, "Cormorant Garamond", Georgia, serif);
}

.salon-booking .booking-slot-times {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.4rem;
}

.salon-booking .booking-availability-notice,
.salon-booking .booking-contact-notice {
    padding: 1rem;
    border: 1px solid var(--booking-border);
    border-radius: 4px;
    background: #f8fafc;
}

.salon-booking .booking-availability-notice p,
.salon-booking .booking-contact-notice p {
    margin: 0 0 0.75rem;
}

.salon-booking .booking-availability-notice p:last-child,
.salon-booking .booking-contact-notice p:last-child {
    margin-bottom: 0;
}

.salon-booking .booking-contact-notice a {
    color: var(--booking-accent);
    font-weight: 700;
}

.salon-booking .booking-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 1.25rem;
}

.salon-booking .booking-primary-action {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.1rem;
    color: #fff;
    background: #5b1f3c;
    border: 1px solid #5b1f3c;
    border-radius: 3px;
    box-shadow: none;
}

.salon-booking .booking-icon-button {
    display: grid;
    width: 2.7rem;
    min-height: 2.7rem;
    padding: 0;
    place-items: center;
    color: #5b1f3c;
    background: #fffdfb;
    border: 1px solid var(--booking-border);
    border-radius: 50%;
    font-size: 1.25rem;
}

.salon-booking .booking-navigation {
    margin: 0 0 1.25rem;
}

.salon-booking .booking-nav-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 2.35rem;
    padding: 0.35rem 0.7rem;
    color: #5b1f3c;
    background: #fffdfb;
    border: 1px solid var(--booking-border);
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.salon-booking .booking-nav-button span {
    display: grid;
    width: 1.25rem;
    height: 1.25rem;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: #5b1f3c;
    font-size: 1.25rem;
    line-height: 1;
}

.salon-booking .booking-primary-action:hover,
.salon-booking .booking-icon-button:hover,
.salon-booking .booking-nav-button:hover {
    color: #fff;
    background: #7d3157;
    border-color: #7d3157;
}

.salon-booking .booking-icon-button:hover {
    color: #fff;
}

.salon-booking .booking-nav-button:hover span {
    color: #7d3157;
    background: #fff;
}

.salon-booking .booking-check {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin: 0;
    color: #5b1f3c;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.35;
    text-transform: uppercase;
}

.salon-booking .booking-check input {
    appearance: none;
    display: grid;
    flex: 0 0 1.25rem;
    width: auto;
    min-height: 1.25rem;
    height: 1.25rem;
    margin: 0;
    padding: 0;
    place-items: center;
    border: 1px solid #9a6b79;
    border-radius: 3px;
    background: #fffdfb;
    cursor: pointer;
}

.salon-booking .booking-check input:checked {
    border-color: #5b1f3c;
    background: #5b1f3c;
}

.salon-booking .booking-check input:checked::after {
    content: "";
    width: 0.45rem;
    height: 0.25rem;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: rotate(-45deg) translateY(-1px);
}

.salon-booking .booking-optional {
    color: #735f66;
    font-size: 0.85em;
    font-weight: 500;
}

.salon-booking .booking-profile-message {
    min-height: 1.45rem;
    margin: -0.3rem 0 0;
    color: #735f66;
    font-size: 0.9rem;
}

.salon-booking .booking-review {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 0.65rem 1rem;
    margin: 0 0 1.25rem;
    padding: 1rem;
    border-left: 3px solid var(--booking-accent);
    background: var(--booking-soft);
}

.salon-booking .booking-review dt {
    color: var(--booking-muted);
    font-weight: 700;
}

.salon-booking .booking-review dd {
    margin: 0;
}

.booking-flatpickr {
    width: 23.5rem;
    max-width: calc(100vw - 2rem);
    padding: 0.85rem;
    border: 1px solid #d8c5ca;
    border-radius: 6px;
    box-shadow: 0 1.25rem 3rem rgb(62 25 43 / 22%);
    font-family: Jost, sans-serif;
}

.booking-flatpickr .flatpickr-months {
    align-items: center;
    min-height: 3.15rem;
    border-bottom: 1px solid #eadcdf;
}

.booking-flatpickr .flatpickr-month {
    color: #3e2931;
    font: 600 1.25rem/1 "Cormorant Garamond", Georgia, serif;
}

.booking-flatpickr .flatpickr-current-month {
    padding-top: 0.55rem;
    font-size: 100%;
}

.booking-flatpickr .flatpickr-current-month .flatpickr-monthDropdown-months,
.booking-flatpickr .flatpickr-current-month input.cur-year {
    color: #3e2931;
    font: inherit;
}

.booking-flatpickr .flatpickr-prev-month,
.booking-flatpickr .flatpickr-next-month {
    top: 0.55rem;
    width: 2.35rem;
    height: 2.35rem;
    padding: 0.58rem;
    border-radius: 50%;
}

.booking-flatpickr .flatpickr-prev-month:hover,
.booking-flatpickr .flatpickr-next-month:hover {
    background: #fff1f2;
}

.booking-flatpickr .flatpickr-prev-month:hover svg,
.booking-flatpickr .flatpickr-next-month:hover svg {
    fill: #9f1239;
}

.booking-flatpickr .flatpickr-weekdays {
    height: 2.8rem;
}

.booking-flatpickr span.flatpickr-weekday {
    color: #8a6a27;
    font: 700 0.72rem/2.8rem Jost, sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.booking-flatpickr .flatpickr-day {
    max-width: none;
    height: 2.8rem;
    margin: 0.1rem 0;
    border: 0;
    border-radius: 50%;
    color: #3e2931;
    line-height: 2.8rem;
}

.booking-flatpickr .flatpickr-day:hover,
.booking-flatpickr .flatpickr-day:focus {
    border-color: transparent;
    background: #fff1f2;
}

.booking-flatpickr .flatpickr-day.today {
    border-color: #b38a2f;
}

.booking-flatpickr .flatpickr-day.selected,
.booking-flatpickr .flatpickr-day.selected:hover,
.booking-flatpickr .flatpickr-day.startRange,
.booking-flatpickr .flatpickr-day.endRange {
    border-color: #5b1f3c;
    background: #5b1f3c;
    color: #fff;
    box-shadow: 0 0.25rem 0.65rem rgb(91 31 60 / 26%);
}

.booking-flatpickr .flatpickr-day.flatpickr-disabled,
.booking-flatpickr .flatpickr-day.flatpickr-disabled:hover {
    color: #c9b9bd;
}

.salon-booking input.flatpickr-alt-input {
    color: #31252a;
    background: #fffdfb;
    cursor: pointer;
}

@media (max-width: 560px) {
    .booking-flatpickr {
        width: calc(100vw - 1.25rem);
        max-width: calc(100vw - 1.25rem);
        padding: 0.65rem 0.45rem 0.75rem;
    }

    .booking-flatpickr .flatpickr-months {
        min-height: 3rem;
    }

    .booking-flatpickr .flatpickr-day {
        height: 2.65rem;
        line-height: 2.65rem;
    }
}

@keyframes booking-stage-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes booking-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .salon-booking .booking-stage-content {
        animation: none;
    }

    .salon-booking .booking-spinner {
        animation: none;
    }
}

@media (max-width: 560px) {

    .booking-container .salon-booking {
        height: 80vh;
    }

    .salon-booking .booking-panel {
        padding: 1.1rem;
    }

    .salon-booking .booking-grid,
    .salon-booking .booking-choices,
    .salon-booking .booking-slots,
    .salon-booking .booking-paths {
        grid-template-columns: 1fr;
    }

    .salon-booking .booking-slot-times {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .salon-booking .booking-slots:has(.booking-slot-period) {
        grid-template-columns: 1fr;
    }
}