/*REview and pay page css*/
/* Load Phosphor Fill icons only for this page */
@import url('https://unpkg.com/@phosphor-icons/web@2.1.1/src/fill/style.css');

/* --- Dynamic Booking Form Styling --- */
/* --- Tour Summary Card Styling --- */
.tour-summary-card {
    margin-bottom: 2rem;
}

.tour-summary-card h3 {
    font-size: 1.25rem;
    /* 20px */
    font-weight: 600;
    margin-bottom: 1rem;
}

.summary-fields-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    /* Default to 1 column on mobile */
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    background-color: #ffffff;
}

/* On screens larger than 768px, use 2 columns */
@media (min-width: 768px) {
    .summary-fields-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* On screens larger than 1024px, use 3 columns */
@media (min-width: 1024px) {
    .summary-fields-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .guest-categories-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        border-right: none;
    }

}

.guest-categories-grid {
    padding: 0px 1rem;
}

.guest-categories-grid:not(:last-child) {
    border-right: 1px solid #e2e8f0;
}

.guest-category-field {
    padding: 0px 1rem;
    border-right: 1px solid #e2e8f0;
}

.guest-category-field:last-child {
    border-right: none;
}

.summary-field {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
}

.summary-field:last-child {
    border-bottom: none;
}

.summary-field label {
    display: block;
    font-size: 0.875rem;
    /* 14px */
    font-weight: 500;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.summary-field span,
.summary-field input,
.summary-field select {

    font-size: 1rem;
    font-weight: 500;
    color: #1e293b;
    width: 100%;
    border: none;
    border-bottom: none;
    background-color: transparent;
    padding: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

/* Remove border-bottom from flatpickr alternate input in summary fields */
.summary-field .flatpickr-input,
.summary-field input {
    border-bottom: none !important;
}

.summary-field .form-field select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}
#review-nationality{
    padding: 0.4rem 1rem !important;
}
/* --- Dynamic Add-ons Section Styling --- */
#addons-section-wrapper h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

#addons-list-container {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.addon-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 12px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}

.addon-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.addon-details {
    flex-grow: 1;
}

.addon-title {
    font-weight: 500;
    color: #1e293b;
    margin: 0;
    margin-bottom: 0px !important;
    font-size: 1.2rem;
}

.addon-description {
    font-size: 0.9rem;
    color: #565656;
    margin-bottom: 8px;
    line-height: 1.4;
}

.addon-price {
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    font-size: 16px;
}

.addon-controls .addon-add-button {
    background-color: #0073e6;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-weight: 500;
    cursor: pointer;
    font-size: 0.875rem;
    white-space: nowrap;
    font-weight: 600;
    flex-shrink: 0;
}


.addon-quantity-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    /* Adjust gap for the input field */
}

.addon-quantity-selector .quantity-input {
    width: 45px;
    /* Give the input a specific width */
    text-align: center;
    font-weight: 600;
    font-size: 1.125rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 0.25rem;
}

#view-all-addons-button {
    background: none;
    color: #0073e6;
}

/* Hide the default number input arrows */
.addon-quantity-selector .quantity-input::-webkit-outer-spin-button,
.addon-quantity-selector .quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.addon-quantity-selector .quantity-input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.addon-quantity-selector .quantity-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #cbd5e1;
    border-radius: 50%;
    background-color: white;
    color: #0073e6;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.addon-quantity-selector .quantity-value {
    font-weight: 600;
    font-size: 1.125rem;
}

/* --- Custom Tour Itinerary Styling --- */
.tour-itinerary-container {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    padding: 20px 12px;
    border: 1px solid #BEBEBE;
    border-radius: 12px;
}

