.book-page #first > .content {
    direction: rtl;
    text-align: right;
    max-width: 100%;
    box-sizing: border-box;
}

.book-booking-shell {
    width: 100%;
    max-width: 100%;
}

.book-page #first header p {
    line-height: 1.6;
}

.book-calendar-shell {
    position: relative;
    min-height: 340px;
    margin-bottom: 0.25rem;
}

.book-calendar-body[aria-busy="true"] {
    opacity: 0.45;
    pointer-events: none;
}

.book-calendar-loading {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 8px;
    color: #215268;
    font-weight: 600;
}

.book-calendar-loading[hidden] {
    display: none !important;
}

.book-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid #e6e6e6;
    border-top-color: #d22080;
    border-radius: 50%;
    animation: book-spin 0.75s linear infinite;
}

@keyframes book-spin {
    to { transform: rotate(360deg); }
}

.book-load-error {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem 1rem;
    color: #b00020;
    font-weight: 600;
    line-height: 1.6;
}

.book-load-error a {
    color: #215268;
    text-decoration: underline;
}

.book-progress {
    display: flex;
    gap: 0.4rem;
    margin: 0 0 1.25rem;
    flex-wrap: wrap;
}

.book-progress-step {
    flex: 1;
    min-width: 72px;
    padding: 0.65rem 0.4rem;
    border-radius: 8px;
    background: #f4f4f4;
    color: #555;
    font-weight: 600;
    text-align: center;
    font-size: 0.85rem;
    line-height: 1.3;
}

.book-progress-step.active {
    background: #d22080;
    color: #fff;
}

.book-progress-step.completed {
    background: #215268;
    color: #fff;
}

.book-panel {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
}

.book-step h2,
.book-success h2 {
    margin-bottom: 0.75rem;
    color: #040846;
    font-size: 1.35rem;
    font-family: 'Assistant', sans-serif;
    font-weight: 800;
    text-transform: none;
    letter-spacing: normal;
    line-height: 1.5;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.calendar-header h3 {
    margin: 0;
    font-size: 1.1rem;
    flex: 1;
    text-align: center;
    font-family: 'Assistant', sans-serif;
    font-weight: 600;
    text-transform: none;
    letter-spacing: normal;
}

.book-page button.calendar-nav {
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    -webkit-appearance: none;
    appearance: none;
    border: none;
    background: #215268;
    color: #fff;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    max-width: 40px;
    max-height: 40px;
    padding: 0;
    margin: 0;
    border-radius: 50%;
    cursor: pointer;
    flex-shrink: 0;
    font-family: inherit;
    line-height: 1;
    overflow: hidden;
    box-shadow: none;
    text-transform: none;
    letter-spacing: normal;
}

.book-page button.calendar-nav::before,
.book-page button.calendar-nav::after {
    content: none !important;
    display: none !important;
}

.book-page .calendar-nav .calendar-nav-icon {
    display: block;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1;
    color: inherit;
    pointer-events: none;
    user-select: none;
}

.book-page .calendar-nav svg {
    display: none;
}

.book-page .calendar-nav:hover {
    background: #d22080;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.35rem;
}

.calendar-weekday,
.calendar-day {
    text-align: center;
    padding: 0.55rem 0;
    border-radius: 8px;
    font-size: 0.9rem;
}

.calendar-weekday {
    font-weight: 700;
    color: #215268;
}

.book-page .calendar-day {
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1px solid transparent;
    background: #fafafa;
    color: #999;
    cursor: default;
    margin: 0;
    padding: 0.55rem 0;
    min-height: 40px;
    font-family: inherit;
    line-height: 1;
}

.calendar-day.muted {
    opacity: 0.35;
}

.calendar-day.today {
    opacity: 1;
    font-weight: 800;
    padding-top: 0.8rem;
    padding-bottom: 0.65rem;
    min-height: 44px;
}

.calendar-day.today.muted,
.calendar-day.today.unavailable {
    opacity: 0.85;
    background: rgba(0, 0, 0, 0.72);
    border: 2px solid rgba(0, 0, 0, 0.85);
    color: #fff;
    cursor: default;
    box-shadow: none;
}

.calendar-day.today::before {
    content: 'היום';
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.52rem;
    font-weight: 700;
    line-height: 1;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0;
    pointer-events: none;
}

.calendar-day.today.available::before {
    color: rgba(255, 255, 255, 0.9);
}

.calendar-day.today.selected::before {
    color: #fff;
}

.calendar-day.today::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
}

.calendar-day.today.available:not(.selected) {
    background: rgba(0, 0, 0, 0.72);
    border-color: #d22080;
    color: #fff;
    opacity: 0.85;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
    cursor: pointer;
}

