/* =====================================================
   Boat Tours PR — Booking Widget v3  (Calendar 2)
   Viator-style compact widget
   Colors: navy #1a2744 | orange #d57b12 | green #16a34a
   ===================================================== */

:root {
    --wgt-navy      : #1a3153;
    --wgt-navy-dk   : #152844;
    --wgt-orange    : #d57b12;
    --wgt-orange-dk : #bf6d0f;
    --wgt-avail     : #d57b12;
    --wgt-soldout   : #dc2626;
    --wgt-closed    : #94a3b8;
    --wgt-success   : #16a34a;
    --wgt-border    : #e5e7eb;
    --wgt-bg        : #ffffff;
    --wgt-bg-soft   : #f9fafb;
    --wgt-text      : #111827;
    --wgt-muted     : #6b7280;
    --wgt-radius    : 12px;
    --wgt-radius-sm : 8px;
    --wgt-shadow    : 0 2px 8px rgba(0,0,0,0.10), 0 8px 32px rgba(0,0,0,0.08);
    --wgt-shadow-sm : 0 1px 4px rgba(0,0,0,0.08);
}

/* ── Reset helpers ──────────────────────────────────── */
.btpr-wgt *,
.btpr-wgt *::before,
.btpr-wgt *::after { box-sizing: border-box; }
.btpr-wgt button { font-family: inherit; cursor: pointer; }

/* ══════════════════════════════════════════════════════
   WIDGET WRAPPER
   ══════════════════════════════════════════════════════ */
.btpr-wgt {
    max-width: 420px;
    width: 100%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 15px;
    color: var(--wgt-text);
    line-height: 1.5;
    border: 1.5px solid var(--wgt-border);
    border-radius: var(--wgt-radius);
    padding: 22px;
    background: var(--wgt-bg);
    box-shadow: var(--wgt-shadow-sm);
    position: relative;
}

/* ── Destination header ─────────────────────────────── */
.btpr-wgt__dest-hdr { margin-bottom: 14px; }

.btpr-wgt__dest-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--wgt-navy);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: 100px;
}

.btpr-wgt__dest-select-lbl {
    font-size: 16px;
    font-weight: 700;
    color: var(--wgt-navy);
    margin: 0 0 12px;
}
.btpr-wgt__dest-opts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.btpr-wgt__dest-opt {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    border: 2px solid var(--wgt-border);
    border-radius: 100px;
    background: var(--wgt-bg);
    color: var(--wgt-navy);
    font-size: 13px;
    font-weight: 600;
    transition: border-color .15s, color .15s, background .15s;
}
.btpr-wgt__dest-opt:hover {
    border-color: var(--wgt-orange);
    color: var(--wgt-orange);
    background: #fff9f0;
}

/* ── Price header ───────────────────────────────────── */
.btpr-wgt__price-hdr { margin-bottom: 16px; }

.btpr-wgt__price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

/* ── Currency footnote ───────────────────────────────── */
.btpr-wgt__currency-footnote {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 12px;
    font-size: 11px;
    color: var(--wgt-muted);
}

.btpr-wgt__currency-sep { opacity: 0.5; }

.btpr-wgt__currency-change-btn {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    font-size: 11px !important;
    font-weight: 400 !important;
    color: var(--wgt-muted) !important;
    font-family: inherit !important;
    cursor: pointer;
    text-decoration: none !important;
    box-shadow: none !important;
    outline: none !important;
}
.btpr-wgt__currency-footnote:hover .btpr-wgt__currency-change-btn,
.btpr-wgt__currency-change-btn:hover {
    color: var(--wgt-navy) !important;
}

.btpr-wgt__currency-sel {
    -webkit-appearance: auto !important;
    appearance: auto !important;
    background: transparent !important;
    border: 1px solid var(--wgt-border) !important;
    border-radius: 6px !important;
    padding: 4px 8px !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    color: var(--wgt-text) !important;
    font-family: inherit !important;
    cursor: pointer;
    box-shadow: none !important;
    outline: none !important;
    margin-top: 4px;
    width: 100%;
}
.btpr-wgt__currency-sel:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: var(--wgt-navy) !important;
}