.tour-itinerary-container h3 {
    font-size: 1.3rem;
    /* 24px */
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.itinerary-timeline {
    position: relative;
}

.itinerary-item {
    display: flex;
    position: relative;
    padding-left: 30px;
    /* Space for the timeline line */
    margin-bottom: 0;
}

.itinerary-item:last-child {
    margin-bottom: 0;
}

.itinerary-item:last-child .timeline-line {
    display: none;
    /* Hide the line on the last item */
}

.timeline-connector {
    position: absolute;
    left: 0;
    top: 5px;
    width: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    background-color: #ffffff;
    border: 2px solid #0073e6;
    /* Blue dot */
    border-radius: 50%;
    z-index: 1;
}

.itinerary-item:first-child .timeline-dot {
    background-color: #0073e6;
}

.timeline-line {
    width: 2px;
    flex-grow: 1;
    background-color: #d8d8d8;
    /* Light grey line */
    background-color: transparent;
    background-image: linear-gradient(to bottom, #cbd5e1 50%, transparent 50%);
    background-size: 2px 10px;
    /* Adjust size and gap for dotted effect */
    background-repeat: repeat-y;
}

.itinerary-content {
    flex: 1;
    padding-bottom: 30px;
}

.itinerary-title {
    font-size: 1rem;
    font-weight: 500;
    color: #334155;
    margin: 0 0 1rem 0;
    line-height: 1.6;
}

.itinerary-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 01rem;
    /* Small space between images */
}

.itinerary-gallery img {
    width: 180px;
    height: 125px;
    object-fit: cover;
    border-radius: 8px;
    transition: opacity 0.2s ease;
}

.itinerary-gallery img:hover {
    opacity: 0.8;
}

/* --- Price Details Summary Styling --- */
#price-details-wrapper {
    position: sticky;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);

}

.tour-summary-header {
    display: flex;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 1rem;
    align-items: stretch;
}

.summary-image {
    width: 120px;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.summary-header-text {
    flex: 1;
    min-width: 0;
}

.summary-header-text h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0rem 0;
    color: #1e293b;
    line-height: 1.3;
}

.summary-header-text p {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0 0 1rem 0;
    line-height: 1.4;
}

.summary-meta {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.summary-meta span {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: #475569;
    font-weight: 500;
}

.summary-meta i {
    color: #3b82f6;
    font-size: 14px;
    margin-right: 0.5rem;
    width: 16px;
    flex-shrink: 0;
}

/* Use filled icons in summary meta */

.google-rating {
    font-weight: 600;
    color: #1e293b;
}

.google-rating i {
    color: #f59e0b;
}

.price-details-section {
    margin-bottom: 1.5rem;
}

.price-details-section h5 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: #1e293b;
}

.price-line-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: #475569;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.price-line-item span:first-child {
    font-weight: 500;
}

.price-line-item span:last-child {
    font-weight: 600;
    color: #1e293b;
}

.price-line-item.discount {
    color: #16a34a;
}

.price-line-item.discount span:last-child {
    color: #16a34a;
    font-weight: 600;
}

.price-details-fee-note {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #6b7280;
    margin: 0.25rem 0 0.75rem 0;
    line-height: 1.3;
    font-weight: 500;
}
.price-details-fee-note i.ph {
    flex-shrink: 0;
    font-size: 1rem;
    margin-top: 0.1em;
}

.sailor-points-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    border: 1px solid #0000001e;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.sailor-points-section label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    color: black;
    margin: 0px;
}

.points-balance {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 600;
    color: black;
}


.promo-section {
    margin-bottom: 1.5rem;
}

#enter-promo-link {
    color: var(--btc-blue);
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    width: fit-content;
    border-bottom: 1px solid var(--btc-blue);
}

#enter-promo-link i {
    font-size: 1.25rem;
    color: #3b82f6;
}

.total-price-section {
    padding-top: 1rem;
    margin-bottom: 0.5rem;
}

.review-sidebar-footer {
    margin-top: 1rem;
}

.review-sidebar-footer p {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 1rem;
}

.review-terms-section {
    margin-top: 0.75rem;
}

.review-terms-section.review-terms-above-button {
    margin-bottom: 1rem;
    text-align: center;
}

.review-terms-section.review-terms-above-button .review-terms-label {
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
}

.review-terms-section .review-terms-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #334155;
    cursor: pointer;
}

.review-terms-section .review-terms-label input[type="checkbox"] {
    margin-top: 0.2rem;
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
    min-width: 1rem;
    min-height: 1rem;
}

