:root {
    --color-prime: #6c006c;
    --color-primary: #e200e2;
    --color-text-secondary: rgb(108, 0, 108);
    --color-text-third: #707070;
    --color-primary-background: hsla(300, 100%, 44%, 0.15);
    --color-sub-title: #686868;
    --color-black: #000000;
    --color-white: #ffffff;
    --section-padding: 12rem calc(2rem + 2vw) 0;
    --base-font-size: 62.5%;
    --content-scale: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ol,
ul {
    list-style: none;
}

*,
::after,
::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: 0;
    -webkit-tap-highlight-color: transparent;
}

html {
    font-size: var(--base-font-size);
}

body {
    overflow-x: hidden;
    min-width: 380px;
    position: relative;
    margin: 0 auto;
    font-family: "Poppins", sans-serif;
}
main {
    max-width: 1080px;
    margin: 10rem auto 0;
    padding: 0 1rem;
}
@media (max-width: 992px) {
    main {
        padding: 0 1.4rem;
        margin: 4rem auto 0;
    }
}
main .heading {
    margin: 0 auto;
}
main .heading .breadcrumb .list {
    max-width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.4rem;
    background-color: rgba(226, 0, 226, 0.1);
    border-radius: 1.8rem;
    padding: 0.6rem 2.2rem;
}
@media (max-width: 992px) {
    main .heading .breadcrumb .list {
        padding: 0.4rem 1.8rem;
    }
}
@media (max-width: 480px) {
    main .heading .breadcrumb .list {
        padding: 0.2rem 1.4rem;
        gap: 0.8rem;
    }
}
main .heading .breadcrumb .list .item {
    color: var(--color-prime);
    font-size: 1.4rem;
    font-weight: 600;
}

/* Truncate breadcrumb last item to 3 words with ellipsis */
main .heading .breadcrumb .list .item[aria-current="page"] {
    display: inline-block;
    max-width: 40ch;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: bottom;
}
@media (max-width: 480px) {
    main .heading .breadcrumb .list .item {
        font-size: 1.2rem;
    }
    main .heading .breadcrumb .list .item[aria-current="page"] {
        max-width: 28ch;
        min-width: 0;
    }
}
main .heading .breadcrumb .list .separator {
    color: var(--color-prime);
    font-size: 2rem;
    font-weight: 300;
}
@media (max-width: 480px) {
    main .heading .breadcrumb .list .separator {
        font-size: 1.8rem;
    }
}
main .title-badges {
    margin-top: 2.4rem;
}
main .title-badges .wrapper {
    display: flex;
    align-items: center;
}
@media (max-width: 992px) {
    main .title-badges .wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
}
@media (max-width: 480px) {
    main .title-badges .wrapper {
        margin-top: 2rem;
    }
}
main .title-badges .wrapper .main-title {
    font-size: 3rem;
    font-weight: 600;
    margin-right: 2.4rem;
    max-width: fit-content;
    display: block;
}
@media (max-width: 992px) {
    main .title-badges .wrapper .main-title {
        font-size: 2.2rem;
    }
}
@media (max-width: 480px) {
    main .title-badges .wrapper .main-title {
        font-size: 2rem;
        margin-right: 1rem;
    }
}
main .title-badges .wrapper .v-line {
    width: 1px;
    height: 3.2rem;
    background-color: var(--color-text-secondary);
    margin-right: 2.4rem;
}
@media (max-width: 992px) {
    main .title-badges .wrapper .v-line {
        display: none;
    }
}
@media (max-width: 992px) {
    main .title-badges .wrapper .badges {
        margin-top: 1rem;
    }
}
main .title-badges .wrapper .badges .badge-list {
    display: flex;
    gap: 1.2rem;
}
main .title-badges .wrapper .badges .badge-list .badge-item {
    background-color: var(--color-primary-background);
    color: var(--color-prime);
    font-size: 1.4rem;
    font-weight: 600;
    padding: 0.6rem 1.4rem;
    border-bottom-left-radius: 1.4rem;
    border-top-right-radius: 1.4rem;
    white-space: nowrap;
}
@media (max-width: 480px) {
    main .title-badges .wrapper .badges .badge-list .badge-item {
        font-size: 1.2rem;
        padding: 0.4rem 1.2rem;
    }
}
main .stats {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.4rem;
    margin-top: 1.6rem;
}
main .stats .rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}
main .stats .rating .stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}
main .stats .rating .stars .review-card__star svg {
    width: 1.6rem;
    height: 1.6rem;
}
main .stats .reviews-count {
    font-size: 1.4rem;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 1px;
}
main .stats .dot {
    width: 5px;
    height: 5px;
    background-color: var(--color-prime);
    border-radius: 50%;
}
main .stats .location {
    font-size: 1.4rem;
    font-weight: 500;
}
main .stats .location .country {
    margin-left: 0.4rem;
}
main .stats .location .city {
    color: inherit;
}
main .tour-nav {
    position: relative;
    margin-top: 4.8rem;
    display: flex;
    align-items: center;
    gap: 2.4rem;
}
@media (max-width: 992px) {
    main .tour-nav {
        margin-top: 2rem;
        width: 100%;
    }
}
main .tour-nav .indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 5.3rem;
    height: 5.3rem;
    background-color: var(--color-black);
}
@media (max-width: 992px) {
    main .tour-nav .indicator {
        display: none !important;
    }
}
main .tour-nav .list {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}
@media (max-width: 992px) {
    main .tour-nav .list {
        margin-top: 2rem;
        position: static;
        flex-direction: row;
        align-items: center;
        gap: 0.8rem;
        width: 100%;
        min-height: 5rem;
        padding: 0 1.2rem;
        background-color: rgba(226, 0, 226, 0.06);
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    main .tour-nav .list::-webkit-scrollbar {
        display: none;
    }
}
main .tour-nav .list .item {
    font-size: 1.4rem;
    font-weight: 600;
    white-space: nowrap;
}
@media (max-width: 1024px) {
    main .tour-nav .list .item {
        font-size: 1.2rem;
        font-weight: 600;
    }
}
@media (max-width: 992px) {
    main .tour-nav .list .item {
        font-size: 1.2rem;
        font-weight: 600;
    }
    main .tour-nav .list .item a {
        display: inline-flex;
        align-items: center;
        min-height: 5rem;
    }
}
main .tour-nav .list .item.active {
    color: var(--color-prime);
}
main .content-area .wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}
@media (max-width: 992px) {
    main .content-area .wrapper {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
main .content-area .wrapper .main-content {
    display: flex;
    justify-content: center;
    flex-direction: column;
}
@media (min-width: 993px) {
    main .content-area .wrapper .main-content {
        display: grid;
        grid-template-columns: 73.15% 25.46%;
        gap: 0 1.38%;
        align-items: start;
    }
    main .content-area .wrapper .main-content > .gallery,
    main .content-area .wrapper .main-content > .basic-details,
    main .content-area .wrapper .main-content > .overview,
    main .content-area .wrapper .main-content > .notice,
    main .content-area .wrapper .main-content > .arrival-info {
        grid-column: 1;
    }
    main .content-area .wrapper .main-content > .availability {
        grid-column: 2;
        grid-row: 1/ 4;
    }
}

main .content-area .wrapper .main-content .gallery {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
}
main .content-area .wrapper .main-content .gallery .left-banner {
    width: 5.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-black);
}
@media (max-width: 992px) {
    main .content-area .wrapper .main-content .gallery .left-banner {
        display: none !important;
    }
}
main .content-area .wrapper .main-content .gallery .left-banner .ico {
    cursor: pointer;
}
main .content-area .wrapper .main-content .gallery .media {
    display: flex;
    background-color: var(--color-black);
    justify-content: space-between;
    width: 100%;
    height: fit-content;
}
@media (max-width: 480px) {
    main .content-area .wrapper .main-content .gallery .media {
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
        overflow: hidden;
    }
    main .content-area .wrapper .main-content .gallery .media .left {
        width: 100% !important;
    }
    main .content-area .wrapper .main-content .gallery .media .right {
        display: none !important;
    }
}
main .content-area .wrapper .main-content .gallery .media .left {
    position: relative;
    width: 60%;
}
main .content-area .wrapper .main-content .gallery .media .left::after {
    content: "";
    width: 100%;
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle,
        rgba(0, 0, 0, 0) 50%,
        rgba(0, 0, 0, 0.1) 85%,
        rgba(0, 0, 0, 0.3) 100%
    );
}
main .content-area .wrapper .main-content .gallery .media .left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;
    display: block;
}
main .content-area .wrapper .main-content .gallery .media .right {
    width: 39.9%;
    flex-direction: column;
    display: flex;
    background-color: var(--color-white);
}
main .content-area .wrapper .main-content .gallery .media .right .top {
    position: relative;
    height: 19rem;
    overflow: hidden;
}
main .content-area .wrapper .main-content .gallery .media .right .top::after {
    content: "";
    width: 100%;
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle,
        rgba(0, 0, 0, 0) 50%,
        rgba(0, 0, 0, 0.1) 85%,
        rgba(0, 0, 0, 0.3) 100%
    );
}
main .content-area .wrapper .main-content .gallery .media .right .top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
main .content-area .wrapper .main-content .gallery .media .right .bottom {
    position: relative;
    height: 19rem;
    overflow: hidden;
}
main
    .content-area
    .wrapper
    .main-content
    .gallery
    .media
    .right
    .bottom::after {
    content: "";
    width: 100%;
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle,
        rgba(0, 0, 0, 0) 50%,
        rgba(0, 0, 0, 0.1) 85%,
        rgba(0, 0, 0, 0.3) 100%
    );
}