.btpr-wgt__price-amount {
    font-size: 28px;
    font-weight: 800;
    color: var(--wgt-text);
    letter-spacing: -0.02em;
}

.btpr-wgt__price-details-btn {
    background: none;
    border: none;
    padding: 0;
    color: var(--wgt-text);
    font-size: 14px;
    text-decoration: underline;
    font-weight: 500;
}
.btpr-wgt__price-details-btn:hover { color: var(--wgt-navy); }

.btpr-wgt__discount-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1.5px solid var(--wgt-border);
    border-radius: 100px;
    padding: 5px 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--wgt-muted);
    background: var(--wgt-bg);
}
.btpr-wgt__discount-badge svg { stroke: var(--wgt-navy); }
.btpr-wgt__discount-badge:hover { border-color: var(--wgt-navy); color: var(--wgt-navy-dk); }
.btpr-wgt__discount-badge:focus,
.btpr-wgt__discount-badge:active {
    border-color: var(--wgt-navy);
    color: var(--wgt-navy-dk);
    background: var(--wgt-bg);
    outline: none;
    box-shadow: none;
}

/* Price breakdown dropdown */
.btpr-wgt__price-details {
    background: var(--wgt-bg-soft);
    border: 1px solid var(--wgt-border);
    border-radius: var(--wgt-radius-sm);
    padding: 12px 14px;
    margin-bottom: 14px;
    font-size: 13px;
}
.btpr-wgt__price-details table {
    width: 100%;
    border-collapse: collapse;
    border: none !important;
    background: transparent !important;
}
.btpr-wgt__price-details tr {
    border: none !important;
    background: transparent !important;
}
.btpr-wgt__price-details td {
    padding: 3px 0;
    border: none !important;
    border-color: var(--wgt-border) !important;
    color: var(--wgt-text) !important;
    background: transparent !important;
}
.btpr-wgt__price-details td:last-child { text-align: right; font-weight: 600; }

/* ── Booking fields grid ────────────────────────────── */
.btpr-wgt__fields {
    border: 1.5px solid var(--wgt-border);
    border-radius: var(--wgt-radius);
    overflow: hidden;
    margin-bottom: 14px;
}

.btpr-wgt__fields-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1.5px solid var(--wgt-border);
}

.btpr-wgt__field {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    padding: 12px 14px;
    background: var(--wgt-bg);
    border: none;
    text-align: left;
    transition: background .12s;
    min-height: 68px;
    position: relative;
}
.btpr-wgt__field:focus-visible { outline: 2px solid var(--wgt-orange); outline-offset: -2px; }

.btpr-wgt__fields-row .btpr-wgt__field:first-child {
    border-right: 1.5px solid var(--wgt-border);
}

.btpr-wgt__field--full {
    width: 100%;
}

.btpr-wgt__field:hover:not(:disabled) { background: var(--wgt-bg-soft); }

.btpr-wgt__field:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.btpr-wgt__field-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--wgt-muted);
}