.review-terms-section.review-terms-above-button .review-terms-label input[type="checkbox"] {
    width: 1.25rem;
    height: 1.25rem;
    min-width: 1.25rem;
    min-height: 1.25rem;
    margin-top: 0.15rem;
}

.review-terms-section .review-terms-label a {
    color: #3b82f6;
    text-decoration: underline;
}

.review-terms-section .review-terms-label a:hover {
    text-decoration: none;
}

.total-price-section .full-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
}

.price-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-breakdown-item.total-price {
    font-size: 1.11rem;
    font-weight: 600;
    color: #010101;
    border-top: 1px solid #e2e8f0;
    padding: 0.75rem 0;
}

.price-breakdown-item.deposit {
    font-size: 1rem;
    font-weight: 500;
    color: #2f3742;
    padding: 0.75rem 0;
   
    border-bottom: 1px solid #e2e8f0;
}

.price-breakdown-item.balance {
    font-size: 1rem;
    color: #2f3742;
    font-weight: 500;
}

.payment-options-section {
    background-color: #f1f5f9;
    padding: 1.25rem;
    border-radius: 12px;
    margin-bottom: 0rem;
}

.payment-options-section p {
    margin: 0 0 1rem 0;
    font-size: 0.875rem;
    color: #1e40af;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

/* Intro line: align icon and text with radio + title below */
.payment-options-section .payment-options-intro {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.payment-options-section .payment-options-intro i.ph,
.payment-options-section .payment-options-intro .ph {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.payment-options-section label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    color: #374151;
}

/* Option with title + subtitle: align radio, title and subtitle */
.payment-options-section label.payment-option-row {
    align-items: flex-start;
    padding: 10px;
    background: white;
    border-radius: 6px;
    margin-bottom: 10px;
}
.payment-options-section label.payment-option-row:last-of-type {
    margin-bottom: 0;
}
.payment-options-section label.payment-option-row input[type="radio"] {
    flex-shrink: 0;
    margin-top: 2px;
}
.payment-options-section .payment-option-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.payment-options-section .payment-option-text p {
    margin: 0;
    font-size: 0.9em;
    color: #555;
    font-weight: 500;
    line-height: 1.3;
    display: block;
}

.payment-options-section input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: #3b82f6;
}

.proceed-to-book-section {
    margin-bottom: 1.5rem;
}

.proceed-to-book-btn {
    width: 100%;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.3);
}

.proceed-to-book-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 8px -1px rgba(59, 130, 246, 0.4);
}

.cancellation-policy-section h5 {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 0.75rem 0;
    color: #1e293b;
}

.cancellation-policy-section p {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.cancellation-policy-section a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

/* --- Review Page Header --- */
.review-page-header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.back-to-tour-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #374151;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 400;
    transition: color 0.2s ease;
}

.back-to-tour-link:hover {
    color: #1e293b;
}

.back-to-tour-link i {
    font-size: 1rem;
}

.review-page-title {
    font-size: 1.75rem !important;
    font-weight: 600;
    color: #020202;
    margin: 0;
    line-height: 1.2;
    margin-bottom: 0 !important;
}

@media (max-width: 768px) {
    .review-page-title {
        font-size: 1.5rem;
    }
}

/* --- Tour Info Accordion Styling (Review Page) --- */
.tour-info-accordion {
    margin-top: 1.5rem;
    background: #fff;
}

.tour-info-accordion .accordion-item {
    border-bottom: 1px solid #e5e7eb;
}

.tour-info-accordion .accordion-item:first-child {
    border-top: none;
}

.tour-info-accordion .accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.tour-info-accordion .accordion-header:hover {
    opacity: 0.7;
}

.tour-info-accordion .accordion-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.tour-info-accordion .accordion-icon {
    font-size: 1.25rem;
    color: #94a3b8;
    transition: transform 0.3s ease;
}

.tour-info-accordion .accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

.tour-info-accordion .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.tour-info-accordion .accordion-content.active {
    padding-bottom: 1.25rem;
}

.tour-info-accordion .accordion-content-inner {
    padding: 0;
}