main .content-area .wrapper .main-content .gallery .media .right .bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
main .content-area .wrapper .main-content .gallery .image-spread-box {
    position: absolute;
    bottom: 3%;
    right: 2%;
    width: 7.5rem;
    height: 7.5rem;
    background-color: var(--color-black);
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.2rem 1.8rem 5px 0;
    cursor: pointer;
}
main .content-area .wrapper .main-content .gallery .image-spread-box .count {
    margin-top: 1rem;
    font-size: 1.6rem;
    align-self: flex-end;
    margin-bottom: -7px;
    font-weight: 500;
}
main .content-area .wrapper .main-content .gallery .image-spread-box .title {
    align-self: flex-end;
    font-size: 1.4rem;
    font-weight: 400;
}
main .content-area .wrapper .main-content .gallery .image-spread-box .vline {
    position: absolute;
    top: 0;
    right: 25%;
    width: 1px;
    height: 40%;
    background-color: var(--color-white);
}
main .content-area .wrapper .main-content .basic-details {
    width: 100%;
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
}
main .content-area .wrapper .main-content .basic-details .detail {
    height: 5rem;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    font-size: 1.4rem;
    font-weight: 500;
}
@media (max-width: 480px) {
    main .content-area .wrapper .main-content .basic-details .detail {
        padding: 1rem;
        font-size: 1.2rem;
    }
}
main
    .content-area
    .wrapper
    .main-content
    .basic-details
    .detail
    .language
    span {
    max-height: 500px;
    border-bottom: none;
    padding-bottom: 2px;
    margin-bottom: 1rem;
}
main .content-area .wrapper .main-content .overview .section-header {
    margin-top: 3rem;
}
@media (max-width: 992px) {
    main .content-area .wrapper .main-content .overview .section-header {
        margin-top: 4rem;
    }
}
main
    .content-area
    .wrapper
    .main-content
    .overview
    .section-header
    .section-title {
    font-size: 2rem;
    font-weight: 500;
}
main .content-area .wrapper .main-content .overview .section-content {
    max-width: 94%;
    margin-top: 1rem;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.6;
}
@media (max-width: 480px) {
    main .content-area .wrapper .main-content .overview .section-content {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    main .content-area .wrapper .main-content .overview .section-content {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    main .content-area .wrapper .main-content .overview .section-content {
        max-width: 100%;
    }
}
main .content-area .wrapper .main-content .notice .section-header {
    margin-top: 3rem;
}
main
    .content-area
    .wrapper
    .main-content
    .notice
    .section-header
    .section-title {
    font-size: 2rem;
    font-weight: 500;
}
main .content-area .wrapper .main-content .notice .section-content {
    max-width: 93%;
    margin-top: 1rem;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.5;
}
@media (max-width: 480px) {
    main .content-area .wrapper .main-content .notice .section-content {
        max-width: 100%;
    }
}
main .content-area .wrapper .main-content .arrival-info .section-header {
    margin-top: 3rem;
}
main
    .content-area
    .wrapper
    .main-content
    .arrival-info
    .section-header
    .section-title {
    font-size: 2rem;
    font-weight: 500;
}
main .content-area .wrapper .main-content .arrival-info .section-content {
    max-width: 93%;
    margin-top: 1rem;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.5;
}
@media (max-width: 480px) {
    main .content-area .wrapper .main-content .arrival-info .section-content {
        max-width: 100%;
    }
}
main .content-area .wrapper .main-content .meeting-point .section-header {
    margin-top: 3rem;
}
main
    .content-area
    .wrapper
    .main-content
    .meeting-point
    .section-header
    .section-title {
    font-size: 2rem;
    font-weight: 500;
}
main .content-area .wrapper .main-content .meeting-point .section-content {
    max-width: 93%;
    margin-top: 1rem;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.5;
}
@media (max-width: 480px) {
    main .content-area .wrapper .main-content .meeting-point .section-content {
        max-width: 100%;
    }
}
main .content-area .wrapper .main-content .intinerary .section-header {
    margin-top: 3rem;
}
main
    .content-area
    .wrapper
    .main-content
    .intinerary
    .section-header
    .section-title {
    font-size: 2rem;
    font-weight: 500;
}
main .content-area .wrapper .main-content .intinerary .section-content {
    max-width: 93%;
    margin-top: 1rem;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.5;
}
@media (max-width: 480px) {
    main .content-area .wrapper .main-content .intinerary .section-content {
        max-width: 100%;
    }
}
main .availability {
    height: auto;
}
main .availability .availability-header {
    display: none;
}
@media (max-width: 992px) {
    main .availability {
        position: relative;
        width: 100%;
        max-height: 6rem;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 100;
        grid-row: 1;
    }
    main .availability.is-open {
        max-height: 1200px;
    }
    main .availability.is-open .toggle-icon {
        transform: rotate(180deg);
    }
    main .availability .availability-header {
        margin-top: 1rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1.5rem 1.6rem;
        cursor: pointer;
        flex-shrink: 0;
        background-color: rgba(206, 0, 206, 0.05);
    }
    main .availability .availability-header .header-content .price-info {
        display: flex;
        align-items: baseline;
        gap: 0.5rem;
        font-size: 1.4rem;
    }
    main .availability .availability-header .header-content .price-info .from,
    main
        .availability
        .availability-header
        .header-content
        .price-info
        .per-person {
        font-weight: 500;
        color: #666;
    }
    main .availability .availability-header .header-content .price-info .price {
        font-size: 1.6rem;
        font-weight: 600;
        color: var(--color-prime);
    }
    main .availability .availability-header .toggle-icon {
        display: flex;
        align-items: center;
        transition: transform 0.4s ease;
    }
}
main .availability .bookingForm {
    display: flex;
    flex-direction: column;
    background-color: rgba(206, 0, 206, 0.05);
}
main .availability .bookingForm .options {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 3rem 2.3rem 0;
}
main .availability .bookingForm .options .option {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid rgba(108, 0, 108, 0.4);
    padding-bottom: 2px;
    cursor: pointer;
}
main .availability .bookingForm .options .option#starting-time-option {
    max-height: 0;
    overflow: hidden;
    padding-bottom: 0;
    transition:
        max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        padding 0.4s ease,
        border 0.4s ease;
    border-bottom: none;
}

main .availability .bookingForm .options .option#starting-time-option.expanded {
    max-height: 500px;
    border-bottom: none;
    padding-bottom: 2px;
    margin-bottom: 1rem;
}
main .availability .bookingForm .options .option.deactivated {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}

main .availability .bookingForm .options .option:last-child .content {
    display: flex;
    flex-wrap: wrap;
    gap: 1.4rem;
    margin-top: 1rem;
    flex-direction: column;
}
main .availability .bookingForm .options .title {
    font-size: 1.4rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 5px;
}
main .availability .bookingForm .options .content {
    font-size: 1.6rem;
    font-weight: 500;
}
main .availability .bookingForm .options .content .dropDown {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: visible;
    gap: 1rem;
}
main
    .availability
    .bookingForm
    .options
    .content
    .dropDown.participants-dropdown {
    gap: 0.1rem;
}
main .availability .bookingForm .options .content .dropDown.open > .downArrow {
    transform: rotate(180deg);
}
main
    .availability
    .bookingForm
    .options
    .content
    .dropDown
    .participant-item
    .dropDown.open
    > .downArrow {
    transform: rotate(180deg);
}
main .availability .bookingForm .options .content .dropDown .selectedLanguage,
main
    .availability
    .bookingForm
    .options
    .content
    .dropDown
    .selected-participants {
    cursor: pointer;
    user-select: none;
}
main .availability .bookingForm .options .content .dropDown .downArrow {
    cursor: pointer;
    user-select: none;
    transition: transform 0.2s ease;
    transform-origin: center;
}
main .availability .bookingForm .options .content .dropDown .options-container {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-white);
    border: 1px solid #e0e0e0;
    width: 100%;
    z-index: 1000;
    margin-top: 0.3rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    transform: translateY(-10px);
    transition:
        opacity 0.2s ease,
        max-height 0.2s ease,
        transform 0.2s ease,
        visibility 0s 0.2s;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
main
    .availability
    .bookingForm
    .options
    .content
    .dropDown
    .options-container::-webkit-scrollbar {
    display: none;
}
main
    .availability
    .bookingForm
    .options
    .content
    .dropDown
    .options-container.open {
    opacity: 1;
    visibility: visible;
    max-height: 16rem;
    transform: translateY(0);
    transition:
        opacity 0.2s ease,
        max-height 0.2s ease,
        transform 0.2s ease,
        visibility 0s 0s;
    scrollbar-width: thin;
    scrollbar-color: rgba(206, 0, 206, 0.5) rgba(0, 0, 0, 0.05);
}
main
    .availability
    .bookingForm
    .options
    .content
    .dropDown
    .options-container.open::-webkit-scrollbar {
    width: 4px;
}
main
    .availability
    .bookingForm
    .options
    .content
    .dropDown
    .options-container.open::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
}
main
    .availability
    .bookingForm
    .options
    .content
    .dropDown
    .options-container.open::-webkit-scrollbar-thumb {
    background-color: rgba(206, 0, 206, 0.5);
    border-radius: 4px;
    visibility: visible;
}
main
    .availability
    .bookingForm
    .options
    .content
    .dropDown
    .options-container.open::-webkit-scrollbar-thumb:hover {
    background-color: rgba(206, 0, 206, 0.8);
}
main
    .availability
    .bookingForm
    .options
    .content
    .dropDown
    .options-container
    .participant-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
}
main
    .availability
    .bookingForm
    .options
    .content
    .dropDown
    .options-container
    .participant-item
    .label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 1.2rem;
    font-weight: 600;
}
main
    .availability
    .bookingForm
    .options
    .content
    .dropDown
    .options-container
    .participant-item
    .selected-participants {
    width: 40px;
    height: 30px;
    font-size: 1.4rem;
    font-weight: 550;
    text-align: center;
    background-color: #fff;
    color: #000;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    padding: 0 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
main
    .availability
    .bookingForm
    .options
    .content
    .dropDown
    .options-container
    .participant-item
    .selected-participants:focus {
    outline: none;
    border-color: var(--color-prime);
}
main
    .availability
    .bookingForm
    .options
    .content
    .dropDown
    .options-container
    .dropdown-options {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 16rem;
    overflow-y: scroll;
    scrollbar-width: thin;
    scrollbar-color: rgba(206, 0, 206, 0.5) rgba(0, 0, 0, 0.05);
    overflow-x: hidden;
}
main
    .availability
    .bookingForm
    .options
    .content
    .dropDown
    .options-container
    .dropdown-options::-webkit-scrollbar {
    width: 4px;
}
main
    .availability
    .bookingForm
    .options
    .content
    .dropDown
    .options-container
    .dropdown-options::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
}
main
    .availability
    .bookingForm
    .options
    .content
    .dropDown
    .options-container
    .dropdown-options::-webkit-scrollbar-thumb {
    background-color: rgba(206, 0, 206, 0.5);
    border-radius: 4px;
    visibility: visible;
}
main
    .availability
    .bookingForm
    .options
    .content
    .dropDown
    .options-container
    .dropdown-options::-webkit-scrollbar-thumb:hover {
    background-color: rgba(206, 0, 206, 0.8);
}
main
    .availability
    .bookingForm
    .options
    .content
    .dropDown
    .options-container
    .dropdown-options
    .option {
    padding: 8px 1.4rem;
    cursor: pointer;
    font-size: 1.4rem;
    font-weight: 400;
    transition: color 0.2s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    border-bottom: none;
}
main
    .availability
    .bookingForm
    .options
    .content
    .dropDown
    .options-container
    .dropdown-options
    .option::after {
    content: "";
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    background-color: transparent;
    flex-shrink: 0;
}
main
    .availability
    .bookingForm
    .options
    .content
    .dropDown
    .options-container
    .dropdown-options
    .option:hover {
    color: var(--color-text-secondary);
}
main
    .availability
    .bookingForm
    .options
    .content
    .dropDown
    .options-container
    .dropdown-options
    .option.selected {
    font-weight: 600;
}
main
    .availability
    .bookingForm
    .options
    .content
    .dropDown
    .options-container
    .dropdown-options
    .option.selected::before {
    background-color: #6c006c;
}
main
    .availability
    .bookingForm
    .options
    .content
    .dropDown
    .options-container
    .dropdown-options
    .option.selected::after {
    background-color: var(--color-primary);
}
main
    .availability
    .bookingForm
    .options
    .content
    .dropDown
    .options-container
    .divider {
    height: 1px;
    background-color: #e0e0e0;
}
main .availability .bookingForm .options .content .values {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}
main .availability .bookingForm .options .content .values .value-selected {
    cursor: pointer;
    user-select: none;
}
main .availability .bookingForm .options .content .values svg {
    cursor: pointer;
    user-select: none;
}
main .availability .bookingForm .options .content .values .options-container {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-white);
    border: 1px solid #e0e0e0;
    border-radius: 0.4rem;
    min-width: 20rem;
    z-index: 1000;
    margin-top: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    max-height: 10rem;
    overflow-y: scroll;
    scrollbar-width: thin;
    scrollbar-color: rgba(206, 0, 206, 0.5) rgba(0, 0, 0, 0.05);
}
main
    .availability
    .bookingForm
    .options
    .content
    .values
    .options-container::-webkit-scrollbar {
    width: 4px;
}
main
    .availability
    .bookingForm
    .options
    .content
    .values
    .options-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
}
main
    .availability
    .bookingForm
    .options
    .content
    .values
    .options-container::-webkit-scrollbar-thumb {
    background-color: rgba(206, 0, 206, 0.5);
    border-radius: 4px;
    visibility: visible;
}
main
    .availability
    .bookingForm
    .options
    .content
    .values
    .options-container::-webkit-scrollbar-thumb:hover {
    background-color: rgba(206, 0, 206, 0.8);
}
main
    .availability
    .bookingForm
    .options
    .content
    .values
    .options-container.open {
    display: block;
    opacity: 1;
}
main
    .availability
    .bookingForm
    .options
    .content
    .values
    .options-container
    .dropdown-options {
    list-style: none;
    padding: 0;
    margin: 0;
}
main
    .availability
    .bookingForm
    .options
    .content
    .values
    .options-container
    .dropdown-options
    .option {
    padding: 8px 1.5rem;
    cursor: pointer;
    font-size: 1.4rem;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    justify-content: space-between;
    border-bottom: none;
}
main
    .availability
    .bookingForm
    .options
    .content
    .values
    .options-container
    .dropdown-options
    .option::before {
    content: "";
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    background-color: transparent;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
}
main
    .availability
    .bookingForm
    .options
    .content
    .values
    .options-container
    .dropdown-options
    .option::after {
    content: "";
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    background-color: transparent;
    flex-shrink: 0;
}
main
    .availability
    .bookingForm
    .options
    .content
    .values
    .options-container
    .dropdown-options
    .option:hover {
    color: var(--color-text-secondary);
}
main
    .availability
    .bookingForm
    .options
    .content
    .values
    .options-container
    .dropdown-options
    .option.selected {
    font-weight: 600;
}
main
    .availability
    .bookingForm
    .options
    .content
    .values
    .options-container
    .dropdown-options
    .option.selected::before {
    background-color: #6c006c;
}
main
    .availability
    .bookingForm
    .options
    .content
    .values
    .options-container
    .dropdown-options
    .option.selected::after {
    background-color: var(--color-primary);
}
main
    .availability
    .bookingForm
    .options
    .content
    .values
    .options-container
    .divider {
    height: 1px;
    background-color: #e0e0e0;
}
main
    .availability
    .bookingForm
    .options
    .content
    .values
    .options-container
    #adults-dropdown,
