
/* Modern Airbnb Style for Booking Core - Color Dynamic Version */
:root {
    --primary-color: #FF385C; /* Default Airbnb Red, will be overridden by User Brand Color */
    --secondary-color: #222222;
    --bg-surface: #ffffff;
    --text-main: #222222;
    --text-muted: #717171;
    --border-light: #DDDDDD;
    --radius-lg: 12px;
    --radius-xl: 24px;
    --radius-pill: 40px;
    --shadow-soft: 0 6px 16px rgba(0,0,0,0.08);
    --shadow-strong: 0 16px 32px rgba(0,0,0,0.15);
}

body {
    font-family: 'Poppins', sans-serif !important;
    color: var(--text-main);
}

/* --- REFINAMIENTO DE SECCIONES --- */

/* 1. HERO & SEARCH PILL */
.minisite-hero {
    border-radius: var(--radius-xl) !important;
    margin-top: 15px;
    box-shadow: var(--shadow-soft);
}

.minisite-search-widget {
    background: #fff !important;
    border-radius: var(--radius-pill) !important;
    padding: 8px !important;
    box-shadow: var(--shadow-strong) !important;
    border: 1px solid var(--border-light) !important;
    transition: transform 0.3s ease;
}

.minisite-search-widget:hover {
    transform: translateY(-2px);
}

.minisite-search-widget form > div {
    border-right: 1px solid var(--border-light) !important;
    padding: 10px 24px !important;
}

.minisite-search-widget label {
    font-size: 11px !important;
    letter-spacing: 0.5px;
    text-transform: uppercase !important;
    font-weight: 800 !important;
    color: var(--text-main) !important;
    margin-bottom: 2px !important;
}

.minisite-search-submit-btn {
    background-color: var(--primary-color) !important;
    border-radius: 50% !important;
    width: 48px !important;
    height: 48px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* 2. CATEGORY PILLS */
.category-pill {
    border: 1px solid var(--border-light) !important;
    border-radius: var(--radius-pill) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    padding: 10px 24px !important;
    transition: all 0.2s ease !important;
    background: #fff !important;
    color: var(--text-main) !important;
}

.category-pill.active, .category-pill:hover {
    background: var(--text-main) !important;
    color: #fff !important;
    border-color: var(--text-main) !important;
}

/* 3. DYNAMIC CARDS (CARRUSEL) */
.carousel-card {
    border-radius: var(--radius-lg) !important;
    transition: transform 0.3s cubic-bezier(0.2, 0, 0.2, 1) !important;
}

.carousel-card:hover {
    transform: scale(1.02);
}

.carousel-card .card-overlay {
    padding: 24px !important;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.8) 100%) !important;
}

/* 4. SERVICE CARDS (GRID) */
.item-tour {
    border: none !important;
    padding: 0 !important;
}

.item-tour .thumb-image {
    border-radius: var(--radius-lg) !important;
    overflow: hidden;
    margin-bottom: 12px;
}

.item-tour .item-title {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: var(--text-main) !important;
}

.item-tour .location {
    font-size: 14px !important;
    color: var(--text-muted) !important;
}

.item-tour .info .g-price .text-price {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: var(--text-main) !important;
}

/* 5. TESTIMONIALS & INFO BLOCKS */
.chisfis-info-block, .chisfis-cta-block, .ms-testimonial-card {
    border-radius: var(--radius-xl) !important;
    border: 1px solid var(--border-light) !important;
    background: #fff !important;
    box-shadow: var(--shadow-soft) !important;
    padding: 40px !important;
}

.ms-testimonial-card {
    padding: 24px !important;
}

/* 6. FOOTER */
.minisite-footer {
    background-color: #f7f7f7 !important;
    color: var(--text-main) !important;
    border-top: 1px solid var(--border-light);
}

.minisite-footer h4 {
    color: var(--text-main) !important;
    font-weight: 700 !important;
}

.minisite-footer a {
    color: var(--text-muted) !important;
    transition: color 0.2s ease;
}

.minisite-footer a:hover {
    color: var(--primary-color) !important;
}

/* MOBILE ADAPTATION */
@media (max-width: 768px) {
    .minisite-search-widget {
        border-radius: var(--radius-xl) !important;
        margin: 0 10px !important;
    }
    
    .minisite-search-widget form > div {
        padding: 12px 16px !important;
    }

    .bc-profile-list-services .item-tour {
        margin-bottom: 24px;
    }
}

/* 7. CHISFIS SEARCH HERO — colors are inherited from the vendor theme */
.bc_wrap .page-template-content .owl-nav .owl-prev,
.bc_wrap .page-template-content .owl-nav .owl-next {
    align-items: center;
    background: color-mix(in srgb, var(--bc-background) 92%, var(--bc-text)) !important;
    border: 1px solid color-mix(in srgb, var(--bc-text) 18%, transparent) !important;
    border-radius: 50% !important;
    box-shadow: 0 8px 22px color-mix(in srgb, var(--bc-text) 12%, transparent);
    color: var(--bc-text) !important;
    display: inline-flex;
    height: 44px;
    justify-content: center;
    margin: 0 5px;
    padding: 0 !important;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
    width: 44px;
}

.bc_wrap .page-template-content .owl-nav .owl-prev span,
.bc_wrap .page-template-content .owl-nav .owl-next span {
    color: inherit !important;
    display: block;
    font-family: Arial, sans-serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 38px;
    transform: translateY(-1px);
}

