﻿/*old css of the template*/
body {
    color: #000000 !important;
}

.page-banner {
    background-image: url('@Model.AttractionViewModel.ProductLogo');
    background-repeat: repeat;
    height: 189px;
    background-position: center;
}

.ticket-border {
    border: 2px solid black;
    transition: 0.5s ease;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

    .ticket-border:hover {
        /* transform: translateY(-5px); */
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    }

        .ticket-border:hover .title {
            text-decoration: underline;
        }

.mandatory-info p:last-child {
    margin-bottom: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    grid-template-rows: repeat(2, 170px);
    gap: 8px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.2s;
        cursor: pointer;
    }

        .gallery-item img:hover {
            transform: scale(1.05);
        }

    .gallery-item.large {
        grid-row: span 2;
    }

    .gallery-item.large {
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
    }

.br-top-right {
    border-top-right-radius: 10px;
}

.br-bottom-right {
    border-bottom-right-radius: 10px;
}

.viator-images .slick-slide > div > div {
    width: 100%; /* Adjust width as needed */
    aspect-ratio: 1 / 1; /* Ensures a square aspect ratio */
    overflow: hidden; /* Hide any overflowing image content */
}

    .viator-images .slick-slide > div > div img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Fill the container while maintaining aspect ratio and cropping if necessary */
    }

.btn-buy-now {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    font-size: 14px;
    height: 30px;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    overflow: hidden;
    transition: background-color 0.3s ease;
    background: #30356c;
}

    .btn-buy-now .btn-text,
    .btn-buy-now .cart-icon {
        position: absolute;
        transition: all 0.4s ease;
    }

    .btn-buy-now .cart-icon {
        width: 15px;
        height: 15px;
        opacity: 0;
        transform: translateX(100%); /* start off-screen (right) */
    }

    .btn-buy-now:hover .btn-text {
        opacity: 0;
        transform: translateX(-100%); /* move left out of view */
    }

    .btn-buy-now:hover .cart-icon {
        opacity: 1;
        transform: translateX(0); /* slide in from right */
    }

@media (max-width: 768px) {
    .gallery-grid {
        display: none;
    }

    .viator-page .border-start,
    .viator-page .border-end {
        border: 0 !important;
    }

    /* Viator-style image slider with floating gallery button */
    .viator-images {
        position: relative;
    }

    .viator-images .slick-slide > div > div {
        position: relative;
    }

    .mobile-gallery-btn {
        position: absolute;
        bottom: 15px;
        right: -10px;
        z-index: 3;
        cursor: pointer;
        max-width: 100px;
    }

    .mobile-gallery-btn img {
        width: 100%;
        height: auto;
        display: block;
    }

    .mobile-gallery-img {
        cursor: pointer;
    }

    .viator-images .slick-dots {
        position: absolute;
        bottom: 10px;
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .viator-images .slick-dots li {
        padding: 0 4px;
        width: auto;
        height: auto;
        margin: 0;
    }

    .viator-images .slick-dots li button {
        background-color: rgba(255, 255, 255, 0.5) !important;
        width: 8px !important;
        height: 8px !important;
        border-radius: 50% !important;
        border: 0 !important;
        padding: 0 !important;
        text-indent: -9999px;
        overflow: hidden;
        transition: background-color .15s ease-in-out;
    }

    .viator-images .slick-dots li button:before {
        display: none !important;
    }

    .viator-images .slick-dots li.slick-active button {
        background-color: rgba(255, 255, 255, 0.95) !important;
    }

    /* Popup mobile overrides */
    .popup-content {
        width: 95% !important;
    }

    .popup-content > img {
        height: 55vh !important;
    }

    .nav-btn.prev {
        left: 5px !important;
    }

    .nav-btn.next {
        right: 5px !important;
    }

    .close-btn {
        top: 15px !important;
        right: 15px !important;
    }

    .thumbnail-container img {
        width: 50px !important;
    }
}

@media (max-width: 580px) {
    .page-banner {
        background-image: url('@(string.IsNullOrEmpty(Model.AttractionViewModel.ProductLogoMobile) ? Model.AttractionViewModel.ProductLogo : Model.AttractionViewModel.ProductLogoMobile)');
        background-repeat: no-repeat;
        height: 189px;
        background-position: center;
    }
}

/* Popup Styles */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    flex-direction: column;
}

    .popup.active {
        display: flex;
    }