main
    .availability
    .bookingForm
    .options
    .content
    .values
    .options-container
    #children-dropdown {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.2s ease,
        max-height 0.2s ease,
        visibility 0s 0.2s;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
main
    .availability
    .bookingForm
    .options
    .content
    .values
    .options-container::-webkit-scrollbar {
    width: 6px;
}
main
    .availability
    .bookingForm
    .options
    .content
    .values
    .options-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}
main
    .availability
    .bookingForm
    .options
    .content
    .values
    .options-container::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 3px;
}
main
    .availability
    .bookingForm
    .options
    .content
    .values
    .options-container::-webkit-scrollbar-thumb:hover {
    background: #8b1a8b;
}
main
    .availability
    .bookingForm
    .options
    .content
    .values
    .options-container
    .option {
    padding: 8px 1.5rem;
    cursor: pointer;
    font-size: 1.4rem;
    font-weight: 400;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    justify-content: space-between;
    border-bottom: none;
}
main
    .availability
    .bookingForm
    .options
    .content
    .values
    .options-container
    .option::before {
    content: "";
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    background-color: transparent;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
}
main
    .availability
    .bookingForm
    .options
    .content
    .values
    .options-container
    .option::after {
    content: "";
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    background-color: transparent;
    flex-shrink: 0;
}
main
    .availability
    .bookingForm
    .options
    .content
    .values
    .options-container
    .option:hover {
    color: var(--color-text-secondary);
}
main
    .availability
    .bookingForm
    .options
    .content
    .values
    .options-container
    .option.selected {
    font-weight: 600;
}
main
    .availability
    .bookingForm
    .options
    .content
    .values
    .options-container
    .option.selected::before {
    background-color: #6c006c;
}
main
    .availability
    .bookingForm
    .options
    .content
    .values
    .options-container
    .option.selected::after {
    background-color: var(--color-primary);
}
main .availability .bookingForm .options .content .values .cta {
    padding: 1rem 1.5rem;
    text-align: center;
    font-size: 1.2rem;
    color: #999;
}
main .availability .bookingForm .options .startTime {
    width: fit-content;
    padding: 2px 6px;
    font-size: 1.4rem;
    font-weight: 500;
    border: 1.5px solid rgba(108, 0, 108, 0.4);
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

/* wrapper for left-side content; always stack internally */
main .availability .bookingForm .options .startTime .info-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* when selected show icon at right and keep times on left */
main .availability .bookingForm .options .startTime.selected {
    width: fit-content;
    flex-direction: row;
    align-items: center;
    gap: 1.2rem;
}

main .availability .bookingForm .options .startTime.selected {
    background-color: var(--color-prime);
    color: var(--color-white);
}

main
    .availability
    .bookingForm
    .options
    .startTime.selected
    .duration-info
    .duration-label,
main
    .availability
    .bookingForm
    .options
    .startTime.selected
    .duration-info
    .duration-val {
    color: var(--color-white);
}
main
    .availability
    .bookingForm
    .options
    .startTime.selected
    .time-info
    .at-label,
main
    .availability
    .bookingForm
    .options
    .startTime.selected
    .time-info
    .time-val {
    background-color: var(--color-prime);
    color: var(--color-white);
}
/* pax count moved to pseudo-element */
main .availability .bookingForm .options .startTime[data-pax]::after {
    content: attr(data-pax) " Spots Left";
    position: absolute;
    width: fit-content;
    padding: 6px 10px;
    font-size: 1rem;
    top: -9px;
    right: -42px;
    background-color: #dc143c;
    color: var(--color-white);
}
main .availability .bookingForm .options .startTime[data-departed]::after {
    content: "Departed";
    position: absolute;
    width: fit-content;
    padding: 6px 10px;
    font-size: 1rem;
    top: -9px;
    right: -42px;
    background-color: #777;
    color: var(--color-white);
}
main .availability .bookingForm .options .startTime.selected[data-pax]::after {
    display: none;
}
main .availability .bookingForm .options .startTime.disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}

/* ensure relative positioning for icon placement */
main .availability .bookingForm .options .startTime {
    position: relative;
}

/* separate styling for the time and duration lines */
main .availability .bookingForm .options .startTime .time-info .at-label,
main .availability .bookingForm .options .startTime .time-info .time-val {
    display: inline-block;
}
main .availability .bookingForm .options .startTime .time-info .time-val {
    font-size: 1.4rem;
    margin-left: 0.25rem;
}

main
    .availability
    .bookingForm
    .options
    .startTime
    .duration-info
    .duration-label,
main
    .availability
    .bookingForm
    .options
    .startTime
    .duration-info
    .duration-val {
    display: inline-block;
    color: #6c006c;
}
main
    .availability
    .bookingForm
    .options
    .startTime
    .duration-info
    .duration-val {
    font-size: 1.2rem;
    margin-left: 0.25rem;
}

/* selected check icon */
main .availability .bookingForm .options .startTime .selected-icon {
    display: none;
}
main .availability .bookingForm .options .startTime.selected .selected-icon {
    display: block;
    padding-right: 3px;
}
main .availability .check-res {
    display: flex !important;
    justify-content: center;
    gap: 1rem;
    color: var(--color-white);
    background-color: var(--color-black);
    padding: 0 3rem;
    max-height: 0;
    overflow: hidden;
    margin: 0;
    transition:
        max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.4s ease,
        padding 0.4s ease,
        margin 0.4s ease;
}
main .availability .check-res.hidden {
    display: flex !important;
    max-height: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    pointer-events: none;
    transform: none;
    transition:
        max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.4s ease,
        padding 0.4s ease,
        margin 0.4s ease;
}
main .availability .check-res:not(.hidden) {
    display: flex !important;
    max-height: 500px;
    padding: 2rem 3rem;
}
main .availability .check-res .text {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.2px;
}
main .availability .infos {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
main .availability .max-child-info {
    margin-top: 2px;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    text-align: center;
}
main .availability .tip {
    padding: 0 1rem 1rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.4rem;
    white-space: nowrap;
}
main .availability .tip span {
    font-size: 1.2rem;
    font-weight: 400;
}
main .availability .ctas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
main .availability .ctas button {
    width: 100%;
    height: 5.5rem;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--color-white);
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
    opacity: 1;
}
main .availability .ctas button:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
main .availability .ctas .book-now-btn {
    background-color: var(--color-prime);
}
main .availability .ctas .book-now-btn:hover {
    background-color: #7a007a;
}
main .availability .ctas .check-availability-btn {
    background-color: var(--color-black);
}
main .availability .ctas .check-availability-btn:hover {
    background-color: #000000;
}
main .availability .ctas .check-availability-btn:disabled {
    background-color: #cbb6cd;
    color: #333333;
    cursor: not-allowed;
    opacity: 0.7;
    transform: none !important;
    box-shadow: none !important;
}
main .availability .ctas .check-availability-btn:disabled:hover {
    transform: none !important;
    box-shadow: none !important;
    background-color: #cbb6cd;
}
main .availability .provider-wrapper {
    margin-top: 2rem;
}
main .availability .provider-wrapper .provider {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
main .availability .provider-wrapper .provider .title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.9rem;
}
main .availability .provider-wrapper .provider .info--1 {
    display: flex;
    flex-direction: column;
}
main .availability .provider-wrapper .provider .info--1 .provider-id {
    font-size: 1.4rem;
    font-weight: 500;
}
main .availability .provider-wrapper .provider .info--1 .id {
    display: flex;
    gap: 0.4rem;
    font-size: 1.4rem;
    font-weight: 500;
    color: #6c006c;
}
main .availability .provider-wrapper .provider .info--1 .info-icon-wrapper {
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
}
main
    .availability
    .provider-wrapper
    .provider
    .info--1
    .info-icon-wrapper::after {
    content: "Copied!";
    position: absolute;
    bottom: 150%;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 0.4rem;
    font-size: 1rem;
    font-weight: 500;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
    white-space: nowrap;
    z-index: 100;
}
main
    .availability
    .provider-wrapper
    .provider
    .info--1
    .info-icon-wrapper::before {
    content: "";
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    border: 0.5rem solid transparent;
    border-top-color: #333;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 100;
}
main
    .availability
    .provider-wrapper
    .provider
    .info--1
    .info-icon-wrapper.copied::after,