.bc_wrap .page-template-content .owl-nav .owl-prev:hover,
.bc_wrap .page-template-content .owl-nav .owl-next:hover {
    background: var(--bc-primary) !important;
    border-color: var(--bc-primary) !important;
    color: var(--bc-background) !important;
    transform: translateY(-2px);
}

.bc_wrap .page-template-content .owl-nav .owl-prev:focus-visible,
.bc_wrap .page-template-content .owl-nav .owl-next:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--bc-primary) 35%, transparent);
    outline-offset: 3px;
}

.bc_wrap .page-template-content .owl-nav.disabled {
    opacity: .45;
    pointer-events: none;
}

/* Compact archive search bar (tour, space, car, boat and event results). */
@media (min-width: 992px) {
    .bc_wrap .bc_search_tour > .bc_form_search {
        margin-top: -105px !important;
    }

    .bc_wrap .bc_search_tour > .bc_form_search .bc_form {
        align-items: center;
        flex-wrap: nowrap !important;
        gap: 6px;
        min-height: 62px;
        padding: 7px 8px 7px 16px;
        width: 100% !important;
        max-width: 860px !important;
    }

    .bc_wrap .bc_search_tour > .bc_form_search .bc_form .g-field-search {
        flex: 1 1 auto !important;
        height: 48px;
        max-width: none !important;
        min-width: 0;
        padding: 0;
    }

    .bc_wrap .bc_search_tour > .bc_form_search .bc_form .g-field-search > .row {
        align-items: center;
        flex-wrap: nowrap;
        height: 48px;
        width: 100%;
    }

    .bc_wrap .bc_search_tour > .bc_form_search .bc_form .g-field-search > .row > [class*="col-"] {
        align-items: center;
        display: flex;
        flex: 1 1 0 !important;
        height: 48px;
        max-width: none !important;
        padding: 0 22px;
    }

    .bc_wrap .bc_search_tour > .bc_form_search .bc_form .form-group {
        align-items: center;
        display: flex;
        height: 48px;
        position: relative;
        width: 100%;
    }

    .bc_wrap .bc_search_tour > .bc_form_search .bc_form .field-icon {
        font-size: 20px;
        left: 0;
        margin: 0;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    .bc_wrap .bc_search_tour > .bc_form_search .bc_form .form-content {
        padding: 0 0 0 34px;
        width: 100%;
    }

    .bc_wrap .bc_search_tour > .bc_form_search .bc_form .form-content label {
        display: none;
    }

    .bc_wrap .bc_search_tour > .bc_form_search .bc_form .form-control,
    .bc_wrap .bc_search_tour > .bc_form_search .bc_form .render {
        color: color-mix(in srgb, var(--bc-text) 72%, var(--bc-background));
        font-size: 15px;
        line-height: 24px;
    }

    .bc_wrap .bc_search_tour > .bc_form_search .bc_form .form-date-search .render,
    .bc_wrap .bc_search_tour > .bc_form_search .bc_form .form-date-search .date-wrapper span {
        font-size: 14px;
    }

    .bc_wrap .bc_search_tour > .bc_form_search .bc_form .g-button-submit {
        flex: 0 0 48px !important;
        height: 48px;
        max-width: 48px !important;
        width: 48px;
    }

    .bc_wrap .bc_search_tour > .bc_form_search .bc_form .g-button-submit button {
        border-radius: 50% !important;
        color: var(--bc-background) !important;
        font-size: 0;
        height: 48px;
        min-width: 48px;
        padding: 0;
        width: 48px;
    }

    .bc_wrap .bc_search_tour > .bc_form_search .bc_form .g-button-submit button::before {
        background: currentColor;
        content: "";
        display: block;
        height: 23px;
        -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='1.8'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath stroke-linecap='round' d='m16.2 16.2 4 4'/%3E%3C/svg%3E") center/contain no-repeat;
        mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='1.8'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath stroke-linecap='round' d='m16.2 16.2 4 4'/%3E%3C/svg%3E") center/contain no-repeat;
        width: 23px;
    }
}

.bc_wrap .page-template-content .bc-list-locations > .bc-section-heading {
    margin: 0 auto 38px;
    max-width: 760px;
    padding: 0 16px;
    text-align: center;
}

.bc_wrap .page-template-content .bc-list-locations > .bc-section-heading > .title {
    color: var(--bc-text) !important;
    font-size: clamp(30px, 3.2vw, 44px);
    font-weight: 700;
    letter-spacing: -.025em;
    line-height: 1.15;
    margin: 0;
}

.bc_wrap .page-template-content .bc-list-locations > .bc-section-heading > .title::after {
    background: var(--bc-primary);
    border-radius: 999px;
    content: "";
    display: block;
    height: 4px;
    margin: 16px auto 0;
    width: 48px;
}

.bc_wrap .page-template-content .bc-list-locations > .bc-section-heading > .sub-title {
    color: color-mix(in srgb, var(--bc-text) 68%, transparent) !important;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    margin: 14px auto 0;
    max-width: 640px;
}

.bc_wrap .page-template-content .bc-featured-item.style5 {
    background-color: var(--bc-primary) !important;
}

.bc_wrap .page-template-content .bc-form-search-all {
    align-items: center;
    background-position: center 52% !important;
    box-shadow: inset 0 -100px 120px rgba(8, 15, 18, .18);
    display: flex;
    min-height: clamp(620px, 86vh, 820px);
    overflow: hidden;
    padding: 100px 0 80px;
    position: relative;
}

.bc_wrap .page-template-content .bc-form-search-all > div,
.bc_wrap .page-template-content .bc-form-search-all > div > .container {
    width: 100%;
}

.bc_wrap .page-template-content .bc-form-search-all .text-heading {
    color: #fff !important;
    font-size: clamp(46px, 6vw, 74px);
    font-weight: 700;
    letter-spacing: -.035em;
    line-height: 1.05;
    margin: 0 auto;
    max-width: var(--bc-hero-title-max-width, 710px);
    text-align: center;
    text-shadow: 0 3px 24px rgba(0, 0, 0, .24);
}

.bc_wrap .page-template-content .bc-form-search-all .text-heading::after,
.bc_wrap .page-template-content .bc-testimonial > .container > h3::after,
.bc-why-choose-us .bc-why-content h2::after,
.bc-turie-choose-intro h2::after {
    background: var(--bc-primary);
    border-radius: 999px;
    content: "";
    display: block;
    height: 4px;
    margin: 16px auto 0;
    width: 48px;
}

.bc-why-choose-us .bc-why-content h2::after,
.bc-turie-choose-intro h2::after {
    margin-left: 0;
    margin-right: 0;
}

.bc_wrap .page-template-content .bc-form-search-all .sub-heading {
    color: rgba(255, 255, 255, .9) !important;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    margin: 18px auto 0;
    max-width: 720px;
    text-align: center;
    text-shadow: 0 2px 14px rgba(0, 0, 0, .25);
}

.bc-hero-info {
    bottom: 24px;
    color: #fff;
    left: 0;
    position: absolute;
    right: 0;
    z-index: 3;
}

.bc-hero-info-grid {
    align-items: center;
    display: grid;
    gap: 0;
    grid-template-columns: 1.15fr 1.35fr 1fr 1fr 1fr;
}

.bc-hero-info-item {
    align-items: flex-start;
    border-left: 1px solid rgba(255, 255, 255, .22);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 58px;
    padding: 0 28px;
}

.bc-hero-info-item.is-award {
    align-items: center;
    border-left: 0;
    flex-direction: row;
    gap: 18px;
    padding-left: 0;
}

.bc-hero-info-icon {
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .26);
    border-radius: 50%;
    display: flex;
    flex: 0 0 64px;
    height: 64px;
    justify-content: center;
}

