/* ===== Bookings Page — Premium Tourism Widget ===== */

.bookings-page {
    padding-top: 100px;
    min-height: 100vh;
    padding-bottom: 4rem;
    background-color: #ffffff;
    position: relative;
    color: #0f172a;
}

.bookings-page::before {
    display: none;
}

.bookings-page .container {
    position: relative;
    z-index: 1;
}

/* ===== Two-Column Grid ===== */
.bookings-grid {
    display: grid;
    grid-template-columns: 55% 1fr;
    gap: 4rem;
    align-items: start;
    padding-top: 1.5rem;
}

/* ═══════════════════════════════════════════════
   LEFT COLUMN: Editorial Content (ed-)
   No cards, no boxes, no backgrounds.
   Pure typography + icons + whitespace.
   ═══════════════════════════════════════════════ */
.service-details {
    animation: bookFadeUp 0.6s ease both;
}

/* Header */
.ed-header {
    margin-bottom: 2.8rem;
}

.service-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: linear-gradient(135deg, rgba(77, 163, 212, 0.1), rgba(58, 139, 184, 0.08));
    color: #4DA3D4;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    border: 1px solid rgba(77, 163, 212, 0.2);
}

.ed-header h1 {
    font-size: 1.85rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.ed-desc {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.7;
    max-width: 560px;
}

/* Two-Column Editorial Grid */
.ed-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}


/* Heading */
.ed-heading {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.2rem;
    letter-spacing: -0.01em;
}

.ed-heading-spaced {
    margin-top: 2rem;
}

/* Icon-Text Row */
.ed-row {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    margin-bottom: 1rem;
}

.ed-row>svg {
    color: #475569;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Label (bold inline label before a value) */
.ed-label {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.15rem;
}

/* Value (normal body text) */
.ed-value {
    font-size: 0.88rem;
    font-weight: 500;
    color: #475569;
    line-height: 1.55;
}

.ed-green {
    color: #059669;
    font-weight: 600;
}

/* Weekday Availability */
.ed-weekdays {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.25rem;
    margin-top: 0.35rem;
}

.ed-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: #94a3b8;
    min-width: 28px;
    text-align: center;
}

.ed-day.available {
    color: #0f172a;
}

.ed-day.unavailable {
    color: #cbd5e1;
}

.ed-day svg {
    display: block;
}

/* Important Info Section */
.ed-important {
    margin-bottom: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f1f5f9;
}

.ed-important .ed-row svg {
    color: #f59e0b;
}

/* Map Section */
.ed-map-section {
    margin-bottom: 2rem;
}

.ed-map {
    width: 100%;
    height: 260px;
    border-radius: 14px;
    overflow: hidden;
}

.ed-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}



/* ═══════════════════════════════════════════════
   RIGHT COLUMN: Booking Widget (bw-)
   Stacked blocks: Dark → Teal → White → Gray
   ═══════════════════════════════════════════════ */

.booking-sidebar {
    position: sticky;
    top: 100px;
    animation: bookFadeUp 0.6s ease both;
    animation-delay: 0.15s;
}

.bw-widget {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bw-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 50px rgba(15, 23, 42, 0.12), 0 4px 12px rgba(15, 23, 42, 0.04);
    transition: box-shadow 0.3s ease;
}

.bw-card:hover {
    box-shadow: 0 16px 60px rgba(15, 23, 42, 0.16), 0 6px 16px rgba(15, 23, 42, 0.06);
}

/* ── BLOCK 1: Dark Top ── */
.bw-dark-top {
    background: #1a1d23;
    padding: 1.6rem 1.6rem 1.4rem;
    color: #ffffff;
}

.bw-dark-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
}

.bw-dark-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
}

.bw-dark-note {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Variant Tabs */
.bw-variant-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.3rem;
}

.bw-tab {
    flex: 1;
    padding: 0.6rem 0.2rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bw-tab-info {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 400;
    text-transform: none;
}

.bw-tab.active .bw-tab-info {
    color: rgba(255, 255, 255, 0.5);
}

.bw-tab:hover {
    border-color: rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.8);
}