.btpr-wgt__field-val {
    font-size: 15px;
    font-weight: 600;
    color: var(--wgt-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.btpr-wgt__field-sub {
    font-size: 11px;
    font-weight: 500;
    color: var(--wgt-muted);
    letter-spacing: 0.02em;
    margin-top: 1px;
}

.btpr-wgt__field-inner {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 15px;
    font-weight: 600;
    color: var(--wgt-text);
}
.btpr-wgt__field-inner svg { stroke: var(--wgt-muted); flex-shrink: 0; }

.btpr-wgt__chevron {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    stroke: var(--wgt-muted);
    transition: transform .15s;
}
.btpr-wgt__field[aria-expanded="true"] .btpr-wgt__chevron {
    transform: translateY(-50%) rotate(180deg);
}

/* ── Field complete indicator (class used internally, no visible mark) ── */
.btpr-wgt__field--complete .btpr-wgt__field-label {
    color: var(--wgt-navy);
}

/* ── Action buttons ─────────────────────────────────── */
.btpr-wgt__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.btpr-wgt__cta {
    width: 100%;
    padding: 15px 20px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.01em;
    border: 2px solid transparent;
    transition: background .15s, color .15s, border-color .15s, opacity .15s;
}
.btpr-wgt__cta:disabled { opacity: 0.45; cursor: not-allowed; }

.btpr-wgt__cta--solid {
    background: var(--wgt-orange);
    border-color: var(--wgt-orange);
    color: #fff;
}
.btpr-wgt__cta--solid:hover:not(:disabled) {
    background: var(--wgt-orange-dk);
    border-color: var(--wgt-orange-dk);
}

/* ── Perks ──────────────────────────────────────────── */
.btpr-wgt__perks {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: rgba(26, 49, 83, 0.06);
    border-radius: var(--wgt-radius-sm);
    padding: 12px 14px;
}

.btpr-wgt__perk {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--wgt-navy);
}
.btpr-wgt__perk svg { stroke: var(--wgt-navy); flex-shrink: 0; margin-top: 2px; }

/* ══════════════════════════════════════════════════════
   OVERLAY
   ══════════════════════════════════════════════════════ */
.btpr-wgt__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 9998;
    animation: wgtFadeIn .18s ease;
}
@keyframes wgtFadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ══════════════════════════════════════════════════════
   PANELS  (desktop: dropdown  |  mobile: bottom sheet)
   ══════════════════════════════════════════════════════ */
.btpr-wgt__panel {
    position: fixed;
    z-index: 9999;
    background: var(--wgt-bg);
    border-radius: var(--wgt-radius);
    box-shadow: var(--wgt-shadow);
    width: 360px;
    /* overflow-y on the panel itself clips the sticky header;
       the body div scrolls instead — see panel-body below */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: wgtSlideDown .18s ease;
}
@keyframes wgtSlideDown {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Header stays visible (sticky) while body scrolls if needed */
.btpr-wgt__panel-hdr {
    flex-shrink: 0;
}
.btpr-wgt__panel-body {
    overflow-y: auto;
    flex: 1 1 auto;
    min-height: 0;          /* flex child needs this to scroll */
    -webkit-overflow-scrolling: touch;
}

.btpr-wgt__panel-hdr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px 14px;
    border-bottom: 1px solid var(--wgt-border);
    background: var(--wgt-bg);
}

.btpr-wgt__panel-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--wgt-text);
}

.btpr-wgt__panel-close {
    background: var(--wgt-bg-soft);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wgt-muted);
    transition: background .12s;
    flex-shrink: 0;
}
.btpr-wgt__panel-close:hover { background: var(--wgt-border); }

.btpr-wgt__panel-body { padding: 16px 18px 20px; }

/* ── Calendar inside panel ──────────────────────────── */
.btpr-wgt__cal-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.btpr-wgt__cal-arrow {
    background: none;
    border: 1px solid var(--wgt-border);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 20px;
    color: var(--wgt-text);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: background .12s;
}
.btpr-wgt__cal-arrow:hover:not(:disabled) { background: var(--wgt-bg-soft); }
.btpr-wgt__cal-arrow:disabled { opacity: 0.35; cursor: not-allowed; }

.btpr-wgt__cal-hdr-btn {
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 700;
    color: var(--wgt-text);
    padding: 4px 10px;
    border-radius: 6px;
    transition: background .12s;
}
.btpr-wgt__cal-hdr-btn:hover { background: var(--wgt-bg-soft); }

.btpr-wgt__cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--wgt-muted);
    margin-bottom: 6px;
}
.btpr-wgt__cal-weekdays span { padding: 4px 0; }

.btpr-wgt__cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.btpr-wgt__cal-blank { /* empty cells */ }

