.sc-booking-hero .sc-page-meta {
    max-width: 620px;
}

.sc-booking-body {
    padding: 28px 0 72px;
    background: var(--sc-bg);
}

.sc-booking-steps {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.sc-booking-step {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--sc-muted);
    font-size: 14px;
    font-weight: 500;
}

.sc-booking-step.is-active {
    color: var(--sc-text);
}

.sc-booking-step-num {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--sc-white);
    border: 1px solid var(--sc-line);
    color: var(--sc-muted);
    font-size: 13px;
    font-weight: 700;
}

.sc-booking-step.is-active .sc-booking-step-num {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 48%, #8b6914 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 18px rgba(184, 148, 31, 0.24);
}

.sc-booking-step-line {
    flex: 1;
    max-width: 80px;
    height: 1px;
    background: var(--sc-line);
}

.sc-booking-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.85fr);
    gap: 24px;
    align-items: start;
}

.sc-booking-grid-form {
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
}

.sc-booking-panel {
    padding: 28px 28px 30px;
    border-radius: 22px;
    background: var(--sc-white);
    border: 1px solid rgba(184, 148, 31, 0.1);
    box-shadow: 0 14px 36px rgba(184, 148, 31, 0.07);
}

.sc-booking-panel-wide {
    min-width: 0;
}

.sc-booking-panel-title {
    margin: 0 0 22px;
    font-family: var(--sc-serif);
    font-size: 26px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--sc-text);
}

.sc-booking-schedule {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

.sc-booking-calendar-wrap {
    padding: 14px;
    border-radius: 16px;
    background: var(--sc-bar);
    border: 1px solid rgba(184, 148, 31, 0.12);
}

.sc-booking-availability {
    min-height: 280px;
}

.sc-booking-availability .fw-semibold,
.sc-booking-availability p.fw-semibold {
    margin: 0 0 14px;
    font-size: 15px;
    font-weight: 600;
    color: var(--sc-text);
}

.sc-booking-availability .row.g-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
}

.sc-booking-availability .col-6,
.sc-booking-availability .d-grid {
    width: 100%;
    padding: 0;
}

.sc-booking-availability button.btn,
.sc-booking-availability a.btn,
.sc-booking-availability #nextAvailBtn {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(184, 148, 31, 0.22);
    background: var(--sc-white);
    color: var(--sc-text);
    font-family: var(--sc-sans);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.sc-booking-availability button.btn:hover,
.sc-booking-availability #nextAvailBtn:hover {
    border-color: rgba(184, 148, 31, 0.42);
    background: var(--sc-bar);
}

.sc-booking-availability button.btn.active {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 48%, #8b6914 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 18px rgba(184, 148, 31, 0.22);
}

.sc-booking-availability .no-availability {
    padding: 18px 12px;
    border-radius: 16px;
    background: var(--sc-bar);
    border: 1px dashed rgba(184, 148, 31, 0.24);
}

.sc-booking-availability #nextAvailBtn {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 48%, #8b6914 100%);
    border: 0;
    color: #fff;
}

.sc-booking-service-item + .sc-booking-service-item {
    margin-top: 14px;
}

.sc-booking-service-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 44px;
    gap: 12px;
    align-items: end;
}

.sc-booking-field {
    display: grid;
    gap: 8px;
}

.sc-booking-field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--sc-text);
}

.sc-req {
    color: #c0392b;
}

.sc-field-input,
.sc-field-select,
.sc-field-textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid var(--sc-line);
    border-radius: 12px;
    background: var(--sc-white);
    color: var(--sc-text);
    font-family: var(--sc-sans);
    font-size: 14px;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.sc-field-textarea {
    min-height: 120px;
    resize: vertical;
}

.sc-field-input:focus,
.sc-field-select:focus,
.sc-field-textarea:focus {
    outline: none;
    border-color: rgba(184, 148, 31, 0.55);
    box-shadow: 0 0 0 3px rgba(184, 148, 31, 0.14);
}

.sc-field-input.is-invalid,
.sc-field-select.is-invalid {
    border-color: #c0392b;
}

.sc-booking-phone {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 10px;
}

.sc-booking-remove {
    width: 44px;
    height: 48px;
    border: 0;
    border-radius: 12px;
    background: #e74c3c;
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(231, 76, 60, 0.22);
}

.sc-booking-remove:hover {
    background: #cf3f31;
}