.bc-hero-info-icon svg {
    height: 30px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.4;
    width: 30px;
}

.bc-hero-info-icon img {
    height: 32px;
    object-fit: contain;
    width: 32px;
}

.bc-hero-info-image {
    height: 68px;
    overflow: hidden;
    padding: 0 28px;
}

.bc-hero-info-image img {
    border-radius: 999px;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.bc-hero-info-item span {
    color: rgba(255, 255, 255, .82);
    font-size: 14px;
    line-height: 1.25;
}

.bc-hero-info-item strong,
.bc-hero-info-item strong a {
    color: #fff !important;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
}

.bc-hero-info-stars {
    color: var(--bc-primary) !important;
    font-size: 17px !important;
    letter-spacing: 1px;
}

.bc_wrap .page-template-content .bc-form-search-all .g-form-control {
    margin-top: 42px;
}

.bc_wrap .page-template-content .bc-form-search-all .g-form-control .nav-tabs {
    align-items: center;
    border: 0;
    column-gap: 42px;
    margin: 30px auto;
    max-width: fit-content;
}

.bc_wrap .page-template-content .bc-form-search-all .g-form-control .nav-tabs li a,
.bc_wrap .page-template-content .bc-form-search-all .g-form-control .nav-tabs li a.active {
    align-items: center;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0;
    color: color-mix(in srgb, var(--bc-text) 64%, var(--bc-background)) !important;
    display: flex;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    padding: 0;
}

.bc_wrap .page-template-content .bc-form-search-all .g-form-control .nav-tabs li a i {
    display: none;
}

.bc_wrap .page-template-content .bc-form-search-all .g-form-control .nav-tabs li a.active {
    color: var(--bc-text) !important;
}

.bc_wrap .page-template-content .bc-form-search-all .g-form-control .nav-tabs li a.active::before {
    background: var(--bc-primary);
    border-radius: 50%;
    content: "";
    height: 9px;
    margin-right: 9px;
    width: 9px;
}

.bc_wrap .page-template-content .bc-form-search-all .g-form-control .tab-content::before {
    display: none;
}

.bc_wrap .page-template-content .bc-form-search-all .g-form-control .tab-pane,
.bc_wrap .page-template-content .bc-form-search-all .g-form-control .tab-content #bc_tour,
.bc_wrap .page-template-content .bc-form-search-all .g-form-control .tab-content #bc_car,
.bc_wrap .page-template-content .bc-form-search-all .g-form-control .tab-content #bc_event {
    max-width: none;
    width: 100%;
}

.bc_wrap .page-template-content .bc-form-search-all .bc_form {
    align-items: stretch;
    background: var(--bc-background);
    border-radius: 999px;
    box-shadow: 0 10px 24px color-mix(in srgb, var(--bc-text) 12%, transparent);
    color: var(--bc-text);
    margin: 30px auto;
    max-width: var(--bc-hero-form-max-width, 800px);
    min-height: 72px;
    padding: 0 10px 0 16px;
}