.popup-content {
    position: relative;
    width: 80%;
    max-width: 900px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .popup-content > img {
        width: 100%;
        height: 65vh;
        object-fit: contain;
        border-radius: 5px;
    }

.close-btn {
    position: fixed;
    top: 30px;
    right: 30px;
    background: white;
    border-radius: 50%;
    border: none;
    font-size: 30px;
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    background: rgba(255, 255, 255, 0.7);
    border: none;
    cursor: pointer;
    border-radius: 50%;
    min-width: 35px;
    min-height: 35px;
}

.prev {
    left: -50px;
}

.next {
    right: -50px;
}

.thumbnail-container {
    margin-top: 15px;
    display: flex;
    overflow-x: auto;
    gap: 10px;
    justify-content: center;
}

    .thumbnail-container img {
        width: 70px;
        cursor: pointer;
        border-radius: 3px;
        opacity: 0.6;
        transition: opacity 0.2s;
    }

        .thumbnail-container img.active {
            opacity: 1;
            border: 2px solid white;
        }

.text-primary-lightest {
    color: #0057c9 !important;
}

.viator-images .slick-dots {
    margin-top: 20px;
}

.rated-stars {
    top: 0;
    left: 0;
    white-space: nowrap;
    color: #15803D;
}

.ribbon-img {
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    height: 30px;
    z-index: 10;
    max-width: 230px;
}

    .ribbon-img img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: contain;
    }

.review-link-btn:hover {
    text-decoration: underline !important;
}

.attraction-title {
    font-size: 22px;
    font-weight: 400;
    color: #111827;
}

/*New css for attraction template*/
.favorite-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 0;
    background-image: url('//media.emailer-images.com/image/upload/v1744047802/GWP_-_FAVORITE_ICON_UNSELECTED_vwtdks.svg');
}

    .favorite-icon:hover {
        background-image: url('//media.emailer-images.com/image/upload/v1744047802/GWP_-_FAVORITE_ICON_UNSELECTED_vwtdks.svg');
    }

    .favorite-icon.selected {
        background-image: url('//res.cloudinary.com/greatworkperks/image/upload/greatwork-perks/favorite-filled-icon_fn5tfb.png');
    }

.fav-text {
    font-weight: 600;
    font-size: 12px;
    margin-left: 5px;
    color: #374151;
    display: flex;
    align-items: center;
}

.review-link-btn {
    color: #6B7280 !important;
    font-size: 12px !important;
}

.attraction-location {
    color: #4B5563;
    font-size: 12px;
    font-weight: 500;
    margin-left: 0px;
    display: flex;
    gap: 5px;
    align-items: center;
}

    .attraction-location a {
        color: #4B5563;
        display: flex;
        align-items: center;
        gap: 5px;
    }

.attraction-desc {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    margin: 20px 0px;
}

.features-group {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
    display: none;
}

.price-feat, .authorized-feat, .refund-feat {
    width: auto;
    padding: 0px 10px 0px 0px;
    border: solid 2px #f97316;
    border-radius: 8px;
    color: #C2410C;
    font-size: 12px;
    font-weight: 600;
    width: fit-content;
}

.authorized-feat {
    border-color: #2b2f63;
    color: #2b2f63;
}

.refund-feat {
    border-color: #15803D;
    color: #15803D;
}

    .price-feat span:nth-child(1), .authorized-feat span:nth-child(1), .refund-feat span:nth-child(1) {
        background: #f97316;
        padding: 5px 8px;
        border-radius: 5px 0 0 5px;
        color: #fff;
        position: relative;
        margin-right: 5px;
        display: inline-block;
        width: 33px;
    }