main
    .availability
    .provider-wrapper
    .provider
    .info--1
    .info-icon-wrapper.copied::before {
    opacity: 1;
    transform: translateX(-50%) translateY(-0.5rem);
}
main .availability .provider-wrapper .provider .info--2 {
    display: flex;
    flex-direction: column;
}
main .availability .provider-wrapper .provider .info--2 .provider-name {
    font-size: 1.4rem;
    font-weight: 500;
}
main .availability .provider-wrapper .provider .info--2 .name {
    font-size: 1.4rem;
    font-weight: 500;
    color: #6c006c;
    text-decoration: underline;
    cursor: pointer;
}

.hidden {
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
}

footer {
    margin-top: 4rem;
    padding: 4rem;
    background-color: var(--color-black);
    color: var(--color-white);
    font-size: 1.4rem;
    font-weight: 400;
    white-space: nowrap;
}
footer .wrapper {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    gap: 5rem;
    letter-spacing: 1.2px;
}
footer .wrapper .logo-menu-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}
footer .wrapper .logo-menu-wrapper .logo {
    display: flex;
    align-self: flex-start;
    justify-content: center;
}
footer .wrapper .logo-menu-wrapper .language-user {
    display: none;
}
footer .wrapper .logo-menu-wrapper .language-user .dot-separator {
    width: 4px;
    height: 4px;
    background-color: var(--color-primary);
    border-radius: 50%;
}
footer .wrapper .logo-menu-wrapper .footer-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
footer .wrapper .middle-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.6rem;
}
footer .wrapper .middle-menu .menu {
    margin-top: 2.6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
footer .wrapper .middle-menu .signup-wrapper {
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.4rem;
}
footer .wrapper .middle-menu .copyright {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}
footer .wrapper .middle-menu .copyright span {
    color: var(--color-primary);
    font-size: 1.4rem;
    font-weight: 400;
}
footer .wrapper .btn-wrapper {
    height: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.6rem 2rem;
    border: var(--color-white) 1px solid;
}
footer .wrapper .underline {
    margin-top: -2rem;
    width: 100%;
    height: 1px;
    background-color: var(--color-white);
}
footer .wrapper .last-menu .menu {
    margin-top: -4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

@media (min-width: 740px) {
    footer .wrapper .logo-menu-wrapper {
        flex-direction: row;
    }
    footer .wrapper .logo-menu-wrapper .footer-menu {
        flex-direction: row;
        gap: 3rem;
        margin-right: 0;
    }
    footer .wrapper .logo-menu-wrapper .language-user {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        color: var(--color-white);
    }
    footer .wrapper .middle-menu {
        position: relative;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        row-gap: 4rem;
        column-gap: 1rem;
    }
    footer .wrapper .btn-wrapper {
        grid-column: 2/2;
        grid-row: 1/2;
        max-width: 16rem;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1rem 1rem;
        border: var(--color-white) 1px solid;
        border-left: 6px solid var(--color-white);
        justify-self: center;
    }
    footer .wrapper .middle-menu #footer-signup {
        margin-left: 5rem;
    }
    footer .wrapper .middle-menu #partner {
        margin-right: 32rem;
    }
    footer .wrapper .middle-menu .side-line {
        grid-column: 2/2;
        grid-row: 1/2;
        display: block;
        height: 2rem;
        width: 1px;
        margin-left: 22.6rem;
        background-color: var(--color-primary);
    }
    footer .wrapper .middle-menu .menu {
        padding-top: 0;
        grid-column: 1/3;
        grid-row: 2/2;
        margin-top: 0;
        display: flex;
        flex-direction: row;
        justify-content: center;
        justify-content: flex-start;
        align-self: start;
        gap: 1rem;
    }
    footer .wrapper .middle-menu .signup-wrapper {
        grid-column: 2/2;
        grid-row: 1/2;
        padding: 2rem;
        margin-left: 36rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1.4rem;
    }
    footer .wrapper .middle-menu .signup svg {
        margin-top: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    footer .wrapper .middle-menu .copyright {
        grid-column: 3/4;
        grid-row: 2/2;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: center;
        align-self: end;
        text-wrap: wrap;
        gap: 3rem;
    }
    footer .wrapper .underline {
        display: none;
    }
    footer .wrapper .last-menu .menu {
        margin-top: 1rem;
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        gap: 2rem;
    }
}
@media (min-width: 840px) {
    footer .wrapper .logo-menu-wrapper .footer-menu {
        margin-right: 10rem;
    }
    footer .wrapper .middle-menu .menu {
        gap: 1rem;
    }
}
@media (min-width: 940px) {
    footer {
        padding: 6rem;
    }
    footer .wrapper {
        max-width: 1200px;
        margin: 0 auto;
    }
}
.signup-email {
    display: flex;
    justify-content: center;
    padding: 12rem 2rem 0;
}
.signup-email .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    min-width: 33rem;
}
.signup-email .wrapper .title {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--color-black);
    text-align: center;
}
.signup-email .wrapper .signup-form {
    position: relative;
    display: flex;
    justify-content: center;
}
.signup-email .wrapper .signup-form .email-input {
    min-width: 28rem;
    width: 100%;
    height: 5rem;
    border: 0.5px solid var(--color-black);
    padding: 2rem 10rem 2rem 2rem;
}
.signup-email .wrapper .signup-form .email-input::placeholder {
    color: var(--color-text-third);
    font-size: 1.2rem;
    font-weight: 500;
}
.signup-email .wrapper .signup-form .signup-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    position: absolute;
    top: 27%;
    right: 4%;
    border: none;
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0);
    color: var(--color-white);
    font-size: 1.4rem;
    font-weight: 500;
    cursor: pointer;
}
.signup-email .wrapper .signup-form .signup-btn span {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--color-black);
}
.signup-email .wrapper .signup-form .signup-btn .ico {
    width: 2.4rem;
    height: 2.4rem;
    fill: var(--color-black);
}

@media (min-width: 740px) {
    .signup-email .wrapper .title {
        font-size: 3rem;
    }
    .signup-email .wrapper .signup-form .email-input {
        width: 50rem;
    }
}
@media (min-width: 792px) {
    .signup-email {
        padding: 14rem 2rem 4rem;
    }
}
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.popup-wrapper {
    top: 0;
    left: 0;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.popup,
.popup-wrapper {
    display: none;
    position: fixed;
    width: 100%;
}

.popup {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ededed;
    z-index: 1000;
    height: fit-content;
    padding: 2rem;
    align-items: center;
}

.popup-content {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    width: fit-content;
    margin: 0 auto;
    padding: 0 2rem 0 4rem;
}

#popup-title {
    margin: 0;
    font-size: 18px;
    color: #333;
    font-weight: 600;
    text-align: left;
}

#popup-message {
    margin: 0 auto;
    padding: 5px 8px;
    font-size: 1.6rem;
    color: #000;
    background-color: rgba(0, 191, 13, 0.2274509804);
}

.msg-btn {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: center;
}

.popup-content button {
    color: #000;
    border: none;
    padding: 8px 10px;
    font-size: 1.6rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.popup-content button:hover {
    background-color: #d9ebdc;
}

.gallery-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.gallery-popup.active {
    display: flex;
}
.gallery-popup .close-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
}
.gallery-popup .close-btn svg {
    width: 3rem;
    height: 3rem;
}
.gallery-popup .gallery-main {
    position: relative;
}
.gallery-popup .gallery-main .gallery-main-image {
    max-width: 100%;
    height: 95%;
    object-fit: contain;
}
.gallery-popup .gallery-main .prev-btn,
.gallery-popup .gallery-main .next-btn {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 1rem;
    border-radius: 50%;
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}
.gallery-popup .gallery-main .prev-btn:hover,
.gallery-popup .gallery-main .next-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}
.gallery-popup .gallery-main .prev-btn {
    left: 2rem;
}
.gallery-popup .gallery-main .next-btn {
    right: 2rem;
}
.gallery-popup .gallery-thumbnails {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
    padding: 0 2rem;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.gallery-popup .gallery-thumbnails .gallery-thumb-indicator {
    position: absolute;
    top: 50%;
    margin: 0 1rem;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    cursor: pointer;
    padding: 0;
    border-radius: 50%;
    width: 4.2rem;
    height: 4.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1002;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}
.gallery-popup .gallery-thumbnails .gallery-thumb-indicator.left {
    left: 0.4rem;
}
.gallery-popup .gallery-thumbnails .gallery-thumb-indicator.right {
    right: 0.4rem;
}
.gallery-popup .gallery-thumbnails .gallery-thumb-indicator.is-visible {
    opacity: 1;
    pointer-events: auto;
}
.gallery-popup .gallery-thumbnails .gallery-thumb-indicator:hover {
    background-color: rgba(0, 0, 0, 0.8);
}
@media (max-width: 480px) {
    .gallery-popup .gallery-thumbnails .gallery-thumb-indicator {
        width: 3.6rem;
        height: 3.6rem;
    }
}
@media (max-width: 992px) {
    .gallery-popup .gallery-thumbnails {
        bottom: 3rem;
        padding: 0;
    }
}
@media (max-width: 480px) {
    .gallery-popup .gallery-thumbnails {
        bottom: 10rem;
        padding: 0;
    }
}
.gallery-popup .gallery-thumbnails .thumbnails-wrapper {
    display: flex;
    gap: 1rem;
    max-width: 100%;
    flex-wrap: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(10, 10, 10, 0.5);
    backdrop-filter: blur(4px);
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}
.gallery-popup .gallery-thumbnails .thumbnails-wrapper::-webkit-scrollbar {
    height: 8px;
}
.gallery-popup
    .gallery-thumbnails
    .thumbnails-wrapper::-webkit-scrollbar-track {
    background: transparent;
}
.gallery-popup
    .gallery-thumbnails
    .thumbnails-wrapper::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}