.btpr-wgt__cal-cell {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid transparent;
    background: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--wgt-text);
    transition: background .12s, color .12s, border-color .12s;
    position: relative;
}
.btpr-wgt__cal-cell:hover:not(:disabled) {
    background: var(--wgt-bg-soft);
}
.btpr-wgt__cal-cell--off {
    color: var(--wgt-closed);
    opacity: 0.35;
    cursor: not-allowed;
}
.btpr-wgt__cal-cell--loading {
    color: transparent !important;
    background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 50%, #e5e7eb 75%);
    background-size: 200% 100%;
    animation: wgtShimmer 1.4s ease infinite;
    border-radius: 50%;
    cursor: default;
}
@keyframes wgtShimmer {
    0%   { background-position: 200% center; }
    100% { background-position: -200% center; }
}
.btpr-wgt__cal-cell--avail   { color: var(--wgt-navy); font-weight: 600; }
.btpr-wgt__cal-cell--soldout {
    color: var(--wgt-closed);
    opacity: 0.4;
    cursor: not-allowed;
}
.btpr-wgt__cal-cell--closed {
    color: var(--wgt-closed);
    opacity: 0.4;
    cursor: not-allowed;
}
.btpr-wgt__cal-cell--avail:hover:not(:disabled) {
    background: rgba(26, 49, 83, 0.08);
    border-color: transparent;
}
.btpr-wgt__cal-cell--sel,
.btpr-wgt__cal-cell--sel:hover {
    background: var(--wgt-navy);
    color: #fff;
    border-color: var(--wgt-navy);
    border-radius: 50%;
}

/* Legend — hidden (dots used as reference for --wgt-avail) */
.btpr-wgt__cal-legend { display: none; }
.btpr-wgt__dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 3px;
}
.btpr-wgt__dot--avail   { background: var(--wgt-avail); }
.btpr-wgt__dot--soldout { background: var(--wgt-soldout); }
.btpr-wgt__dot--closed  { background: var(--wgt-closed); }

/* Loading bar below calendar nav */
.btpr-wgt__cal-loading-bar {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--wgt-navy) 50%, transparent 100%);
    background-size: 200% 100%;
    animation: wgtLoadSlide 1s ease infinite;
    margin-bottom: 8px;
    border-radius: 2px;
}
@keyframes wgtLoadSlide {
    0%   { background-position: 200% center; }
    100% { background-position: -200% center; }
}

.btpr-wgt__cal-note {
    text-align: center;
    font-size: 12px;
    color: var(--wgt-muted);
    margin-top: 10px;
    margin-bottom: 0;
}

/* ── Month picker ───────────────────────────────────── */
.btpr-wgt__month-picker {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin: 8px 0 4px;
}

.btpr-wgt__month-cell {
    padding: 10px 4px;
    border-radius: var(--wgt-radius-sm);
    border: 1.5px solid transparent;
    background: none;
    font-size: 13px;
    font-weight: 600;
    color: var(--wgt-text);
    transition: background .12s, border-color .12s;
    text-align: center;
}
.btpr-wgt__month-cell:hover:not(:disabled) {
    background: var(--wgt-bg-soft);
    border-color: var(--wgt-border);
}
.btpr-wgt__month-cell:disabled { color: var(--wgt-closed); cursor: not-allowed; }
.btpr-wgt__month-cell--sel {
    background: var(--wgt-navy);
    color: #fff;
    border-color: var(--wgt-navy);
}

/* ── Travelers panel ────────────────────────────────── */
.btpr-wgt__pax-subtitle {
    font-size: 13px;
    color: var(--wgt-muted);
    margin: 0 0 14px;
}

.btpr-wgt__pax-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--wgt-border);
}
.btpr-wgt__pax-row:last-of-type { border-bottom: none; }

.btpr-wgt__pax-info { flex: 1; }

.btpr-wgt__pax-type {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--wgt-text);
}
.btpr-wgt__pax-type em { font-weight: 400; font-style: normal; color: var(--wgt-muted); }

.btpr-wgt__pax-meta {
    display: block;
    font-size: 12px;
    color: var(--wgt-muted);
    margin-top: 2px;
}

.btpr-wgt__disc-tag {
    display: inline-block;
    background: rgba(26, 49, 83, 0.10);
    color: var(--wgt-navy);
    font-size: 11px;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 4px;
    margin-left: 4px;
    vertical-align: middle;
}