.authorized-feat span:nth-child(1) {
    background: #2b2f63;
}

.refund-feat span:nth-child(1) {
    background: #15803D;
}

.mandatory-info {
    font-size: 14px;
    font-weight: 400;
}

.section-desc {
    margin-top: 20px;
    border-top: solid 1px #ccc;
}

.mandatory-info p {
    line-height: 22px;
}

.attraction-subtitles {
    font-size: 16px !important;
    font-weight: 600;
}

.ticket-cardbox {
    border: 1px solid #4a5565;
    border-radius: 12px;
    padding: 18px;
    position: relative;
    background: #fff;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .ticket-cardbox:hover .offer-title {
        text-decoration: underline;
    }

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

.ticket-boxcard {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin: 15px 0;
}



/* Discount Badge */
.badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #db402c;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 6px 14px;
    border-radius: 10px;
}

/* Title */
.offer-title {
    font-size: 15px;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #111;
}

/* Price Section */
.price-label {
    font-size: 11px;
    text-transform: uppercase;
    color: #111827;
    margin-bottom: 2px;
    font-weight: 600;
}

.price {
    font-size: 22px;
    font-weight: bold;
    color: #db402c;
    margin: 0;
}

.reg-price {
    font-size: 13px;
    color: #6B7280;
    margin-top: 2px;
    font-weight:400;
}

/* Button */
.select-btn {
    background: #0057c9;
    color: white;
    border: none;
    padding: 10px 55px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.25);
    transition: 0.2s;
}

    .select-btn:hover {
        background: #044293;
    }

.product-details p, .product-details ul li {
    font-size: 14px;
    margin-bottom: 15px;
}

.product-details ul li {
    margin-bottom: 5px;
}

.product-details .refund-feat {
    margin: 15px 0;
}

.text-slash {
    text-decoration: line-through;
}

.attraction-location img {
    height: 14px;
}

.slash-line {
    margin: 0 10px;
    color: #6B7280;
}

.rating-text {
    font-size: 16px;
}

.mobile-none {
    display: flex !important;
}

.desktop-none {
    display: none !important;
}

.review-graphview {
    color: #4b5563;
}

.universalhorror-page-details {
    padding: 30px 20px;
    border: 1px solid #e5e7eb;
    margin-bottom: 50px;
    border-radius: 5px;
    font-weight:400;
}
.divider-line {
    height: 1px;
    width: 100%;
    background: #e5e7eb;
    margin: 15px 0px;
}
.gallery-item {
    position: relative;
}

.gallery-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    left: inherit;
    width: 110px;
    height: 40px;
}

.gallery-btn {
    pointer-events: auto;
}

.gallery-item img {
    pointer-events: auto;
}
/*.gallery-item.large:before {
    content: '';
    position: absolute;
    background: url(//res.cloudinary.com/funex/image/upload/v1770617998/gallery-buttonimg_xzfql2.png);
    width: 100%;
    height: 40px;
    background-repeat: no-repeat;
    z-index: 99999999;
    background-size: contain;
}*/
.explore-section {
    padding: 0px;
    background: #fff;
    margin: 30px 0;
}

/* Title */
.explore-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
}

    .explore-title span {
        color: #e1251b;
    }

/* Grid Layout */
.explore-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 cards per row */
    gap: 20px;
    margin: 30px 0;
}

/* Card */
.explore-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none;
    color: #222;
    transition: all 0.25s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

    /* Hover Effect */
    .explore-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    }

        .explore-card:hover .card-body h4 {
            text-decoration: underline;
            text-underline-offset: 2px;
        }
/* Image */
.explore-section .card-image {
    width: 100%;
    height: 140px;
    overflow: hidden;
}

    .explore-section .card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Body */