.bw-tab.active {
    background: rgba(77, 163, 212, 0.15);
    border-color: #4DA3D4;
    color: #4DA3D4;
}

/* People Counters */
.bw-counters {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
}

.bw-counter-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bw-counter-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
}

.bw-counter-label svg {
    color: rgba(255, 255, 255, 0.4);
}

/* Pill Counter */
.bw-pill-counter {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 0.15rem;
}

.bw-pill-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition: all 0.2s ease;
}

.bw-pill-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.bw-pill-btn:active {
    transform: scale(0.9);
}

.bw-pill-btn.disabled {
    opacity: 0.25;
    cursor: not-allowed;
    pointer-events: none;
}

.bw-pill-value {
    font-size: 1rem;
    font-weight: 800;
    color: #ffffff;
    min-width: 32px;
    text-align: center;
    user-select: none;
    transition: transform 0.15s ease;
}

/* Small pill (kayak counters) */
.bw-pill-sm {
    padding: 0.1rem;
}

.bw-pill-btn-sm {
    width: 28px;
    height: 28px;
}

.bw-pill-value-sm {
    font-size: 0.9rem;
    min-width: 26px;
}

/* Kayak Section */
.bw-kayak-section {
    padding-top: 0.3rem;
}

.bw-kayak-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 0.6rem;
}

.bw-kayak-rows {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.6rem;
}

.bw-kayak-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.45rem 0.6rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.bw-kayak-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.bw-kayak-name small {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 500;
}

/* Availability */
.bw-avail {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.5rem;
    background: rgba(16, 185, 129, 0.08);
    border-radius: 8px;
    margin-bottom: 0.3rem;
}

.bw-avail-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 6px rgba(16, 185, 129, 0.5);
}

.bw-avail span:last-child {
    font-size: 0.7rem;
    color: #10b981;
    font-weight: 600;
}

/* Validation */
.bw-validation {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.5rem;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 8px;
    margin-top: 0.3rem;
}

.bw-validation svg {
    color: #f87171;
    flex-shrink: 0;
}

.bw-validation span {
    font-size: 0.7rem;
    color: #f87171;
    font-weight: 600;
}


/* ── BLOCK 2: Teal Price Bar ── */
.bw-price-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: linear-gradient(135deg, #0d9488, #14b8a6);
    color: #ffffff;
}

.bw-price-bar-left,
.bw-price-bar-right {
    padding: 1rem 1.6rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.bw-price-bar-right {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.bw-price-bar-label {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.15rem;
}

.bw-price-bar-amount {
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1.2;
}

.bw-price-bar-sub {
    font-size: 0.72rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
}


/* ── BLOCK 3: White Content ── */
.bw-white-content {
    background: #ffffff;
    padding: 1.5rem 1.6rem;
}

.bw-product-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 1rem;
    line-height: 1.35;
}

/* Meta Row */
.bw-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.bw-meta-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: #64748b;
    background: #f8fafc;
    padding: 0.35rem 0.65rem;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
}

.bw-meta-item svg {
    color: #4DA3D4;
    flex-shrink: 0;
}

/* Location Row */
.bw-location-row {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.7rem 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 1.1rem;
}

.bw-location-row svg {
    color: #ef4444;
    flex-shrink: 0;
    margin-top: 2px;
}

.bw-loc-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #94a3b8;
}

.bw-loc-value {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0f172a;
}

/* Time Section */
.bw-time-section {
    margin-top: 0.2rem;
}

.bw-time-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: #475569;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.bw-time-pills {
    display: flex;
    gap: 0.6rem;
}

.bw-time-pill {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.7rem 0.8rem;
    background: #ffffff;
    border: 2px solid #d1d5db;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
}

.bw-time-pill:hover {
    border-color: #0f172a;
}

.bw-time-pill.active {
    background: #0f172a;
    border-color: #0f172a;
    color: #ffffff;
}