.btpr-wgt__pax-ctrl {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.btpr-wgt__pax-stepper {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid var(--wgt-border);
    background: none;
    font-size: 18px;
    color: var(--wgt-text);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .12s, background .12s;
}
.btpr-wgt__pax-stepper:hover:not(:disabled) {
    border-color: var(--wgt-navy);
    background: var(--wgt-bg-soft);
}
.btpr-wgt__pax-stepper:disabled { opacity: 0.3; cursor: not-allowed; }
.btpr-wgt__pax-stepper--active { border-color: var(--wgt-navy); color: var(--wgt-navy); }

.btpr-wgt__pax-count {
    font-size: 16px;
    font-weight: 700;
    min-width: 20px;
    text-align: center;
    color: var(--wgt-text);
}

.btpr-wgt__minor-alert {
    background: #fff7ed;
    border: 1px solid #fdba74;
    border-radius: var(--wgt-radius-sm);
    padding: 10px 12px;
    font-size: 13px;
    color: #9a3412;
    margin: 10px 0;
}

.btpr-wgt__apply-btn {
    width: 100%;
    margin-top: 16px;
    padding: 13px;
    border-radius: 100px;
    background: var(--wgt-orange);
    border: 2px solid var(--wgt-orange);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    transition: background .15s, border-color .15s;
}
.btpr-wgt__apply-btn:hover { background: var(--wgt-orange-dk); border-color: var(--wgt-orange-dk); }

.btpr-wgt__pax-note {
    font-size: 12px;
    color: var(--wgt-muted);
    text-align: center;
    margin-top: 10px;
    margin-bottom: 0;
}

/* ── Time panel ─────────────────────────────────────── */
.btpr-wgt__panel-body--time {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.btpr-wgt__time-opt {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 13px 16px;
    border: 2px solid var(--wgt-border);
    border-radius: var(--wgt-radius-sm);
    background: var(--wgt-bg);
    font-size: 15px;
    font-weight: 600;
    color: var(--wgt-text);
    transition: border-color .12s, background .12s;
}
.btpr-wgt__time-opt:hover:not(:disabled) {
    border-color: var(--wgt-navy);
    background: var(--wgt-bg-soft);
}
.btpr-wgt__time-opt:disabled { opacity: 0.4; cursor: not-allowed; }
.btpr-wgt__time-opt--sel {
    border-color: var(--wgt-navy);
    background: rgba(26, 49, 83, 0.07);
    color: var(--wgt-navy);
}
.btpr-wgt__time-opt--sel::after {
    content: '✓';
    font-size: 15px;
    color: var(--wgt-navy);
    margin-left: auto;
}

.btpr-wgt__time-lbl {
    font-size: 15px;
    font-weight: 700;
    flex-shrink: 0;
}

.btpr-wgt__time-dur {
    font-size: 12px;
    font-weight: 500;
    color: var(--wgt-muted);
    flex: 1;
}

.btpr-wgt__time-status {
    font-size: 12px;
    font-weight: 500;
    color: var(--wgt-soldout);
    flex-shrink: 0;
}

/* ── Experience toggle (Palomino/Icacos) ────────────── */
.btpr-wgt__exp-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 14px;
}

.btpr-wgt__exp-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 12px 8px;
    border: 2px solid var(--wgt-border);
    border-radius: var(--wgt-radius-sm);
    background: var(--wgt-bg);
    cursor: pointer;
    transition: border-color .15s, background .15s;
}
.btpr-wgt__exp-btn:hover {
    border-color: var(--wgt-navy);
    background: var(--wgt-bg-soft);
}
.btpr-wgt__exp-btn--sel {
    border-color: var(--wgt-navy);
    background: rgba(26, 49, 83, 0.07);
}
.btpr-wgt__exp-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--wgt-text);
}
.btpr-wgt__exp-btn--sel .btpr-wgt__exp-name {
    color: var(--wgt-navy);
}
.btpr-wgt__exp-sub {
    font-size: 12px;
    color: var(--wgt-muted);
    font-weight: 400;
}

/* ── Beach / island notices ─────────────────────────── */
.btpr-wgt__beach-notice {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    border-radius: var(--wgt-radius-sm);
    padding: 10px 12px;
    font-size: 13px;
    line-height: 1.45;
    margin-top: 4px;
}
.btpr-wgt__beach-notice svg { flex-shrink: 0; margin-top: 1px; }
.btpr-wgt__beach-notice em  { font-style: italic; font-weight: 600; }