.sc-booking-add-service {
    width: 100%;
    min-height: 46px;
    margin: 14px 0 18px;
    border: 1px dashed rgba(184, 148, 31, 0.35);
    border-radius: 12px;
    background: var(--sc-bar);
    color: var(--sc-pink);
    font-family: var(--sc-sans);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.sc-booking-add-service:hover {
    background: #f5ecd3;
}

.sc-booking-errors {
    display: grid;
    gap: 6px;
    margin-bottom: 18px;
}

.sc-booking-errors .text-danger,
.sc-field-error {
    color: #c0392b;
    font-size: 13px;
}

.sc-booking-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 16px;
}

.sc-booking-summary-block {
    padding: 16px 0;
    border-bottom: 1px solid var(--sc-line);
}

.sc-booking-summary-block:first-of-type {
    padding-top: 0;
}

.sc-booking-summary-label {
    margin: 0 0 6px;
    color: var(--sc-muted);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sc-booking-summary-value {
    margin: 0;
    color: var(--sc-text);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
}

.sc-booking-summary-value span {
    color: var(--sc-muted);
    font-weight: 500;
}

.sc-booking-policy-link {
    display: inline-flex;
    margin: 18px 0;
    padding: 0;
    border: 0;
    background: none;
    color: var(--sc-pink);
    font-family: var(--sc-sans);
    font-size: 14px;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}

.sc-booking-back-link {
    display: block;
    margin-top: 14px;
    text-align: center;
    color: var(--sc-muted);
    font-size: 13px;
    font-weight: 500;
}

.sc-booking-back-link:hover {
    color: var(--sc-pink);
}

.sc-booking-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.sc-booking-modal[hidden] {
    display: none;
}

.sc-booking-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 20, 0.48);
}

.sc-booking-modal-dialog {
    position: relative;
    width: min(720px, 100%);
    max-height: min(80vh, 760px);
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    border-radius: 20px;
    background: var(--sc-white);
    box-shadow: 0 24px 60px rgba(20, 20, 20, 0.18);
    overflow: hidden;
}

.sc-booking-modal-header,
.sc-booking-modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 22px;
    background: var(--sc-bar);
    border-bottom: 1px solid var(--sc-line);
}

.sc-booking-modal-footer {
    justify-content: flex-end;
    border-bottom: 0;
    border-top: 1px solid var(--sc-line);
}

.sc-booking-modal-header h3 {
    margin: 0;
    font-family: var(--sc-serif);
    font-size: 24px;
    font-weight: 600;
}

.sc-booking-modal-close {
    width: 36px;
    height: 36px;
    border: 1px solid var(--sc-line);
    border-radius: 50%;
    background: var(--sc-white);
    color: #444;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.sc-booking-modal-body {
    padding: 22px;
    overflow: auto;
}

.sc-ajax-loader {
    position: fixed;
    inset: 0;
    z-index: 300;
}

.sc-ajax-loader-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.72);
}

.sc-ajax-loader-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 42px;
    height: 42px;
    margin: -21px 0 0 -21px;
    border: 3px solid rgba(184, 148, 31, 0.18);
    border-top-color: var(--sc-pink);
    border-radius: 50%;
    animation: sc-spin 0.8s linear infinite;
}

@keyframes sc-spin {
    to { transform: rotate(360deg); }
}

/* Calendar gold theme */
.sc-booking-calendar-wrap .calendar {
    color: var(--sc-text);
}

.sc-booking-calendar-wrap .calendar header .simple-calendar-btn {
    border-color: rgba(184, 148, 31, 0.35);
    color: var(--sc-pink);
}

.sc-booking-calendar-wrap .calendar header .simple-calendar-btn:hover {
    background: var(--sc-pink);
    border-color: var(--sc-pink);
    color: #fff;
}

.sc-booking-calendar-wrap .calendar .day.event {
    background: rgba(184, 148, 31, 0.12);
    color: var(--sc-text);
    font-weight: 600;
}

.sc-booking-calendar-wrap .calendar .day.selected-day {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: #fff;
}