/* Simple list styling - checkmarks with text */
.tour-info-accordion .whats-included-container,
.tour-info-accordion .info-list-container,
.tour-info-accordion .guest-requirements-container {
    padding: 0 !important;
}

.tour-info-accordion .included-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
}

.tour-info-accordion .included-item-card {
    display: flex !important;
    align-items: flex-start !important;
    gap: 0.75rem !important;
    padding: 0.5rem 0 !important;
    background: none !important;
    background-color: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.tour-info-accordion .included-icon {
    display: none;
    /* Hide icon container when using show_icons=0 */
}

.tour-info-accordion .included-title {
    font-size: 0.9375rem;
    font-weight: 400;
    color: #374151;
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.tour-info-accordion .included-title .included-check-icon,
.tour-info-accordion .included-title i {
    color: #64748b;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Icon list (what_to_bring, whats_not_included) */
.tour-info-accordion .icon-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.tour-info-accordion .icon-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    color: #374151;
    line-height: 1.5;
}

.tour-info-accordion .icon-list li i {
    flex-shrink: 0;
    font-size: 1rem;
    margin-top: 2px;
    color: #64748b;
}

/* Not included - use prohibit icon with subtle color */
.tour-info-accordion .icon-list.not-included li i {
    color: #94a3b8;
}

/* Guest requirements text */
.tour-info-accordion .requirements-content {
    font-size: 0.9375rem;
    color: #374151;
    line-height: 1.6;
}

.tour-info-accordion .requirements-content p {
    margin: 0 0 0.5rem 0;
}

.tour-info-accordion .requirements-content p:last-child {
    margin-bottom: 0;
}

/* No content fallback */
.tour-info-accordion .no-content {
    font-size: 0.875rem;
    color: #9ca3af;
    font-style: italic;
    margin: 0;
}

/* Applied Promo Pill Styling */
.applied-promo-pill {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f0f9ff;
    border: 1px solid #7dd3fc;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
}

.applied-promo-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.applied-promo-left i {
    color: #16a34a;
    font-size: 1.125rem;
}

.applied-promo-left strong {
    color: #1e293b;
    font-weight: 600;
}

.applied-code {
    background-color: #dbeafe;
    color: #1e40af;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.75rem;
}

.applied-remove {
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.applied-remove:hover {
    background-color: #f1f5f9;
}

/* Sticky banner hidden by default - removed from review page */
.mobile-sticky-banner.review-sticky-banner {
    display: none !important;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    #price-details-wrapper {
        padding: 1rem;
        border-radius: 12px;
    }

    .tour-summary-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .summary-image {
        width: 100%;
        height: 200px;
        max-width: 300px;
        margin: 0 auto;
    }

    .summary-meta {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .summary-meta span {
        flex: none;
        min-width: auto;
        justify-content: flex-start;
    }

    .summary-field {
        padding: 0.7rem;
    }

    .price-line-item {
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
    }

    .total-price-section .full-price {
        font-size: 1.25rem;
    }

    .payment-options-section {
        padding: 1rem;
    }

    .proceed-to-book-btn {
        padding: 0.875rem 1rem;
        font-size: 0.875rem;
    }

    /* Fix Addons Layout Mobile */
    .addon-card {
        flex-wrap: wrap;
        align-items: start;
    }

    .addon-image {
        width: 70px;
        height: 70px;
        flex-shrink: 0;
        /* Prevent image from shrinking */
    }

    .addon-title {
        font-size: 1rem;
        line-height: 1.3;
    }

    .addon-description {
        font-size: 0.9rem;
        line-height: 1.3;
    }

    .addon-details {
        min-width: 0;
        /* Allow text to wrap inside container instead of moving container down */
        width: calc(100% - 90px);
        /* Help browser calculate remaining space (70px img + 1rem gap approx) */
    }

    .form-control .input {
        border-bottom: none;
    }

    .addon-controls {
        width: 100%;
        display: flex;
        justify-content: flex-end;
        margin-top: 0.5rem;
        padding-top: 0.5rem;
        border-top: 1px dashed #e2e8f0;
    }

    /* Mobile Sticky Booking Banner - Removed from review page */
    .mobile-sticky-banner.review-sticky-banner {
        display: none !important;
    }

    .banner-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .banner-price-info {
        display: flex;
        flex-direction: column;
    }

    .banner-from-label {
        font-size: 0.75rem;
        color: #64748b;
    }

    .banner-price {
        font-size: 1.125rem;
        font-weight: 700;
        color: #1d4ed8;
    }

    .banner-cta {
        background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
        color: white;
        border: none;
        border-radius: 8px;
        padding: 0.6rem 1.25rem;
        font-size: 0.9rem;
        font-weight: 600;
        cursor: pointer;
        box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.3);
    }
}

.accordion-content .icon-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accordion-content .icon-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.1rem 0;
    border-bottom: none;
}

.accordion-content .icon-list li i {
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.accordion-content .requirements-content {
    line-height: 1.6;
    color: #374151;
}

.accordion-content .requirements-content p {
    margin: 0.5rem 0;
}

/* --- Promo Code Popup Styling --- */
.promo-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(4px);
}

.promo-popup-content {
    background-color: #ffffff;
    width: 90%;
    max-width: 400px;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    position: relative;
    animation: popupFadeIn 0.2s ease-out;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.promo-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.promo-popup-header h3 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
}

.close-popup-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #94a3b8;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.2s;
}

