/**
 * WaterJet booking detail (/booking/{code}) — paid confirmation page
 */
html body.wj-ui.request-is-booking-detail .wj-booking-detail-page {
    background: #f3f4f6;
    padding-top: calc(var(--wj-header-h, 52px) + 12px);
    padding-bottom: calc(var(--wj-nav-h, 56px) + var(--wj-nav-float-bottom, 12px) + 32px);
}

html body.wj-ui.request-is-booking-detail .wj-booking-detail-page > .container {
    max-width: 1100px;
}

html body.wj-ui.request-is-booking-detail .wj-booking-detail-hero {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 22px;
    border-radius: 24px;
    margin-bottom: 20px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
}

html body.wj-ui.request-is-booking-detail .wj-booking-detail-hero--paid {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 55%, #ffffff 100%);
    border: 1px solid #a7f3d0;
}

html body.wj-ui.request-is-booking-detail .wj-booking-detail-hero--pending {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 55%, #ffffff 100%);
    border: 1px solid #fde68a;
}

html body.wj-ui.request-is-booking-detail .wj-booking-detail-hero__icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
    background: #fff;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

html body.wj-ui.request-is-booking-detail .wj-booking-detail-hero--paid .wj-booking-detail-hero__icon {
    color: #059669;
}

html body.wj-ui.request-is-booking-detail .wj-booking-detail-hero--pending .wj-booking-detail-hero__icon {
    color: #d97706;
}

html body.wj-ui.request-is-booking-detail .wj-booking-detail-hero__eyebrow {
    margin: 0 0 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6b7280;
}

html body.wj-ui.request-is-booking-detail .wj-booking-detail-hero__title {
    margin: 0 0 6px;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
}

html body.wj-ui.request-is-booking-detail .wj-booking-detail-hero__sub {
    margin: 0;
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.5;
}

html body.wj-ui.request-is-booking-detail .wj-booking-detail-card {
    background: #fff;
    border-radius: 24px;
    padding: 22px 20px;
    margin-bottom: 16px;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
    border: 1px solid #f3f4f6;
}

html body.wj-ui.request-is-booking-detail .wj-booking-detail-card__title {
    margin: 0 0 4px;
    font-size: 1.15rem;
    font-weight: 800;
    color: #111827;
}

html body.wj-ui.request-is-booking-detail .wj-booking-detail-card__sub {
    margin: 0 0 16px;
    font-size: 0.9rem;
    color: #6b7280;
}

html body.wj-ui.request-is-booking-detail .wj-booking-detail-qr {
    text-align: center;
}

html body.wj-ui.request-is-booking-detail .wj-booking-detail-qr__box {
    display: inline-block;
    padding: 16px;
    background: #f9fafb;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    margin-bottom: 12px;
}

html body.wj-ui.request-is-booking-detail .wj-booking-detail-qr__box img {
    display: block;
    border-radius: 12px;
}

html body.wj-ui.request-is-booking-detail .wj-booking-detail-qr__code {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #2563eb;
}

html body.wj-ui.request-is-booking-detail .wj-booking-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
    margin-bottom: 8px;
}

html body.wj-ui.request-is-booking-detail .wj-booking-detail-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 18px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

html body.wj-ui.request-is-booking-detail .wj-booking-detail-btn--primary {
    background: linear-gradient(180deg, #2563eb 0%, #1d4ed8 100%);
    color: #fff;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
    flex: 1 1 100%;
}

html body.wj-ui.request-is-booking-detail .wj-booking-detail-btn--secondary {
    background: #fff;
    color: #111827;
    border: 1px solid #e5e7eb;
    flex: 1 1 calc(50% - 5px);
}

html body.wj-ui.request-is-booking-detail .wj-booking-detail-btn--ghost {
    background: #f9fafb;
    color: #374151;
    border: 1px solid #e5e7eb;
    flex: 1 1 calc(50% - 5px);
}

html body.wj-ui.request-is-booking-detail .wj-booking-detail-btn:hover {
    transform: translateY(-1px);
    text-decoration: none;
    color: inherit;
}

html body.wj-ui.request-is-booking-detail .wj-booking-detail-btn--primary:hover {
    color: #fff;
}

html body.wj-ui.request-is-booking-detail .wj-booking-detail-meta {
    list-style: none;
    margin: 12px 0 0;
    padding: 0;
}

html body.wj-ui.request-is-booking-detail .wj-booking-detail-meta li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.9rem;
}

html body.wj-ui.request-is-booking-detail .wj-booking-detail-meta li:last-child {
    border-bottom: none;
}

html body.wj-ui.request-is-booking-detail .wj-booking-detail-meta span {
    color: #6b7280;
}

html body.wj-ui.request-is-booking-detail .wj-booking-detail-status--paid {
    color: #059669;
}

html body.wj-ui.request-is-booking-detail .wj-booking-detail-sidebar .booking-review {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
}

@media (max-width: 991px) {
    html body.wj-ui.request-is-booking-detail .wj-booking-detail-page > .container {
        max-width: 448px;
        padding-left: 14px;
        padding-right: 14px;
    }

    html body.wj-ui.request-is-booking-detail .wj-booking-detail-hero {
        padding: 18px 16px;
        border-radius: 20px;
    }

    html body.wj-ui.request-is-booking-detail .wj-booking-detail-card {
        border-radius: 20px;
        padding: 18px 16px;
    }

    html body.wj-ui.request-is-booking-detail .wj-booking-detail-btn--secondary,
    html body.wj-ui.request-is-booking-detail .wj-booking-detail-btn--ghost {
        flex: 1 1 100%;
    }
}

@media print {
    html body.wj-ui.request-is-booking-detail .wj-booking-detail-actions,
    html body.wj-ui.request-is-booking-detail .bc_footer,
    html body.wj-ui.request-is-booking-detail .bc_header,
    html body.wj-ui.request-is-booking-detail .mobile-bottom-nav,
    html body.wj-ui.request-is-booking-detail .wj-contact-fab {
        display: none !important;
    }
}
