﻿/*THEME V2*/
.package-detail {
    margin-top: 20px;
}

.docs-bar {
    padding: 10px;
}

.included-services ul,
.not-included-services ul {
    max-height: 300px;
    overflow-y: auto;
    text-align: justify;
    padding: 5px;
    list-style-type: disclosure-closed !important;
    line-height: 25px;
    color: var(--text-color);
    font-family: var(--font-jost);
}

    .included-services ul li,
    .not-included-services ul li {
        margin-bottom: 8px;
    }
    /* WebKit */
    .included-services ul::-webkit-scrollbar,
    .not-included-services ul::-webkit-scrollbar {
        width: 6px;
    }

    .included-services ul::-webkit-scrollbar-thumb,
    .not-included-services ul::-webkit-scrollbar-thumb {
        background: #9ca3af;
        border-radius: 4px;
    }

    .included-services ul::-webkit-scrollbar-track,
    .not-included-services ul::-webkit-scrollbar-track {
        background: transparent;
    }

    .included-services ul::-webkit-scrollbar-button,
    .not-included-services ul::-webkit-scrollbar-button {
        display: none;
    }

.booking-widget-card {
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    padding: 20px;
}

.booking-widget-header {
    background-color: #555; /* Dark grey like image */
    color: #fff;
    padding: 15px;
    border-radius: 8px 8px 0 0;
    margin: -20px -20px 20px -20px;
    font-size: 16px;
    font-weight: 600;
}

.ages {
    width: 50px;
    height: 40px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    padding: 5px;
    margin-right: 5px;
}

.nice-select {
    width: 100%;
    /*margin-bottom: 10px;*/
}

.form-label-step1 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 5px;
    display: block;
}

.room-suits-card .room-img::after {
    content: unset
}
/* CSS for hover effect on .content-bottom */
.room-suits-card .room-content .content-bottom {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    padding: 10px;
}

    .room-suits-card .room-content .content-bottom:hover {
        transform: scale(1.02); /* Slightly enlarges the element */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Adds shadow for depth */
        border: 2px solid #007bff; /* Optional: Adds border to define the selection */
        z-index: 10; /* Ensures the element stays on top when hovered */
        animation: bounce 0.3s ease-in-out;
        background: linear-gradient(125deg, rgba(99, 171, 69, 0.1) 0%, rgba(251, 176, 59, 0.1) 100%);
    }

.option:hover {
    transform: scale(1.02); /* Slightly enlarges the element */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Adds shadow for depth */
    border: 2px solid #007bff; /* Optional: Adds border to define the selection */
    z-index: 10; /* Ensures the element stays on top when hovered */
    animation: bounce 0.3s ease-in-out;
    background: linear-gradient(125deg, rgba(99, 171, 69, 0.1) 0%, rgba(251, 176, 59, 0.1) 100%);
}

.tab-pane {
    transition: opacity 180ms ease, transform 180ms ease;
}

    .tab-pane.tab-exit {
        opacity: 0;
        transform: translateX(-12px);
    }

    .tab-pane.tab-enter {
        opacity: 0;
        transform: translateX(12px);
    }

    .tab-pane.tab-enter-active {
        opacity: 1;
        transform: translateX(0);
    }

/* Optional: focus cue */
.tab-pane-focus {
    box-shadow: 0 0 0 3px rgba(13,110,253,.25);
    border-radius: 6px;
}

.quarto-title h6 {
    margin: 0;
    padding: 0;
    text-align: center;
}

.quarto:not(:first-child) {
    margin-top: 16px;
}

.product-image {
    width: 100%;
    height: auto;
    max-width: 100%;
}
/*@media (max-width: 767.98px) {
    #bookingTab {
        flex-wrap: nowrap;
        overflow-x: auto;
        white-space: nowrap;
    }

        #bookingTab .nav-link {
            flex: 0 0 auto;
            font-size: 0.85rem;
        }
    .booking-widget-card {
        margin-top: 1.5rem;
    }
}*/
.tour-info-metalist {
    align-items: end !important;
    display: flex;
    flex-direction: column;
    margin-bottom: 0 !important;
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px solid #e5e5e5;
}