.close-popup-btn:hover {
    color: #475569;
}

.promo-input-section label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.promo-input-container {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.promo-input-container input {
    flex: 1;
    padding: 0.625rem 0.875rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
    text-transform: uppercase;
}

.promo-input-container input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.promo-apply-btn {
    background-color: var(--btc-blue);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0 1.25rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.promo-apply-btn:hover:not(:disabled) {
    background-color: var(--btc-blue-hover, #005bb5);
    /* meaningful hover state */
}

.promo-apply-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed !important;
}

.promo-apply-btn i.ph-spinner {
    display: inline-block;
    vertical-align: middle;
}

#promo-status-message {
    font-size: 0.875rem;
    margin: 0.5rem 0 0 0;
    min-height: 1.25rem;
}

#promo-status-message.success {
    color: #16a34a;
}

#promo-status-message.error {
    color: #dc2626;
}

/* ================================
   REVIEW PAGE STANDALONE LAYOUT
   ================================ */

/* Main Container - 60/40 Grid */
.btc-review-page-container {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.btc-review-page-main {
    /* Left column */
    min-width: 0;
}

.btc-review-page-sidebar {
    /* Right column - sticky sidebar */
    position: sticky;
    top: 2rem;
    align-self: start;
}

/* Step Navigation */
.review-step {
    display: none;
    animation: stepFadeIn 0.3s ease-out;
}

.review-step.active {
    display: block;
}

@keyframes stepFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.review-step-title {
    font-size: 1.4rem !important;
    font-weight: 500 !important;
    color: #1e293b;
    margin: 0 0 0.1rem 0;
}

#review-pickup {
    margin-bottom: 10px;
}

.review-step-subtitle {
    font-size: 0.9375rem;
    color: #64748b;
    margin: 0 0 1.5rem 0;
    line-height: 1.5;
}

/* Contact Form Grid */
.review-contact-form {
    margin-bottom: 1rem;
}

.review-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.1rem 1.25rem;
}

.review-field {
    display: flex;
    flex-direction: column;
}

.review-field--full {
    grid-column: 1 / -1;
}

.review-field label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.375rem;
}

.review-input {
    width: 100%;
    padding: 0.75rem 0;
    border: none;
    border-bottom: 1px solid #e2e8f0;
    border-radius: 0;
    font-size: 1rem;
    background: transparent;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.review-input:focus {
    outline: none;
    border-bottom-color: #3b82f6;
    background: transparent;
}

.review-input[readonly] {
    background: transparent;
    color: #64748b;
    cursor: not-allowed;
}

select.review-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 24px;
    background-color: transparent;
}

textarea.review-input {
    min-height: auto;
    height: auto;
    resize: vertical;
    line-height: 1.5;
}