.gallery-popup .gallery-thumbnails .thumbnails-wrapper .thumbnail-img {
    width: 100px;
    height: 75px;
    flex: 0 0 auto;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 0.6rem;
}
@media (max-width: 992px) {
    .gallery-popup .gallery-thumbnails .thumbnails-wrapper .thumbnail-img {
        width: 88px;
        height: 66px;
    }
}
@media (max-width: 480px) {
    .gallery-popup .gallery-thumbnails .thumbnails-wrapper .thumbnail-img {
        width: 72px;
        height: 54px;
    }
}
.gallery-popup .gallery-thumbnails .thumbnails-wrapper .thumbnail-img.active {
    border-color: var(--color-primary);
}
.gallery-popup .gallery-counter {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.6rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.calendar-container {
    position: fixed;
    width: 550px;
    height: auto;
    max-width: 90vw;
    padding: 2rem;
    box-shadow:
        0 8px 32px 0 rgba(120, 0, 120, 0.45),
        0 1.5px 8px 0 rgba(0, 0, 0, 0.7),
        0 0 0 2px #333;
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
    background-color: #202020;
    color: #fff;
    z-index: 1000;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5rem;
}

.calendar-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

.calendar-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.6rem;
    font-weight: 600;
}

.calendar-buttons {
    display: flex;
    gap: 1rem;
}

.calendar-button {
    padding: 8px 16px;
    background-color: rgba(255, 255, 255, 0);
    color: #fff;
    border: 1px solid #fff;
    border-radius: 0;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.calendar-button.disabled,
.calendar-button[disabled] {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
    border-color: rgba(255, 255, 255, 0.5);
    color: rgba(255, 255, 255, 0.6);
    background-color: rgba(255, 255, 255, 0.06);
}

.calendar-button:hover {
    background-color: #fff;
    color: #000;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.calendar-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(255, 255, 255, 0.2);
}

.calendar-days-of-week {
    list-style: none;
    font-size: 1.4rem;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    align-items: center;
    justify-items: center;
    width: 100%;
    gap: 0.5rem;
    padding: 0 0.5rem;
}

.calendar-days {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    justify-items: center;
    align-content: start;
    row-gap: 2.2rem;
    column-gap: 0.5rem;
    padding: 0 0.5rem;
    height: 30.5rem;
}

.day {
    position: relative;
    font-size: 1.4rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1;
    min-height: 3.2rem;
    min-width: 3.2rem;
}

.day:hover {
    color: #000;
}

.day:hover::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 3.2rem;
    height: 3.2rem;
    background-color: #fff;
    border-radius: 50%;
    z-index: -1;
}

.day.prev-month,
.day.next-month {
    color: #e9dada;
    pointer-events: none;
    opacity: 0.7;
    font-weight: 400;
}

.day.disabled {
    color: #e9dada;
    pointer-events: none;
    cursor: not-allowed;
    opacity: 0.7;
    font-weight: 400;
}

.day.disabled:hover {
    color: #666;
}

.day.disabled:hover::before,
.day.not-selectable:hover::before {
    display: none !important;
}

.day.not-selectable {
    color: #8d8b8b !important;
    pointer-events: none !important;
    cursor: default !important;
    font-weight: 400 !important;
}

.day.today {
    color: #777777;
    font-weight: 700;
    z-index: 2;
    opacity: 1;
}

.day.today::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 3.2rem;
    height: 3.2rem;
    background-color: #f0f0f0;
    border-radius: 50%;
    z-index: -1;
}

.day.season-start-marker::after,
.day.season-end-marker::after {
    position: absolute;
    top: -1.2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    font-weight: 800;
    color: #fff;
    pointer-events: none;
}

.day.season-start-marker::after {
    content: "S";
}

.day.season-end-marker::after {
    content: "E";
}

.day.selected {
    color: #fff;
    font-weight: 700;
    z-index: 3;
    position: relative;
}

.day.selected::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 3.2rem;
    height: 3.2rem;
    background-color: #6c006c;
    border-radius: 50%;
    z-index: -1;
    opacity: 1;
}

.day.range-start,
.day.range-end {
    color: #fff;
    font-weight: 700;
    position: relative;
}

.day.range-start::before,
.day.range-end::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 3.2rem;
    height: 3.2rem;
    background-color: #6c006c;
    border-radius: 50%;
    z-index: -1;
}

.day.range-start:not(.in-range) {
    color: #fff;
    font-weight: 700;
}

.day.range-start:not(.in-range)::before {
    background-color: #6c006c;
    z-index: -1;
}

.day.in-range {
    color: #fff;
    font-weight: 700;
}

.day.in-range::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 3.2rem;
    height: 3.2rem;
    background-color: #6c006c;
    border-radius: 50%;
    z-index: -1;
}

.day.selected:hover,
.day.selected.range-start,
.day.selected.range-end,
.day.selected.in-range,
.day.selected.today {
    color: #fff;
}

.day.selected:hover::before,
.day.selected.range-start::before,
.day.selected.range-end::before,
.day.selected.in-range::before,
.day.selected.today::before {
    background-color: #6c006c;
    opacity: 1;
    border: none;
}

.day.in-range.today,
.day.range-start.today,
.day.range-end.today,
.day.selected.today {
    color: #fff;
    font-weight: 700;
}

.day.in-range.today::before,
.day.range-start.today::before,
.day.range-end.today::before,
.day.selected.today::before {
    background-color: #6c006c;
    border: none;
}

.day.current-month:hover {
    color: #000;
}

.day.current-month:hover::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 3.2rem;
    height: 3.2rem;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    z-index: -1;
}

.day.selected:hover::before,
.day.range-start:hover::before,
.day.range-end:hover::before,
.day.in-range:hover::before {
    background-color: #8b1a8b;
}

.day.range-start {
    z-index: 2;
}

.day.in-range-other-month {
    color: #fff;
    font-weight: 400;
    opacity: 0.7;
}

.day.in-range-other-month::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 3.2rem;
    height: 3.2rem;
    background-color: #6c006c;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.6;
    border: 1px dashed #fff;
}

.day.range-start.prev-month::before,
.day.range-start.next-month::before,
.day.range-end.prev-month::before,
.day.range-end.next-month::before {
    border: 2px dotted #fff;
    opacity: 0.6;
}

.day.in-range_other-month:hover::before {
    opacity: 0.8;
    background-color: #8b1a8b;
}

.calendar-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    border-top: 1px solid #333;
    margin-top: 1rem;
}

.calendar-action-button {
    padding: 8px 16px;
    background-color: rgba(255, 255, 255, 0);
    color: #fff;
    border: 1px solid #fff;
    border-radius: 0;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 500;
    transition: all 0.3s ease;
    flex: 0 0 auto;
    max-width: 120px;
    min-width: 80px;
}

.calendar-action-button:hover {
    background-color: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.calendar-action-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(255, 255, 255, 0.2);
}

.calendar-action-button:disabled {
    background-color: rgba(255, 255, 255, 0);
    color: #666;
    border-color: #666;
    cursor: not-allowed;
    opacity: 0.5;
}

.calendar-action-button:disabled:hover {
    background-color: rgba(255, 255, 255, 0);
    color: #666;
    transform: none;
    box-shadow: none;
}

@media (min-width: 541px) and (max-width: 768px) {
    .calendar-container {
        width: 95vw;
        max-width: 95vw;
        padding: 1.5rem;
        gap: 3.5rem;
    }
    .calendar-header {
        gap: 4rem;
    }
    .calendar-controls {
        gap: 2rem;
        padding: 0 1.5rem;
    }
    .calendar-date {
        font-size: 1.4rem;
        gap: 6px;
    }
    .calendar-button {
        padding: 6px 12px;
        font-size: 1.1rem;
    }
    .calendar-body {
        padding: 0.8rem 0;
    }
    .calendar-days-of-week {
        font-size: 1.2rem;
        gap: 0.3rem;
        padding: 0 0.3rem;
    }
    .calendar-days {
        align-content: start;
        row-gap: 1.8rem;
        column-gap: 0.3rem;
        padding: 0 0.3rem;
        height: 27rem;
    }
    .day {
        font-size: 1.3rem;
        min-height: 3rem;
        min-width: 3rem;
    }
    .day:hover::before,
    .day.selected::before,
    .day.range-start::before,
    .day.range-end::before,
    .day.in-range::before,
    .day.today::before,
    .day.current-month:hover::before,
    .day.in-range-other-month::before {
        width: 3rem;
        height: 3rem;
    }
    .calendar-footer {
        gap: 0.8rem;
        padding: 0.8rem 1.5rem;
    }
    .calendar-action-button {
        padding: 6px 12px;
        font-size: 1.1rem;
        max-width: 100px;
        min-width: 70px;
    }
}
@media (max-width: 540px) {
    .calendar-container {
        width: 100vw;
        max-width: 100vw;
        min-width: 380px;
        height: 100%;
        padding: 2rem 1rem;
        border-radius: 0;
        position: fixed;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        gap: 3rem;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    .calendar-header {
        gap: 3rem;
    }
    .calendar-controls {
        gap: 1.5rem;
        padding: 0 1rem;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .calendar-date {
        font-size: 1.3rem;
        gap: 4px;
        margin-bottom: 1rem;
    }
    .calendar-button {
        padding: 8px 12px;
        font-size: 1rem;
        min-width: 70px;
    }
    .calendar-body {
        padding: 0.5rem 0;
    }
    .calendar-days-of-week {
        font-size: 1.1rem;
        gap: 0.2rem;
        padding: 0 0.2rem;
    }
    .calendar-days {
        align-content: start;
        row-gap: 1.5rem;
        column-gap: 0.2rem;
        padding: 0 0.2rem;
        height: 25rem;
    }
}

.participants-popup-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(90, 88, 88, 0.6);
    z-index: 9999;
    backdrop-filter: blur(1px);
}
.participants-popup-wrapper .popup {
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ededed;
    z-index: 1000;
    height: fit-content;
    padding: 2rem;
    align-items: center;
    width: 300px;
    border-radius: 5px;
}
.participants-popup-wrapper .popup .popup-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}
.participants-popup-wrapper .popup .popup-content #participants-popup-title {
    font-size: 1.8rem;
    color: #333;
    font-weight: 600;
    text-align: left;
    width: 100%;
    margin-bottom: 1rem;
}
.participants-popup-wrapper .popup .popup-content .participants-selector {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.participants-popup-wrapper
    .popup
    .popup-content
    .participants-selector
    .participant-type {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.participants-popup-wrapper
    .popup
    .popup-content
    .participants-selector
    .participant-type
    span {
    font-size: 1.6rem;
    font-weight: 500;
}
.participants-popup-wrapper
    .popup
    .popup-content
    .participants-selector
    .participant-type
    .number-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.participants-popup-wrapper
    .popup
    .popup-content
    .participants-selector
    .participant-type
    .number-selector
    button {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--color-prime);
    background-color: var(--color-white);
    color: var(--color-prime);
    font-size: 1.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.participants-popup-wrapper
    .popup
    .popup-content
    .participants-selector
    .participant-type
    .number-selector
    button:hover {
    background-color: var(--color-primary-background);
}
.participants-popup-wrapper
    .popup
    .popup-content
    .participants-selector
    .participant-type
    .number-selector
    button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}
.participants-popup-wrapper
    .popup
    .popup-content
    .participants-selector
    .participant-type
    .number-selector
    button.disabled
    .pax-left {
    color: inherit;
}
.participants-popup-wrapper
    .popup
    .popup-content
    .participants-selector
    .participant-type
    .number-selector
    .number {
    font-size: 1.6rem;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}
.participants-popup-wrapper .popup .popup-content .actions {
    width: 100%;
    margin-top: 2rem;
}
.participants-popup-wrapper .popup .popup-content .actions .confirm-btn {
    width: 100%;
    height: 4.5rem;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--color-white);
    background-color: var(--color-prime);
    border: none;
    cursor: pointer;
    border-radius: 5px;
}
.participants-popup-wrapper .popup .popup-content .actions .confirm-btn:hover {
    opacity: 0.9;
}