.package-title h1 {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.package-duration {
    display: inline-block;
    margin-top: 4px;
    font-size: 0.9rem;
    color: #666;
}

.package-meta {
    text-align: right;
}

.package-price {
    font-size: 0.95rem;
    color: #777;
}

    .package-price strong {
        background: #4aa3df;
        color: #fff;
        padding: 4px 8px;
        border-radius: 6px;
        font-size: 1rem;
    }

.package-ref {
    display: block;
    font-size: 0.75rem;
    color: #999;
}
/*show details plugin*/

.show-items-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 6px 0;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #0a58ca;
    text-decoration: none;
    position: relative;
    width: fit-content;
    transition: color 0.25s ease;
    float: right;
}

    /* Animated underline */
    .show-items-link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -2px;
        width: 0;
        height: 2px;
        background-color: currentColor;
        transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Arrow indicator */
    .show-items-link::before {
        content: "›";
        font-size: 18px;
        line-height: 1;
        transform: translateX(-4px);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    /* Hover animation */
    .show-items-link:hover {
        color: #084298;
    }

        .show-items-link:hover::after {
            width: 100%;
        }

        .show-items-link:hover::before {
            transform: translateX(0);
            opacity: 1;
        }

    /* Focus accessibility */
    .show-items-link:focus-visible {
        outline: none;
    }

        .show-items-link:focus-visible::after {
            width: 100%;
        }

/* Optional: subtle entrance animation */
@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.show-items-link {
    animation: fadeSlideIn 0.4s ease forwards;
}



.flight-option-mobile {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 16px;
}

.flight-option-header {
    font-weight: 700;
    margin-bottom: 10px;
}

.flight-itinerary-card {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 10px;
    background: #f8fbff;
}

.flight-itinerary-header {
    font-size: 0.85rem;
    margin-bottom: 8px;
    color: #555;
}

.flight-segment {
    display: flex;
    gap: 10px;
}

    .flight-segment img {
        height: 100%;
    }

.flight-route {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.flight-class {
    margin-top: 6px;
    font-weight: 600;
}

.booking-summary {
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fafafa;
}

.booking-summary-header {
    background: #e9e9e9;
    font-weight: 600;
    padding: 10px 12px;
    border-bottom: 1px solid #ddd;
}

.booking-summary-item {
    padding: 10px 12px;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

    .booking-summary-item:last-child {
        border-bottom: none;
    }

    .booking-summary-item.is-entering {
        opacity: 0;
        transform: translateY(-6px);
    }

    .booking-summary-item.is-leaving {
        opacity: 0;
        transform: translateY(6px);
    }

.booking-summary-title {
    font-weight: 600;
}

.booking-summary-sub {
    color: #666;
    font-size: 0.85rem;
    line-height: 15px;
}

.is-entering {
    opacity: 0;
    transform: translateY(-6px);
}

.is-leaving {
    opacity: 0;
    transform: translateY(6px);
}

.summary-flight-block,
.summary-service-item {
    transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Reuse base styles from Step1 context and adapt for Summary View */
.summary-widget-card {
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    padding: 0;
    margin-bottom: 30px;
    overflow: hidden;
}

.summary-widget-header {
    background-color: #555; /* Dark grey matching image */
    color: #fff;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.summary-column {
    padding: 25px;
    border-right: 1px solid #e1e1e1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .summary-column:last-child {
        border-right: none;
    }

.summary-section-title {
    color: #00a9e0; /* Blue/Cyan from image */
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 2px solid #e1e1e1;
    padding-bottom: 10px;
}

/* Flights Styles */
.summary-flight-header {
    background-color: #e9ecef;
    padding: 8px 15px;
    font-weight: 700;
    font-size: 0.9em;
    margin-bottom: 10px;
    margin-top: 5px;
}

.summary-flight-item {
    font-size: 0.9em;
    margin-bottom: 20px;
    padding-left: 5px;
}

.summary-airline-logo {
    max-width: 50px;
    max-height: 40px;
    object-fit: contain;
    margin-right: 15px;
}

/* Hotel Styles */
.summary-hotel-item {
    margin-bottom: 25px;
    font-size: 0.9em;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

    .summary-hotel-item:last-child {
        border-bottom: none;
    }

.summary-hotel-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
}

.summary-hotel-location {
    color: #00a9e0;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.05em;
    line-height: 16px;
}

.summary-hotel-item div {
    line-height: 15px;
}
/* Service Styles */
.summary-service-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 0.85em;
    margin-bottom: 12px;
    border-bottom: 1px dotted #eee;
    padding-bottom: 8px;
}

.summary-modify-btn {
    margin-top: auto;
    color: #333;
    text-decoration: underline;
    font-weight: 700;
    cursor: pointer;
    padding-top: 15px;
    display: inline-block;
    font-size: 0.95em;
}

.text-success-custom {
    color: #28a745;
    font-weight: 600;
}

.status-icon {
    font-size: 1.3em;
    vertical-align: middle;
}
/*Hotel Info*/
.room-suits-card .room-content {
    padding-top: 10px;
}

.hoteis .hotel-img {
    padding-top: 10px;
    padding-left: 10px;
}

.room-suits-card .room-content {
    padding: 15px;
}

.hotel-info-list {
    list-style: none;
    line-height: 15px;
    font-size: 12px;
}

.room-suits-card .room-content .content-top {
    margin-bottom: 0;
}

.room-suits-card .room-content .content-bottom {
    padding: 0;
    margin-bottom: 10px;
}

    .room-suits-card .room-content .content-bottom .room-type h6 {
        margin-bottom: 0;
        margin-top: 0;
        line-height: 16px;
    }

    .room-suits-card .room-content .content-bottom .price-and-book {
        margin-right: 10px;
    }

/*.content-bottom {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.room-type {
    flex: 1 1 auto;
}

.room-status {
    flex: 0 0 120px;
    text-align: center;
}

.price-and-book {
    flex: 0 0 160px;
    text-align: right;
}

.room-status {
    display: flex;
    align-items: center;*/ /* vertical centre */
/*justify-content: center;*/ /* horizontal centre */
/*min-width: 120px;*/ /* keeps column stable */
/*}
.room-status .alert {
    margin: 0;
    padding: 0.4rem 0.75rem;
    font-size: 0.85rem;
    line-height: 1;
}*/
.status-pill {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 600;
    background-color: #e6f4ea;
    color: #1e7e34;
    border: 1px solid #c3e6cb;
}

.status-pill-wl {
    background-color: #ffa20e;
    color: white;
}

.package-details-area h6 {
    background-color: unset;
}
/* MOBILE FIRST */
.content-bottom {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.room-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
    width: 100%;
}

.room-type h6 {
    margin: 0;
    font-size: 0.95rem;
    padding-bottom:0;
}

.room-type small {
    font-size: 0.7rem;
    padding:8px;
}

.room-status {
    flex-shrink: 0;
}

.price-and-book {
    width: 100%;
}

    .price-and-book .primary-btn2 {
        width: 100%;
        display: block;
        text-align: center;
    }

.primary-btn2.btn-voo,
#services .primary-btn2,
.book-btn #btn-submit-step2 {
    text-align: center;
    display: block;
    width: 100%;
}

.modal-footer button {
    width: 100%;
}
#preReservationInfo {

}
@media (min-width: 769px) {
    .modal-footer button {
        width: unset;
    }

    .primary-btn2.btn-voo,
    #services .primary-btn2,
    .book-btn #btn-submit-step2 {
        text-align: center;
        display: revert;
        width: unset;
    }
}

