/* ============================================================
   ANNOUNCEMENT BAR — E-adam.com style top bar
   Influencer360
   ============================================================ */

/* ============================================================
   TOP BAR — Sabit üst çubuk
   ============================================================ */

#announcementBar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 10000 !important;
    background: #0a0a0c !important;
    background-color: #0a0a0c !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
    padding: 0 !important;
    margin: 0 !important;
    transform: translateY(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: none !important;
    height: auto !important;
}

#announcementBar.is-visible {
    transform: translateY(0);
}

#announcementBar .announcement-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 12px 52px 12px 52px;
    position: relative;
    min-height: 48px;
    background: transparent !important;
}

#announcementBar .announcement-bar__text {
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 400;
    letter-spacing: 0;
    white-space: nowrap;
    margin: 0 28px 0 0;
    padding: 0;
    background: none !important;
    line-height: 1.4;
}

#announcementBar .announcement-bar__text strong {
    color: #ffffff;
    font-weight: 600;
    background: none !important;
}

#announcementBar .announcement-bar__actions {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
    background: none !important;
}

/* Pipe separator */
#announcementBar .announcement-bar__pipe {
    color: rgba(255, 255, 255, 0.18);
    font-size: 16px;
    font-weight: 300;
    margin: 0 4px;
    user-select: none;
    line-height: 1;
    display: inline-block;
}

/* ---- "Toplantı Planla" butonu — transparent, E-adam style ---- */
#announcementBar .announcement-bar__btn-primary {
    all: unset !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    padding: 8px 18px !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
    cursor: pointer !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    transition: color 0.2s ease !important;
    letter-spacing: 0 !important;
    font-family: inherit !important;
    outline: none !important;
    line-height: 1.4 !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

#announcementBar .announcement-bar__btn-primary:hover,
#announcementBar .announcement-bar__btn-primary:focus {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
    transform: none !important;
    color: #E91E63 !important;
    text-decoration: none !important;
}

#announcementBar .announcement-bar__btn-primary svg {
    flex-shrink: 0;
    opacity: 0.8;
    color: currentColor;
}

#announcementBar .announcement-bar__btn-primary:hover svg {
    opacity: 1;
}

/* ---- "Sizi Arayalım" — E-adam style ---- */
#announcementBar .announcement-bar__btn-secondary {
    all: unset !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;
    background: transparent !important;
    background-color: transparent !important;
    color: #9ca3af !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    padding: 8px 18px !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
    cursor: pointer !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    transition: color 0.2s ease !important;
    letter-spacing: 0 !important;
    font-family: inherit !important;
    line-height: 1.4 !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

#announcementBar .announcement-bar__btn-secondary:hover,
#announcementBar .announcement-bar__btn-secondary:focus {
    color: #ffffff !important;
    background: transparent !important;
    background-color: transparent !important;
    text-decoration: none !important;
    box-shadow: none !important;
}

#announcementBar .announcement-bar__btn-secondary svg {
    flex-shrink: 0;
    opacity: 0.7;
    color: currentColor;
}

#announcementBar .announcement-bar__btn-secondary:hover svg {
    opacity: 1;
}

/* ---- Kapat butonu ---- */
#announcementBar .announcement-bar__close,
#announcementClose {
    position: absolute !important;
    right: 14px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: none !important;
    background-color: transparent !important;
    border: none !important;
    padding: 5px !important;
    cursor: pointer !important;
    color: #4b5563 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: color 0.2s ease !important;
    line-height: 1 !important;
    box-shadow: none !important;
    outline: none !important;
    z-index: 1 !important;
}

#announcementBar .announcement-bar__close:hover,
#announcementClose:hover {
    color: #9ca3af !important;
    background: none !important;
}

/* ---- Header aşağı kayar, bar açıkken ---- */
body.announcement-bar-open header .desktop {
    top: 48px;
}

body.announcement-bar-open header .mobile {
    top: 48px;
}

/* ---- Mobile ---- */
@media (max-width: 768px) {
    #announcementBar .announcement-bar__inner {
        padding: 10px 44px 10px 14px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px;
        min-height: auto;
    }

    #announcementBar .announcement-bar__text {
        font-size: 12px;
        white-space: normal;
        margin-right: 0;
        margin-bottom: 4px;
        width: 100%;
        text-align: center;
    }

    #announcementBar .announcement-bar__btn-primary,
    #announcementBar .announcement-bar__btn-secondary {
        font-size: 12px !important;
        padding: 6px 10px !important;
    }

    body.announcement-bar-open header .desktop {
        top: 68px;
    }

    body.announcement-bar-open header .mobile {
        top: 68px;
    }
}