.hidden {
    display: none !important;
}

.reviews-section {
    margin-top: 4rem;
    max-width: 800px;
}
@media (max-width: 992px) {
    .reviews-section {
        margin: 4rem auto;
    }
}

.reviews-sort {
    font-weight: 600;
    height: 50px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    background-color: rgba(226, 0, 226, 0.06);
}

.reviews-sort p {
    margin-left: 2rem;
    padding-left: 12px;
}

.custom-select {
    position: relative;
    display: inline-block;
    min-width: 140px;
}

.custom-select__trigger {
    font-size: 14px;
    color: #6c006c;
    background: transparent;
    border: none;
    padding: 6px 28px 6px 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    user-select: none;
    max-width: 120px;
}

.custom-select__trigger:hover {
    color: #8a0aa8;
}

.custom-select__arrow {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 8px;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236C006C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
    pointer-events: none;
}

.custom-select.active .custom-select__arrow {
    transform: translateY(-50%) rotate(180deg);
}

.custom-select__options {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    overflow: hidden;
    z-index: 100;
    max-height: 0;
    opacity: 0;
    transform-origin: top;
    transform: scaleY(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 120px;
}

.custom-select.active .custom-select__options {
    max-height: 200px;
    opacity: 1;
    transform: scaleY(1);
}

.custom-select__option {
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
    max-width: 120px;
}

.custom-select__option:last-child {
    border-bottom: none;
}

.custom-select__option:hover {
    background-color: rgba(226, 0, 226, 0.1);
    color: #6c006c;
}

.custom-select__option.selected {
    background-color: rgba(226, 0, 226, 0.2);
    color: #6c006c;
    font-weight: 600;
}

.review-card {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 18px 0px;
    color: #000;
}

.review-card__header {
    display: grid;
    grid-template-columns: 67px 1fr auto;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 2rem;
    overflow: hidden;
}

.review-card__profile-img {
    width: 67px;
    height: 67px;
    object-fit: cover;
    border: 2px solid #000;
    display: block;
}

.review-card__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.review-card__rating {
    font-size: 16px;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.review-card__rating-number {
    font-size: 13px;
    color: #8a0aa8;
    font-weight: 600;
}

.review-card__info .review-card__stars {
    display: inline-flex;
    gap: 4px;
    align-items: center;
    flex-wrap: nowrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.review-card__name {
    font-weight: 600;
    font-size: 14px;
}

.review-card__status {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    flex-wrap: wrap;
}

.review-card__date {
    font-weight: 600;
    color: #6c006c;
    position: relative;
}

.review-card__date::after {
    content: "";
    position: absolute;
    left: 100%;
    width: 100vw;
    height: 1px;
    border-bottom: 1px dashed #ccc;
    bottom: 6px;
    margin-left: 8px;
}

.review-card__actions {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-self: flex-end;
    margin-bottom: 1rem;
}

.review-card__icon-btn {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    border: 1px solid transparent;
    background: transparent;
    cursor: pointer;
    font-size: 16px;
    flex-shrink: 0;
}

.review-card__icon-btn:hover {
    background: #fafafa;
    border-color: #e6e6e6;
}

.review-card__body {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    color: #2b2b2b;
}

.review-card__body span {
    margin-right: 8px;
}

.reviews-section__load-more {
    margin-top: 40px;
    display: block;
    margin-left: auto;
    background: #6c006c;
    color: #fff;
    border: none;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    width: 140px;
    height: 40px;
}

.reviews-section__load-more:hover {
    background: #000;
}

.rating {
    max-width: 800px;
}
@media (max-width: 992px) {
    .rating.rating--details {
        margin: 4rem auto 0;
    }
}

.rating__title {
    font-size: 20px;
    font-weight: 500;
    margin: 4rem 0 0;
    max-width: 800px;
}

.rating__subtitle {
    font-size: 16px;
    font-weight: 400;
    margin: 1rem 0;
}

.rating__layout {
    display: flex;
    gap: 32px;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem 1rem 1rem;
}
@media (max-width: 992px) {
    .rating__layout {
        margin: 0 auto 0;
    }
}

.rating__bars {
    width: 345px;
    height: 160px;
    min-width: 130px;
    margin-top: -4rem;
}

.rating__row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 8px;
}

.rating__row-top {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    gap: 4px;
    font-size: 14px;
    color: #333;
}

.rating__dash {
    font-size: 14px;
    color: #444;
}

.rating__label,
.rating__value {
    font-size: 14px;
}

.rating__bar {
    width: 100%;
    height: 3px;
    background: #f3d6f5;
    overflow: hidden;
}

.rating__bar-fill {
    height: 100%;
    background: #72007c;
    border-radius: 4px;
    width: 20%;
}

.rating__summary {
    background: #f2f2f2;
    height: 155px;
    border-radius: 0 40px;
    min-width: 423px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 20px 40px;
    margin-bottom: 2rem;
}

.rating__summary-left {
    text-align: left;
    width: 100%;
}

.rating__summary-total {
    color: #000;
    font-weight: 500;
    font-size: 14px;
    display: block;
    margin-bottom: -3rem;
}

.rating__summary-right {
    text-align: center;
}

.rating__summary-average {
    font-size: 64px;
    font-weight: bold;
    font-style: italic;
    display: block;
    margin-bottom: -2rem;
    margin-top: 1rem;
}

.rating__summary .review-card__stars {
    font-size: 0;
    display: flex;
    gap: 2px;
    list-style: none;
    padding: 0;
    margin: 10px auto 0;
    justify-content: center;
}

.rating__summary .review-card__stars svg stop:first-child {
    stop-color: #6c006c;
}

.review-card__stars svg stop:last-child {
    stop-color: rgba(226, 0, 226, 0.2);
}

.itinerary-container {
    max-width: 790px;
    overflow: hidden;
    margin: 3rem 0 2rem;
}
@media (max-width: 992px) {
    .itinerary-container {
        margin: 2rem auto;
    }
}

.itinerary-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #000;
    margin-top: 0;
}

.itinerary-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    align-items: start;
}

.points-section {
    background: rgba(226, 0, 226, 0.06);
    padding: 3rem 0 2rem 3rem;
    height: 450px;
    width: 300px;
    display: flex;
    flex-direction: column;
}

.points-list {
    position: relative;
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
}

.points-list::-webkit-scrollbar {
    width: 7px;
}

.points-list::-webkit-scrollbar-track {
    background: transparent;
}

.points-list::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #6c006c, #72007c);
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.points-list::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #4a004a, #5a005a);
}

.points-list-inner {
    position: relative;
}

.points-list-inner::before {
    display: none;
}

.point-item {
    display: grid;
    grid-template-columns: 36px 1fr;
    align-items: start;
    position: relative;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.point-marker {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    align-self: start;
    margin-bottom: 0.5rem;
}

.point-marker::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    width: 1px;
    height: 3rem;
    margin-top: 0.5rem;
    background-image: repeating-linear-gradient(
        to bottom,
        #575656 0,
        #575656 3px,
        transparent 3px,
        transparent 6px
    );
}

.points-list-inner .point-item:last-child .point-marker::after {
    display: none;
}

.points-list-inner .point-item:last-child::after {
    display: none;
}

.start-item {
    margin-bottom: 1rem;
}

.start-marker {
    background: transparent;
}

.start-marker svg {
    width: 24px;
    height: 24px;
    display: block;
    margin-top: 0;
}

.point-details h4 {
    color: #7b1fa2;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

.point-details p {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    margin: 1rem 0;
}

.meeting-point-section {
    max-width: 790px;
    margin: 4rem 0 0 0;
}
@media (max-width: 992px) {
    .meeting-point-section {
        margin: 4rem auto;
    }
}

.meeting-point-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #000;
    margin-top: 0;
}

.meeting-point-header p {
    background: rgba(226, 0, 226, 0.06);
    padding: 10px 20px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    margin: 0;
}

#meeting-map {
    width: 100%;
    height: 255px;
    display: block;
    object-fit: cover;
}

#map {
    width: 100%;
    height: auto;
    min-height: 450px;
    object-fit: cover;
    display: block;
}

.itinerary-container .map-section {
    height: 450px;
}

.info-black-box {
    display: flex;
    font-size: 14px;
    font-weight: 400;
    padding: 1rem 2rem;
    background: #000;
    color: #fff;
    height: 80px;
    width: 300px;
    flex-direction: column;
    justify-content: center;
    gap: 0.3rem;
}

.info-black-box span {
    font-weight: 300;
    margin-left: 0.5rem;
}

.info-black-box svg {
    vertical-align: middle;
    margin-right: 0.3rem;
    margin-bottom: 0.2rem;
}