.calendar-day.today.available.full {
    background: rgba(0, 0, 0, 0.55);
    border-color: rgba(255, 255, 255, 0.45);
    border-style: dashed;
    color: rgba(255, 255, 255, 0.75);
    opacity: 0.85;
    cursor: not-allowed;
    box-shadow: none;
}

.calendar-day.today.selected {
    color: #fff;
    background: #d22080;
    border-color: #d22080;
    box-shadow: none;
}

.calendar-day.today.selected::after {
    background: #fff;
}

.calendar-day.empty {
    background: transparent;
    border: none;
}

.calendar-day.available {
    background: #fff;
    border-color: #d22080;
    color: #040846;
    cursor: pointer;
    font-weight: 700;
}

.calendar-day.available:hover {
    background: #ffe8f3;
}

.calendar-day.available.selected {
    background: #d22080;
    color: #fff;
}

.calendar-day.available.full {
    background: #f1f1f1;
    border-color: #ddd;
    color: #999;
    cursor: not-allowed;
}

.calendar-day.unavailable {
    background: #f7f7f7;
    color: #bbb;
}

.book-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
    align-items: center;
}

.book-page .book-button {
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 8px;
    padding: 0.8rem 1.25rem;
    min-height: 44px;
    font-size: 0.95rem;
    line-height: 1.3;
    cursor: pointer;
    font-family: inherit;
    margin: 0;
    text-align: center;
}

.book-button.primary {
    background: #d22080;
    color: #fff;
}

.book-button.primary:hover:not(:disabled) {
    background: #b01a6c;
}

.book-button.secondary {
    background: #215268;
    color: #fff;
}

.book-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.book-summary {
    background: #f8f3f6;
    border-right: 4px solid #d22080;
    padding: 0.85rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.5;
}

.guests-control {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
}

.guests-control input {
    width: 70px;
    text-align: center;
    font-size: 1.15rem;
    padding: 0.45rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
}

.book-page .guests-btn {
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    margin: 0;
    border-radius: 50%;
    border: none;
    background: #215268;
    color: #fff;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    font-family: inherit;
}

.guests-availability {
    color: #215268;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.book-price-box {
    background: #eef6f8;
    border-radius: 8px;
    padding: 0.9rem 1rem;
    margin-bottom: 0.5rem;
}

.book-price-line {
    display: block;
    color: #444;
    margin-bottom: 0.35rem;
}

.book-price-total {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
    color: #215268;
}

.book-form .field {
    margin-bottom: 0.85rem;
}

.book-form input,
.book-form textarea {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    box-sizing: border-box;
}

.book-form textarea {
    min-height: 90px;
    resize: vertical;
}

.book-review-list {
    margin: 0 0 1rem;
}

.book-review-list > div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid #eee;
}

.book-review-list dt {
    font-weight: 700;
    color: #215268;
    margin: 0;
}

.book-review-list dd {
    margin: 0;
    text-align: left;
}

.book-total {
    background: #f8f3f6;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.book-total strong {
    font-size: 1.25rem;
    color: #d22080;
}

.book-form .g-recaptcha {
    margin: 0.5rem 0 1rem;
    min-height: 78px;
}

.book-payment-note {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.book-error {
    color: #b00020;
    margin-top: 1rem;
    font-weight: 600;
}

.book-success {
    max-width: 100%;
    margin: 0 auto 1rem;
    text-align: center;
    padding: 1.5rem 1rem;
}

.book-success h2 {
    color: #215268;
    margin-bottom: 0.75rem;
}

.book-loading {
    text-align: center;
    padding: 1.5rem 0;
}

.book-intro-note {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

#book-private-section .content p,
#faq-section .content.FAQ {
    direction: rtl;
    text-align: right;
    line-height: 1.7;
}

#book-private-section .content a {
    color: #215268;
    text-decoration: underline;
}

#faq-section {
    overflow-x: hidden;
    max-width: 100%;
    box-sizing: border-box;
}

#faq-section .content {
    overflow-x: hidden;
    max-width: 100%;
    box-sizing: border-box;
}

.content.FAQ {
    direction: rtl;
    text-align: right;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 10px;
    overflow-x: hidden;
    word-wrap: break-word;
}

.faq-accordion {
    box-shadow: 0 1px 5px rgba(85, 85, 85, 0.15) !important;
    border-radius: 2px !important;
    overflow: hidden !important;
    direction: rtl !important;
}

.faq-card {
    border: 0 !important;
    border-radius: 0 !important;
    background-color: #fff !important;
    box-sizing: border-box !important;
    margin-bottom: 8px !important;
}