/* ============================================================
   GLOBAL COLOR ISOLATION — light-mode override prevention
   ============================================================ */

body.light-mode #announcementBar {
    background: #0a0a0c !important;
    background-color: #0a0a0c !important;
}

body.light-mode #announcementBar .announcement-bar__btn-primary {
    background: transparent !important;
    color: #fff !important;
}

body.light-mode #announcementBar .announcement-bar__btn-secondary {
    background: transparent !important;
    color: #9ca3af !important;
}

/* ============================================================
   BOOKING CALENDAR MODAL OVERLAY
   ============================================================ */

.booking-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(10, 10, 12, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.booking-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

/* ============================================================
   BOOKING MODAL PANEL
   ============================================================ */

.booking-modal {
    background: #fff;
    border-radius: 20px;
    width: 100%;
    max-width: 820px;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
    transform: scale(0.96) translateY(16px);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.booking-overlay.is-open .booking-modal {
    transform: scale(1) translateY(0);
}

/* -------- Modal Header -------- */
.booking-modal__header {
    background: linear-gradient(135deg, #E91E63 0%, #C2185B 100%);
    padding: 24px 28px 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    flex-shrink: 0;
}

.booking-modal__header-left {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    flex: 1;
}

.booking-modal__header-text {
    min-width: 0;
    flex: 1;
}

.booking-modal__avatar {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.booking-modal__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booking-modal__title {
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 4px;
    letter-spacing: -0.3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.booking-modal__subtitle {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    font-weight: 500;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.booking-modal__close-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s ease;
    line-height: 1;
    padding: 0;
}

.booking-modal__close-btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* -------- Modal Body (scrollable) -------- */
.booking-modal__body {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
}

.booking-modal__body::-webkit-scrollbar {
    width: 4px;
}
.booking-modal__body::-webkit-scrollbar-track { background: transparent; }
.booking-modal__body::-webkit-scrollbar-thumb { background: #e5e7eb; border-radius: 4px; }

/* -------- Steps -------- */
.booking-steps {
    display: flex;
    border-bottom: 1px solid #f3f4f6;
    padding: 0 28px;
    gap: 0;
    flex-shrink: 0;
    background: #fff;
}

.booking-step-tab {
    padding: 16px 20px;
    font-size: 13px;
    font-weight: 600;
    color: #9ca3af;
    cursor: default;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease, border-color 0.2s ease;
    margin-bottom: -1px;
}

.booking-step-tab.is-active {
    color: #E91E63;
    border-bottom-color: #E91E63;
}

.booking-step-tab.is-done {
    color: #10b981;
}

.booking-step-tab__num {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #f3f4f6;
    color: #9ca3af;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.booking-step-tab.is-active .booking-step-tab__num {
    background: #E91E63;
    color: #fff;
}

.booking-step-tab.is-done .booking-step-tab__num {
    background: #10b981;
    color: #fff;
}

/* -------- Step Panels -------- */
.booking-step-panel {
    display: none;
    padding: 24px 28px;
}

.booking-step-panel.is-active {
    display: block;
}

/* ============================================================
   STEP 1: CALENDAR
   ============================================================ */

.booking-calendar-layout {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 0;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
}

/* Calendar Left */
.booking-calendar-left {
    padding: 20px 24px;
    border-right: 1px solid #f3f4f6;
}

.booking-calendar-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.booking-calendar-nav__title {
    font-size: 16px;
    font-weight: 800;
    color: #1f2937;
    letter-spacing: -0.3px;
}

.booking-calendar-nav__btn {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
    line-height: 1;
}

.booking-calendar-nav__btn:hover {
    border-color: #E91E63;
    color: #E91E63;
    background: rgba(233, 30, 99, 0.05);
}

.booking-calendar-nav__btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

/* Calendar Grid */
.booking-calendar-grid {
    width: 100%;
    border-collapse: collapse;
}

.booking-calendar-grid th {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 4px 12px;
}

.booking-calendar-grid td {
    text-align: center;
    padding: 3px;
}

.booking-day-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: none;
    background: transparent;
    color: #1f2937;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.18s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-family: inherit;
}

.booking-day-btn:hover:not(:disabled):not(.is-selected) {
    background: rgba(233, 30, 99, 0.08);
    color: #E91E63;
}

.booking-day-btn.is-today::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #E91E63;
    border-radius: 50%;
}

.booking-day-btn.is-selected {
    background: linear-gradient(135deg, #E91E63, #C2185B);
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

.booking-day-btn.is-selected::after {
    background: #fff;
}

.booking-day-btn:disabled,
.booking-day-btn.is-past,
.booking-day-btn.is-disabled {
    color: #d1d5db !important;
    cursor: not-allowed !important;
    background: transparent !important;
    box-shadow: none !important;
    pointer-events: none;
}

/* Calendar Right — Time Slots */
.booking-calendar-right {
    display: flex;
    flex-direction: column;
}

.booking-time-header {
    padding: 16px 16px 12px;
    border-bottom: 1px solid #f3f4f6;
    background: #fafafa;
}

.booking-time-header__label {
    font-size: 11px;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.booking-time-header__date {
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
}

.booking-time-slots {
    flex: 1;
    overflow-y: auto;
    padding: 12px;
    max-height: 320px;
}

.booking-time-slots::-webkit-scrollbar { width: 3px; }
.booking-time-slots::-webkit-scrollbar-thumb { background: #e5e7eb; border-radius: 3px; }

.booking-time-btn {
    display: block;
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #374151;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 6px;
    text-align: center;
    transition: all 0.18s ease;
    font-family: inherit;
}

.booking-time-btn:hover:not(.is-selected):not(.is-taken) {
    border-color: #E91E63;
    color: #E91E63;
    background: rgba(233, 30, 99, 0.04);
}

.booking-time-btn.is-selected {
    background: linear-gradient(135deg, #E91E63, #C2185B);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.25);
}

.booking-time-btn.is-taken {
    background: #f9fafb;
    color: #d1d5db;
    cursor: not-allowed;
    text-decoration: line-through;
}

.booking-time-empty {
    text-align: center;
    padding: 32px 12px;
    color: #9ca3af;
    font-size: 13px;
}

/* ============================================================
   STEP 2: CONTACT FORM
   ============================================================ */

.booking-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.booking-form-grid .full-width {
    grid-column: 1 / -1;
}

.booking-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.booking-form-label {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
}

.booking-form-label span {
    color: #E91E63;
    margin-left: 2px;
}

.booking-form-input,
.booking-form-textarea,
.booking-form-select {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 14px;
    color: #1f2937;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    font-family: inherit;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.booking-form-input:focus,
.booking-form-textarea:focus,
.booking-form-select:focus {
    border-color: #E91E63;
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.booking-form-input.is-error,
.booking-form-textarea.is-error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.booking-form-textarea {
    resize: vertical;
    min-height: 80px;
}

.booking-form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
    cursor: pointer;
}

/* Selected slot summary in step 2 */
.booking-slot-summary {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(233, 30, 99, 0.05);
    border: 1px solid rgba(233, 30, 99, 0.2);
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 20px;
}

.booking-slot-summary__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #E91E63, #C2185B);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
}

.booking-slot-summary__text {
    font-size: 13px;
    color: #374151;
}

.booking-slot-summary__text strong {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 2px;
}

/* Privacy note */
.booking-privacy-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 16px;
    padding: 12px 14px;
    background: #f9fafb;
    border-radius: 10px;
    font-size: 12px;
    color: #6b7280;
    line-height: 1.5;
}

.booking-privacy-note svg {
    flex-shrink: 0;
    margin-top: 1px;
    color: #9ca3af;
}

/* ============================================================
   STEP 3: SUCCESS
   ============================================================ */

.booking-success {
    text-align: center;
    padding: 40px 24px 32px;
}

.booking-success__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E91E63, #C2185B);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(233, 30, 99, 0.3);
}

.booking-success__title {
    font-size: 22px;
    font-weight: 800;
    color: #1f2937;
    margin: 0 0 10px;
    letter-spacing: -0.4px;
}

.booking-success__desc {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 24px;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}

.booking-success__detail {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 14px 24px;
    font-size: 14px;
    color: #374151;
    font-weight: 600;
    margin-bottom: 8px;
}

/* "Yeni Rezervasyon Yap" butonu — başarı ekranı */
.booking-btn-new {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 auto;
    padding: 12px 28px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #E91E63, #C2185B);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
    box-shadow: 0 4px 14px rgba(233, 30, 99, 0.35);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.4;
}

.booking-btn-new:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.45);
    background: linear-gradient(135deg, #f0256d, #d81b60);
    color: #fff;
}

.booking-btn-new:active {
    transform: translateY(0);
}

/* -------- Modal Footer -------- */
.booking-modal__footer {
    padding: 16px 28px;
    border-top: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: #fafafa;
    flex-shrink: 0;
}

.booking-modal__footer-info {
    font-size: 12px;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 6px;
}

.booking-footer-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.booking-btn-back {
    padding: 10px 20px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #6b7280;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.booking-btn-back:hover {
    border-color: #d1d5db;
    color: #374151;
    background: #f9fafb;
}

.booking-btn-next,
.booking-btn-submit {
    padding: 10px 24px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #E91E63, #C2185B);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    box-shadow: 0 4px 14px rgba(233, 30, 99, 0.3);
}

.booking-btn-next:hover,
.booking-btn-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

.booking-btn-next:disabled,
.booking-btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Loading spinner */
.booking-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: booking-spin 0.65s linear infinite;
    flex-shrink: 0;
}

@keyframes booking-spin {
    to { transform: rotate(360deg); }
}

/* Error message */
.booking-error-msg {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.25);
    border-radius: 10px;
    padding: 12px 16px;
    color: #dc2626;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 16px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 640px) {
    .booking-modal {
        max-height: 95vh;
        border-radius: 16px 16px 0 0;
        max-width: 100%;
        margin: auto 0 0;
        align-self: flex-end;
    }

    .booking-overlay {
        align-items: flex-end;
        padding: 0;
    }

    .booking-modal__header {
        padding: 18px 20px 16px;
    }

    .booking-modal__title {
        font-size: 16px;
    }

    .booking-step-panel {
        padding: 16px 16px;
    }

    .booking-steps {
        padding: 0 16px;
        overflow-x: auto;
    }

    .booking-step-tab {
        padding: 14px 12px;
        font-size: 12px;
    }

    .booking-calendar-layout {
        grid-template-columns: 1fr;
    }

    .booking-calendar-right {
        border-top: 1px solid #f3f4f6;
        border-right: none;
    }

    .booking-calendar-left {
        border-right: none;
    }

    .booking-time-slots {
        max-height: 160px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
        padding: 12px;
    }

    .booking-time-btn {
        margin-bottom: 0;
        padding: 8px 6px;
        font-size: 12px;
    }

    .booking-form-grid {
        grid-template-columns: 1fr;
    }

    .booking-modal__footer {
        padding: 14px 16px;
        flex-wrap: wrap;
    }

    .booking-footer-actions {
        width: 100%;
    }

    .booking-btn-back,
    .booking-btn-next,
    .booking-btn-submit {
        flex: 1;
        justify-content: center;
    }

    .booking-day-btn {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }
}

/* ============================================================
   LIGHT MODE ISOLATION — takvim modal override prevention
   ============================================================ */

body.light-mode .booking-day-btn {
    color: #1f2937 !important;
    background: transparent !important;
}

body.light-mode .booking-day-btn:hover:not(:disabled):not(.is-selected) {
    background: rgba(233, 30, 99, 0.08) !important;
    color: #E91E63 !important;
}

body.light-mode .booking-day-btn.is-selected {
    background: linear-gradient(135deg, #E91E63, #C2185B) !important;
    color: #fff !important;
}

body.light-mode .booking-day-btn:disabled,
body.light-mode .booking-day-btn.is-past,
body.light-mode .booking-day-btn.is-disabled {
    color: #d1d5db !important;
    background: transparent !important;
}

body.light-mode .booking-calendar-grid th {
    color: #9ca3af !important;
}

body.light-mode .booking-time-btn {
    color: #374151 !important;
    background: #fff !important;
    border-color: #e5e7eb !important;
}

body.light-mode .booking-time-btn.is-selected {
    background: linear-gradient(135deg, #E91E63, #C2185B) !important;
    color: #fff !important;
    border-color: transparent !important;
}

body.light-mode .booking-modal__title {
    color: #fff !important;
}

body.light-mode .booking-calendar-nav__title {
    color: #1f2937 !important;
}