@media (max-width: 768px) {
    .itinerary-content {
        grid-template-columns: 1fr;
    }
    .points-section {
        height: 400px;
        width: 100%;
    }
    .itinerary-container .map-section {
        min-height: 360px;
    }
    #map {
        min-height: 360px;
    }
    .info-black-box {
        width: 100%;
    }
    .points-list::-webkit-scrollbar {
        width: 5px;
    }
}
@media (max-width: 700px) {
    html {
        font-size: 56%;
    }
    .rating__layout {
        flex-wrap: wrap;
        align-items: stretch;
        justify-content: flex-start;
        gap: 12px;
        padding: 0;
        margin: 1rem 0;
    }
    .rating__bars {
        width: 100%;
        max-width: 420px;
        margin-top: 0;
        height: auto;
    }
    .rating__row {
        margin-bottom: 10px;
    }
    .rating__bar {
        height: 4px;
    }
    .rating__summary {
        min-width: 0;
        max-width: 420px;
        width: 100%;
        height: 155px;
        border-radius: 0 40px;
        padding: 20px 40px;
        justify-content: center;
        gap: 2rem;
    }
    .rating__summary-average {
        font-size: 50px;
    }
    .rating__summary-total {
        font-size: 14px;
    }
    .rating__title {
        font-size: 20px;
        font-weight: 600;
        text-align: left;
        max-width: 420px;
        padding: 2rem 0 1rem 0;
    }
    .rating__subtitle {
        text-align: left;
        max-width: 420px;
    }
    .rating__row-top {
        font-size: 13px;
        gap: 6px;
    }
}
@media (max-width: 360px) {
    html {
        font-size: 50%;
    }
    .rating__summary {
        min-width: none;
        height: 155px;
        border-radius: 0 40px;
        gap: 4rem;
        padding: 10px 20px;
    }
    .points-section {
        padding: 3rem 0 2rem 3rem;
        height: 450px;
        max-width: 100%;
    }
    .rating__bars {
        width: 100%;
    }
    .rating__summary-average {
        font-size: 40px;
        font-style: italic;
    }
    .review-card__stars svg {
        width: 12px !important;
        height: 12px !important;
    }
    .rating__row-top {
        gap: 4px;
    }
}
@media (max-width: 480px) {
    .review-card {
        padding: 1rem;
    }
    .review-card__header {
        grid-template-columns: 56px 1fr auto;
        gap: 10px;
        align-items: flex-start;
    }
    .point-item {
        margin-bottom: 1rem;
    }
    .review-card__profile-img {
        width: 56px;
        height: 56px;
        border-radius: 6px;
    }
    .review-card__stars svg {
        width: 16px;
        height: 16px;
    }
    .review-card__date::after {
        display: none;
    }
}
@media (max-width: 380px) {
    .review-card {
        padding: 10px;
    }
    .review-card__header {
        grid-template-columns: 48px 1fr 32px;
        gap: 8px;
    }
    .point-item {
        margin-bottom: 1rem;
    }
    .review-card__profile-img {
        width: 48px;
        height: 48px;
    }
    .review-card__rating {
        font-size: 13px;
    }
    .review-card__stars svg {
        width: 14px;
        height: 14px;
    }
    .review-card__star {
        width: 14px;
        height: 14px;
    }
    .review-card__name {
        font-size: 12px;
    }
    .review-card__status {
        font-size: 12px;
    }
    .review-card__body {
        font-size: 14px;
    }
    .review-card__icon-btn {
        width: 28px;
        height: 28px;
    }
    .review-card__icon-btn svg {
        width: 16px;
        height: 16px;
    }
    .review-card__actions {
        gap: 6px;
    }
}
@media (max-width: 320px) {
    .review-card {
        padding: 8px;
    }
    .review-card__header {
        grid-template-columns: 40px 1fr 28px;
        gap: 6px;
    }
    .point-item {
        margin-bottom: 1rem;
    }
    .review-card__profile-img {
        width: 40px;
        height: 40px;
    }
    .review-card__rating {
        font-size: 12px;
        gap: 4px;
    }
    .review-card__stars {
        gap: 2px;
    }
    .review-card__stars svg {
        width: 12px;
        height: 12px;
    }
    .review-card__star {
        width: 12px;
        height: 12px;
    }
    .review-card__name {
        font-size: 11px;
    }
    .review-card__status {
        font-size: 11px;
    }
    .review-card__body {
        font-size: 13px;
    }
    .review-card__icon-btn {
        width: 24px;
        height: 24px;
    }
    .review-card__icon-btn svg {
        width: 14px;
        height: 14px;
    }
    .review-card__actions {
        gap: 4px;
    }
}
.gallery-popup .gallery-main-image {
    margin-top: 4rem;
    margin-bottom: 4rem;
    max-height: 80vh;
    object-fit: contain;
}
.gallery-popup .close-btn {
    z-index: 20000 !important;
    position: absolute;
    top: 2rem;
    right: 2rem;
}

.get-help {
    max-width: 1100px;
    margin: 12rem auto 0;
    padding: 4rem 0;
}

.get-help .title-section {
    text-align: center;
    margin-bottom: 40px;
}

.get-help .title-section h2 {
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.get-help .title-section p {
    font-size: 1.4rem;
    color: #666;
    margin: 0;
}

.get-help .cards-container {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.get-help .card {
    padding: 2rem;
    margin: 1rem;
    color: white;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    position: relative;
}

.get-help .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.get-help .card-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.get-help .card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.get-help .card-description {
    font-size: 1.3rem;
    line-height: 1.4;
    padding: 2rem 2.5rem 0 2.5rem;
    margin-bottom: 16px;
    color: #dedede;
}

.get-help .card-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    margin-top: auto;
    flex-shrink: 0;
    padding: 2rem 1rem;
}

.get-help .card-purple {
    background: #6c006c;
    width: 210px;
    height: auto;
}

.get-help .card-purple2 {
    background: #6c006c;
    width: 210px;
    height: auto;
}

.get-help .card-purple3 {
    background: #6c006c;
    width: 210px;
    height: auto;
}

.get-help .card-black {
    background: #000;
    width: 310px;
    height: auto;
}

.faq-explore a:hover {
    color: #6c006c;
}

@media (max-width: 900px) {
    .get-help .cards-container {
        flex-direction: column;
        align-items: center;
        padding: 3rem;
    }
    .get-help .card {
        width: 100%;
    }
}

.section-content {
    line-height: 1.5;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.show-more-btn {
    background: none;
    border: none;
    color: var(--color-prime);
    text-decoration: underline;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    padding: 0;
    margin: 0;
    display: inline-block;
    vertical-align: baseline;
    position: relative;
    z-index: 1;
}

.show-more-btn:hover {
    color: #4a004a;
}

.section-content span {
    display: block;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}
body {
    margin: 0;
    font-family: "Poppins", sans-serif;
}

.tour-info {
    max-width: 790px;
    margin: 24px auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tour-info__section {
    display: block;
}

.tour-info__title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #000;
    margin-top: 0;
}

.tour-info__text {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.reviews-section {
    max-width: 800px;
    padding: 0 10px;
}

.reviews-sort {
    font-weight: 600;
    height: 50px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    background-color: rgba(226, 0, 226, 0.06);
}
.reviews-sort p {
    margin-left: 2rem;
    padding-left: 12px;
}

.custom-select {
    position: relative;
    display: inline-block;
    min-width: 140px;
}

.custom-select__trigger {
    font-size: 14px;
    color: #6c006c;
    background: transparent;
    border: none;
    padding: 6px 28px 6px 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    user-select: none;
    max-width: 120px;
}

.custom-select__trigger:hover {
    color: #8a0aa8;
}

.custom-select__arrow {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 8px;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236C006C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
    pointer-events: none;
}

.custom-select.active .custom-select__arrow {
    transform: translateY(-50%) rotate(180deg);
}

.custom-select__options {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    overflow: hidden;
    z-index: 100;
    max-height: 0;
    opacity: 0;
    transform-origin: top;
    transform: scaleY(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 120px;
}

.custom-select.active .custom-select__options {
    max-height: 200px;
    opacity: 1;
    transform: scaleY(1);
}

.custom-select__option {
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
    max-width: 120px;
}

.custom-select__option:last-child {
    border-bottom: none;
}

.custom-select__option:hover {
    background-color: rgba(226, 0, 226, 0.1);
    color: #6c006c;
}

.custom-select__option.selected {
    background-color: rgba(226, 0, 226, 0.2);
    color: #6c006c;
    font-weight: 600;
}

.review-card {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 18px 0px;
    color: #000;
}

.review-card__header {
    display: grid;
    grid-template-columns: 67px 1fr auto;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 2rem;
    overflow: hidden;
}

.review-card__profile-img {
    width: 67px;
    height: 67px;
    object-fit: cover;
    border: 2px solid #000;
    display: block;
}

.review-card__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.review-card__rating {
    font-size: 16px;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.review-card__rating-number {
    font-size: 13px;
    color: #8a0aa8;
    font-weight: 600;
}

.review-card__info .review-card__stars {
    display: inline-flex;
    gap: 4px;
    align-items: center;
    flex-wrap: nowrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.review-card__name {
    font-weight: 600;
    font-size: 14px;
}

.review-card__status {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    flex-wrap: wrap;
}

.review-card__date {
    font-weight: 600;
    color: #6c006c;
    position: relative;
}

.review-card__date::after {
    content: "";
    position: absolute;
    left: 100%;
    width: 100vw;
    height: 1px;
    border-bottom: 1px dashed #ccc;
    bottom: 6px;
    margin-left: 8px;
}

.review-card__actions {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-self: flex-end;
    margin-bottom: 1rem;
}

.review-card__icon-btn {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    border: 1px solid transparent;
    background: transparent;
    cursor: pointer;
    font-size: 16px;
    flex-shrink: 0;
}

.review-card__icon-btn:hover {
    background: #fafafa;
    border-color: #e6e6e6;
}

.review-card__body {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    color: #2b2b2b;
}

.review-card__body span {
    margin-right: 8px;
}

.reviews-section__load-more {
    margin-top: 40px;
    display: block;
    margin-left: auto;
    background: #6c006c;
    color: #fff;
    border: none;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    width: 140px;
    height: 40px;
}

.reviews-section__load-more:hover {
    background: #000;
}

/* .rating {
    max-width: 800px;
    margin: 0 auto;
} */

.rating__title {
    font-size: 20px;
    font-weight: 500;
    margin: 1rem 0;
    max-width: 800px;
}
.rating__subtitle {
    font-size: 16px;
    font-weight: 400;
    margin: 1rem 0;
}
.rating__layout {
    display: flex;
    gap: 32px;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem 1rem 1rem;
}

.rating__bars {
    width: 345px;
    height: 160px;
    min-width: 130px;
    margin-top: -4rem;
}

.rating__row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 8px;
}

.rating__row-top {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    gap: 4px;
    font-size: 14px;
    color: #333;
}
.rating__dash {
    font-size: 14px;
    color: #444;
}

.rating__label,
.rating__value {
    font-size: 14px;
}

.rating__bar {
    width: 100%;
    height: 3px;
    background: #f3d6f5;
    overflow: hidden;
}
.rating__bar-fill {
    height: 100%;
    background: #72007c;
    border-radius: 4px;
    width: 20%;
}

.rating__summary {
    background: #f2f2f2;
    height: 155px;
    border-radius: 0 40px;
    min-width: 423px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 20px 40px;
    margin-bottom: 2rem;
}

.rating__summary-left {
    text-align: left;
    width: 100%;
}

.rating__summary-total {
    color: #000;
    font-weight: 500;
    font-size: 14px;
    display: block;
    margin-bottom: -3rem;
}

.rating__summary-right {
    text-align: center;
}

.rating__summary-average {
    font-size: 64px;
    font-weight: bold;
    font-style: italic;
    display: block;
    margin-bottom: -2rem;
    margin-top: 1rem;
}

.rating__summary .review-card__stars {
    font-size: 0;
    display: flex;
    gap: 2px;
    list-style: none;
    padding: 0;
    margin: 10px auto 0;
    justify-content: center;
}
.rating__summary .review-card__stars svg stop:first-child {
    stop-color: #6c006c;
}
.review-card__stars svg stop:last-child {
    stop-color: rgba(226, 0, 226, 0.2);
}

.itinerary-container {
    max-width: 790px;
    margin: 6rem 0;
    overflow: hidden;
    margin-bottom: 2rem;
}

.itinerary-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #000;
    margin-top: 0;
}

.itinerary-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    align-items: start;
}

.points-section {
    background: rgba(226, 0, 226, 0.06);
    padding: 3rem 0 2rem 3rem;
    height: 450px;
    width: 300px;
    display: flex;
    flex-direction: column;
}

.points-list {
    position: relative;
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
}

.points-list::-webkit-scrollbar {
    width: 7px;
}
.points-list::-webkit-scrollbar-track {
    background: transparent;
}
.points-list::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #6c006c, #72007c);
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: padding-box;
}
.points-list::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #4a004a, #5a005a);
}

.points-list-inner {
    position: relative;
}

.points-list-inner::before {
    display: none;
}

.point-item {
    display: grid;
    grid-template-columns: 36px 1fr;
    align-items: start;

    position: relative;
}

.point-marker {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    align-self: start;
    margin-bottom: 0.5rem;
}

.point-marker::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    width: 1px;
    height: 3rem;
    margin-top: 0.5rem;
    background-image: repeating-linear-gradient(
        to bottom,
        #575656 0,
        #575656 3px,
        transparent 3px,
        transparent 6px
    );
}

