/* LoveYouItaly booking dialog and compact product-page additions. */
.ite-booking-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.ite-booking-modal[hidden] { display: none !important; }
.ite-booking-modal.is-open { display: flex; }
.ite-booking-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 30, 50, .55);
    backdrop-filter: blur(2px);
}
.ite-booking-modal-content {
    position: relative;
    width: 100%;
    max-width: 1040px;
    max-height: 92vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .2);
    animation: ite-modal-in .25s ease;
}
@keyframes ite-modal-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.ite-booking-modal-header {
    position: sticky;
    top: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: #fff;
    border-bottom: 1px solid #e8ecf2;
    border-radius: 16px 16px 0 0;
}
.ite-booking-modal-header h2 {
    margin: 0;
    color: #1a2740;
    font-size: 20px;
    font-weight: 700;
}
.ite-booking-modal-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: #f4f6fa;
    color: #5a6a80;
    cursor: pointer;
    font-size: 22px;
    transition: background .2s, color .2s;
}
.ite-booking-modal-close:hover { background: #e0e6ee; color: #1a2740; }
.ite-booking-modal-close:focus-visible,
.ite-book-trigger:focus-visible { outline: 3px solid #f4bd4f; outline-offset: 3px; }
.ite-booking-modal-body { padding: 24px; }
.ite-booking-modal-body .ite-booking-form { max-width: none; }
.ite-book-trigger { cursor: pointer; }
.ite-booking-modal-ready [data-ite-booking-form-home] { display: none; }
.ite-tour-booking-callout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border: 1px solid #dfe7ed;
    border-radius: 16px;
    background: #fff;
}
.ite-tour-booking-callout-copy { min-width: 0; }
.ite-tour-booking-callout h2 { margin: 0 0 6px; font-size: 28px; }
.ite-tour-booking-callout p { max-width: 620px; margin: 0; color: #5a6a80; }
.ite-tour-booking-callout > .ite-button {
    flex: 0 0 auto;
    min-width: 150px;
    border-radius: 999px;
    text-align: center;
}
.ite-summary-card--compact { padding: 20px; }
.ite-summary-card--compact .ite-summary-price { margin-bottom: 16px; font-size: 30px; }
.ite-summary-card--compact dl div { padding: 9px 0; }
.ite-booking-reassurance {
    margin-top: 12px;
    color: #5a6a80;
    font-size: 13px;
    line-height: 1.5;
}
.ite-info-accordion {
    margin-bottom: 8px;
    overflow: hidden;
    border: 1px solid #e0e6ee;
    border-radius: 8px;
}
.ite-info-accordion summary {
    padding: 14px 16px;
    background: #f8fafe;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
}
.ite-info-accordion summary::-webkit-details-marker { display: none; }
.ite-info-accordion summary::before {
    display: inline-block;
    margin-right: 8px;
    content: '\25B6';
    font-size: 10px;
    transition: transform .2s;
}
.ite-info-accordion[open] summary::before { transform: rotate(90deg); }
.ite-info-accordion > div { padding: 14px 16px; }
.ite-meeting-image { margin: 12px 0; }
.ite-meeting-image img {
    max-width: 100%;
    height: auto;
    border: 1px solid #e0e6ee;
    border-radius: 8px;
}
.ite-tour-excluded .ite-tour-list li::before { content: '\2212'; color: #a33; }
.ite-tour-media-frame > .ite-tour-video + .ite-tour-gallery { margin-top: 8px; }
@media (prefers-reduced-motion: reduce) {
    .ite-booking-modal-content { animation: none; }
    .ite-booking-modal-close,
    .ite-book-trigger { transition: none; }
}
@media (max-width: 768px) {
    .ite-booking-modal { align-items: flex-end; padding: 10px; }
    .ite-booking-modal-content { max-width: 100%; max-height: 96vh; border-radius: 12px 12px 0 0; }
    .ite-booking-modal-body { padding: 14px; }
    .ite-tour-booking-callout { align-items: stretch; flex-direction: column; }
    .ite-tour-booking-callout > .ite-button { width: 100%; }
}
@media (max-width: 390px) {
    .ite-booking-modal { padding: 0; }
    .ite-booking-modal-content { max-width: 100%; max-height: 100vh; border-radius: 0; }
    .ite-booking-modal-body { padding: 16px; }
}

/* Approved terracotta modal skin. */
.ite-booking-modal-content{border-radius:0;background:#fff;color:#173f3d;box-shadow:0 24px 70px rgba(23,63,61,.24)}.ite-booking-modal-header{border-color:#ddd8cf;border-radius:0;background:#fff}.ite-booking-modal-header h2{font-family:Georgia,'Times New Roman',serif;font-weight:400;color:#173f3d}.ite-booking-modal-close{color:#173f3d}.ite-booking-modal-body{background:#fbf6ef}.ite-booking-modal-backdrop{background:rgba(23,63,61,.66)}