.bc_wrap .page-template-content .bc-form-search-all .bc_form .g-field-search {
    display: flex;
    flex: 1 1 auto;
    max-width: none;
    padding: 0;
}

.bc_wrap .page-template-content .bc-form-search-all .bc_form .g-field-search > .row {
    align-items: center;
    flex: 1 1 auto;
    margin: 0;
    width: 100%;
}

.bc_wrap .page-template-content .bc-form-search-all .bc_form .g-field-search > .row > [class*=col-] {
    align-self: center;
    border-color: color-mix(in srgb, var(--bc-text) 14%, transparent);
    padding: 0 20px;
}

.bc_wrap .bc_form .g-field-search .border-right {
    border-right: 0 !important;
}

@media (min-width: 1024px) {
    .bc_wrap .bc_form .g-field-search .border-right {
        position: relative;
    }

    .bc_wrap .bc_form .g-field-search .border-right::after {
        background: color-mix(in srgb, var(--bc-text) 28%, transparent);
        content: "";
        height: 28px;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
    }
}

.bc_wrap .page-template-content .bc-form-search-all .bc_form .form-group {
    min-height: 50px;
    position: relative;
}

.bc_wrap .page-template-content .bc-form-search-all .bc_form .field-icon {
    color: color-mix(in srgb, var(--bc-text) 28%, var(--bc-background));
    font-size: 18px;
    left: 0;
    margin-top: -9px;
}

/* Modern search-field SVG icons; masks inherit the vendor primary color. */
.bc_wrap .bc_form .field-icon.icofont-map,
.bc_wrap .bc_form .field-icon.icofont-wall-clock,
.bc_wrap .bc_form .field-icon.icofont-travelling {
    background-color: var(--bc-primary) !important;
    background-image: none !important;
    display: block;
    font-size: 0 !important;
    height: 22px;
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: contain;
    width: 22px;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
}

.bc_wrap .bc_form .field-icon.icofont-map {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='1.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M15 10.5a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z'/%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 10.5c0 7.142-7.5 11.25-7.5 11.25S4.5 17.642 4.5 10.5a7.5 7.5 0 1 1 15 0Z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='1.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M15 10.5a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z'/%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 10.5c0 7.142-7.5 11.25-7.5 11.25S4.5 17.642 4.5 10.5a7.5 7.5 0 1 1 15 0Z'/%3E%3C/svg%3E");
}

.bc_wrap .bc_form .field-icon.icofont-wall-clock {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='1.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M6.75 3v2.25M17.25 3v2.25M3 18.75V7.5a2.25 2.25 0 0 1 2.25-2.25h13.5A2.25 2.25 0 0 1 21 7.5v11.25m-18 0A2.25 2.25 0 0 0 5.25 21h13.5A2.25 2.25 0 0 0 21 18.75m-18 0v-7.5A2.25 2.25 0 0 1 5.25 9h13.5A2.25 2.25 0 0 1 21 11.25v7.5'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='1.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M6.75 3v2.25M17.25 3v2.25M3 18.75V7.5a2.25 2.25 0 0 1 2.25-2.25h13.5A2.25 2.25 0 0 1 21 7.5v11.25m-18 0A2.25 2.25 0 0 0 5.25 21h13.5A2.25 2.25 0 0 0 21 18.75m-18 0v-7.5A2.25 2.25 0 0 1 5.25 9h13.5A2.25 2.25 0 0 1 21 11.25v7.5'/%3E%3C/svg%3E");
}

.bc_wrap .bc_form .field-icon.icofont-travelling {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='1.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M18 7.5v3m0 0v3m0-3h3m-3 0h-3m-2.25-4.125a3.375 3.375 0 1 1-6.75 0 3.375 3.375 0 0 1 6.75 0ZM3 19.235v-.11a6.375 6.375 0 0 1 12.75 0v.109A12.318 12.318 0 0 1 9.374 21c-2.331 0-4.512-.645-6.374-1.766Z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='1.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M18 7.5v3m0 0v3m0-3h3m-3 0h-3m-2.25-4.125a3.375 3.375 0 1 1-6.75 0 3.375 3.375 0 0 1 6.75 0ZM3 19.235v-.11a6.375 6.375 0 0 1 12.75 0v.109A12.318 12.318 0 0 1 9.374 21c-2.331 0-4.512-.645-6.374-1.766Z'/%3E%3C/svg%3E");
}

.bc_wrap .bc_form .field-icon.icofont-map::before,
.bc_wrap .bc_form .field-icon.icofont-wall-clock::before,
.bc_wrap .bc_form .field-icon.icofont-travelling::before {
    content: none !important;
}

.bc_wrap .page-template-content .bc-form-search-all .bc_form .form-content {
    padding: 5px 0 4px 28px;
}

.bc_wrap .page-template-content .bc-form-search-all .bc_form .form-content label {
    color: var(--bc-text);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}

.bc_wrap .page-template-content .bc-form-search-all .bc_form .form-control,
.bc_wrap .page-template-content .bc-form-search-all .bc_form .form-content .render,
.bc_wrap .page-template-content .bc-form-search-all .bc_form .form-content .date-wrapper span {
    background: transparent;
    color: color-mix(in srgb, var(--bc-text) 48%, var(--bc-background));
    font-size: 14px;
}

.bc_wrap .page-template-content .bc-form-search-all .bc_form .form-control {
    border: 0;
    height: 22px;
    padding: 0;
}