.bw-time-main {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}

.bw-time-pill.active .bw-time-main {
    color: #ffffff;
}

.bw-time-end {
    font-size: 0.7rem;
    color: #94a3b8;
    font-weight: 500;
}

.bw-time-pill.active .bw-time-end {
    color: rgba(255, 255, 255, 0.55);
}


/* ── BLOCK 4: Gray Footer ── */
.bw-footer {
    background: #f5f7fa;
    padding: 1.2rem 1.6rem 1.5rem;
}

.bw-disclaimer {
    font-size: 0.72rem;
    color: #94a3b8;
    line-height: 1.5;
    margin: 0 0 0.8rem;
}

.bw-footer-divider {
    height: 1px;
    background: #e2e8f0;
    margin-bottom: 0.8rem;
}

/* Total Row */
.bw-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.1rem;
}

.bw-total-left {
    display: flex;
    flex-direction: column;
}

.bw-total-label {
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #475569;
}

.bw-total-sub {
    font-size: 0.68rem;
    color: #94a3b8;
    font-weight: 500;
}

.bw-total-amount {
    font-size: 1.65rem;
    font-weight: 800;
    color: #0f172a;
    transition: transform 0.15s ease;
}

/* CTA Button */
.bw-cta-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem;
    background: #ffffff;
    color: #0f172a;
    font-size: 0.95rem;
    font-weight: 800;
    border: 2px solid #0f172a;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bw-cta-btn:hover {
    background: #0f172a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.2);
}

.bw-cta-btn:active {
    transform: translateY(0);
}

.bw-cta-btn svg {
    transition: transform 0.3s ease;
}

.bw-cta-btn:hover svg {
    transform: translateX(4px);
}

.bw-cta-btn[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}


/* ═══════════════════════════════════════════════
   ANIMATION
   ═══════════════════════════════════════════════ */
@keyframes bookFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .bookings-grid {
        grid-template-columns: 1fr 380px;
        gap: 2.5rem;
    }
}

@media (max-width: 820px) {
    .bookings-page {
        padding-top: 80px;
    }

    .bookings-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .booking-sidebar {
        position: static;
        order: -1;
    }

    .ed-header h1 {
        font-size: 2rem;
    }

    .ed-desc {
        font-size: 0.95rem;
    }

    .ed-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .ed-header h1 {
        font-size: 1.7rem;
    }

    .bw-dark-top {
        padding: 1.3rem 1.2rem 1.2rem;
    }

    .bw-price-bar-left,
    .bw-price-bar-right {
        padding: 0.8rem 1.2rem;
    }

    .bw-white-content {
        padding: 1.2rem 1.2rem;
    }

    .bw-footer {
        padding: 1rem 1.2rem 1.2rem;
    }

    .bw-meta-row {
        gap: 0.5rem;
    }

    .bw-time-pills {
        flex-direction: column;
    }
}


/* ═══════════════════════════════════════════════
   LEGAL DISCLAIMERS SECTION
   ═══════════════════════════════════════════════ */

.legal-section {
    background: #f8fafc;
    padding: 3.5rem 0 4rem;
    border-top: 1px solid #e2e8f0;
}

.legal-heading {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 2rem;
}

.legal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 2.5rem;
}

.legal-item {
    display: flex;
    flex-direction: column;
}

.legal-item-full {
    grid-column: 1 / -1;
}

.legal-title {
    font-size: 0.82rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.legal-item p {
    font-size: 0.8rem;
    font-weight: 400;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
}

.legal-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.legal-list li {
    font-size: 0.8rem;
    font-weight: 400;
    color: #64748b;
    line-height: 1.65;
    padding-left: 1.2rem;
    position: relative;
}

.legal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    background: #94a3b8;
    border-radius: 50%;
}

@media (max-width: 820px) {
    .legal-grid {
        grid-template-columns: 1fr;
    }

    .legal-section {
        padding: 2.5rem 0 3rem;
    }
}