@media (max-width: 1024px) {
    .sc-booking-grid,
    .sc-booking-grid-form {
        grid-template-columns: 1fr;
    }

    .sc-booking-schedule {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .sc-booking-panel {
        padding: 22px 18px 24px;
    }

    .sc-booking-service-row,
    .sc-booking-form-grid,
    .sc-booking-phone {
        grid-template-columns: 1fr;
    }

    .sc-booking-remove {
        width: 100%;
    }

    .sc-booking-step-label {
        font-size: 12px;
    }
}

.sc-booking-alert {
    margin-bottom: 18px;
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(220, 53, 69, 0.08);
    color: #b42318;
    border: 1px solid rgba(220, 53, 69, 0.18);
}

.sc-booking-notice-wrap {
    padding: 0 0 8px;
    background: var(--sc-bg);
}

.sc-booking-notice {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    padding: 16px 18px;
    border-radius: 16px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    box-shadow: 0 10px 24px rgba(22, 101, 52, 0.08);
}

.sc-booking-notice-icon {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(22, 101, 52, 0.12);
    color: #166534;
}

.sc-booking-notice-icon svg {
    width: 20px;
    height: 20px;
}

.sc-booking-notice-copy {
    flex: 1 1 auto;
    min-width: 0;
}

.sc-booking-notice-title {
    margin: 0 0 4px;
    color: #14532d;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
}

.sc-booking-notice-message {
    margin: 0;
    color: #3a3a3a;
    font-size: 14px;
    line-height: 1.55;
}

.sc-booking-notice-dismiss {
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--sc-muted);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.sc-booking-notice-dismiss:hover,
.sc-booking-notice-dismiss:focus-visible {
    background: rgba(20, 20, 20, 0.06);
    color: var(--sc-black);
}

.sc-booking-service-layout {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.sc-booking-service-sidebar,
.sc-booking-service-main {
    padding: 24px;
    border-radius: 22px;
    background: var(--sc-white);
    border: 1px solid rgba(184, 148, 31, 0.1);
    box-shadow: 0 14px 36px rgba(184, 148, 31, 0.07);
}

.sc-booking-service-sidebar-title {
    margin: 0 0 14px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--sc-muted);
}

.sc-booking-category {
    display: block;
    width: 100%;
    margin-bottom: 8px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid var(--sc-line);
    background: var(--sc-white);
    text-align: left;
    font-size: 14px;
    color: var(--sc-text);
    cursor: pointer;
}

.sc-booking-category.is-active {
    border-color: rgba(184, 148, 31, 0.35);
    background: rgba(184, 148, 31, 0.08);
    color: var(--sc-text);
    font-weight: 600;
}

.sc-booking-service-toolbar {
    margin-bottom: 18px;
}

.sc-booking-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.sc-booking-service-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 170px;
    padding: 18px 16px;
    border-radius: 18px;
    border: 1px solid var(--sc-line);
    background: var(--sc-white);
    cursor: pointer;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.sc-booking-service-card:hover,
.sc-booking-service-card.is-selected {
    border-color: rgba(184, 148, 31, 0.45);
    box-shadow: 0 10px 24px rgba(184, 148, 31, 0.12);
    transform: translateY(-1px);
}

.sc-booking-service-card-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 48%, #8b6914 100%);
    color: #fff;
    font-weight: 700;
}

.sc-booking-service-card-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--sc-text);
}

.sc-booking-service-card-meta,
.sc-booking-service-card-price {
    font-size: 13px;
    color: var(--sc-muted);
}

.sc-booking-service-card-price {
    margin-top: auto;
    color: #8b6914;
    font-weight: 700;
}

.sc-booking-service-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--sc-line);
}

.sc-booking-service-count {
    margin: 0;
    font-size: 14px;
    color: var(--sc-muted);
}

@media (max-width: 1024px) {
    .sc-booking-service-layout {
        grid-template-columns: 1fr;
    }

    .sc-booking-service-sidebar {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }
}

@media (max-width: 768px) {
    .sc-booking-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sc-booking-service-footer {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 560px) {
    .sc-booking-service-grid {
        grid-template-columns: 1fr;
    }
}

.sc-booking-hero-compact {
    padding-bottom: 18px;
}

.sc-public-booking-body {
    padding-top: 0;
}

.sc-public-calendar-card {
    padding: 24px;
    border-radius: 22px;
    background: var(--sc-white);
    border: 1px solid rgba(184, 148, 31, 0.12);
    box-shadow: 0 14px 36px rgba(184, 148, 31, 0.08);
}

.sc-public-calendar-toolbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.sc-public-calendar-title {
    margin: 0 0 6px;
    font-family: var(--sc-serif);
    font-size: 28px;
}

.sc-public-calendar-note {
    margin: 0;
    color: var(--sc-muted);
    font-size: 14px;
}

.sc-calendar-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 20px;
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: 10px;
    background: #faf7ef;
    border: 1px solid rgba(184, 148, 31, 0.14);
}

.sc-calendar-legend-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #4a4030;
    font-weight: 500;
}

.sc-calendar-legend-swatch {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1px solid rgba(184, 148, 31, 0.2);
    flex-shrink: 0;
}

.sc-calendar-legend-swatch--empty {
    background: #fff;
}

.sc-calendar-legend-swatch--available {
    background: rgba(212, 175, 55, 0.45);
    border-color: rgba(184, 148, 31, 0.55);
}