.explore-section .card-body {
    padding: 12px 14px 14px;
}

    .explore-section .card-body h4 {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 6px;
    }

    .explore-section .card-body p {
        font-size: 14px;
        color: #6a7282;
        margin-bottom: 0;
        font-weight: 500;
    }

.explore-section .suplier-text {
    color: #b91c1c;
}

/*css for horrorlisting template*/
.attractiontemp-logo {
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d1d5db;
    background: #ffffff;
    padding: 3px;
}
.uni-attr-title {
    line-height: 18px;
}
    .uni-attr-title p {
        font-size: 15px;
        margin-bottom:0;
    }
.inst-box {
    background: #fdf2f8;
    border-left: 4px solid #f472b6;
    padding: 16px;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    font-size: 14px;
    color: #9d174d;
    margin: 30px 0;
}
.inst-box p{
    margin-bottom:5px;
}
.inst-box p strong{
    font-weight:700;
}
.attraction-temp-headgroup {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.warning-text{
    font-size:16px;
}
.overview-section small {
    color: #6b7280;
    margin:10px 0;
}

.attractiontemp-logo img {
    max-height: 50px;
}
.overview-section {
    margin: 20px 0;
}
.section-page-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}
.overview-section .section-page-title{
    margin-bottom:10px;
}
.overview-section p {
    font-size: 15px;
    line-height: 20px;
    margin: 15px 0;
}
.warning-txt {
    font-weight: 600;
    color: #9d174d;
}
.special-cardhead {
    color: #fff;
    background-color: #0057c9;
    border-radius: 7px 7px 0 0;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 10px 12px;
    font-size: 22px;
    font-weight: 600;
    display: flex;
    position:relative;
}
.special-offer-body {
    padding: 15px;
}
.red-inst-text {
    color: #b91c1c;
    font-size: 14px;
}
.ticket-card {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 22px;
    background: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    margin: 20px 0;
}

/* LEFT SIDE */

.card-left {
    flex: 1;
}

.discount-badge {
    background: #b91c1c;
    color: #fff;
    text-transform: uppercase;
    z-index: 10;
    white-space: nowrap;
    border-radius: 12px;
    padding: 6px 16px;
    font-size: 14px;
    font-weight: 700;
}

.ticket-title {
    font-size: 20px;
    margin: 15px 0 5px;
    font-weight: 600;
}

.ticket-offer {
    font-size: 14px;
    line-height: 1.4;
    color: #595959;
    margin: 0px 0 15px 0;
    font-weight: 400;
}

.ticket-desc {
    color: #364153;
    line-height: 1.5;
    max-width: 97%;
    font-size: 14px;
    margin-bottom: 2px;
}
.first-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.more-text {
    display: none;
}
.ticket-desc.active .first-text {
    display: block;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
    overflow: visible;
}
.ticket-desc.active .more-text {
    display: inline;
}
.read-more {
    color: #1d4ed8;
    text-decoration: none;
    font-weight: 600;
}
    /* RIGHT SIDE */

.card-right {
    text-align: right;
    min-width: 160px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0px;
    justify-content: end;
}

    .from {
        font-size: 12px;
        color: #595959;
    }

.reg-price {
    text-decoration: line-through;
    color: #6B7280;
    font-size: 14px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #db402c;
}

.save {
    color: #1a7f37;
    font-size: 14px;
    margin-bottom: 12px;
}

    .select-btn {
        background: #0057c9;
        color: #fff;
        border: none;
        padding: 10px 26px;
        border-radius: 6px;
        font-weight: 600;
        cursor: pointer;
    }

        .select-btn:hover {
            background: #044293;
        }

.special-offers-section {
    background: #fff;
    border: 1px solid #0057c9;
    border-radius: 8px;
    margin: 25px 0;
}


.expect-section {
    margin: 25px 0;
}

.expect-title {
    font-size: 28px;
    margin-bottom: 30px;
    color: #333;
}

/* GRID */

.expect-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

/* CARD */

.expect-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* IMAGE */

.expect-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

/* CONTENT */