.points-list-inner .point-item:last-child .point-marker::after {
    display: none;
}

.points-list-inner .point-item:last-child::after {
    display: none;
}

.start-item {
    margin-bottom: 1rem;
}

.start-marker {
    background: transparent;
}

.start-marker svg {
    width: 24px;
    height: 24px;
    display: block;
    margin-top: 0;
}

.point-details h4 {
    color: #7b1fa2;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

.point-details p {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    margin: 1rem 0;
}

.meeting-point-section {
    max-width: 790px;
    margin: 6rem 0;
}

.meeting-point-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #000;
    margin-top: 0;
}

.meeting-point-header p {
    background: rgba(226, 0, 226, 0.06);
    padding: 10px 20px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    margin: 0;
}

#meeting-map {
    width: 100%;
    height: 255px;
    display: block;
    object-fit: cover;
}

#map {
    width: 100%;
    height: auto;
    min-height: 450px;
    object-fit: cover;
    display: block;
}

.itinerary-container .map-section {
    height: 450px;
}

.info-black-box {
    display: flex;
    font-size: 14px;
    font-weight: 400;
    padding: 1rem 2rem;
    background: #000;
    color: #fff;
    height: 80px;
    width: 300px;
    flex-direction: column;
    justify-content: center;
    gap: 0.3rem;
}
.info-black-box span {
    font-weight: 300;
    margin-left: 0.5rem;
}
.info-black-box svg {
    vertical-align: middle;
    margin-right: 0.3rem;
    margin-bottom: 0.2rem;
}

@media (max-width: 768px) {
    .itinerary-content {
        grid-template-columns: 1fr;
    }

    .points-section {
        height: 400px;
        width: 100%;
    }

    .itinerary-container .map-section {
        min-height: 360px;
    }
    #map {
        min-height: 360px;
    }

    .info-black-box {
        width: 100%;
    }
    .points-list::-webkit-scrollbar {
        width: 5px;
    }
}

@media (max-width: 700px) {
    html {
        font-size: 56%;
    }

    .rating__layout {
        flex-wrap: wrap;
        align-items: stretch;
        justify-content: center;
        gap: 12px;
        padding: 0;
        margin: 1rem 0;
    }
    .rating__bars {
        width: 100%;
        max-width: 420px;
        margin-top: 0;
        height: auto;
    }
    .rating__row {
        margin-bottom: 10px;
    }
    .rating__bar {
        height: 4px;
    }
    .rating__summary {
        min-width: 0;
        max-width: 420px;
        width: 100%;
        height: 155px;
        border-radius: 0 40px;
        padding: 20px 40px;
        justify-content: center;
        gap: 2rem;
    }
    .rating__summary-average {
        font-size: 50px;
    }
    .rating__summary-total {
        font-size: 14px;
    }
    .rating__title {
        font-size: 1.8rem;
        font-weight: 600;
        text-align: left;
        max-width: 420px;
        margin: 0 auto;
        padding: 2rem 0 1rem 0;
    }
    .rating__subtitle {
        text-align: left;
        max-width: 420px;
        margin: 0 auto;
    }
    .rating__row-top {
        font-size: 13px;
        gap: 6px;
    }
}

@media (max-width: 360px) {
    html {
        font-size: 50%;
    }
    .rating__summary {
        min-width: none;
        height: 155px;
        border-radius: 0 40px;
        gap: 4rem;
        padding: 10px 20px;
    }
    .points-section {
        padding: 3rem 0 2rem 3rem;
        height: 450px;
        width: 100%;
    }

    .rating__bars {
        width: 100%;
    }
    .rating__summary-average {
        font-size: 40px;
        font-style: italic;
    }
    .review-card__stars svg {
        width: 12px !important;
        height: 12px !important;
    }
    .rating__row-top {
        gap: 4px;
    }
}

@media (max-width: 480px) {
    .review-card {
        padding: 12px;
    }
    .review-card__header {
        grid-template-columns: 56px 1fr auto;
        gap: 10px;
        align-items: flex-start;
    }
    .point-item {
        margin-bottom: 1rem;
    }
    .review-card__profile-img {
        width: 56px;
        height: 56px;
        border-radius: 6px;
    }
    .review-card__stars svg {
        width: 16px;
        height: 16px;
    }
    .review-card__star {
        width: 16px;
        height: 16px;
    }
    .review-card__date::after {
        display: none;
    }
}

@media (max-width: 380px) {
    .review-card {
        padding: 10px;
    }
    .review-card__header {
        grid-template-columns: 48px 1fr 32px;
        gap: 8px;
    }
    .point-item {
        margin-bottom: 1rem;
    }
    .review-card__profile-img {
        width: 48px;
        height: 48px;
    }
    .review-card__rating {
        font-size: 13px;
    }
    .review-card__stars svg {
        width: 14px;
        height: 14px;
    }
    .review-card__star {
        width: 14px;
        height: 14px;
    }
    .review-card__name {
        font-size: 12px;
    }
    .review-card__status {
        font-size: 12px;
    }
    .review-card__body {
        font-size: 14px;
    }
    .review-card__icon-btn {
        width: 28px;
        height: 28px;
    }
    .review-card__icon-btn svg {
        width: 16px;
        height: 16px;
    }
    .review-card__actions {
        gap: 6px;
    }
}

@media (max-width: 320px) {
    .review-card {
        padding: 8px;
    }
    .review-card__header {
        grid-template-columns: 40px 1fr 28px;
        gap: 6px;
    }
    .point-item {
        margin-bottom: 1rem;
    }

    .review-card__profile-img {
        width: 40px;
        height: 40px;
    }
    .review-card__rating {
        font-size: 12px;
        gap: 4px;
    }
    .review-card__stars {
        gap: 2px;
    }
    .review-card__stars svg {
        width: 12px;
        height: 12px;
    }
    .review-card__star {
        width: 12px;
        height: 12px;
    }
    .review-card__name {
        font-size: 11px;
    }
    .review-card__status {
        font-size: 11px;
    }
    .review-card__body {
        font-size: 13px;
    }
    .review-card__icon-btn {
        width: 24px;
        height: 24px;
    }
    .review-card__icon-btn svg {
        width: 14px;
        height: 14px;
    }
    .review-card__actions {
        gap: 4px;
    }
}

/* ── Write a Review ── */
.write-review-section {
    max-width: 800px;
    margin: 0 auto 32px auto;
    padding: 0 10px;
}

.write-review__title {
    font-size: 20px;
    font-weight: 500;
    color: #6c006c;
    margin: 20px 0;
}

.write-review__auth-notice {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(226, 0, 226, 0.06);
    border: none;
    padding: 16px 20px;
    margin-bottom: 20px;
    font-size: 16px;
    color: #333;
    border-radius: 0 10px 0 10px;
}

.write-review__auth-notice p {
    margin: 0;
}

.write-review__auth-notice svg {
    flex-shrink: 0;
}

.write-review__signin-link {
    color: #333;
    font-weight: 600;
    text-decoration: underline;
}

.write-review__signin-link:hover {
    color: #6c006c;
}

.write-review__card {
    background: #fff;
    border: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.write-review__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

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

.write-review__label {
    font-size: 16px;
    font-weight: 500;
    color: #111;
}

.write-review__required {
    color: #e00;
    margin-left: 2px;
}

.write-review__hint {
    font-size: 14px;
    color: #696969;
}

/* Stars */
.write-review__stars {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

.write-review__star {
    cursor: pointer;
    display: inline-flex;
    transition: transform 0.1s;
}

.write-review__star svg path {
    fill: none;
    stroke: #000;
    transition:
        fill 0.15s,
        stroke 0.15s;
}

.write-review__star.active svg path {
    fill: #e200e2;
    stroke: #e200e2;
}

.write-review__star:hover svg path {
    fill: #e200e2;
    stroke: #e200e2;
}

/* Textarea */
.write-review__textarea {
    font-size: 14px;
    color: #222;
    background: #fafafa;
    border: 1.5px solid #6c006c;
    padding: 12px 14px;
    resize: vertical;
    outline: none;
    width: 100%;
    line-height: 1.6;
    transition: border-color 0.2s;
    min-height: 120px;
}

.write-review__textarea:focus {
    border-color: #1e90ff; /* blue border on focus, as in image */
    background: #f7f7f7;
}

/* Char row */
.write-review__char-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #888;
    margin-top: 2px;
}

.write-review__char-count {
    color: #888;
}

.write-review__disclaimer {
    color: #888;
}

.write-review__guideline-link {
    color: #6c006c;
    font-weight: 600;
    text-decoration: underline;
}

/* Submit */
.write-review__footer {
    display: flex;
    justify-content: flex-end;
}

.write-review__submit {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 500;
    background: #6c006c;
    color: #fff;
    border: none;
    cursor: pointer;
    width: 180px;
    height: 46px;
    transition: background 0.2s;
    letter-spacing: 0.3px;
}

.write-review__submit:hover {
    background: #000;
}

.write-review__submit:disabled {
    background: #aaa;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 600px) {
    .write-review__label-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }
    .write-review__char-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}

@media (max-width: 480px) {
    .write-review__footer {
        justify-content: center;
    }
}
.no-reviews {
    text-align: center;
    padding: 4rem 0;
    color: #666;
    font-size: 16px;
}

/* Booking alert */
.booking-alert {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: hsla(300, 100%, 44%, 0.08);
    border-left: 4px solid var(--color-prime);
    color: var(--color-prime);
    font-family: "Poppins", sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    padding: 1.4rem 2rem;
    width: 100%;
}

.booking-alert__icon {
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
}

.booking-alert__message {
    flex: 1;
}

.booking-alert__close {
    background: none;
    border: none;
    color: var(--color-prime);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    padding: 0 0.4rem;
    opacity: 0.7;
}

.booking-alert__close:hover {
    opacity: 1;
}