.sc-calendar-legend-swatch--booked {
    background: #198754;
    border-color: #198754;
}

.sc-calendar-legend-swatch--closed {
    background: repeating-linear-gradient(
        45deg,
        #ece8df,
        #ece8df 3px,
        #ddd6c8 3px,
        #ddd6c8 6px
    );
    border-color: #b8b0a0;
}

.sc-public-calendar-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sc-public-week-range {
    font-weight: 600;
    min-width: 170px;
    text-align: center;
}

.sc-public-calendar-scroll {
    overflow: auto;
}

.sc-public-calendar-table {
    width: 100%;
    min-width: 860px;
    border-collapse: collapse;
    table-layout: fixed;
}

.sc-public-calendar-table th,
.sc-public-calendar-table td {
    border: 1px solid rgba(184, 148, 31, 0.12);
    text-align: center;
    vertical-align: top;
    font-size: 13px;
    padding: 8px 6px;
}

.sc-public-calendar-table thead th {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2418 100%);
    color: #d4af37;
    font-weight: 600;
}

.sc-public-calendar-table thead th small {
    color: rgba(255, 255, 255, 0.72);
    font-weight: 500;
}

.sc-public-calendar-table tbody td:first-child,
.sc-public-calendar-table thead th:first-child {
    background: #faf7ef;
    color: #8b6914;
    font-weight: 600;
    width: 92px;
}

.sc-public-calendar-table tbody td {
    height: 36px;
}

.sc-public-calendar-table tbody td:not(:first-child) {
    background: #fff;
}

.sc-public-closed-day,
.sc-public-calendar-table thead th.sc-public-day-header-closed {
    background: repeating-linear-gradient(
        45deg,
        #ece8df,
        #ece8df 4px,
        #ddd6c8 4px,
        #ddd6c8 8px
    ) !important;
    color: #5c5346 !important;
    cursor: not-allowed;
}

.sc-public-closed-day-holiday,
.sc-public-calendar-table thead th.sc-public-day-header-holiday {
    background: repeating-linear-gradient(
        45deg,
        #f8e8ea,
        #f8e8ea 4px,
        #efccd0 4px,
        #efccd0 8px
    ) !important;
    color: #8b3a42 !important;
    cursor: not-allowed;
}

.sc-calendar-legend-swatch--closed-holiday {
    background: repeating-linear-gradient(
        45deg,
        #f8e8ea,
        #f8e8ea 3px,
        #efccd0 3px,
        #efccd0 6px
    );
    border-color: #d88992;
}

.sc-public-booked-cell {
    color: #fff !important;
}

.sc-public-slot-available {
    cursor: pointer;
    background: rgba(212, 175, 55, 0.38) !important;
    box-shadow: inset 0 0 0 1px rgba(184, 148, 31, 0.55);
    transition: background 0.15s ease, box-shadow 0.15s ease;
}

.sc-public-slot-available:hover {
    background: rgba(212, 175, 55, 0.52) !important;
    box-shadow: inset 0 0 0 2px #b8941f;
}

.sc-public-slot-selected {
    background: rgba(212, 175, 55, 0.62) !important;
    box-shadow: inset 0 0 0 2px #9a7b1a;
}

.sc-public-booked-label {
    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;
    color: #fff;
}

.sc-public-book-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(20, 20, 20, 0.45);
    z-index: 1200;
}

.sc-public-book-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: min(480px, 100%);
    height: 100vh;
    background: #fff;
    z-index: 1210;
    display: flex;
    flex-direction: column;
    box-shadow: -12px 0 40px rgba(20, 20, 20, 0.16);
    transform: translateX(100%);
    transition: transform 0.25s ease;
}

.sc-public-book-panel.is-open {
    transform: translateX(0);
}

.sc-public-book-header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 20px 22px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2418 100%);
    color: #fff;
}

.sc-public-book-kicker {
    margin: 0 0 4px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #d4af37;
}

.sc-public-book-title {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.sc-public-book-close {
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 28px;
    line-height: 1;
}

.sc-public-book-body {
    flex: 1;
    overflow: auto;
    padding: 20px 22px 28px;
}

.sc-public-book-section + .sc-public-book-section {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid var(--sc-line);
}

.sc-public-book-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--sc-text);
}

.sc-public-service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    max-height: 220px;
    overflow: auto;
    margin-top: 10px;
}

.sc-public-service-card {
    border: 1px solid var(--sc-line);
    border-radius: 14px;
    background: #fff;
    padding: 12px;
    text-align: left;
}