/* Make special request textarea same height as input fields */
.review-form-card #review-special-request.review-input {
    min-height: 44px;
    height: 44px;
    padding: 0.4rem 1rem;
    overflow-y: auto;
    line-height: 1.5;
}

.review-error {
    font-size: 0.8125rem;
    color: #dc2626;
    margin-top: 0.25rem;
    min-height: 1.25rem;
}

/* Email Wrapper with Loading */
.review-email-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.review-email-wrapper .review-input {
    flex: 1;
}

.review-loading-indicator {
    position: absolute;
    right: 12px;
    color: #6b7280;
    display: flex;
    align-items: center;
}

.review-spinner {
    animation: reviewSpin 1s linear infinite;
}

@keyframes reviewSpin {
    to {
        transform: rotate(360deg);
    }
}

/* Welcome Banner */
.review-welcome-banner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #ecfdf5;
    border-radius: 8px;
    color: #065f46;
    font-size: 0.9375rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
}

.review-welcome-banner svg {
    flex-shrink: 0;
    color: #10b981;
}

/* Inline Help */
.review-inline-help {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: #64748b;
    font-weight: 400;
    margin-left: 0.25rem;
}

.review-inline-help i {
    font-size: 0.875rem;
    color: #3b82f6;
}

/* Account Strip */
.review-account-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    margin-top: 0.5rem;
}

.review-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 500;
}

.review-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #3b82f6;
}

.review-account-points {
    font-size: 0.875rem;
    color: #64748b;
}

/* Step Footer & Buttons */
.review-step-footer {
    margin-top: 1.5rem;
    padding-top: 1rem;
}

.review-step-footer--split {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.review-btn {
    padding: 0.875rem 1.5rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.review-btn-primary {
    width: 100%;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.3);
}

.review-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 8px -1px rgba(59, 130, 246, 0.4);
}

.review-btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.review-btn-outline {
    background: white;
    border: 1px solid #d1d5db;
    color: #374151;
}

.review-btn-outline:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

/* Add-ons Container in Review Page */
.review-addons-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-addons-container .addon-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: white;
}

.review-addons-container .addon-toggle {
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    background: #3b82f6;
    color: white;
}

.review-addons-container .addon-toggle:hover {
    background: #2563eb;
}

.review-addons-container .addon-toggle--added {
    background: #16a34a;
}

.review-addons-container .addon-toggle--added:hover {
    background: #dc2626;
}

.no-addons-message {
    text-align: center;
    color: #64748b;
    padding: 2rem;
    font-size: 0.9375rem;
}

/* Booking Summary */
.review-booking-summary {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.booking-summary-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.25rem;
}

.booking-summary-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 1rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e2e8f0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
}

.summary-label {
    color: #64748b;
    font-weight: 400;
}

.summary-value {
    color: #1e293b;
    font-weight: 500;
    text-align: right;
    max-width: 60%;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .btc-review-page-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }

    .btc-review-page-sidebar {
        order: 2;
        position: relative;
        top: 0;
    }

    .btc-review-page-main {
        order: 1;
    }
}

@media (max-width: 640px) {
    .review-form-grid {
        grid-template-columns: 1fr;
    }

    .review-step-footer--split {
        flex-direction: column;
    }

    .review-step-footer--split .review-btn-outline {
        order: 2;
    }

    .review-step-footer--split .review-btn-primary {
        order: 1;
    }

    .review-account-strip {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .review-step-title {
        font-size: 1.25rem;
    }
}

/* ================================
   STEP PROGRESS BAR
   ================================ */
.review-progress-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.review-progress-logo {
    flex-shrink: 0;
    margin-right: 40px;
}

.review-progress-logo .btc-logo-link {
    display: inline-block;
    text-decoration: none;
    border: none;
    transition: opacity 0.2s ease;
}

.review-progress-logo .btc-logo-link:hover {
    opacity: 0.8;
}

.review-progress-logo .btc-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
}

.review-progress-bar {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: .5rem;
    max-width: 500px;
    margin: 0 auto;
}

.summary-subtitle {
    margin-bottom: 4px;
}