.expect-content {
    background: #0057c9;
    padding: 22px;
    color: #ffffff;
    height: 100%;
}

.expect-content h3 {
    font-size: 16px;
    letter-spacing: .5px;
    margin-bottom: 12px;
}

.expect-content p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.highlight {
    color: #92400E;
    font-weight: 600;
}
.txtblue {
    color: #2563eb;
}
.tips-section {
    max-width: 100%;
    margin: 20px 0;
}

.tips-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1f2937;
}

.tips-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    margin-top: 40px;
}

.tip-item {
    margin-bottom: 18px;
}

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

.tip-heading {
    font-weight: 600;
    font-size: 15px;
    color: #111827;
    margin-bottom: 4px;
}

.tip-text {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}
.faq-section {
    max-width: 800px;
    margin: 20px 0;
}

.faq-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1f2937;
}

.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    background: #fff;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 16px 18px;
    font-size: 15px;
    font-weight: 400;
    background: #ffffff;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color:#000000 !important;
}

.faq-icon {
    width: 10px;
    height: 10px;
    border-right: 2px solid #374151;
    border-bottom: 2px solid #374151;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(-135deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fff;
}

.faq-answer p {
    padding: 0 18px 14px 18px;
    margin: 0;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

.info-card {
    max-width: 100%;
    margin: 20px 0;
    padding: 20px 24px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    color: #374151;
}

.info-text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.contact-info p {
    margin: 6px 0;
    font-size: 14px;
}
.contact-info p strong{
    font-weight:500;
}
.contact-info a {
    color: #2563eb;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

hr {
    border: none;
    border-top: 1px solid #a4a5a9;
    margin: 16px 0;
}

.footer-links {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-links a {
    color: #4b5563;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.copyright {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 10px;
}

.legal-text {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 2px;
}

.fxsr-card {
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
}

/* Header */
.fxsr-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 2px;
}

.fxsr-title h3,
.fxsr-title .fxsr-title-name {
    font-size: 14px;
    margin: 0;
    color: #333;
    font-weight: 600;
}

.fxsr-title span {
    font-size: 12px;
    color: #595959;
}

/* Button */
.fxsr-important-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #fdf2f8 !important;
    border: 1px solid #f472b6 !important;
    color: #991b1b;
    padding: 6px 10px;
    border-radius: 12px;
    font-size: 12px;
    cursor: pointer;
    font-weight: 700;
}

    /* Info icon */
    .fxsr-important-btn .icon {
        width: 16px;
        height: 16px;
        border-radius: 50%;
        border: 1px solid #991b1b;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 9px;
        font-weight: 700;
    }

    /* Arrow */
    .fxsr-important-btn .arrow {
        border: solid #991b1b;
        border-width: 0 2px 2px 0;
        display: inline-block;
        padding: 3px;
        transform: rotate(45deg);
        transition: 0.2s ease;
        position: relative;
        top: -2px;
    }

    /* Active state arrow (UP) */
    .fxsr-important-btn.active .arrow {
        transform: rotate(-135deg);
        top:3px;
    }

/* Important Note */
.fxsr-important-note {
    display: none;
    background: #fdf2f8;
    border-left: 4px solid #f472b6;
    color: #991b1b;
    padding: 14px;
    font-size: 13px;
    line-height: 1.5;
    scroll-margin-top: 130px; /* adjust based on your header height */
    margin-bottom: 15px;
}

    .fxsr-important-note p {
        margin: 0 0 10px;
    }

    .fxsr-important-note .warning {
        font-weight: 500;
        text-transform: uppercase;
    }

@media (min-width: 768px) {
    .fxsr-important-note {
        display: block;
    }
}
/* Info Button (top right) */
.fxsr-info-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: #0057c9;
    font-size: 14px;
    cursor: pointer;
    display: none;
    background: #1a1d4514
}
/* Modal backdrop */
.fxsr-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6); /* BLACK BACKDROP */
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

    /* Show modal */
    .fxsr-modal.active {
        display: flex;
    }