.sc-public-service-card.is-selected {
    border-color: rgba(184, 148, 31, 0.55);
    box-shadow: 0 0 0 2px rgba(184, 148, 31, 0.15);
}

.sc-public-service-card-name {
    display: block;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 4px;
}

.sc-public-service-card-meta,
.sc-public-service-card-price {
    display: block;
    font-size: 12px;
    color: var(--sc-muted);
}

.sc-public-service-card-price {
    margin-top: 6px;
    color: #8b6914;
    font-weight: 700;
}

.sc-public-selected-services {
    margin-top: 12px;
}

.sc-public-selected-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--sc-line);
    font-size: 13px;
}

.sc-public-selected-item-name {
    flex: 1;
    min-width: 0;
}

.sc-public-selected-item-actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.sc-public-selected-remove {
    width: 18px;
    height: 18px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #dc3545;
    color: #fff;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.15s ease;
}

.sc-public-selected-remove:hover {
    background: #bb2d3b;
    transform: scale(1.05);
}

.sc-public-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.sc-public-book-totals {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
    margin: 20px 0 16px;
    padding-top: 16px;
    border-top: 1px solid var(--sc-line);
}

.sc-public-book-totals > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sc-public-deposit-row span,
.sc-public-deposit-row strong {
    color: #b8941f;
}

.sc-public-book-totals strong {
    display: block;
    font-size: 18px;
}

.sc-public-book-note {
    margin: 12px 0 0;
    font-size: 13px;
    color: var(--sc-muted);
    text-align: center;
}

.sc-public-empty {
    margin: 0;
    font-size: 13px;
    color: var(--sc-muted);
}

.sc-public-book-toast {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1220;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: #fff;
    padding: 14px 18px;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(184, 148, 31, 0.28);
    font-weight: 600;
}

.sc-public-alert {
    position: fixed;
    inset: 0;
    z-index: 1230;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.sc-public-alert[hidden] {
    display: none;
}

.sc-public-alert-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 20, 0.55);
    backdrop-filter: blur(2px);
}

.sc-public-alert-dialog {
    position: relative;
    width: min(420px, 100%);
    padding: 28px 24px 24px;
    border-radius: 18px;
    background: #fff;
    border: 2px solid #d4af37;
    box-shadow: 0 24px 60px rgba(20, 20, 20, 0.22);
    text-align: center;
}

.sc-public-alert-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #faf7ef 0%, #f3ecd6 100%);
    border: 2px solid #d4af37;
    color: #b8941f;
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
}

.sc-public-alert.is-error .sc-public-alert-icon {
    background: linear-gradient(135deg, #fff5f5 0%, #fde8e8 100%);
    border-color: #e8a0a0;
    color: #c0392b;
}

.sc-public-alert-title {
    margin: 0 0 10px;
    font-family: var(--sc-serif);
    font-size: 22px;
    font-weight: 600;
    color: #2a2520;
}

.sc-public-alert-message {
    margin: 0 0 22px;
    font-size: 15px;
    line-height: 1.6;
    color: #5c5348;
}

.sc-public-alert-btn {
    min-width: 120px;
    margin: 0 auto;
}

.sc-public-book-panel .sc-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.sc-public-service-picker-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 4px;
}

.sc-public-service-picker-head .sc-public-book-label {
    margin-bottom: 0;
}

.sc-public-service-modal {
    position: fixed;
    inset: 0;
    z-index: 1240;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.sc-public-service-modal[hidden] {
    display: none;
}

.sc-public-service-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 20, 0.55);
    backdrop-filter: blur(2px);
}

.sc-public-service-modal-dialog {
    position: relative;
    width: min(640px, 100%);
    max-height: min(86vh, 760px);
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(20, 20, 20, 0.08);
    box-shadow: 0 24px 60px rgba(20, 20, 20, 0.22);
    overflow: hidden;
}

.sc-public-service-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px 14px;
    border-bottom: 1px solid var(--sc-line);
    background: #fff;
}

.sc-public-service-modal-title {
    margin: 4px 0 0;
    font-family: var(--sc-serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--sc-text);
}

.sc-public-service-modal-body {
    padding: 16px 20px;
    overflow: auto;
    flex: 1 1 auto;
}

.sc-public-service-modal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.sc-public-service-modal-footer {
    padding: 14px 20px 18px;
    border-top: 1px solid var(--sc-line);
    background: #fff;
}

@media (max-width: 767px) {
    .sc-public-calendar-card {
        padding: 18px 14px;
    }

    .sc-public-form-grid,
    .sc-public-service-grid,
    .sc-public-service-modal-grid {
        grid-template-columns: 1fr;
    }
}