.bc_wrap .page-template-content .bc-form-search-all .bc_form .g-button-submit {
    align-items: center;
    display: flex;
    flex: 0 0 52px;
    justify-content: center;
    max-width: 52px;
}

.bc_wrap .page-template-content .bc-form-search-all .bc_form .g-button-submit button {
    align-items: center;
    background: var(--bc-primary) !important;
    border: 0;
    border-radius: 50% !important;
    color: var(--bc-background);
    display: flex;
    font-size: 0;
    height: 50px;
    justify-content: center;
    margin: 0;
    padding: 0;
    width: 50px;
}

.bc_wrap .page-template-content .bc-form-search-all .bc_form .g-button-submit button::before {
    background: currentColor;
    content: "";
    display: block;
    height: 24px;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m21 21-4.35-4.35m2.1-5.4a7.5 7.5 0 1 1-15 0 7.5 7.5 0 0 1 15 0Z'/%3E%3C/svg%3E");
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: contain;
    width: 24px;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m21 21-4.35-4.35m2.1-5.4a7.5 7.5 0 1 1-15 0 7.5 7.5 0 0 1 15 0Z'/%3E%3C/svg%3E");
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
}

@media (max-width: 1023px) {
    .bc_wrap .page-template-content .bc-list-locations > .bc-section-heading {
        margin-bottom: 26px;
    }

    .bc_wrap .page-template-content .bc-list-locations > .bc-section-heading > .sub-title {
        font-size: 15px;
    }

    .bc_wrap .page-template-content .bc-form-search-all {
        min-height: auto;
        padding: 140px 0 52px;
    }

    .bc_wrap .page-template-content .bc-form-search-all .text-heading {
        font-size: clamp(38px, 9vw, 56px);
    }

    .bc_wrap .page-template-content .bc-form-search-all .sub-heading {
        font-size: 16px;
        margin-top: 12px;
    }

    .bc-hero-info {
        bottom: auto;
        margin-top: 38px;
        position: relative;
    }

    .bc-hero-info .container {
        overflow-x: auto;
        padding-bottom: 6px;
    }

    .bc-hero-info-grid {
        display: flex;
        min-width: max-content;
    }

    .bc-hero-info-item {
        flex: 0 0 210px;
        padding: 0 24px;
    }

    .bc-hero-info-item.is-award {
        padding-left: 0;
    }

    .bc-hero-info-image {
        display: none;
    }

    .bc_wrap .page-template-content .bc-form-search-all .g-form-control .nav-tabs {
        column-gap: 24px;
        margin-left: 0;
        overflow-x: auto;
    }

    .bc_wrap .page-template-content .bc-form-search-all .bc_form {
        border-radius: 28px;
        padding: 8px 10px;
    }

    .bc_wrap .page-template-content .bc-form-search-all .bc_form .g-field-search,
    .bc_wrap .page-template-content .bc-form-search-all .bc_form .g-field-search > .row > [class*=col-] {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .bc_wrap .page-template-content .bc-form-search-all .bc_form .g-field-search > .row > [class*=col-] {
        border-bottom: 1px solid color-mix(in srgb, var(--bc-text) 14%, transparent);
        border-right: 0 !important;
        padding: 2px 12px;
    }

    .bc_wrap .page-template-content .bc-form-search-all .bc_form .g-button-submit {
        flex: 0 0 100%;
        justify-content: flex-end;
        max-width: 100%;
    }

    .bc_wrap .page-template-content .bc-form-search-all .bc_form .g-button-submit button {
        height: 48px;
        margin-top: 8px;
        width: 48px;
    }
}

/* Listing card gallery — maximum four images, finite navigation. */
.bc_wrap .item-loop-wrap .thumb-image,
.bc_wrap .item-loop .thumb-image {
    border-radius: var(--bc-radius);
    overflow: hidden;
    position: relative;
}

.bc-card-gallery,
.bc-card-gallery-track,
.bc-card-gallery-slide {
    height: 100%;
    width: 100%;
}

.bc-card-gallery {
    min-height: 220px;
    overflow: hidden;
    position: relative;
}

.bc-card-gallery-slide {
    display: block;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    transition: opacity .28s ease;
}

.bc-card-gallery-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.bc-card-gallery-slide img {
    height: 100% !important;
    object-fit: cover;
    width: 100% !important;
}

.bc-card-gallery-arrow {
    align-items: center;
    background: color-mix(in srgb, var(--bc-background) 94%, transparent);
    border: 1px solid color-mix(in srgb, var(--bc-text) 18%, transparent);
    border-radius: 50%;
    color: var(--bc-text);
    display: flex;
    height: 34px;
    justify-content: center;
    padding: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    z-index: 6;
}

.bc-card-gallery-arrow[hidden] { display: none !important; }
.bc-card-gallery-arrow.is-prev { left: 10px; }
.bc-card-gallery-arrow.is-next { right: 10px; }
.bc-card-gallery-arrow i { font-size: 20px; }

.bc-card-gallery-dots {
    bottom: 9px;
    display: flex;
    gap: 4px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    z-index: 6;
}

.bc-card-gallery-dot {
    background: color-mix(in srgb, var(--bc-background) 55%, transparent);
    border-radius: 50%;
    height: 6px;
    transition: background .2s ease, transform .2s ease;
    width: 6px;
}

.bc-card-gallery-dot.is-active {
    background: var(--bc-background);
    transform: scale(1.15);
}

/* Normalize the legacy featured ribbon across every service card. */
.bc_wrap .item-loop-wrap,
.bc_wrap .item-loop {
    position: relative;
}

.bc_wrap .item-loop-wrap > .featured,
.bc_wrap .item-loop > .featured {
    background: var(--bc-badge, var(--bc-primary)) !important;
    border: 0 !important;
    border-radius: var(--bc-radius) !important;
    color: var(--bc-badge-text, #fff) !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    height: auto !important;
    left: 10px !important;
    line-height: 1 !important;
    padding: 7px 10px !important;
    position: absolute !important;
    right: auto !important;
    top: 10px !important;
    width: auto !important;
    z-index: 9 !important;
}

.bc_wrap .item-loop-wrap > .featured::after,
.bc_wrap .item-loop-wrap > .featured::before,
.bc_wrap .item-loop > .featured::after,
.bc_wrap .item-loop > .featured::before {
    display: none !important;
}

/* Builder service-section headings follow the configured theme text color. */
.bc_wrap .page-template-content .bc-list-boat > .title,
.bc_wrap .page-template-content .bc-list-car > .title,
.bc_wrap .page-template-content .bc-list-event > .title,
.bc_wrap .page-template-content .bc-list-hotel > .title,
.bc_wrap .page-template-content .bc-list-space > .title,
.bc_wrap .page-template-content .bc-list-tour > .title,
.bc_wrap .page-template-content .bc-list-tour > .container > .title {
    color: var(--bc-text) !important;
}

.bc_wrap .page-template-content .bc-featured-item .featured-item .content .title {
    color: var(--bc-text) !important;
}

.bc_wrap .page-template-content .bc-featured-item .featured-item .content .desc {
    color: color-mix(in srgb, var(--bc-text) 68%, var(--bc-background)) !important;
}

.bc_wrap .page-template-content .bc-featured-item .featured-item.has-no-image .content {
    margin-left: 0 !important;
    padding-left: 0 !important;
}

/* 8. TURIE TESTIMONIALS — all colors derive from the active vendor theme */
.bc_wrap .page-template-content .bc-testimonial {
    background: color-mix(in srgb, var(--bc-background) 94%, var(--bc-text));
    margin: 0;
    overflow: hidden;
    padding: 105px 0 110px;
    position: relative;
}

.bc_wrap .page-template-content .bc-testimonial::before,
.bc_wrap .page-template-content .bc-testimonial::after {
    border: 1px solid color-mix(in srgb, var(--bc-primary) 28%, transparent);
    border-radius: 50%;
    content: "";
    height: 220px;
    pointer-events: none;
    position: absolute;
    width: 220px;
}

.bc_wrap .page-template-content .bc-testimonial::before {
    left: -115px;
    top: 46px;
}

.bc_wrap .page-template-content .bc-testimonial::after {
    bottom: -135px;
    right: -80px;
}

.bc_wrap .page-template-content .bc-testimonial > .container {
    position: relative;
    z-index: 1;
}

.bc_wrap .page-template-content .bc-testimonial > .container > h3 {
    color: var(--bc-text);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.12;
    margin: 0 auto 46px;
    max-width: 760px;
    text-align: center;
}

.bc_wrap .page-template-content .bc-testimonial > .container > h3::before {
    color: var(--bc-primary);
    content: "Testimonios";
    display: block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.bc_wrap .page-template-content .bc-testimonial .row {
    justify-content: center;
}

.bc_wrap .page-template-content .bc-testimonial .item {
    background: var(--bc-background);
    border: 1px solid color-mix(in srgb, var(--bc-text) 12%, transparent);
    border-radius: 18px !important;
    box-shadow: 0 20px 50px color-mix(in srgb, var(--bc-text) 8%, transparent);
    display: flex;
    flex-direction: column;
    min-height: 270px;
    padding: 34px 36px 30px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bc_wrap .page-template-content .bc-testimonial .item:hover {
    box-shadow: 0 25px 60px color-mix(in srgb, var(--bc-text) 13%, transparent);
    transform: translateY(-6px);
}

.bc_wrap .page-template-content .bc-testimonial .item .author {
    align-items: center;
    margin: auto 0 0;
    order: 3;
    padding-top: 20px;
}

.bc_wrap .page-template-content .bc-testimonial .item .author::before {
    align-items: center;
    background: var(--bc-primary);
    border-radius: 50%;
    color: var(--bc-background);
    content: "\efcd";
    display: flex;
    flex: 0 0 58px;
    font-family: IcoFont;
    font-size: 22px;
    height: 58px;
    justify-content: center;
    margin-right: 16px;
    width: 58px;
}

.bc_wrap .page-template-content .bc-testimonial .item .author img {
    border: 3px solid var(--bc-background);
    height: 58px;
    margin-left: -74px;
    margin-right: 16px;
    object-fit: cover;
    position: relative;
    width: 58px;
    z-index: 1;
}

.bc_wrap .page-template-content .bc-testimonial .item .author img[src=""] {
    display: none;
}

.bc_wrap .page-template-content .bc-testimonial .item .author img[src=""] + .author-meta {
    margin-left: 0;
}

.bc_wrap .page-template-content .bc-testimonial .item .author .author-meta {
    display: flex;
    flex-direction: column;
}

.bc_wrap .page-template-content .bc-testimonial .item .author .author-meta h4 {
    color: var(--bc-text);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.35;
    margin: 0;
    order: 2;
}

.bc_wrap .page-template-content .bc-testimonial .item .author .author-meta .star {
    left: 36px;
    position: absolute;
    top: 38px;
}

.bc_wrap .page-template-content .bc-testimonial .item .author .author-meta .star .fa {
    color: var(--bc-primary);
    font-size: 16px;
    margin-right: 4px;
}

.bc_wrap .page-template-content .bc-testimonial .item p {
    color: color-mix(in srgb, var(--bc-text) 72%, var(--bc-background));
    font-size: 16px;
    line-height: 1.85;
    margin: 46px 0 0;
    order: 2;
}

@media (max-width: 991px) {
    .bc_wrap .page-template-content .bc-testimonial {
        padding: 80px 0 65px;
    }

    .bc_wrap .page-template-content .bc-testimonial .item {
        min-height: 250px;
    }
}

@media (max-width: 766px) {
    .bc_wrap .page-template-content .bc-testimonial {
        padding: 64px 0 40px;
    }

    .bc_wrap .page-template-content .bc-testimonial > .container > h3 {
        margin-bottom: 32px;
    }

    .bc_wrap .page-template-content .bc-testimonial .item {
        min-height: 0;
        padding: 30px 26px;
    }

    .bc_wrap .page-template-content .bc-testimonial .item .author .author-meta .star {
        left: 26px;
        top: 30px;
    }
}

/* 9. WHY CHOOSE US — Base/BC implementation for the legacy Solotour block */
.bc-why-choose-us {
    background-color: color-mix(in srgb, var(--bc-background) 94%, var(--bc-text));
    background-image: linear-gradient(color-mix(in srgb, var(--bc-background) 88%, transparent), color-mix(in srgb, var(--bc-background) 88%, transparent)), var(--bc-why-bg, none);
    background-position: center;
    background-size: cover;
    overflow: hidden;
    padding: 100px 0;
    position: relative;
}

.bc-why-choose-us .bc-why-visual {
    min-height: 520px;
    position: relative;
}

.bc-why-choose-us .bc-why-visual::before {
    border: 1px solid color-mix(in srgb, var(--bc-primary) 30%, transparent);
    border-radius: 50%;
    content: "";
    height: 420px;
    left: -70px;
    position: absolute;
    top: 40px;
    width: 420px;
}

.bc-why-choose-us .bc-why-visual img {
    border-radius: 28px;
    box-shadow: 0 30px 70px color-mix(in srgb, var(--bc-text) 18%, transparent);
    height: 100%;
    inset: 0 20px 0 0;
    max-height: 520px;
    object-fit: cover;
    position: absolute;
    width: calc(100% - 20px);
}

.bc-why-choose-us .bc-why-content {
    padding-left: 55px;
}

.bc-why-choose-us .bc-why-eyebrow {
    color: var(--bc-primary);
    display: block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.bc-why-choose-us .bc-why-content h2 {
    color: var(--bc-text);
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1.1;
    margin: 0 0 22px;
}

.bc-why-choose-us .bc-why-description {
    color: color-mix(in srgb, var(--bc-text) 70%, var(--bc-background));
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 28px;
}

.bc-why-choose-us .bc-why-content h3 {
    color: var(--bc-text);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 18px;
}

.bc-why-choose-us .bc-why-list {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bc-why-choose-us .bc-why-list-item {
    align-items: center;
    background: var(--bc-background);
    border: 1px solid color-mix(in srgb, var(--bc-text) 11%, transparent);
    border-radius: 14px;
    color: var(--bc-text);
    display: flex;
    font-size: 15px;
    font-weight: 600;
    gap: 12px;
    min-height: 72px;
    padding: 12px 14px;
}

.bc-why-choose-us .bc-why-list-item img {
    border-radius: 10px;
    height: 46px;
    object-fit: cover;
    width: 46px;
}

.bc-why-choose-us .bc-why-link {
    align-items: center;
    background: var(--bc-primary);
    border-radius: var(--bc-radius);
    color: var(--bc-background) !important;
    display: inline-flex;
    font-weight: 600;
    gap: 10px;
    margin-top: 28px;
    padding: 14px 22px;
}

@media (max-width: 991px) {
    .bc-why-choose-us {
        padding: 75px 0;
    }

    .bc-why-choose-us .bc-why-visual {
        min-height: 430px;
    }

    .bc-why-choose-us .bc-why-visual img {
        max-height: 430px;
    }

    .bc-why-choose-us .bc-why-content {
        padding: 45px 0 0;
    }
}

@media (max-width: 575px) {
    .bc-why-choose-us {
        padding: 55px 0;
    }

    .bc-why-choose-us .bc-why-visual {
        min-height: 330px;
    }

    .bc-why-choose-us .bc-why-visual img {
        inset: 0;
        max-height: 330px;
        width: 100%;
    }

    .bc-why-choose-us .bc-why-list {
        grid-template-columns: 1fr;
    }
}

/* 10. TURIE CHOOSE CARDS — reusable dynamic builder block */
.bc-turie-choose {
    background: var(--bc-background);
    color: var(--bc-text);
    padding: var(--turie-section-py) 0 max(40px, calc(var(--turie-section-py) - 80px));
}

.bc-turie-choose-intro {
    max-width: 520px;
    padding: 28px 70px 60px 0;
}

.bc-turie-choose-intro.is-sticky {
    align-self: flex-start;
    height: max-content;
    position: sticky;
    top: 120px;
    z-index: 6;
}

.bc-turie-choose .row > .col-xl-6:first-child {
    align-self: stretch;
}

.bc-turie-choose-eyebrow {
    color: var(--bc-primary);
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.12em;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.bc-turie-choose-intro h2 {
    color: var(--bc-text);
    font-size: clamp(38px, 4.5vw, 62px);
    font-weight: 600;
    letter-spacing: -0.045em;
    line-height: 1.06;
    margin: 0 0 20px;
}

.bc-turie-choose-intro p {
    color: color-mix(in srgb, var(--bc-text) 70%, var(--bc-background));
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 34px;
}

.bc-turie-choose-main-link,
.bc-turie-choose-card-link {
    align-items: center;
    display: inline-flex;
    font-weight: 600;
    gap: 9px;
    text-decoration: none;
}

.bc-turie-choose-main-link {
    background: var(--bc-primary);
    border-radius: var(--bc-radius);
    color: var(--bc-background) !important;
    padding: 14px 23px;
}

.bc-turie-choose-list {
    display: flex;
    flex-direction: column;
    gap: var(--turie-card-gap);
    padding-bottom: calc(var(--turie-card-count, 1) * 18px);
}

.bc-turie-choose-card {
    border: 1px solid color-mix(in srgb, var(--bc-text) 9%, transparent);
    border-radius: var(--turie-card-radius);
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(160px, 5fr);
    min-height: var(--turie-image-height);
    overflow: hidden;
    position: sticky;
    top: calc(110px + (var(--turie-card-index, 0) * 18px));
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    z-index: calc(2 + var(--turie-card-index, 0));
}

.bc-turie-choose-card.tone-primary {
    background: color-mix(in srgb, var(--bc-primary) 12%, var(--bc-background));
}

.bc-turie-choose-card.tone-secondary {
    background: color-mix(in srgb, var(--bc-secondary) 12%, var(--bc-background));
}

.bc-turie-choose-card.tone-neutral {
    background: color-mix(in srgb, var(--bc-text) 7%, var(--bc-background));
}

.bc-turie-choose-card:hover {
    box-shadow: 0 24px 55px color-mix(in srgb, var(--bc-text) 13%, transparent);
    transform: translateY(-6px);
}

.bc-turie-choose-card-copy {
    align-self: center;
    padding: 38px 12px 38px 42px;
}

.bc-turie-choose-number {
    color: var(--bc-primary);
    display: block;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 30px;
}

.bc-turie-choose-card h3 {
    color: var(--bc-text);
    font-size: clamp(22px, 2.2vw, 30px);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.2;
    margin: 0 0 14px;
}

.bc-turie-choose-card h3 a {
    color: inherit;
}

.bc-turie-choose-card p {
    color: color-mix(in srgb, var(--bc-text) 68%, var(--bc-background));
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 22px;
}

.bc-turie-choose-card-link {
    color: var(--bc-text) !important;
    font-size: 14px;
}

.bc-turie-choose-thumb {
    margin: 22px 22px 22px 0;
    min-height: calc(var(--turie-image-height) - 44px);
}

.bc-turie-choose-thumb img {
    border-radius: max(8px, calc(var(--turie-card-radius) - 8px));
    height: 100%;
    object-fit: cover;
    width: 100%;
}

@media (max-width: 1199px) {
    .bc-turie-choose {
        padding-top: min(var(--turie-section-py), 90px);
    }

    .bc-turie-choose-intro {
        max-width: 760px;
        padding: 0 0 50px;
    }

    .bc-turie-choose-intro.is-sticky {
        max-width: 760px;
        padding: 0 0 50px;
        position: static;
    }

    .bc-turie-choose-card {
        top: calc(90px + (var(--turie-card-index, 0) * 14px));
    }
}

@media (max-width: 575px) {
    .bc-turie-choose {
        padding: 60px 0 35px;
    }

    .bc-turie-choose-card {
        grid-template-columns: 1fr;
        top: calc(72px + (var(--turie-card-index, 0) * 10px));
    }

    .bc-turie-choose-card-copy {
        padding: 30px 26px 24px;
    }

    .bc-turie-choose-number {
        margin-bottom: 18px;
    }

    .bc-turie-choose-thumb {
        height: min(var(--turie-image-height), 280px);
        margin: 0 18px 18px;
        min-height: 0;
    }
}
/* Section spacing is controlled by the builder; no fixed outer gap. */
.bc_wrap .page-template-content .bc-how-it-works {
    margin: 0 !important;
}

.bc_wrap .page-template-content .bc-client-feedback {
    margin-bottom: 0 !important;
}

/* ── Galería de la tarjeta: que la foto no se vea cortada ──────────────────
   La galería vive dentro de .thumb-image, y cada tipo de tarjeta le da su
   propia altura (170px en tours, 185px en alojamientos, 220 en otras). Con
   min-height: 220px fija, en las tarjetas más bajas la galería sobresalía y
   .thumb-image —que tiene overflow: hidden— le recortaba la parte de abajo a
   la foto. Posicionada sobre el hueco de la foto calza exacto en todas, y
   también cuando la altura viene del padding-bottom porcentual. */
.thumb-image .bc-card-gallery,
.item-loop-thumb .bc-card-gallery,
.header-thumb .bc-card-gallery {
    position: absolute;
    inset: 0;
    min-height: 0;
    height: auto;
    width: auto;
}