/* Modal box */
.fxsr-modal-content {
    width: 90%;
    max-width: 320px;
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    animation: fadeIn 0.25s ease;
}

/* Header */
.fxsr-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .fxsr-modal-header h3 {
        margin: 0;
        font-size: 16px;
    }

/* Close button */
.fxsr-close {
    border: none;
    background: none;
    font-size: 30px;
    cursor: pointer;
    line-height: 24px;
}

/* Body */
.fxsr-modal-body {
    margin-top: 10px;
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}

/* Animation */
@keyframes fadeIn {
    from {
        transform: translateY(10px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.have-text {
    font-size: 16px;
    font-weight: 400;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
}
    .have-text a:focus, .have-text a:hover, .have-text a:active {
        color: #0066c0;
    }
.card-pricing-group {
    margin-bottom: 15px;
}
/* RESPONSIVE */
@media (max-width:1024px) {

    .expect-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .fxsr-info-btn {
        display: block;
    }

    .ticket-card {
        position: relative;
        gap: 0;
    }

    .ticket-title {
        font-size: 16px;
    }

    .ticket-offer, .ticket-desc, .read-more, .red-inst-text {
        display: none;
    }
}

@media (max-width:640px) {

    .expect-section {
        padding: 0px;
    }

    .expect-grid {
        grid-template-columns: 1fr;
    }

    .expect-image img {
        height: 200px;
    }
}
    /* RESPONSIVE */
    @media (max-width:768px) {
        .fxsr-card {
            background: transparent;
        }
        .universalhorror-page-details {
            background: #f8f9fa;
            padding: 20px 10px;
        }
        #faq-section {
            scroll-margin-top: 150px;
        }
        .ticket-card {
            flex-direction: column;
            padding: 15px;
            margin: 15px 0 15px 0;
        }

        .card-right {
            align-items: end;
            text-align: left;
            margin-top: 0px;
            flex-direction: row;
            justify-content: space-between;
            gap: 10px;
        }

        .price {
            font-size: 22px;
        }

        .select-btn {
            width: 100%;
            margin-top: 10px;
        }
        .ticket-desc{
            display:none;
        }
    }

    @media (max-width: 1200px) {
        .explore-grid {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    @media screen and (max-width:1024px) {
        .select-btn {
            padding: 10px 20px;
            width:30%;
        }

        .explore-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media screen and (max-width:767px) {
        .mobile-none {
            display: none !important;
        }

        .desktop-none {
            display: flex !important;
        }

        .features-group {
            gap: 8px;
            margin: 15px 0;
            justify-content: center;
        }

        .price-feat, .authorized-feat, .refund-feat {
            border-radius: 5px;
            font-size: 7px;
            padding: 0px 4px 0px 0px;
        }

            .price-feat span:nth-child(1), .authorized-feat span:nth-child(1), .refund-feat span:nth-child(1) {
                padding: 3px 3px;
                border-radius: 3px 0 0 3px;
                margin-right: 0px;
                width: 17px;
            }

        .attraction-title {
            color: #111827;
            padding: 0 0 0 0px;
            display: inline !important;
            font-size: 16px;
            font-weight: 400;
        }

        .mobile-padding {
            padding: 0 15px;
        }

        .mobile-bg-patch {
            background: #feefed;
            padding: 7px 15px;
            justify-content: center;
        }

        .rating-text {
            font-size: 12px;
            background: #c5f7d6;
            margin: 0 10px;
            padding: 3px 5px;
            margin-right: 10px !important;
            color: #28823d;
            font-weight: 700 !important;
        }

        .viator-images .slick-slide > div > div img {
            border-radius: 0 !important;
        }

        .viator-images .slick-slide > div > div {
            max-height: 230px;
        }

        .viator-images .slick-dots {
            position: absolute;
            bottom: 10px;
            width: 100%;
        }

            .viator-images .slick-dots li {
                padding: 0 8px;
            }

        .booked-text {
            font-size: 12px;
            margin: 0 10px;
        }

        .attraction-desc {
            margin: 20px 0px;
            font-size: 14px;
        }

        .section-desc {
            padding: 0 15px;
        }

        .product-details {
            padding: 0px 15px !important;
        }

        .attraction-subtitles {
            font-size: 14px !important;
        }

        .product-details p, .product-details ul li {
            font-size: 12px;
        }

        .mandatory-info p {
            line-height: 18px;
        }

        .py-15 {
            padding-top: 1.0rem !important;
            padding-bottom: 1.0rem !important;
        }

        .slick-dots button {
            background-color: #e6e9e9b5;
        }

        .slick-dots li.slick-active button {
            background-color: #e6e9e9;
        }

        .fav-mobile-patch {
            position: relative;
            top: -4px;
        }

        .select-btn {
            padding: 10px 25px;
            border-radius: 6px;
            width:100%;
        }

        .mobile-alignheight {
            max-height: 50px;
        }

        .review-link-btn:hover {
            text-decoration: none !important;
        }

        .ticket-cardbox:hover .offer-title {
            text-decoration: none;
        }

        .viator-page-details {
            padding: 15px 0;
        }

        .slick-dots li button:before {
            font-size: 12px;
        }

        .slick-dots li.slick-active button {
            background-color: transparent !important;
        }

        .explore-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .explore-section .card-image {
            height: 90px;
        }

        .explore-card:hover {
            transform: none;
        }

            .explore-card:hover .card-body h4 {
                text-decoration: none;
            }

        .favorite-icon {
            width: 20px;
            height: 20px;
        }

        .explore-section .card-body h4 {
            font-size: 12px;
        }

        .explore-section .card-body p {
            font-size: 11px;
        }

        .slick-dots li button:before {
            color: #ffffff !important;
        }

        .slick-dotted.slick-slider {
            margin-bottom: 0px;
            margin: 0 -20px;
        }

        .itinerary-item h6 {
            font-size: 12px !important;
        }

        .itinerary-item {
            font-size: 12px;
        }
        .save{
            display:none;
        }
        .card-pricing-group > div {
            display: flex;
            flex-direction: column-reverse;
        }
        .special-cardhead {
            font-size: 20px;
            font-weight: 500;
        }
        .special-cardhead::before,
        .special-cardhead::after {
            content: "";
            position: absolute;
            top: 50%;
            width: 22px;
            height: 22px;
            transform: translateY(-50%);
            background-repeat: no-repeat;
            background-size: contain;
        }

        /* Left star */
        .special-cardhead::before {
            left: 10px;
            background-image: url("data:image/svg+xml,%3Csvg fill='%23FFD700' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2l2.9 6.9 7.6.6-5.7 4.9 1.7 7.6L12 18l-6.5 4 1.7-7.6L1.5 9.5l7.6-.6L12 2z'/%3E%3C/svg%3E");
        }

        /* Right star */
        .special-cardhead::after {
            right: 10px;
            background-image: url("data:image/svg+xml,%3Csvg fill='%23FFD700' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2l2.9 6.9 7.6.6-5.7 4.9 1.7 7.6L12 18l-6.5 4 1.7-7.6L1.5 9.5l7.6-.6L12 2z'/%3E%3C/svg%3E");
        }

        /* Add spacing so text doesn't overlap */
        .special-cardhead {
            padding-left: 35px;
            padding-right: 35px;
        }
        .expect-content, .tips-card {
            padding: 15px;
        }
        .tips-card {
            margin-top: 20px;
        }
        .faq-title {
            font-size: 18px;
        }
        .attraction-temp-headgroup {
            margin-bottom: 20px;
        }
        .card-pricing-group{
            margin-bottom:0;
        }
        .special-offer-body {
            padding: 10px;
        }
        .faq-question {
            padding: 13px 12px;
        }
        .info-card {
            padding: 12px 12px;
        }
    }
