.hide_me {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
}

.detail-summary {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin: 18px 0 24px;
    border: 1px solid #e7ecef;
    background: #fff;
}

.detail-summary__item {
    flex: 1 1 170px;
    padding: 14px 16px;
    border-right: 1px solid #e7ecef;
}

.detail-summary__item span {
    display: block;
    margin-bottom: 5px;
    color: #777;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.detail-summary__item strong {
    display: block;
    color: #333;
    font-size: 16px;
    line-height: 1.35;
}

.detail-summary__price strong {
    color: #00a99d;
    font-size: 22px;
}

.detail-summary__actions {
    display: flex;
    flex: 1 1 220px;
    gap: 8px;
    align-items: center;
    padding: 12px;
}

.detail-summary__button {
    display: inline-block;
    flex: 1;
    padding: 10px 12px;
    color: #fff;
    background: #00a99d;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
}

.detail-summary__button:hover,
.detail-summary__button:focus {
    color: #fff;
    background: #e94d4d;
    text-decoration: none;
}

.detail-summary__button--secondary {
    color: #00a99d;
    background: #eefafa;
}

.detail-summary__button--secondary:hover,
.detail-summary__button--secondary:focus {
    color: #fff;
    background: #00a99d;
}

.detail-inline-cta {
    display: inline-block;
    margin: 10px 0 18px;
    padding: 10px 16px;
    color: #fff;
    background: #00a99d;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
}

.detail-inline-cta:hover,
.detail-inline-cta:focus {
    color: #fff;
    background: #e94d4d;
    text-decoration: none;
}

.detail-price-table .table {
    margin-bottom: 24px;
}

.detail-price-table .table > thead > tr > th {
    color: #333;
    background: #f5fbfa;
    border-bottom: 2px solid #bde7e4;
}

.detail-price-table .table > tbody > tr > td:last-child {
    font-weight: 700;
}

.detail-copy {
    max-width: 760px;
    margin-bottom: 16px;
    color: #555;
    font-size: 15px;
    line-height: 1.8;
}

.detail-note {
    margin: 0 0 22px;
    padding: 12px 14px;
    border-left: 3px solid #00a99d;
    background: #f5fbfa;
    color: #555;
    line-height: 1.7;
}

.detail-feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.detail-feature-list li {
    position: relative;
    min-height: 44px;
    padding: 11px 12px 11px 36px;
    border: 1px solid #e7ecef;
    background: #fff;
    color: #555;
    line-height: 1.45;
}

.detail-feature-list li::before {
    content: "\2713";
    position: absolute;
    top: 11px;
    left: 12px;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: #00a99d;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 17px;
    text-align: center;
}

.detail-faq {
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
    border-top: 1px solid #e7ecef;
}

.detail-faq__item {
    padding: 14px 0;
    border-bottom: 1px solid #e7ecef;
}

.detail-faq__question {
    margin-bottom: 6px;
    color: #333;
    font-weight: 700;
    line-height: 1.45;
}

.detail-faq__answer {
    color: #666;
    line-height: 1.7;
}

.detail-faq__answer span {
    color: #00a99d;
    font-weight: 700;
}

.detail-reviews {
    margin-bottom: 24px;
}

.detail-review {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 14px;
    padding: 15px 16px;
    border: 1px solid #e7ecef;
    background: #fff;
}

.detail-review__flag {
    flex: 0 0 auto;
}

.detail-review__flag-inner {
    width: 44px;
    height: 44px;
    overflow: hidden;
    border: 1px solid #e7ecef;
    border-radius: 50%;
    background: #fafafa;
}

.detail-review__flag-inner img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-review__content {
    min-width: 0;
    flex: 1 1 auto;
}

.detail-review__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    margin-bottom: 6px;
}

.detail-review__name {
    color: #333;
    font-size: 14px;
    font-weight: 700;
}

.detail-review__dot {
    color: #c8c8c8;
}

.detail-review__date,
.detail-review__score {
    color: #888;
    font-size: 12px;
}

.detail-review__rating {
    margin-bottom: 9px;
    line-height: 1;
}

.detail-review__stars {
    color: #f5a623;
    font-size: 15px;
    letter-spacing: 1px;
}

.detail-review__score {
    margin-left: 4px;
}