@media (min-width: 1200px) {
    .content-bottom {
        flex-direction: row;
        align-items: center;
    }

    .room-header {
        flex: 1 1 auto;
    }

    .room-status {
        margin-left: 1rem;
    }

    .price-and-book {
        flex: 0 0 160px;
    }

        .price-and-book .primary-btn2 {
            width: auto;
        }

    .room-header {
        align-items: center;
    }

    .room-type h6 {
        font-size: 1rem;
    }
}

.summary-service-item .fw-bold {
    line-height:17px;
}

.quarto-ages select {
    margin-top:10px;
}
.old-price {
    display: inline;
    font-size: 15px!important;
    text-decoration: line-through;
}
@media (max-width:800px)
{
    #step5-body .prices {
        min-width: 800px;
    }
    #step5-body .services {
        min-width: 1000px;
    }
    #step5-body .policies {
        min-width: 800px;
    }
}


/*STEP1 QUARTOS CARD*/
/* ── Quartos section header ── */
.quartos-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.quartos-section-title {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .quartos-section-title i {
        color: #555;
    }

.quartos-add-link {
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    color: #2a9d8f;
}

    .quartos-add-link:hover {
        color: #21867a;
        text-decoration: underline;
    }

/* ── Room card ── */
.quarto {
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    padding: 16px;
    padding-top: 5px;
    background-color: rgb(248 250 252 / var(--tw-bg-opacity, 1));
    position: relative;
}

.quarto-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .quarto-title h6 {
        text-align: left !important;
        font-weight: 700;
        font-size: 0.95rem;
        color: #333;
    }

/* ── Per-card remove X button ── */
.quarto-remove-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    color: #999;
    font-size: 0.8rem;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

    .quarto-remove-btn:hover {
        background: #fdecea;
        color: #e74c3c;
    }

.quarto-body {
    margin-bottom: 8px;
}

    .quarto-body .tipo-quarto-label {
        display: block;
        font-size: 0.82rem;
        font-weight: 600;
        color: #2a9d8f;
        margin-bottom: 6px;
    }

.quarto-ages {
    margin-top: 8px;
}

.quarto-ages-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    color: #888;
    margin-bottom: 6px;
}

.quarto-ages td {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0 !important;
}

.quarto-ages .ages,
.quarto-ages .age {
    @* width: 76px;
    *@ height: 36px;
    border: 1.5px solid #e0e0e0;
    border-radius: 6px;
    padding: 2px 6px;
    font-size: 0.82rem;
    margin: 0;
}

/* ── Summary bar ── */
.quartos-summary-bar {
    background: #eaf7f5;
    border: 1.5px solid #b2dfdb;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2a9d8f;
    text-align: center;
    margin-top: 12px;
}

.quarto .nice-select {
    border-color: #e0e0e0;
}