.review-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.review-progress-step .step-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.review-progress-step .step-label {
    font-size: 0.8125rem;
    color: #64748b;
    font-weight: 500;
}

.review-progress-step.active .step-number {
    background: #3b82f6;
    color: white;
}

.review-progress-step.active .step-label {
    color: #1e293b;
    font-weight: 600;
}

.review-progress-step.completed .step-number {
    background: #3b82f6;
    color: white;
}

.review-progress-line {
    width: 80px;
    height: 2px;
    background: #e2e8f0;
    margin: 0 0.5rem;
    margin-bottom: 1.5rem;
}

/* ================================
   BACK LINK
   ================================ */
.review-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.875rem;
    text-decoration: none;
    margin-bottom: 1.5rem;
    transition: color 0.2s;
}

.review-back-link:hover {
    color: #1e293b;
}

/* ================================
   FORM CARD
   ================================ */
.review-form-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.review-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.1rem 1rem;
}

.review-field--full {
    grid-column: 1 / -1;
}

/* Input styling for inside card */
.review-form-card .review-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9375rem;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.review-form-card .review-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.review-form-card .review-input::placeholder {
    color: #94a3b8;
}

.review-input-wrapper {
    position: relative;
}

.review-input-wrapper .review-loading-indicator {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
}

/* ================================
   PHONE INPUT WITH COUNTRY CODE
   ================================ */
.review-phone-wrapper {
    display: flex;
    gap: 0.5rem;
}

.review-phone-country {
    width: 120px;
    padding: 0.1rem 0.3rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.875rem;
    background: #fff;
    color: #374151;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 28px;
}

.review-phone-country:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.review-phone-input {
    flex: 1;
}

/* ================================
   LABEL ROW WITH HELP TEXT
   ================================ */
.review-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.375rem;
}

.review-label-row label {
    margin-bottom: 0;
}

.review-help-text {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8125rem;
    color: #3b82f6;
}

/* ================================
   ACTION SECTION (BUTTON & INFO)
   ================================ */
.review-action-section {
    margin-top: 1.5rem;
}

.review-action-section .review-btn-primary {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
}

.review-payment-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 0.5rem;
}

.payment-redirect-text {
    font-size: 0.8125rem;
    color: #94a3b8;
}

.stripe-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
}

.stripe-badge span {
    font-size: 0.75rem;
    color: #64748b;
}

/* ================================
   NAV BUTTONS (Back + Continue)
   ================================ */
.review-nav-buttons {
    display: flex;
    gap: 1rem;
}

.review-nav-buttons .review-btn-outline {
    flex: 0 0 auto;
}

.review-nav-buttons .review-btn-primary {
    flex: 1;
}

/* ================================
   SUPPORTED PAYMENT OPTIONS
   ================================ */
.review-payment-options {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 0 1rem 2rem;
}

.payment-options-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 1.25rem 0;
}

.payment-options-logos {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.payment-logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 2rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    min-width: 140px;
    min-height: 80px;
}

.payment-logo-card img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* ================================
   RESPONSIVE OVERRIDES
   ================================ */
@media (max-width: 900px) {
    .review-progress-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 15px 0;
    }

    .review-progress-logo {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .review-progress-logo .btc-logo-link {
        display: inline-block;
    }

    .review-progress-logo .btc-logo {
        height: 40px;
    }

    .review-progress-bar {
        padding: 1rem;
        width: 100%;
        max-width: 100%;
    }

    .review-progress-line {
        width: 40px;
    }

    .review-payment-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
}

@media (max-width: 640px) {
    .review-progress-step .step-label {
        font-size: 0.75rem;
    }

    .review-progress-line {
        width: 30px;
    }

    .review-phone-wrapper {
        flex-direction: column;
    }

    .review-phone-country {
        width: 100%;
    }

    .review-nav-buttons {
        flex-direction: column;
    }

    .review-nav-buttons .review-btn-outline {
        order: 2;
    }

    .review-nav-buttons .review-btn-primary {
        order: 1;
    }

    .payment-options-logos {
        justify-content: center;
    }

    .payment-logo-card {
        min-width: 100px;
        padding: 1rem;
    }
}