.detail-review__text {
    color: #555;
    font-size: 14px;
    line-height: 1.75;
    word-break: break-word;
}

.detail-booking-sidebar {
    overflow: hidden;
}

.detail-recaptcha {
    min-height: 64px;
    overflow: visible;
}

.detail-recaptcha > div {
    transform: scale(0.76);
    transform-origin: 0 0;
}

.shopping-category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 26px;
}

.shopping-category-card {
    display: block;
    height: 100%;
    border: 1px solid #e7ecef;
    background: #fff;
    color: inherit;
    text-decoration: none;
}

.shopping-category-card:hover,
.shopping-category-card:focus {
    border-color: #bde7e4;
    color: inherit;
    text-decoration: none;
}

.shopping-category-card figure {
    position: relative;
    margin: 0;
    overflow: hidden;
    aspect-ratio: 7 / 4.6;
    background: #f5fbfa;
}

.shopping-category-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.18s ease;
}

.shopping-category-card:hover img,
.shopping-category-card:focus img {
    transform: scale(1.03);
}

.shopping-category-card__body {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    min-height: 68px;
    padding: 14px;
}

.shopping-category-card__title {
    color: #333;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
}

.shopping-category-card__action {
    flex: 0 0 auto;
    color: #00a99d;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.shopping-product-card__price {
    margin-top: 7px;
    color: #e94d4d;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
}

.shopping-sidebar-list li a {
    line-height: 1.45;
}

.travel-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 26px;
}

.travel-info-card {
    display: block;
    height: 100%;
    border: 1px solid #e7ecef;
    background: #fff;
    color: inherit;
    text-decoration: none;
}

.travel-info-card:hover,
.travel-info-card:focus {
    border-color: #bde7e4;
    color: inherit;
    text-decoration: none;
}

.travel-info-card figure {
    margin: 0;
    overflow: hidden;
    aspect-ratio: 5 / 3;
    background: #f5fbfa;
}

.travel-info-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.18s ease;
}

.travel-info-card:hover img,
.travel-info-card:focus img {
    transform: scale(1.03);
}

.travel-info-card__body {
    padding: 14px;
}

.travel-info-card__title {
    margin-bottom: 7px;
    color: #333;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
}

.travel-info-card__text {
    color: #666;
    font-size: 13px;
    line-height: 1.6;
}

.travel-info-card__action {
    margin-top: 10px;
    color: #00a99d;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.hotel-page-intro {
    max-width: 860px;
    margin-right: auto;
    margin-left: auto;
    color: #555;
    line-height: 1.65;
}

.hotel-listing-section {
    margin-bottom: 34px;
}

.hotel-section-heading {
    margin-bottom: 18px;
    padding: 16px;
    border: 1px solid #e7ecef;
    border-left: 4px solid #00a99d;
    background: #fff;
}

.hotel-section-heading h3 {
    margin: 0 0 8px;
    padding: 0;
    color: #333;
    font-size: 24px;
    line-height: 1.3;
    text-align: left;
    text-transform: none;
}

.hotel-section-note {
    color: #555;
    line-height: 1.7;
}

.hotel-listing-section .thumb5 {
    margin-bottom: 24px;
}

.hotel-listing-section .thumb5 .thumbnail {
    height: 100%;
}

.hotel-listing-section .thumb5 .thumbnail figure {
    overflow: hidden;
    aspect-ratio: 5 / 3;
    background: #f5fbfa;
}

.hotel-listing-section .thumb5 .thumbnail figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-listing-section .thumb5 .thumbnail .caption .txt2 {
    min-height: 84px;
}

.hotel-video {
    margin-top: 8px;
    margin-bottom: 28px;
}

.contact-lead {
    margin-bottom: 18px;
}

.contact-info-list {
    margin-bottom: 22px;
    border-top: 1px solid #e7ecef;
}

.contact-info-item {
    padding: 13px 0;
    border-bottom: 1px solid #e7ecef;
}

.contact-info-item span {
    display: block;
    margin-bottom: 5px;
    color: #777;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.contact-info-item strong {
    display: block;
    color: #333;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.55;
}

.contact-info-item a {
    color: #00a99d;
}