.faq-card:last-child {
    margin-bottom: 0 !important;
}

.faq-card-header {
    padding: 15px 16px !important;
    border-radius: 0 !important;
    background-color: #f6f6f6 !important;
    border: 0 !important;
    margin: 0 !important;
    transition: background-color 0.2s ease !important;
    box-shadow: none !important;
}

.faq-card-header:hover {
    background-color: #f0f0f0 !important;
}

.faq-card-header h5 {
    margin: 0 !important;
}

.faq-btn {
    display: block !important;
    width: 100% !important;
    padding: 0 !important;
    border: 0 !important;
    font-weight: 700 !important;
    color: rgba(0, 0, 0, 0.87) !important;
    text-align: right !important;
    white-space: normal !important;
    background: transparent !important;
    cursor: pointer !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    transition: color 0.2s ease !important;
    box-shadow: none !important;
    outline: none !important;
    font-family: inherit !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.faq-btn:hover,
.faq-btn:focus,
.faq-btn:active,
.faq-btn:hover:active {
    text-decoration: none !important;
    color: rgba(0, 0, 0, 0.87) !important;
    outline: none !important;
    box-shadow: none !important;
}

.faq-card-header.active {
    background-color: #fff !important;
    box-shadow: none !important;
}

.faq-card-header.active:hover {
    background-color: #fff !important;
    box-shadow: none !important;
}

.faq-panel {
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.3s ease-out !important;
    background-color: #fff !important;
    box-shadow: none !important;
    border: 0 !important;
}

.faq-panel.show {
    max-height: 2000px !important;
    box-shadow: none !important;
    border: 0 !important;
}

.faq-card-body {
    padding: 15px 16px !important;
    box-sizing: border-box !important;
    box-shadow: none !important;
    border: 0 !important;
}

.faq-card-body p {
    color: #616161 !important;
    margin: 0 !important;
    line-height: 1.7 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
    text-align: right !important;
}

.faq-card-body p:last-of-type {
    margin: 0;
}

.faq-card-body a {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.faq-card-body a:hover {
    color: #000;
    text-decoration: underline;
}

.calendar-nav:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

@media screen and (min-width: 901px) {
    .book-page .calendar-day {
        min-height: 46px;
        font-size: 0.95rem;
    }

    .book-panel {
        padding: 1.5rem 1.35rem;
    }
}

@media screen and (max-width: 736px) {
    .faq-card-header {
        padding: 12px 14px !important;
    }

    .faq-btn {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
    }

    .faq-card-body {
        padding: 12px 14px !important;
    }

    .faq-card-body p {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
    }

    .content.FAQ {
        padding: 0 5px;
    }
}

@media screen and (max-width: 600px) {
    .book-page #first > .content {
        padding: 0 0.25rem;
    }

    .book-panel {
        padding: 1rem 0.85rem;
        border-radius: 10px;
    }

    .book-step h2 {
        font-size: 1.2rem;
    }

    .book-progress-step {
        min-width: calc(50% - 0.25rem);
        font-size: 0.8rem;
        padding: 0.55rem 0.25rem;
    }

    .book-calendar-shell {
        min-height: 300px;
    }

    .calendar-weekday,
    .calendar-day {
        font-size: 0.75rem;
        min-height: 36px;
        padding: 0.4rem 0;
    }

    .calendar-grid {
        gap: 0.25rem;
    }

    .book-page .calendar-nav {
        width: 36px;
        height: 36px;
        min-width: 36px;
        min-height: 36px;
        max-width: 36px;
        max-height: 36px;
        font-size: 1.25rem;
    }

    .book-actions {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .book-page .book-button {
        width: 100%;
    }

    .guests-control {
        justify-content: center;
        flex-wrap: wrap;
    }

    .book-form .g-recaptcha {
        transform-origin: right top;
        transform: scale(0.92);
        max-width: 100%;
        overflow: hidden;
    }

    .book-review-list > div {
        flex-direction: column;
        gap: 0.2rem;
    }

    .book-review-list dd {
        text-align: right;
    }
}

@media screen and (max-width: 480px) {
    .faq-card-header {
        padding: 10px 12px !important;
    }

    .faq-btn {
        font-size: 0.85rem !important;
        line-height: 1.3 !important;
    }

    .faq-card-body {
        padding: 10px 12px !important;
    }

    .faq-card-body p {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
    }

    .content.FAQ {
        padding: 0;
    }
}

@media screen and (max-width: 380px) {
    .calendar-weekday,
    .calendar-day {
        font-size: 0.7rem;
        min-height: 32px;
    }
}