.btpr-wgt__beach-notice--warn {
    background: #fffbeb;
    border: 1px solid #fcd34d;
    color: #92400e;
}
.btpr-wgt__beach-notice--warn svg { stroke: #d97706; }

.btpr-wgt__beach-notice--good {
    background: #f0fdf4;
    border: 1px solid #86efac;
    color: #166534;
}
.btpr-wgt__beach-notice--good svg { stroke: #16a34a; }

/* ══════════════════════════════════════════════════════
   SLOT CONFLICT MODAL  (overlays the widget in-place)
   ══════════════════════════════════════════════════════ */
.btpr-wgt__conflict {
    position: absolute;
    inset: 0;
    background: var(--wgt-bg);
    border-radius: var(--wgt-radius);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 10;
    animation: wgt-conflict-in 0.18s ease;
}
@keyframes wgt-conflict-in {
    from { opacity: 0; transform: scale(0.97); }
    to   { opacity: 1; transform: scale(1); }
}
.btpr-wgt__conflict-icon {
    font-size: 36px;
    margin-bottom: 10px;
    line-height: 1;
}
.btpr-wgt__conflict-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--wgt-navy);
    margin: 0 0 8px;
}
.btpr-wgt__conflict-msg {
    font-size: 13px;
    color: var(--wgt-muted);
    margin: 0 0 18px;
    line-height: 1.5;
}
.btpr-wgt__conflict-alts { width: 100%; margin-bottom: 10px; }
.btpr-wgt__conflict-alts-lbl {
    font-size: 12px;
    font-weight: 600;
    color: var(--wgt-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 10px;
}
.btpr-wgt__conflict-slot {
    display: block;
    width: 100%;
    padding: 13px 16px;
    margin-bottom: 8px;
    background: rgba(26,49,83,0.06);
    border: 1.5px solid var(--wgt-navy);
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    color: var(--wgt-navy);
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}
.btpr-wgt__conflict-slot:hover {
    background: var(--wgt-navy);
    color: #fff;
}
.btpr-wgt__conflict-date-btn {
    background: none !important;
    border: none !important;
    font-size: 13px !important;
    color: var(--wgt-muted) !important;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    margin-top: 4px;
    padding: 4px 0 !important;
}
.btpr-wgt__conflict-date-btn:hover { color: var(--wgt-navy) !important; }

/* ══════════════════════════════════════════════════════
   MOBILE  ≤ 640px  — bottom sheet style
   ══════════════════════════════════════════════════════ */
@media (max-width: 640px) {

    .btpr-wgt {
        max-width: 100%;
        /* Break out of Elementor/WordPress content column so widget fills full screen width */
        width: 100vw;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 0;
        border-left: none;
        border-right: none;
        box-shadow: none;
        padding: 18px 16px;
    }

    .btpr-wgt__panel {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-height: 90vh;
        border-radius: var(--wgt-radius) var(--wgt-radius) 0 0;
        animation: wgtSlideUp .22s ease;
        box-shadow: 0 -4px 24px rgba(0,0,0,0.12);
    }

    @keyframes wgtSlideUp {
        from { transform: translateY(100%); }
        to   { transform: translateY(0); }
    }

    /* Handle bar for mobile sheets */
    .btpr-wgt__panel::before {
        content: '';
        display: block;
        width: 40px;
        height: 4px;
        background: var(--wgt-border);
        border-radius: 2px;
        margin: 10px auto 0;
    }

    .btpr-wgt__price-amount { font-size: 24px; }

    .btpr-wgt__cta { padding: 14px 20px; font-size: 14px; }

    /* Fields grid: reduce font size and padding so Date/Time fit comfortably */
    .btpr-wgt__field {
        padding: 10px 12px;
        min-height: 60px;
    }
    .btpr-wgt__field-val {
        font-size: 14px;
    }
    .btpr-wgt__field-label {
        font-size: 10px;
    }
}

/* ══════════════════════════════════════════════════════
   UTILITY
   ══════════════════════════════════════════════════════ */
[hidden] { display: none !important; }