.contact-map {
    overflow: hidden;
    margin-bottom: 22px;
    border: 1px solid #e7ecef;
}

.contact-form-panel {
    padding: 18px;
    border: 1px solid #e7ecef;
    border-top: 3px solid #00a99d;
    background: #fff;
}

.contact-form-panel .form-control {
    border-color: #dde6e8;
}

.contact-form-panel .form-control:focus {
    border-color: #00a99d;
    box-shadow: 0 0 0 2px rgba(0, 169, 157, 0.12);
}

.contact-recaptcha {
    min-height: 78px;
    overflow: visible;
}

.contact-recaptcha > div {
    transform-origin: 0 0;
}

.about-intro {
    max-width: 820px;
    margin-right: auto;
    margin-left: auto;
    color: #555;
    line-height: 1.75;
}

.about-service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.about-service-grid li a {
    display: block;
    min-height: 62px;
    padding: 14px;
    border: 1px solid #e7ecef;
    background: #fff;
    color: #333;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
}

.about-service-grid li a:hover,
.about-service-grid li a:focus {
    border-color: #bde7e4;
    color: #00a99d;
    text-decoration: none;
}

.about-reason-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.about-reason-grid li {
    padding: 16px;
    border: 1px solid #e7ecef;
    background: #fff;
}

.about-reason-grid b {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-size: 16px;
    line-height: 1.35;
}

.about-reason-grid span {
    display: block;
    color: #555;
    line-height: 1.7;
}

.tour-guide-page {
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
}

.tour-guide-hero {
    position: static;
    text-align: center;
}

.tour-guide-copy {
    max-width: 820px;
    margin-right: auto;
    margin-left: auto;
    color: #555;
    font-size: 15px;
    line-height: 1.75;
    text-align: left;
}

.tour-guide-price {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
    margin: 22px 0 26px;
    padding: 16px;
    border: 1px solid #e7ecef;
    border-left: 4px solid #00a99d;
    background: #fff;
}

.tour-guide-price strong {
    display: block;
    color: #333;
    font-size: 18px;
    line-height: 1.45;
}

.tour-guide-reasons h2 {
    margin-bottom: 16px;
    font-size: 28px;
    line-height: 1.25;
}

.tour-guide-video {
    margin-top: 24px;
}

.faq-intro {
    max-width: 820px;
    margin-right: auto;
    margin-left: auto;
    color: #555;
    line-height: 1.7;
}

.faq-section {
    margin-bottom: 28px;
}

.faq-section h3 {
    padding-bottom: 12px;
    font-size: 26px;
    line-height: 1.25;
}

@media (max-width: 767px) {
    .detail-summary {
        display: block;
    }

    .detail-summary__item {
        border-right: 0;
        border-bottom: 1px solid #e7ecef;
    }

    .detail-summary__actions {
        display: block;
    }

    .detail-summary__button {
        display: block;
        margin-bottom: 8px;
        width: 100%;
    }

    .detail-review {
        padding: 13px;
    }

    .detail-feature-list {
        grid-template-columns: 1fr;
    }

    .detail-recaptcha > div {
        transform: scale(1);
    }

    .shopping-category-grid {
        grid-template-columns: 1fr;
    }

    .travel-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-panel {
        padding: 15px;
    }

    .about-service-grid,
    .about-reason-grid {
        grid-template-columns: 1fr;
    }

    .tour-guide-price {
        display: block;
    }

    .tour-guide-price .detail-inline-cta {
        display: block;
        margin-top: 12px;
        text-align: center;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .detail-booking-sidebar {
        padding-right: 10px;
        padding-left: 10px;
    }

    .detail-recaptcha {
        min-height: 40px;
    }

    .detail-recaptcha > div {
        transform: scale(0.45);
    }

    .shopping-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .travel-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .detail-booking-sidebar {
        padding-right: 12px;
        padding-left: 12px;
    }

    .detail-recaptcha {
        min-height: 52px;
    }

    .detail-recaptcha > div {
        transform: scale(0.61);
    }
}

@media (min-width: 1200px) {
    .detail-booking-sidebar {
        padding-right: 14px;
        padding-left: 14px;
    }

    .detail-recaptcha {
        min-height: 62px;
    }

    .detail-recaptcha > div {
        transform: scale(0.76);
    }
}
