:root {
    --color-primary: #004158;
    --color-secondary: #b37d5e;
    --color-accent: #de0209;
    --color-black: #000000;
    --color-white: #ffffff;
}

* {
    box-sizing: border-box;
}

body.theme-aruba-deluxe {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    color: var(--color-primary);
    background: var(--color-white);
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    margin: 0 0 16px;
    color: var(--color-primary);
}

body.aruba-dark h1,
body.aruba-dark h2,
body.aruba-dark h3 {
    color: #ffffff;
}

p {
    margin: 0 0 16px;
    line-height: 1.6;

}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1200px, 100%);
    margin: 0 auto;
}

@media (max-width: 767px) {
    .container {
        margin: -2px auto;
    }
}

body.theme-aruba-deluxe .bc_wrap {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

body.theme-aruba-deluxe .bc_wrap .bc_header,
body.theme-aruba-deluxe .bc_wrap .home1-banner-section,
body.theme-aruba-deluxe .bc_wrap .filter-wrapper,
body.theme-aruba-deluxe .bc_wrap .page-template-content {
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 992px) {
    body.theme-aruba-deluxe .bc_wrap .bc_header,
    body.theme-aruba-deluxe .bc_wrap .home1-banner-section,
    body.theme-aruba-deluxe .bc_wrap .filter-wrapper,
    body.theme-aruba-deluxe .bc_wrap .page-template-content {
        padding: 0px 0px 50px;
    }
}

body.theme-aruba-deluxe .bc_wrap .page-template-content {
    padding-top: 30px;
    margin-top: 30px;
}

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main {
    flex: 1;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-accent {
    background: var(--color-accent);
    color: var(--color-white);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn:hover {
    opacity: 0.9;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-secondary);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

.brand {
    display: flex;
    gap: 8px;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
}

.brand-mark {
    color: var(--color-primary);
}

.brand-text {
    color: var(--color-secondary);
}

.nav {
    display: flex;
    gap: 24px;
}

.nav-link {
    font-weight: 500;
}

.header-actions {
    display: flex;
    gap: 12px;
}

.site-footer {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 48px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px;
}

.footer-title {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--color-white);
}

.footer-text {
    color: var(--color-white);
}

.footer-links a {
    display: block;
    margin-bottom: 8px;
    color: var(--color-white);
}

.footer-bottom {
    margin-top: 32px;
    border-top: 1px solid var(--color-secondary);
    padding-top: 16px;
    text-align: center;
}

.hero {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 110px 0 90px;
}

.hero h1,
.hero p,
.hero .eyebrow {
    color: var(--color-white);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 12px;
    margin-bottom: 12px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.search {
    background: var(--color-white);
    padding: 40px 0;
}

.search-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) auto;
    gap: 16px;
    background: var(--color-white);
    border: 1px solid var(--color-secondary);
    border-radius: 16px;
    padding: 16px;
}

.field label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 6px;
    color: var(--color-primary);
}

.field input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--color-secondary);
    border-radius: 8px;
    font-size: 14px;
    color: var(--color-primary);
}

.activities {
    padding: 64px 0 90px;
}

.section-header {
    max-width: 640px;
    margin-bottom: 32px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.card {
    border: 1px solid var(--color-secondary);
    border-radius: 16px;
    overflow: hidden;
    background: var(--color-white);
}

.card-media {
    height: 180px;
    background: var(--color-secondary);
}

.card-body {
    padding: 20px;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
}

.price {
    color: var(--color-accent);
}

.newsletter {
    display: flex;
    gap: 8px;
}

.newsletter input {
    flex: 1;
    padding: 10px 12px;
    border: none;
    border-radius: 8px;
    background: var(--color-white);
    color: var(--color-primary);
}

.hero-content {
    max-width: 640px;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 24px;
}

.activities .card h3 {
    font-size: 20px;
}

@media (max-width: 900px) {
    .site-header .container {
        flex-direction: column;
        gap: 16px;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .header-actions {
        width: 100%;
        justify-content: center;
    }
}

.home1-banner-section {
    position: relative;
}

.home1-banner-section ~ .home1-banner-section {
    display: none;
}

.home1-banner-section .banner-video-area {
    min-height: 470px;
    height: 470px;
    position: relative;
    overflow: hidden;
}

.home1-banner-section .banner-video-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.home1-banner-section .banner-video-area video,
.home1-banner-section .banner-video-area iframe,
.home1-banner-section .banner-video-area .static-banner-bg,
.home1-banner-section .banner-video-area .effect,
.home1-banner-section .banner-video-area .effect .owl-carousel,
.home1-banner-section .banner-video-area .effect .owl-stage-outer,
.home1-banner-section .banner-video-area .effect .owl-stage,
.home1-banner-section .banner-video-area .effect .owl-item,
.home1-banner-section .banner-video-area .effect .item,
.home1-banner-section .banner-video-area .effect .item-bg {
    width: 100%;
    height: 100%;
}

.home1-banner-section .banner-video-area .static-banner-bg,
.home1-banner-section .banner-video-area .effect {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.home1-banner-section .banner-video-area .static-banner-bg,
.home1-banner-section .banner-video-area .effect .item-bg {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.home1-banner-section .banner-video-area video,
.home1-banner-section .banner-video-area iframe {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    border: 0;
    object-fit: cover;
}

.home1-banner-section .banner-content-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 90px 0;
    z-index: 2;
}

@media (max-width: 991px) {
    .home1-banner-section .banner-content-wrap {
        padding: 75px 0;
    }
}

@media (max-width: 767px) {
    .home1-banner-section .banner-content-wrap {
        padding: 60px 0;
    }
}

.home1-banner-section .banner-content-wrap .banner-content h1 {
    color: var(--color-white);
    font-weight: 800;
    font-size: 50px;
    line-height: 1.2;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .home1-banner-section .banner-content-wrap .banner-content h1 {
        font-size: 42px;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .home1-banner-section .banner-content-wrap .banner-content h1 {
        font-size: 38px;
    }
}

.home1-banner-section .banner-content-wrap .banner-content p {
    color: var(--color-white);
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 0;
}

/* Aruba Deluxe: remove gap between header and hero slider */
body.theme-aruba-deluxe .home1-banner-section,
body.theme-aruba-deluxe .bc-form-search-all {
    margin-top: -60px;
    padding-top: 0;
}

@media (max-width: 991px) {
    body.theme-aruba-deluxe .home1-banner-section,
    body.theme-aruba-deluxe .bc-form-search-all {
        margin-top: 0;
    }
}

body.theme-aruba-deluxe .bc_header.aruba-header.has_sticky + .home1-banner-section {
    margin-top: 30px;
}

@media (max-width: 991px) {
    body.theme-aruba-deluxe .bc_header.aruba-header.has_sticky + .home1-banner-section {
        margin-top: 30px;
    }
}

body.theme-aruba-deluxe .home1-banner-section .banner-video-area,
body.theme-aruba-deluxe .bc-form-search-all .effect {
    margin-top: 0px;
}

body.theme-aruba-deluxe .bc_wrap .bc_form .form-content {
    padding: 0;
}

body.theme-aruba-deluxe .bc_wrap .bc_form .g-field-search {
    padding: 0;
}

body.theme-aruba-deluxe .bc_wrap .bc_form {
    border-radius: 20px;
}

body.theme-aruba-deluxe .bc_wrap .page-template-content .bc-form-search-all {
    padding: 0px 0;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

body.theme-aruba-deluxe .filter-help-text {
    margin: 11px 5PX 12px;
    line-height: 1.6;
}

@media (max-width: 576px) {
    .home1-banner-section .banner-content-wrap .banner-content p {
        font-size: 17px;
        line-height: 26px;
    }
}

.filter-wrapper {
    position: relative;
    margin-top: -115px;
    z-index: 9;
}

@media (max-width: 991px) {
    .filter-wrapper {
        margin-top: 45px;
    }
}

.filter-wrapper .filter-item-list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: 40px;
    margin-bottom: -24px;
    border-bottom: none;
}

@media (max-width: 1399px) {
    .filter-wrapper .filter-item-list {
        margin-left: 30px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .filter-wrapper .filter-item-list {
        margin-left: 20px;
    }
}

@media (max-width: 767px) {
    .filter-wrapper .filter-item-list {
        margin-left: 20px;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .filter-wrapper .filter-item-list {
        flex-wrap: wrap;
        margin-right: 20px;
        margin-bottom: -27px;
    }
}

.filter-wrapper .filter-item-list .single-item a {
    padding: 11px 18px;
    background-color: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    transition: 0.3s;
}

@media (max-width: 767px) {
    .filter-wrapper .filter-item-list .single-item a {
        padding: 8px 14px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .filter-wrapper .filter-item-list .single-item a {
        font-size: 12px;
        padding: 8px 10px;
        flex-direction: column;
        border-radius: 10px;
    }
}

.filter-wrapper .filter-item-list .single-item a i {
    color: var(--color-secondary);
}

.filter-wrapper .filter-item-list .single-item a:hover,
.filter-wrapper .filter-item-list .single-item a.active {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.filter-wrapper .filter-item-list .single-item a:hover i,
.filter-wrapper .filter-item-list .single-item a.active i {
    color: var(--color-white);
}

body.aruba-dark .bc_wrap .page-template-content .bc-list-tour.box_shadow {
    background: #10212e;
}

body.aruba-dark .bc_wrap .page-template-content .bc-call-to-action .context {
    background: #a56609;
}


.bc_wrap .page-template-content .bc-call-to-action .context {
    border-radius: 20px;
}

.bc_wrap .page-template-content .bc-list-locations.style_4 .list-item .destination-item {
    border-radius: 20px;
}

.bc_wrap .page-template-content .bc-list-tour.box_shadow .list-item .item {
    border-radius: 20px;
}

.bc_wrap .page-template-content .bc-testimonial .item {
    border-radius: 20px;
}

body.aruba-dark .bc_wrap .page-template-content .bc-testimonial .item {
    border-color: #2c343f;
}

.bc_wrap .page-template-content .bc-testimonial .item h3 {
    color: #ffffff;
}

.bc_wrap .page-template-content .bc-call-to-action .context .btn-more {
    border-radius: 999px;
}

body.aruba-dark .filter-wrapper .filter-item-list .single-item a {
    background-color: var(--color-primary);
    border-color: #ffffff14;
    color: #ffffff;
}


body.aruba-dark .filter-wrapper .filter-item-list .single-item a i {
    color: #ffffff;
}


body.aruba-dark .filter-wrapper .filter-item-list .single-item a:hover,
body.aruba-dark .filter-wrapper .filter-item-list .single-item a.active {
    background-color: #ffffff;
    border-color: #ffffff14;
    color: var(--color-primary);
}

body.aruba-dark .filter-wrapper .filter-item-list .single-item a:hover i,
body.aruba-dark .filter-wrapper .filter-item-list .single-item a.active i {
    color: var(--color-secondary);
}

.filter-wrapper .filter-input-wrap {
    padding: 60px 40px 30px;
    background-color: var(--color-white);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    border-radius: 20px;
}

@media (max-width: 1399px) {
    .filter-wrapper .filter-input-wrap {
        padding: 60px 30px 30px;
    }

    body.theme-aruba-deluxe .bc_wrap .bc_search_boat .bc_form_search,
    body.theme-aruba-deluxe .bc_wrap .bc_search_tour .bc_form_search,
    body.theme-aruba-deluxe .bc_wrap .bc_search_space .bc_form_search,
    body.theme-aruba-deluxe .bc_wrap .bc_search_boat .bc_form_search_map .bc_form,
    body.theme-aruba-deluxe .bc_wrap .bc_search_tour .bc_form_search_map .bc_form,
    body.theme-aruba-deluxe .bc_wrap .bc_search_space .bc_form_search_map .bc_form {
        padding: 60px 30px 30px;
    }
}

@media (max-width: 767px) {
    .filter-wrapper .filter-input-wrap {
        padding: 50px 20px 30px;
    }

    body.theme-aruba-deluxe .bc_wrap .bc_search_boat .bc_form_search,
    body.theme-aruba-deluxe .bc_wrap .bc_search_tour .bc_form_search,
    body.theme-aruba-deluxe .bc_wrap .bc_search_space .bc_form_search,
    body.theme-aruba-deluxe .bc_wrap .bc_search_boat .bc_form_search_map .bc_form,
    body.theme-aruba-deluxe .bc_wrap .bc_search_tour .bc_form_search_map .bc_form,
    body.theme-aruba-deluxe .bc_wrap .bc_search_space .bc_form_search_map .bc_form {
        padding: 50px 20px 30px;
    }
}

.filter-wrapper .filter-input-wrap .filter-input {
    display: block;
}

.filter-wrapper .filter-input-wrap .bc_form {
    display: flex;
    align-items: stretch;
    gap: 0;
}

.filter-wrapper .filter-input-wrap .bc_form .g-field-search {
    flex: 1;
}

.filter-wrapper .filter-input-wrap .bc_form .g-field-search .row {
    display: flex;
    margin: 0;
}

.filter-wrapper .filter-input-wrap .bc_form .g-field-search .row > [class*="col-"] {
    padding: 0;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.filter-wrapper .filter-input-wrap .bc_form .form-group {
    padding: 8px 20px;
    min-height: 62px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.filter-wrapper .filter-input-wrap .bc_form .form-group .field-icon {
    color: var(--color-secondary);
    font-size: 18px;
    position: static;
    flex: 0 0 auto;
}

.filter-wrapper .filter-input-wrap .bc_form .form-group .form-content {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
}

.filter-wrapper .filter-input-wrap .bc_form .form-group .form-content label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 4px;
    color: var(--color-primary);
}

.filter-wrapper .filter-input-wrap .bc_form .form-group .form-content input,
.filter-wrapper .filter-input-wrap .bc_form .form-group .form-content .smart-search-location {
    background-color: transparent;
    color: var(--color-primary);
    border: none;
    padding: 0;
    font-weight: 500;
    font-size: clamp(14px, 2.2vw, 16px);
}

.filter-wrapper .filter-input-wrap .bc_form .form-group .form-content .smart-search-location {
    box-shadow: none;
}

body.theme-aruba-deluxe .bc_wrap .bc_search_boat .bc_form_search,
body.theme-aruba-deluxe .bc_wrap .bc_search_tour .bc_form_search,
body.theme-aruba-deluxe .bc_wrap .bc_search_space .bc_form_search,
body.theme-aruba-deluxe .bc_wrap .bc_search_boat .bc_form_search_map .bc_form,
body.theme-aruba-deluxe .bc_wrap .bc_search_tour .bc_form_search_map .bc_form,
body.theme-aruba-deluxe .bc_wrap .bc_search_space .bc_form_search_map .bc_form {
    padding: 60px 40px 30px;
    background-color: var(--color-white);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    border-radius: 20px;
}

body.theme-aruba-deluxe .bc_wrap .bc_search_boat .bc_form_search,
body.theme-aruba-deluxe .bc_wrap .bc_search_tour .bc_form_search,
body.theme-aruba-deluxe .bc_wrap .bc_search_space .bc_form_search {
    background-color: var(--color-primary);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    padding: 28px 28px 22px;
    max-width: 980px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

body.theme-aruba-deluxe:not(.aruba-dark) .bc_wrap .bc_search_boat .bc_form_search,
body.theme-aruba-deluxe:not(.aruba-dark) .bc_wrap .bc_search_tour .bc_form_search,
body.theme-aruba-deluxe:not(.aruba-dark) .bc_wrap .bc_search_space .bc_form_search {
    background-color: #ffffff;
    box-shadow: 0 12px 30px rgba(10, 24, 36, 0.12);
}

body.theme-aruba-deluxe .bc_wrap .bc_search_boat .bc_form_search::before,
body.theme-aruba-deluxe .bc_wrap .bc_search_boat .bc_form_search::after,
body.theme-aruba-deluxe .bc_wrap .bc_search_tour .bc_form_search::before,
body.theme-aruba-deluxe .bc_wrap .bc_search_tour .bc_form_search::after,
body.theme-aruba-deluxe .bc_wrap .bc_search_space .bc_form_search::before,
body.theme-aruba-deluxe .bc_wrap .bc_search_space .bc_form_search::after {
    content: none !important;
}

body.theme-aruba-deluxe .bc_wrap .bc_search_boat .bc_form_search .bc_form,
body.theme-aruba-deluxe .bc_wrap .bc_search_tour .bc_form_search .bc_form,
body.theme-aruba-deluxe .bc_wrap .bc_search_space .bc_form_search .bc_form {
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(10, 24, 36, 0.2);
    max-width: 920px;
    margin: 0 auto;
}

body.theme-aruba-deluxe:not(.aruba-dark) .bc_wrap .bc_search_boat .bc_form_search .bc_form,
body.theme-aruba-deluxe:not(.aruba-dark) .bc_wrap .bc_search_tour .bc_form_search .bc_form,
body.theme-aruba-deluxe:not(.aruba-dark) .bc_wrap .bc_search_space .bc_form_search .bc_form {
    background: #ffffff;
}

body.theme-aruba-deluxe .bc_wrap .bc_search_boat .bc_form_search .bc_form .g-button-submit button,
body.theme-aruba-deluxe .bc_wrap .bc_search_tour .bc_form_search .bc_form .g-button-submit button,
body.theme-aruba-deluxe .bc_wrap .bc_search_space .bc_form_search .bc_form .g-button-submit button {
    background: #e10600;
}

body.theme-aruba-deluxe .bc_wrap .bc_search_boat .bc_form_search .bc_form,
body.theme-aruba-deluxe .bc_wrap .bc_search_tour .bc_form_search .bc_form,
body.theme-aruba-deluxe .bc_wrap .bc_search_space .bc_form_search .bc_form,
body.theme-aruba-deluxe .bc_wrap .bc_search_boat .bc_form_search_map .bc_form,
body.theme-aruba-deluxe .bc_wrap .bc_search_tour .bc_form_search_map .bc_form,
body.theme-aruba-deluxe .bc_wrap .bc_search_space .bc_form_search_map .bc_form {
    display: flex !important;
    align-items: stretch !important;
    gap: 0 !important;
}

body.theme-aruba-deluxe .bc_wrap .bc_search_boat .bc_form_search .bc_form .g-field-search,
body.theme-aruba-deluxe .bc_wrap .bc_search_tour .bc_form_search .bc_form .g-field-search,
body.theme-aruba-deluxe .bc_wrap .bc_search_space .bc_form_search .bc_form .g-field-search,
body.theme-aruba-deluxe .bc_wrap .bc_search_boat .bc_form_search_map .bc_form .g-field-search,
body.theme-aruba-deluxe .bc_wrap .bc_search_tour .bc_form_search_map .bc_form .g-field-search,
body.theme-aruba-deluxe .bc_wrap .bc_search_space .bc_form_search_map .bc_form .g-field-search {
    flex: 1;
}

body.theme-aruba-deluxe .bc_wrap .bc_search_boat .bc_form_search .bc_form .g-field-search .row,
body.theme-aruba-deluxe .bc_wrap .bc_search_tour .bc_form_search .bc_form .g-field-search .row,
body.theme-aruba-deluxe .bc_wrap .bc_search_space .bc_form_search .bc_form .g-field-search .row,
body.theme-aruba-deluxe .bc_wrap .bc_search_boat .bc_form_search_map .bc_form .g-field-search .row,
body.theme-aruba-deluxe .bc_wrap .bc_search_tour .bc_form_search_map .bc_form .g-field-search .row,
body.theme-aruba-deluxe .bc_wrap .bc_search_space .bc_form_search_map .bc_form .g-field-search .row {
    display: flex;
    margin: 0;
}

body.theme-aruba-deluxe .bc_wrap .bc_search_boat .bc_form_search .bc_form .g-field-search .row > [class*="col-"],
body.theme-aruba-deluxe .bc_wrap .bc_search_tour .bc_form_search .bc_form .g-field-search .row > [class*="col-"],
body.theme-aruba-deluxe .bc_wrap .bc_search_space .bc_form_search .bc_form .g-field-search .row > [class*="col-"],
body.theme-aruba-deluxe .bc_wrap .bc_search_boat .bc_form_search_map .bc_form .g-field-search .row > [class*="col-"],
body.theme-aruba-deluxe .bc_wrap .bc_search_tour .bc_form_search_map .bc_form .g-field-search .row > [class*="col-"],
body.theme-aruba-deluxe .bc_wrap .bc_search_space .bc_form_search_map .bc_form .g-field-search .row > [class*="col-"] {
    padding: 0;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}

body.theme-aruba-deluxe .bc_wrap .bc_search_boat .bc_form_search .bc_form .form-group,
body.theme-aruba-deluxe .bc_wrap .bc_search_tour .bc_form_search .bc_form .form-group,
body.theme-aruba-deluxe .bc_wrap .bc_search_space .bc_form_search .bc_form .form-group,
body.theme-aruba-deluxe .bc_wrap .bc_search_boat .bc_form_search_map .bc_form .form-group,
body.theme-aruba-deluxe .bc_wrap .bc_search_tour .bc_form_search_map .bc_form .form-group,
body.theme-aruba-deluxe .bc_wrap .bc_search_space .bc_form_search_map .bc_form .form-group {
    padding: 8px 20px;
    min-height: 62px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

body.theme-aruba-deluxe .bc_wrap .bc_search_boat .bc_form_search .bc_form .form-group .field-icon,
body.theme-aruba-deluxe .bc_wrap .bc_search_tour .bc_form_search .bc_form .form-group .field-icon,
body.theme-aruba-deluxe .bc_wrap .bc_search_space .bc_form_search .bc_form .form-group .field-icon,
body.theme-aruba-deluxe .bc_wrap .bc_search_boat .bc_form_search_map .bc_form .form-group .field-icon,
body.theme-aruba-deluxe .bc_wrap .bc_search_tour .bc_form_search_map .bc_form .form-group .field-icon,
body.theme-aruba-deluxe .bc_wrap .bc_search_space .bc_form_search_map .bc_form .form-group .field-icon {
    color: var(--color-secondary);
    font-size: 18px;
    position: static;
    flex: 0 0 auto;
}

body.theme-aruba-deluxe .bc_wrap .bc_search_boat .bc_form_search .bc_form .form-group .form-content,
body.theme-aruba-deluxe .bc_wrap .bc_search_tour .bc_form_search .bc_form .form-group .form-content,
body.theme-aruba-deluxe .bc_wrap .bc_search_space .bc_form_search .bc_form .form-group .form-content,
body.theme-aruba-deluxe .bc_wrap .bc_search_boat .bc_form_search_map .bc_form .form-group .form-content,
body.theme-aruba-deluxe .bc_wrap .bc_search_tour .bc_form_search_map .bc_form .form-group .form-content,
body.theme-aruba-deluxe .bc_wrap .bc_search_space .bc_form_search_map .bc_form .form-group .form-content {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
}

body.theme-aruba-deluxe .bc_wrap .bc_search_boat .bc_form_search .bc_form .form-group .form-content label,
body.theme-aruba-deluxe .bc_wrap .bc_search_tour .bc_form_search .bc_form .form-group .form-content label,
body.theme-aruba-deluxe .bc_wrap .bc_search_space .bc_form_search .bc_form .form-group .form-content label,
body.theme-aruba-deluxe .bc_wrap .bc_search_boat .bc_form_search_map .bc_form .form-group .form-content label,
body.theme-aruba-deluxe .bc_wrap .bc_search_tour .bc_form_search_map .bc_form .form-group .form-content label,
body.theme-aruba-deluxe .bc_wrap .bc_search_space .bc_form_search_map .bc_form .form-group .form-content label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 4px;
    color: var(--color-primary);
}

body.theme-aruba-deluxe .bc_wrap .bc_search_boat .bc_form_search .bc_form .form-group .form-content input,
body.theme-aruba-deluxe .bc_wrap .bc_search_boat .bc_form_search .bc_form .form-group .form-content .smart-search-location,
body.theme-aruba-deluxe .bc_wrap .bc_search_tour .bc_form_search .bc_form .form-group .form-content input,
body.theme-aruba-deluxe .bc_wrap .bc_search_tour .bc_form_search .bc_form .form-group .form-content .smart-search-location,
body.theme-aruba-deluxe .bc_wrap .bc_search_space .bc_form_search .bc_form .form-group .form-content input,
body.theme-aruba-deluxe .bc_wrap .bc_search_space .bc_form_search .bc_form .form-group .form-content .smart-search-location,
body.theme-aruba-deluxe .bc_wrap .bc_search_boat .bc_form_search_map .bc_form .form-group .form-content input,
body.theme-aruba-deluxe .bc_wrap .bc_search_boat .bc_form_search_map .bc_form .form-group .form-content .smart-search-location,
body.theme-aruba-deluxe .bc_wrap .bc_search_tour .bc_form_search_map .bc_form .form-group .form-content input,
body.theme-aruba-deluxe .bc_wrap .bc_search_tour .bc_form_search_map .bc_form .form-group .form-content .smart-search-location,
body.theme-aruba-deluxe .bc_wrap .bc_search_space .bc_form_search_map .bc_form .form-group .form-content input,
body.theme-aruba-deluxe .bc_wrap .bc_search_space .bc_form_search_map .bc_form .form-group .form-content .smart-search-location {
    background-color: transparent;
    color: var(--color-primary);
    border: none;
    padding: 0;
    font-weight: 500;
    font-size: clamp(14px, 2.2vw, 16px);
}

body.theme-aruba-deluxe .bc_wrap .bc_search_boat .bc_form_search .bc_form .form-group .form-content .smart-search-location,
body.theme-aruba-deluxe .bc_wrap .bc_search_tour .bc_form_search .bc_form .form-group .form-content .smart-search-location,
body.theme-aruba-deluxe .bc_wrap .bc_search_space .bc_form_search .bc_form .form-group .form-content .smart-search-location,
body.theme-aruba-deluxe .bc_wrap .bc_search_boat .bc_form_search_map .bc_form .form-group .form-content .smart-search-location,
body.theme-aruba-deluxe .bc_wrap .bc_search_tour .bc_form_search_map .bc_form .form-group .form-content .smart-search-location,
body.theme-aruba-deluxe .bc_wrap .bc_search_space .bc_form_search_map .bc_form .form-group .form-content .smart-search-location {
    box-shadow: none;
}

body.theme-aruba-deluxe .filter-wrapper .filter-input-wrap .bc_form .form-group.form-destination .form-content label,
body.theme-aruba-deluxe .filter-wrapper .filter-input-wrap .bc_form .form-group.form-destination .form-content input,
body.theme-aruba-deluxe .filter-wrapper .filter-input-wrap .bc_form .form-group.form-destination .form-content .smart-search-location,
body.theme-aruba-deluxe .filter-wrapper .filter-input-wrap .bc_form .form-group.form-date-search .form-content label,
body.theme-aruba-deluxe .filter-wrapper .filter-input-wrap .bc_form .form-group.form-date-search .form-content input,
body.theme-aruba-deluxe .filter-wrapper .filter-input-wrap .bc_form .form-group.form-date-search .form-content .render,
body.theme-aruba-deluxe .filter-wrapper .filter-input-wrap .bc_form .form-group.form-date-search-hotel .form-content label,
body.theme-aruba-deluxe .filter-wrapper .filter-input-wrap .bc_form .form-group.form-date-search-hotel .form-content input,
body.theme-aruba-deluxe .filter-wrapper .filter-input-wrap .bc_form .form-group.form-date-search-hotel .form-content .render {
    color: var(--color-primary);
}

body.theme-aruba-deluxe .filter-wrapper .filter-input-wrap .bc_form .form-group .icofont-map + .form-content label,
body.theme-aruba-deluxe .filter-wrapper .filter-input-wrap .bc_form .form-group .icofont-map + .form-content .smart-search-location,
body.theme-aruba-deluxe .filter-wrapper .filter-input-wrap .bc_form .form-group .icofont-map + .form-content input {
    color: var(--color-primary) !important;
}

body.theme-aruba-deluxe .filter-wrapper .filter-input-wrap .bc_form .form-group .icofont-map + .form-content .smart-search-location::placeholder,
body.theme-aruba-deluxe .filter-wrapper .filter-input-wrap .bc_form .form-group .icofont-map + .form-content input::placeholder {
    color: var(--color-primary) !important;
    opacity: 0.85;
}

body.theme-aruba-deluxe .filter-wrapper .filter-input-wrap .bc_form .form-group .icofont-wall-clock + .form-content label,
body.theme-aruba-deluxe .filter-wrapper .filter-input-wrap .bc_form .form-group .icofont-wall-clock + .form-content .render,
body.theme-aruba-deluxe .filter-wrapper .filter-input-wrap .bc_form .form-group .icofont-wall-clock + .form-content .check-in-out {
    color: var(--color-primary) !important;
}

body.theme-aruba-deluxe .filter-wrapper .filter-input-wrap .bc_form .form-group .icofont-wall-clock + .form-content .check-in-out::placeholder {
    color: var(--color-primary) !important;
    opacity: 0.85;
}

body.theme-aruba-deluxe .bc_form .form-group .icofont-map + .form-content label,
body.theme-aruba-deluxe .bc_form .form-group .icofont-map + .form-content .smart-search-location,
body.theme-aruba-deluxe .bc_form .form-group .icofont-map + .form-content input {
    color: var(--color-primary) !important;
}

body.theme-aruba-deluxe .bc_form .form-group .icofont-map + .form-content .smart-search-location::placeholder,
body.theme-aruba-deluxe .bc_form .form-group .icofont-map + .form-content input::placeholder {
    color: var(--color-primary) !important;
    opacity: 0.85;
}

body.theme-aruba-deluxe .bc_form .form-group .icofont-wall-clock + .form-content label,
body.theme-aruba-deluxe .bc_form .form-group .icofont-wall-clock + .form-content .render,
body.theme-aruba-deluxe .bc_form .form-group .icofont-wall-clock + .form-content .check-in-out {
    color: var(--color-primary) !important;
}

body.theme-aruba-deluxe .bc_form .form-group .icofont-wall-clock + .form-content .check-in-out::placeholder {
    color: var(--color-primary) !important;
    opacity: 0.85;
}

body.theme-aruba-deluxe .bc_wrap .bc_search_boat .bc_form .form-content label,
body.theme-aruba-deluxe .bc_wrap .bc_search_boat .bc_form .form-content .smart-search-location,
body.theme-aruba-deluxe .bc_wrap .bc_search_boat .bc_form .form-content .smart-search .parent_text,
body.theme-aruba-deluxe .bc_wrap .bc_search_boat .bc_form .form-content .render,
body.theme-aruba-deluxe .bc_wrap .bc_search_boat .bc_form .form-content .check-in-out {
    color: var(--color-primary) !important;
}

body.theme-aruba-deluxe .bc_wrap .bc_search_boat .bc_form .form-content .smart-search-location::placeholder,
body.theme-aruba-deluxe .bc_wrap .bc_search_boat .bc_form .form-content .smart-search .parent_text::placeholder,
body.theme-aruba-deluxe .bc_wrap .bc_search_boat .bc_form .form-content .check-in-out::placeholder {
    color: var(--color-primary) !important;
    opacity: 0.85;
}

form[action$="/boat"].bc_form .form-content label,
form[action$="/boat"].bc_form .form-content .smart-search-location,
form[action$="/boat"].bc_form .form-content .smart-search .parent_text,
form[action$="/boat"].bc_form .form-content .render,
form[action$="/boat"].bc_form .form-content .check-in-out {
    color: var(--color-primary) !important;
}

form[action$="/boat"].bc_form .form-content .smart-search-location::placeholder,
form[action$="/boat"].bc_form .form-content .smart-search .parent_text::placeholder,
form[action$="/boat"].bc_form .form-content .check-in-out::placeholder {
    color: var(--color-primary) !important;
    opacity: 0.85;
}


.filter-wrapper .filter-input-wrap .bc_form .g-button-submit {
    flex: 0 0 140px;
    margin: 0;
}


.filter-wrapper .filter-input-wrap .bc_form .g-button-submit button {
    width: 100%;
    height: 100%;
    border-radius: 0 20px 20px 0;
    background: var(--color-accent);
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}



@media (max-width: 991px) {
    .filter-wrapper .filter-input-wrap .bc_form {
        flex-direction: column;
    }

    body.theme-aruba-deluxe .bc_wrap .bc_search_boat .bc_form_search .bc_form,
    body.theme-aruba-deluxe .bc_wrap .bc_search_tour .bc_form_search .bc_form,
    body.theme-aruba-deluxe .bc_wrap .bc_search_space .bc_form_search .bc_form,
    body.theme-aruba-deluxe .bc_wrap .bc_search_boat .bc_form_search_map .bc_form,
    body.theme-aruba-deluxe .bc_wrap .bc_search_tour .bc_form_search_map .bc_form,
    body.theme-aruba-deluxe .bc_wrap .bc_search_space .bc_form_search_map .bc_form {
        flex-direction: column;
    }

    .filter-wrapper .filter-input-wrap .bc_form .g-field-search .row {
        flex-direction: column;
    }

    body.theme-aruba-deluxe .bc_wrap .bc_search_boat .bc_form_search .bc_form .g-field-search .row,
    body.theme-aruba-deluxe .bc_wrap .bc_search_tour .bc_form_search .bc_form .g-field-search .row,
    body.theme-aruba-deluxe .bc_wrap .bc_search_space .bc_form_search .bc_form .g-field-search .row,
    body.theme-aruba-deluxe .bc_wrap .bc_search_boat .bc_form_search_map .bc_form .g-field-search .row,
    body.theme-aruba-deluxe .bc_wrap .bc_search_tour .bc_form_search_map .bc_form .g-field-search .row,
    body.theme-aruba-deluxe .bc_wrap .bc_search_space .bc_form_search_map .bc_form .g-field-search .row {
        flex-direction: column;
    }

    .filter-wrapper .filter-input-wrap .bc_form .g-field-search .row > [class*="col-"] {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    body.theme-aruba-deluxe .bc_wrap .bc_search_boat .bc_form_search .bc_form .g-field-search .row > [class*="col-"],
    body.theme-aruba-deluxe .bc_wrap .bc_search_tour .bc_form_search .bc_form .g-field-search .row > [class*="col-"],
    body.theme-aruba-deluxe .bc_wrap .bc_search_space .bc_form_search .bc_form .g-field-search .row > [class*="col-"],
    body.theme-aruba-deluxe .bc_wrap .bc_search_boat .bc_form_search_map .bc_form .g-field-search .row > [class*="col-"],
    body.theme-aruba-deluxe .bc_wrap .bc_search_tour .bc_form_search_map .bc_form .g-field-search .row > [class*="col-"],
    body.theme-aruba-deluxe .bc_wrap .bc_search_space .bc_form_search_map .bc_form .g-field-search .row > [class*="col-"] {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .filter-wrapper .filter-input-wrap .bc_form .g-button-submit {
        flex: 0 0 auto;
        width: 100%;
        margin-top: -1px;
    }


    .filter-wrapper .filter-input-wrap .bc_form .g-button-submit button {
        border-radius: 0 0 16px 16px;
            margin-top: -40px;
    }

}

@media (max-width: 991px) {
    .filter-wrapper .filter-input-wrap .bc_form .form-group .form-content label {
        line-height: 1.2;
    }

    body.theme-aruba-deluxe .bc_wrap .bc_search_boat .bc_form_search .bc_form .form-group .form-content label,
    body.theme-aruba-deluxe .bc_wrap .bc_search_tour .bc_form_search .bc_form .form-group .form-content label,
    body.theme-aruba-deluxe .bc_wrap .bc_search_space .bc_form_search .bc_form .form-group .form-content label,
    body.theme-aruba-deluxe .bc_wrap .bc_search_boat .bc_form_search_map .bc_form .form-group .form-content label,
    body.theme-aruba-deluxe .bc_wrap .bc_search_tour .bc_form_search_map .bc_form .form-group .form-content label,
    body.theme-aruba-deluxe .bc_wrap .bc_search_space .bc_form_search_map .bc_form .form-group .form-content label {
        line-height: 1.2;
    }

    .filter-wrapper .filter-input-wrap .bc_form .form-group .form-content input,
    .filter-wrapper .filter-input-wrap .bc_form .form-group .form-content .smart-search-location {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    body.theme-aruba-deluxe .bc_wrap .bc_search_boat .bc_form_search .bc_form .form-group .form-content input,
    body.theme-aruba-deluxe .bc_wrap .bc_search_boat .bc_form_search .bc_form .form-group .form-content .smart-search-location,
    body.theme-aruba-deluxe .bc_wrap .bc_search_tour .bc_form_search .bc_form .form-group .form-content input,
    body.theme-aruba-deluxe .bc_wrap .bc_search_tour .bc_form_search .bc_form .form-group .form-content .smart-search-location,
    body.theme-aruba-deluxe .bc_wrap .bc_search_space .bc_form_search .bc_form .form-group .form-content input,
    body.theme-aruba-deluxe .bc_wrap .bc_search_space .bc_form_search .bc_form .form-group .form-content .smart-search-location,
    body.theme-aruba-deluxe .bc_wrap .bc_search_boat .bc_form_search_map .bc_form .form-group .form-content input,
    body.theme-aruba-deluxe .bc_wrap .bc_search_boat .bc_form_search_map .bc_form .form-group .form-content .smart-search-location,
    body.theme-aruba-deluxe .bc_wrap .bc_search_tour .bc_form_search_map .bc_form .form-group .form-content input,
    body.theme-aruba-deluxe .bc_wrap .bc_search_tour .bc_form_search_map .bc_form .form-group .form-content .smart-search-location,
    body.theme-aruba-deluxe .bc_wrap .bc_search_space .bc_form_search_map .bc_form .form-group .form-content input,
    body.theme-aruba-deluxe .bc_wrap .bc_search_space .bc_form_search_map .bc_form .form-group .form-content .smart-search-location {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (max-width: 767px) {
    .filter-wrapper .filter-item-list {
        flex-wrap: wrap;
        justify-content: center;
        margin-left: 0;
        gap: 10px;
    }

    .filter-wrapper .filter-input-wrap {
        padding: 40px 16px 24px;
        border-radius: 16px;
    }

    .filter-wrapper .filter-input-wrap .bc_form .form-group {
        padding: 12px 16px;
        min-height: 56px;
        flex-wrap: wrap;
    }

    body.theme-aruba-deluxe .bc_wrap .bc_search_boat .bc_form_search .bc_form .form-group,
    body.theme-aruba-deluxe .bc_wrap .bc_search_tour .bc_form_search .bc_form .form-group,
    body.theme-aruba-deluxe .bc_wrap .bc_search_space .bc_form_search .bc_form .form-group,
    body.theme-aruba-deluxe .bc_wrap .bc_search_boat .bc_form_search_map .bc_form .form-group,
    body.theme-aruba-deluxe .bc_wrap .bc_search_tour .bc_form_search_map .bc_form .form-group,
    body.theme-aruba-deluxe .bc_wrap .bc_search_space .bc_form_search_map .bc_form .form-group {
        padding: 12px 16px;
        min-height: 56px;
        flex-wrap: wrap;
    }

    .filter-wrapper .filter-input-wrap .bc_form .form-group .form-content label {
        font-size: 11px;
        letter-spacing: 0.12em;
    }

    .filter-wrapper .filter-input-wrap .bc_form .form-group .form-content input,
    .filter-wrapper .filter-input-wrap .bc_form .form-group .form-content .smart-search-location {
        font-size: 15px;
        width: 100%;
    }
}

@media (max-width: 766px) {
    .bc_wrap .page-template-content .bc-form-search-all {
        padding: 0px 0 15px;
    }
}

@media (max-width: 576px) {
    .filter-wrapper .filter-item-list .single-item a {
        padding: 8px 14px;
        font-size: 13px;
    }

    .filter-wrapper .filter-input-wrap .bc_form .g-button-submit {
        width: 100%;
        padding: 0;
    }

    .filter-wrapper .filter-input-wrap .bc_form .g-button-submit button {
        min-height: 54px;
        width: 100%;
        border-radius: 0 0 14px 14px;
        margin: 0;
        display: block;
    }
}

/* Aruba Deluxe cards (template-inspired) */
body.theme-aruba-deluxe .item-loop,
body.theme-aruba-deluxe .item-loop-wrap {
    position: relative;
    padding: 10px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: var(--color-white);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

body.theme-aruba-deluxe .item-loop:hover,
body.theme-aruba-deluxe .item-loop-wrap:hover {
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

body.theme-aruba-deluxe .item-loop .thumb-image,
body.theme-aruba-deluxe .item-loop-wrap .thumb-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

body.theme-aruba-deluxe .item-loop .thumb-image a,
body.theme-aruba-deluxe .item-loop-wrap .thumb-image a {
    display: block;
}

body.theme-aruba-deluxe .item-loop .thumb-image img,
body.theme-aruba-deluxe .item-loop-wrap .thumb-image img {
    width: 100%;
    height: 200px;
    min-height: 200px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.5s ease;
}

body.theme-aruba-deluxe .item-loop:hover .thumb-image img,
body.theme-aruba-deluxe .item-loop-wrap:hover .thumb-image img {
    transform: scale(1.06);
}

body.theme-aruba-deluxe .item-loop .thumb-image::after,
body.theme-aruba-deluxe .item-loop-wrap .thumb-image::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    transition: all 0.5s ease;
}

body.theme-aruba-deluxe .item-loop:hover .thumb-image::after,
body.theme-aruba-deluxe .item-loop-wrap:hover .thumb-image::after {
    height: 250%;
    background-color: transparent;
}

body.theme-aruba-deluxe .item-loop .featured,
body.theme-aruba-deluxe .item-loop-wrap .featured,
body.theme-aruba-deluxe .item-loop .sale_info,
body.theme-aruba-deluxe .item-loop-wrap .sale_info {
    position: absolute;
    top: 16px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    color: var(--color-white);
    z-index: 2;
}

body.theme-aruba-deluxe .item-loop .featured,
body.theme-aruba-deluxe .item-loop-wrap .featured {
    left: 16px;
    background: var(--color-accent);
}

body.theme-aruba-deluxe .item-loop .sale_info,
body.theme-aruba-deluxe .item-loop-wrap .sale_info {
    right: 16px;
    background: var(--color-secondary);
}

body.theme-aruba-deluxe .item-loop .service-wishlist,
body.theme-aruba-deluxe .item-loop-wrap .service-wishlist {
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    z-index: 2;
}

body.theme-aruba-deluxe .item-loop .location,
body.theme-aruba-deluxe .item-loop-wrap .location {
    margin: 14px 0 6px;
    color: rgba(0, 65, 88, 0.75);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

body.theme-aruba-deluxe .item-loop .item-title,
body.theme-aruba-deluxe .item-loop-wrap .item-title {
    position: relative;
    padding-right: 72px;
}

body.theme-aruba-deluxe .item-loop .item-title a,
body.theme-aruba-deluxe .item-loop-wrap .item-title a {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 17px;
    line-height: 1.35;
    display: block;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


body.theme-aruba-deluxe .item-loop .location,
body.theme-aruba-deluxe .item-loop-wrap .location {
    font-size: 13px;
}

body.theme-aruba-deluxe .item-loop .amenities,
body.theme-aruba-deluxe .item-loop-wrap .amenities {
    font-size: 12px;
}

body.theme-aruba-deluxe .item-loop .card-cta .btn,
body.theme-aruba-deluxe .item-loop-wrap .card-cta .btn {
    font-size: 12px;
    padding: 9px 14px;
}

body.theme-aruba-deluxe .item-loop .price-meta .label,
body.theme-aruba-deluxe .item-loop-wrap .price-meta .label {
    font-size: 10px;
}

body.theme-aruba-deluxe .item-loop .price-meta .value,
body.theme-aruba-deluxe .item-loop-wrap .price-meta .value {
    font-size: 20px;
}

body.theme-aruba-deluxe .item-loop .service-review,
body.theme-aruba-deluxe .item-loop-wrap .service-review {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(0, 65, 88, 0.7);
    margin-bottom: 10px;
}

body.theme-aruba-deluxe .item-loop .info,
body.theme-aruba-deluxe .item-loop-wrap .info {
    color: rgba(0, 65, 88, 0.85);
    font-size: 14px;
    margin-bottom: 8px;
}

body.theme-aruba-deluxe .item-loop .g-price .price,
body.theme-aruba-deluxe .item-loop-wrap .g-price .price {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
}

body.theme-aruba-deluxe .item-loop .g-price .price .text-price,
body.theme-aruba-deluxe .item-loop-wrap .g-price .price .text-price {
    margin-left: 6px;
    opacity: 1;
    text-decoration: none;
    font-weight: 500;
}

body.theme-aruba-deluxe .item-loop .g-price .price .onsale,
body.theme-aruba-deluxe .item-loop-wrap .g-price .price .onsale {
    color: var(--color-accent);
}

body.theme-aruba-deluxe .item-loop .card-cta,
body.theme-aruba-deluxe .item-loop-wrap .card-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 12px;
    margin-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

body.theme-aruba-deluxe .item-loop .price-meta,
body.theme-aruba-deluxe .item-loop-wrap .price-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    text-align: right;
}

body.theme-aruba-deluxe .item-loop .price-meta .label,
body.theme-aruba-deluxe .item-loop-wrap .price-meta .label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(0, 65, 88, 0.6);
}

body.theme-aruba-deluxe .item-loop .price-meta .value,
body.theme-aruba-deluxe .item-loop-wrap .price-meta .value {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary);
}

body.theme-aruba-deluxe .item-loop .price-meta .old,
body.theme-aruba-deluxe .item-loop-wrap .price-meta .old {
    font-size: 14px;
    color: rgba(0, 65, 88, 0.5);
    text-decoration: line-through;
}

body.theme-aruba-deluxe .bc_search_tour .list-item .row,
body.theme-aruba-deluxe .bc_search_space .list-item .row,
body.theme-aruba-deluxe .bc_search_boat .list-item .row {
    margin-left: -8px;
    margin-right: -8px;
    row-gap: 16px;
}

body.theme-aruba-deluxe .bc_search_tour .list-item .row > [class*="col-"],
body.theme-aruba-deluxe .bc_search_space .list-item .row > [class*="col-"],
body.theme-aruba-deluxe .bc_search_boat .list-item .row > [class*="col-"] {
    padding-left: 8px;
    padding-right: 8px;
}

body.theme-aruba-deluxe .item-loop .info.d-flex,
body.theme-aruba-deluxe .item-loop-wrap .info.d-flex {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

body.theme-aruba-deluxe .item-loop .g-price .prefix,
body.theme-aruba-deluxe .item-loop-wrap .g-price .prefix {
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.12em;
    color: rgba(0, 65, 88, 0.6);
}

body.theme-aruba-deluxe .item-loop .btn,
body.theme-aruba-deluxe .item-loop-wrap .btn,
body.theme-aruba-deluxe .item-loop .bc_btn--book a,
body.theme-aruba-deluxe .item-loop-wrap .bc_btn--book a {
    border-radius: 12px;
    padding: 10px 16px;
    font-weight: 600;
    background: #1f74ff;
    color: var(--color-white);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 991px) {
    body.theme-aruba-deluxe .item-loop,
    body.theme-aruba-deluxe .item-loop-wrap {
        padding: 8px;
    }

    body.theme-aruba-deluxe .item-loop .thumb-image img,
    body.theme-aruba-deluxe .item-loop-wrap .thumb-image img {
        height: 180px;
        min-height: 180px;
    }
}

@media (max-width: 576px) {
    body.theme-aruba-deluxe .item-loop,
    body.theme-aruba-deluxe .item-loop-wrap {
        padding: 6px;
        border-radius: 16px;
    }

    body.theme-aruba-deluxe .item-loop .thumb-image img,
    body.theme-aruba-deluxe .item-loop-wrap .thumb-image img {
        height: 160px;
        min-height: 160px;
    }

    body.theme-aruba-deluxe .item-loop .item-title a,
    body.theme-aruba-deluxe .item-loop-wrap .item-title a {
        font-size: 16px;
    }
}

body.theme-aruba-deluxe .aruba-topbar {
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 65, 88, 0.08);
}

body.theme-aruba-deluxe .aruba-topbar__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 0;
}

body.theme-aruba-deluxe .aruba-topbar__left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

body.theme-aruba-deluxe .aruba-logo img {
    height: 72px;
    width: auto;
    display: block;
}

body.theme-aruba-deluxe .aruba-logo .logo-dark {
    display: none;
}

body.theme-aruba-deluxe.aruba-dark .aruba-logo .logo-light {
    display: none;
}

body.theme-aruba-deluxe.aruba-dark .aruba-logo .logo-dark {
    display: block;
}

body.theme-aruba-deluxe .aruba-topbar__search {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f7f1ee;
    border: 1px solid rgba(0, 65, 88, 0.1);
    border-radius: 999px;
    padding: 10px 18px;
    flex: 1;
    max-width: 560px;
    position: relative;
}

body.theme-aruba-deluxe .aruba-topbar__search input {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    font-size: 14px;
    color: #002a3a;
}

body.theme-aruba-deluxe .aruba-topbar__search-icon {
    color: rgba(0, 42, 58, 0.6);
}

body.theme-aruba-deluxe.aruba-dark .aruba-topbar__search-icon {
    color: #a4a4a499;
}

body.theme-aruba-deluxe .aruba-search-suggestions {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    background: #ffffff;
    border: 1px solid rgba(0, 65, 88, 0.12);
    border-radius: 14px;
    box-shadow: 0 12px 24px rgba(15, 51, 66, 0.18);
    padding: 6px;
    z-index: 9999;
    max-height: 260px;
    overflow-y: auto;
}

body.theme-aruba-deluxe .aruba-search-suggestion {
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 14px;
    color: var(--color-primary);
    cursor: pointer;
}

body.theme-aruba-deluxe .aruba-search-suggestion:hover {
    background: rgba(0, 65, 88, 0.08);
}

body.theme-aruba-deluxe .aruba-search-suggestion.is-empty {
    cursor: default;
    color: rgba(15, 51, 66, 0.6);
}

body.theme-aruba-deluxe .aruba-search-suggestion.is-view-all {
    font-weight: 600;
    color: #1f74ff;
}

body.theme-aruba-deluxe.aruba-dark .aruba-search-suggestions {
    background: var(--color-primary);
    border-color: rgba(255, 255, 255, 0.12);
}

body.theme-aruba-deluxe.aruba-dark .aruba-search-suggestion {
    color: #e6edf3;
}

body.theme-aruba-deluxe.aruba-dark .aruba-search-suggestion:hover {
    background: rgba(255, 255, 255, 0.08);
}

body.theme-aruba-deluxe .aruba-topbar__right {
    display: flex;
    align-items: center;
    gap: 16px;
}

body.theme-aruba-deluxe .aruba-help-link {
    font-weight: 600;
    color: var(--color-primary);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
}

body.theme-aruba-deluxe .aruba-topbar__items {
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

body.theme-aruba-deluxe .aruba-topbar__auth {
    display: flex;
    align-items: center;
    gap: 12px;
}

body.theme-aruba-deluxe .aruba-login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 999px;
    background: #1f74ff;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
}

body.theme-aruba-deluxe .aruba-login-btn:hover {
    color: #ffffff;
    opacity: 0.9;
}

body.theme-aruba-deluxe .aruba-whatsapp-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    font-size: 18px;
}

body.theme-aruba-deluxe .aruba-whatsapp-icon:hover {
    color: #ffffff;
    opacity: 0.9;
}

body.theme-aruba-deluxe .aruba-dark-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0, 65, 88, 0.15);
    background: #ffffff;
    color: var(--color-primary);
    font-size: 16px;
    gap: 6px;
}

body.theme-aruba-deluxe .aruba-login-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0, 65, 88, 0.15);
    background: #ffffff;
    color: var(--color-primary);
    font-size: 16px;
}

body.theme-aruba-deluxe .aruba-login-icon:hover {
    color: var(--color-primary);
    opacity: 0.9;
}

body.theme-aruba-deluxe .aruba-dark-toggle .fa-sun-o {
    display: none;
}

body.theme-aruba-deluxe.aruba-dark .aruba-dark-toggle .fa-moon-o {
    display: none;
}

body.theme-aruba-deluxe.aruba-dark .aruba-dark-toggle .fa-sun-o {
    display: inline-block;
}

body.theme-aruba-deluxe.aruba-dark {
    background: #0b1720;
    color: #e6edf3;
}

body.theme-aruba-deluxe.aruba-dark .aruba-topbar,
body.theme-aruba-deluxe.aruba-dark .aruba-header,
body.theme-aruba-deluxe.aruba-dark .bc_header {
    background: var(--color-primary);
    border-color: rgba(255, 255, 255, 0.08);
}

body.theme-aruba-deluxe.aruba-dark .aruba-topbar__search {
    background: #00384d;
    border-color: rgba(255, 255, 255, 0.08);
}

body.theme-aruba-deluxe.aruba-dark .aruba-topbar__search input,
body.theme-aruba-deluxe.aruba-dark .aruba-help-link,
body.theme-aruba-deluxe.aruba-dark .aruba-header__menu .bc-menu a {
    color: #e6edf3;
}

body.theme-aruba-deluxe.aruba-dark .filter-wrapper .filter-input-wrap {
    background: var(--color-primary);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

body.theme-aruba-deluxe.aruba-dark .bc_wrap .bc_search_boat .bc_form_search,
body.theme-aruba-deluxe.aruba-dark .bc_wrap .bc_search_tour .bc_form_search,
body.theme-aruba-deluxe.aruba-dark .bc_wrap .bc_search_space .bc_form_search,
body.theme-aruba-deluxe.aruba-dark .bc_wrap .bc_search_boat .bc_form_search_map .bc_form,
body.theme-aruba-deluxe.aruba-dark .bc_wrap .bc_search_tour .bc_form_search_map .bc_form,
body.theme-aruba-deluxe.aruba-dark .bc_wrap .bc_search_space .bc_form_search_map .bc_form {
    background: var(--color-primary);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

body.theme-aruba-deluxe.aruba-dark .filter-wrapper .filter-input-wrap .bc_form .form-group .form-content label,
body.theme-aruba-deluxe.aruba-dark .filter-wrapper .filter-input-wrap .bc_form .form-group .form-content input,
body.theme-aruba-deluxe.aruba-dark .filter-wrapper .filter-input-wrap .bc_form .form-group .form-content .smart-search-location {
    color: #e6edf3;
}

body.theme-aruba-deluxe.aruba-dark .bc_wrap .bc_search_boat .bc_form_search .bc_form .form-group .form-content label,
body.theme-aruba-deluxe.aruba-dark .bc_wrap .bc_search_tour .bc_form_search .bc_form .form-group .form-content label,
body.theme-aruba-deluxe.aruba-dark .bc_wrap .bc_search_space .bc_form_search .bc_form .form-group .form-content label,
body.theme-aruba-deluxe.aruba-dark .bc_wrap .bc_search_boat .bc_form_search .bc_form .form-group .form-content input,
body.theme-aruba-deluxe.aruba-dark .bc_wrap .bc_search_tour .bc_form_search .bc_form .form-group .form-content input,
body.theme-aruba-deluxe.aruba-dark .bc_wrap .bc_search_space .bc_form_search .bc_form .form-group .form-content input,
body.theme-aruba-deluxe.aruba-dark .bc_wrap .bc_search_boat .bc_form_search .bc_form .form-group .form-content .smart-search-location,
body.theme-aruba-deluxe.aruba-dark .bc_wrap .bc_search_tour .bc_form_search .bc_form .form-group .form-content .smart-search-location,
body.theme-aruba-deluxe.aruba-dark .bc_wrap .bc_search_space .bc_form_search .bc_form .form-group .form-content .smart-search-location,
body.theme-aruba-deluxe.aruba-dark .bc_wrap .bc_search_boat .bc_form_search_map .bc_form .form-group .form-content label,
body.theme-aruba-deluxe.aruba-dark .bc_wrap .bc_search_tour .bc_form_search_map .bc_form .form-group .form-content label,
body.theme-aruba-deluxe.aruba-dark .bc_wrap .bc_search_space .bc_form_search_map .bc_form .form-group .form-content label,
body.theme-aruba-deluxe.aruba-dark .bc_wrap .bc_search_boat .bc_form_search_map .bc_form .form-group .form-content input,
body.theme-aruba-deluxe.aruba-dark .bc_wrap .bc_search_tour .bc_form_search_map .bc_form .form-group .form-content input,
body.theme-aruba-deluxe.aruba-dark .bc_wrap .bc_search_space .bc_form_search_map .bc_form .form-group .form-content input,
body.theme-aruba-deluxe.aruba-dark .bc_wrap .bc_search_boat .bc_form_search_map .bc_form .form-group .form-content .smart-search-location,
body.theme-aruba-deluxe.aruba-dark .bc_wrap .bc_search_tour .bc_form_search_map .bc_form .form-group .form-content .smart-search-location,
body.theme-aruba-deluxe.aruba-dark .bc_wrap .bc_search_space .bc_form_search_map .bc_form .form-group .form-content .smart-search-location {
    color: #e6edf3;
}

body.theme-aruba-deluxe.aruba-dark .aruba-dark-toggle {
    background: var(--color-primary);
    border-color: rgba(255, 255, 255, 0.12);
    color: #e6edf3;
}

body.theme-aruba-deluxe.aruba-dark .aruba-login-icon {
    background: var(--color-primary);
    border-color: rgba(255, 255, 255, 0.12);
    color: #e6edf3;
}

body.theme-aruba-deluxe .aruba-user__toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    font-weight: 600;
}

body.theme-aruba-deluxe.aruba-dark .aruba-user__toggle {
    color: #ffffff;
}

body.theme-aruba-deluxe .aruba-user__toggle .avatar,
body.theme-aruba-deluxe .aruba-user__toggle .avatar-text {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #efe6df;
    color: var(--color-primary);
    font-weight: 600;
}

body.theme-aruba-deluxe .aruba-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 20px;
    color: var(--color-primary);
}

body.theme-aruba-deluxe .aruba-header {
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 65, 88, 0.08);
}

body.theme-aruba-deluxe .aruba-header__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 6px 0 8px;
}

body.theme-aruba-deluxe .bc_header.aruba-header {
    padding: 0;
}

body.theme-aruba-deluxe .bc_header.aruba-header .container {
    padding-left: 0;
    padding-right: 0;
}

@media (min-width: 992px) {
    body.theme-aruba-deluxe .aruba-header__nav {
        justify-content: center;
    }

    body.theme-aruba-deluxe .aruba-header__menu {
        margin: 0 auto;
    }
}

body.theme-aruba-deluxe .aruba-header__menu .bc-menu > ul {
    display: flex;
    align-items: center;
    gap: 22px;
}

body.theme-aruba-deluxe .aruba-header__menu .bc-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

body.theme-aruba-deluxe .aruba-header__menu .bc-menu ul li {
    display: inline-block;
    position: relative;
}

body.theme-aruba-deluxe .aruba-header__menu .bc-menu a {
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
}

body.theme-aruba-deluxe .aruba-header__menu .bc-menu ul li > a {
    display: inline-block;
    padding: 14px 6px;
}

body.theme-aruba-deluxe .aruba-header__menu .bc-menu ul li > .menu-dropdown {
    list-style: none;
    position: absolute;
    left: 0;
    top: 120%;
    min-width: 210px;
    padding: 6px 0;
    margin: 0;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(15, 51, 66, 0.12);
    opacity: 0; 
    visibility: hidden;
    transition: all 0.2s ease-in-out;
    z-index: 999;
}

body.theme-aruba-deluxe .aruba-header__menu .bc-menu ul li > .menu-dropdown li {
    display: block;
    padding: 0 18px;
}

body.theme-aruba-deluxe .aruba-header__menu .bc-menu ul li > .menu-dropdown li a {
    display: block;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    border-bottom: 1px solid rgba(0, 65, 88, 0.08);
    text-transform: none;
    letter-spacing: 0.02em;
}

body.theme-aruba-deluxe .aruba-header__menu .bc-menu ul li > .menu-dropdown li:last-child a {
    border-bottom: none;
}

body.theme-aruba-deluxe .aruba-header__menu .bc-menu ul li > .menu-dropdown li .menu-dropdown {
    top: 0;
    left: 100%;
}

body.theme-aruba-deluxe .aruba-header__menu .bc-menu ul li:hover > .menu-dropdown {
    top: 100%;
    opacity: 1;
    visibility: visible;
}

body.theme-aruba-deluxe .aruba-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 999px;
    background: #25d366;
    color: #ffffff;
    font-weight: 600;
    white-space: nowrap;
}

body.theme-aruba-deluxe .aruba-whatsapp:hover {
    color: #ffffff;
    opacity: 0.9;
}

body.theme-aruba-deluxe .aruba-whatsapp__icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #ffffff;
    color: #25d366;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991.98px) {
    body.theme-aruba-deluxe .aruba-topbar__search,
    body.theme-aruba-deluxe .aruba-topbar__items,
    body.theme-aruba-deluxe .aruba-help-link {
        display: none;
    }

    body.theme-aruba-deluxe .aruba-logo img {
        height: 60px;
    }

    body.theme-aruba-deluxe .aruba-menu-toggle {
        display: inline-flex;
    }

    body.theme-aruba-deluxe .aruba-header__nav {
        padding: 8px 0 10px;
    }

    body.theme-aruba-deluxe .aruba-header__menu,
    body.theme-aruba-deluxe .bc_header .bc-menu {
        display: none;
    }

    body.theme-aruba-deluxe .aruba-header__cta {
        display: none;
    }

    body.theme-aruba-deluxe .home1-banner-section {
        display: none;
    }
}

@media (max-width: 767.98px) {
    body.theme-aruba-deluxe .aruba-whatsapp__phone {
        display: none;
    }
}

/* Aruba Deluxe Home (GoFly-inspired) */
body.theme-aruba-deluxe .adl-hero {
    position: relative;
    overflow: hidden;
    padding: 120px 0 140px;
    background: var(--color-primary);
    color: #ffffff;
}

body.theme-aruba-deluxe .adl-hero__media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: saturate(1.05);
}

body.theme-aruba-deluxe .adl-hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(4, 24, 34, 0.85) 0%, rgba(4, 24, 34, 0.35) 55%, rgba(4, 24, 34, 0.75) 100%);
}

body.theme-aruba-deluxe .adl-hero__content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
    gap: 32px;
    align-items: center;
}

body.theme-aruba-deluxe .adl-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

body.theme-aruba-deluxe .adl-hero__text h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.1;
    margin-bottom: 18px;
    color: #ffffff;
}

body.theme-aruba-deluxe .adl-hero__text p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

body.theme-aruba-deluxe .adl-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 22px;
}

body.theme-aruba-deluxe .adl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border-radius: 999px;
    font-weight: 600;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

body.theme-aruba-deluxe .adl-btn--primary {
    background: var(--color-accent);
    color: #ffffff;
}

body.theme-aruba-deluxe .adl-btn--ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffff;
}

body.theme-aruba-deluxe .adl-btn:hover {
    transform: translateY(-1px);
    opacity: 0.92;
}

body.theme-aruba-deluxe .adl-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

body.theme-aruba-deluxe .adl-hero__badges span {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
    font-size: 12px;
    font-weight: 600;
}

body.theme-aruba-deluxe .adl-hero__panel {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    border-radius: 24px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

body.theme-aruba-deluxe .adl-panel__title {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

body.theme-aruba-deluxe .adl-hero__panel h3 {
    color: #ffffff;
    margin-bottom: 12px;
}

body.theme-aruba-deluxe .adl-panel__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 20px;
}

body.theme-aruba-deluxe .adl-panel__stats strong {
    display: block;
    font-size: 20px;
    color: #ffffff;
}

body.theme-aruba-deluxe .adl-panel__stats span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

body.theme-aruba-deluxe .adl-search {
    margin-top: -80px;
    padding-bottom: 70px;
}

body.theme-aruba-deluxe .adl-search__card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(15, 51, 66, 0.18);
    padding: 24px;
}

body.theme-aruba-deluxe .adl-search__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

body.theme-aruba-deluxe .adl-search__tabs a {
    padding: 8px 16px;
    border-radius: 999px;
    background: #f5f0ec;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 13px;
}

body.theme-aruba-deluxe .adl-search__tabs a.is-active {
    background: var(--color-primary);
    color: #ffffff;
}

body.theme-aruba-deluxe .adl-search__form {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
    gap: 16px;
}

body.theme-aruba-deluxe .adl-field label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 6px;
    color: rgba(15, 51, 66, 0.7);
}

body.theme-aruba-deluxe .adl-field input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(15, 51, 66, 0.15);
    font-size: 14px;
    color: var(--color-primary);
    background: #ffffff;
}

body.theme-aruba-deluxe .adl-about,
body.theme-aruba-deluxe .adl-experiences,
body.theme-aruba-deluxe .adl-destinations,
body.theme-aruba-deluxe .adl-benefits,
body.theme-aruba-deluxe .adl-testimonials,
body.theme-aruba-deluxe .adl-cta {
    padding: 80px 0;
}

body.theme-aruba-deluxe .adl-section-divider {
    height: 1px;
    width: min(1100px, 90%);
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

body.theme-aruba-deluxe .adl-section-slab {
    width: 100%;
    margin: 0;
    border-radius: 0;
    background: #f5f5f5;
    box-shadow: none;
    padding: 30px 0;
}

body.theme-aruba-deluxe .adl-destinations {
    background: #f5f5f5;
}

body.theme-aruba-deluxe .adl-destination-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 32px rgba(12, 32, 44, 0.12);
    height: 100%;
    display: flex;
    flex-direction: column;
}

body.theme-aruba-deluxe .adl-destination-card__media {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #e0e0e0;
}

body.theme-aruba-deluxe .adl-destination-card__media--gold {
    background-image: linear-gradient(135deg, rgba(179, 125, 94, 0.9), rgba(222, 2, 9, 0.55));
}

body.theme-aruba-deluxe .adl-destination-card__media--deep {
    background-image: linear-gradient(135deg, rgba(0, 65, 88, 0.95), rgba(0, 0, 0, 0.75));
}

body.theme-aruba-deluxe .adl-destination-card__body {
    padding: 20px 22px 24px;
}

body.theme-aruba-deluxe .adl-destination-card__body h3 {
    font-size: 18px;
    margin: 0 0 8px;
    color: var(--color-primary);
    font-weight: 600;
}

body.theme-aruba-deluxe .adl-destination-card__body p {
    margin: 0;
    font-size: 14px;
    color: #5e6d77;
}

.filter-wrapper .filter-item-list .single-item a:hover,
.filter-wrapper .filter-item-list .single-item a.active {
    border-color: #ffffff14;
}

body.theme-aruba-deluxe .adl-split {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 32px;
    align-items: center;
}

body.theme-aruba-deluxe .adl-about__media {
    position: relative;
}

body.theme-aruba-deluxe .adl-about__image {
    border-radius: 24px;
    min-height: 360px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 25px 60px rgba(12, 32, 44, 0.2);
}

body.theme-aruba-deluxe .adl-about__card {
    position: absolute;
    right: -20px;
    bottom: -20px;
    background: #ffffff;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 18px 40px rgba(12, 32, 44, 0.2);
    max-width: 260px;
}

body.theme-aruba-deluxe .adl-pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0 26px;
}

body.theme-aruba-deluxe .adl-pill-list span {
    padding: 8px 14px;
    border-radius: 999px;
    background: #f5f0ec;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 12px;
}

body.theme-aruba-deluxe .adl-section__header {
    max-width: 620px;
    margin-bottom: 32px;
}

body.theme-aruba-deluxe .adl-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 22px;
}

body.theme-aruba-deluxe .adl-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(12, 32, 44, 0.12);
}

body.theme-aruba-deluxe .adl-card__media {
    height: 190px;
    background-size: cover;
    background-position: center;
}

body.theme-aruba-deluxe .adl-card__media--warm {
    background: linear-gradient(135deg, rgba(243, 177, 140, 0.7), rgba(15, 51, 66, 0.3));
}

body.theme-aruba-deluxe .adl-card__media--cool {
    background: linear-gradient(135deg, rgba(108, 163, 195, 0.7), rgba(15, 51, 66, 0.35));
}

body.theme-aruba-deluxe .adl-card__media--sunset {
    background: linear-gradient(135deg, rgba(255, 152, 128, 0.7), rgba(15, 51, 66, 0.4));
}

body.theme-aruba-deluxe .adl-card__body {
    padding: 20px;
}

body.theme-aruba-deluxe .adl-card__meta {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    margin-top: 14px;
}

body.theme-aruba-deluxe .adl-price {
    color: var(--color-accent);
}

body.theme-aruba-deluxe .adl-section__actions {
    margin-top: 28px;
}

body.theme-aruba-deluxe .adl-destination__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

body.theme-aruba-deluxe .adl-destination {
    background: #ffffff;
    border-radius: 18px;
    padding: 16px;
    display: grid;
    gap: 14px;
    box-shadow: 0 16px 36px rgba(12, 32, 44, 0.1);
}

body.theme-aruba-deluxe .adl-destination__media {
    border-radius: 16px;
    height: 160px;
    background-size: cover;
    background-position: center;
}

body.theme-aruba-deluxe .adl-destination__media--gold {
    background: linear-gradient(135deg, rgba(242, 200, 120, 0.7), rgba(15, 51, 66, 0.3));
}

body.theme-aruba-deluxe .adl-destination__media--deep {
    background: linear-gradient(135deg, rgba(94, 135, 165, 0.7), rgba(15, 51, 66, 0.4));
}

body.theme-aruba-deluxe .adl-benefits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

body.theme-aruba-deluxe .adl-benefit {
    padding: 20px;
    border-radius: 16px;
    background: #f8f4f1;
}

body.theme-aruba-deluxe .adl-testimonial__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

body.theme-aruba-deluxe .adl-testimonial {
    background: #ffffff;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 14px 36px rgba(12, 32, 44, 0.1);
}

body.theme-aruba-deluxe .adl-cta__card {
    background: linear-gradient(120deg, var(--color-primary), var(--color-primary));
    color: #ffffff;
    border-radius: 28px;
    padding: 36px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

body.theme-aruba-deluxe .adl-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

@media (max-width: 991px) {
    body.theme-aruba-deluxe .adl-hero__content {
        grid-template-columns: 1fr;
    }

    body.theme-aruba-deluxe .adl-hero__panel {
        max-width: 520px;
    }

    body.theme-aruba-deluxe .adl-search__form {
        grid-template-columns: 1fr;
    }

    body.theme-aruba-deluxe .adl-split {
        grid-template-columns: 1fr;
    }

    body.theme-aruba-deluxe .adl-about__card {
        position: static;
        margin-top: 16px;
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    body.theme-aruba-deluxe .adl-hero {
        padding: 100px 0 120px;
    }

    body.theme-aruba-deluxe .adl-search {
        margin-top: -60px;
    }

    body.theme-aruba-deluxe .adl-cta__card {
        padding: 26px;
    }
}

@media (max-width: 767px) {
    body.theme-aruba-deluxe .adl-hero__content {
        gap: 20px;
    }

    body.theme-aruba-deluxe .adl-hero__text p {
        font-size: 16px;
    }

    body.theme-aruba-deluxe .adl-hero__badges {
        gap: 6px;
    }

    body.theme-aruba-deluxe .adl-hero__badges span {
        font-size: 11px;
        padding: 6px 10px;
    }

    body.theme-aruba-deluxe .adl-search__card {
        padding: 18px;
    }

    body.theme-aruba-deluxe .adl-search__form .adl-btn {
        width: 100%;
    }

    body.theme-aruba-deluxe .adl-section__header {
        margin-bottom: 20px;
    }

    body.theme-aruba-deluxe .adl-grid,
    body.theme-aruba-deluxe .adl-destination__grid,
    body.theme-aruba-deluxe .adl-benefits__grid,
    body.theme-aruba-deluxe .adl-testimonial__grid {
        gap: 16px;
    }

    body.theme-aruba-deluxe .adl-card__media {
        height: 170px;
    }

    body.theme-aruba-deluxe .adl-destination__media {
        height: 140px;
    }

    body.theme-aruba-deluxe .adl-cta__actions {
        width: 100%;
    }

    body.theme-aruba-deluxe .adl-cta__actions .adl-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    body.theme-aruba-deluxe .adl-hero {
        padding: 90px 0 110px;
    }

    body.theme-aruba-deluxe .adl-search {
        margin-top: -40px;
    }

    body.theme-aruba-deluxe .adl-search__tabs {
        gap: 8px;
    }

    body.theme-aruba-deluxe .adl-search__tabs a {
        font-size: 12px;
        padding: 6px 12px;
    }

    body.theme-aruba-deluxe .adl-about__image {
        min-height: 260px;
    }

    body.theme-aruba-deluxe .adl-cta__card {
        padding: 22px;
    }

    body.theme-aruba-deluxe .bc_search_boat .bc_form_search,
    body.theme-aruba-deluxe .bc_search_tour .bc_form_search {
        padding-bottom: 10px;
    }

    body.theme-aruba-deluxe .bc_search_boat .topbar-search,
    body.theme-aruba-deluxe .bc_search_tour .topbar-search {
        flex-direction: column;
        align-items: flex-start;
    }

    body.theme-aruba-deluxe .bc_search_boat .bc-list-item .control,
    body.theme-aruba-deluxe .bc_search_tour .bc-list-item .control {
        width: 100%;
        justify-content: space-between;
    }
}

/* Search Pages: Boat + Tour */
body.theme-aruba-deluxe .bc_search_boat .bc_banner,
body.theme-aruba-deluxe .bc_search_tour .bc_banner {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

body.theme-aruba-deluxe .bc_search_boat .bc_banner::before,
body.theme-aruba-deluxe .bc_search_tour .bc_banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(8, 30, 42, 0.8), rgba(8, 30, 42, 0.4));
}

body.theme-aruba-deluxe .bc_search_boat .bc_banner h1,
body.theme-aruba-deluxe .bc_search_tour .bc_banner h1 {
    position: relative;
    color: #ffffff;
    font-family: "Playfair Display", serif;
    font-size: clamp(32px, 4.6vw, 52px);
    z-index: 1;
}

body.theme-aruba-deluxe .bc_search_boat .bc_form_search,
body.theme-aruba-deluxe .bc_search_tour .bc_form_search {
    margin-top: -60px;
    padding-bottom: 30px;
}

body.theme-aruba-deluxe .bc_search_boat .bc_form_search .bc_form,
body.theme-aruba-deluxe .bc_search_tour .bc_form_search .bc_form {
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(12, 32, 44, 0.18);
}

body.theme-aruba-deluxe .bc_search_boat .list-item .item-loop-wrap,
body.theme-aruba-deluxe .bc_search_tour .list-item .item-loop-wrap {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(12, 32, 44, 0.12);
}

body.theme-aruba-deluxe .bc_search_boat .list-item .item-loop-wrap .thumb-image img,
body.theme-aruba-deluxe .bc_search_tour .list-item .item-loop-wrap .thumb-image img {
    border-radius: 16px 16px 0 0;
}

body.theme-aruba-deluxe .bc_search_boat .topbar-search,
body.theme-aruba-deluxe .bc_search_tour .topbar-search {
    align-items: center;
    gap: 16px;
    padding: 12px 0 20px;
}

body.theme-aruba-deluxe .bc_search_boat .topbar-search h2,
body.theme-aruba-deluxe .bc_search_tour .topbar-search h2 {
    font-weight: 700;
    color: var(--color-primary);
}

body.theme-aruba-deluxe .bc_search_boat .bc-list-item,
body.theme-aruba-deluxe .bc_search_tour .bc-list-item {
    display: block;
}

body.theme-aruba-deluxe .bc_search_boat .bc-list-item .control,
body.theme-aruba-deluxe .bc_search_tour .bc-list-item .control {
    display: flex;
    align-items: center;
    gap: 12px;
}

body.theme-aruba-deluxe .bc_search_boat .bc-list-item .dropdown,
body.theme-aruba-deluxe .bc_search_tour .bc-list-item .dropdown {
    background: #ffffff;
    border-radius: 999px;
    border: 1px solid rgba(15, 51, 66, 0.12);
    padding: 6px 12px;
}

body.theme-aruba-deluxe.aruba-dark .bc_search_boat .bc-list-item .dropdown,
body.theme-aruba-deluxe.aruba-dark .bc_search_tour .bc-list-item .dropdown {
    background: #122431;
    border-color: rgba(255, 255, 255, 0.12);
}

body.theme-aruba-deluxe.aruba-dark .bc_search_boat .bc-list-item .dropdown-toggle,
body.theme-aruba-deluxe.aruba-dark .bc_search_tour .bc-list-item .dropdown-toggle {
    color: #ffffff;
}

body.theme-aruba-deluxe.aruba-dark .bc_search_boat .bc-list-item .dropdown-menu,
body.theme-aruba-deluxe.aruba-dark .bc_search_tour .bc-list-item .dropdown-menu {
    background: #132633;
    border-color: rgba(255, 255, 255, 0.12);
}

body.theme-aruba-deluxe.aruba-dark .bc_search_boat .bc-list-item .dropdown-item,
body.theme-aruba-deluxe.aruba-dark .bc_search_tour .bc-list-item .dropdown-item {
    color: #e6edf3;
}

body.theme-aruba-deluxe.aruba-dark .dropdown-menu .dropdown-item {
    color: #e6edf3;
}

body.theme-aruba-deluxe.aruba-dark .bc_wrap .bc-list-item .topbar-search .control .item .dropdown .dropdown-item {
    color: #ffffff !important;
}

body.theme-aruba-deluxe.aruba-dark .bc_search_boat .bc-list-item .dropdown-item:hover,
body.theme-aruba-deluxe.aruba-dark .bc_search_tour .bc-list-item .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

body.theme-aruba-deluxe.aruba-dark .bc_search_boat .topbar-search .item a,
body.theme-aruba-deluxe.aruba-dark .bc_search_tour .topbar-search .item a,
body.theme-aruba-deluxe.aruba-dark .bc_search_boat .topbar-search .item-title,
body.theme-aruba-deluxe.aruba-dark .bc_search_tour .topbar-search .item-title {
    color: #ffffff;
}

body.theme-aruba-deluxe.aruba-dark .bc_wrap .bc_search_tour .bc-list-item .topbar-search .text,
body.theme-aruba-deluxe.aruba-dark .bc_wrap .bc_search_boat .bc-list-item .topbar-search .text {
    color: #ffffff !important;
}

body.theme-aruba-deluxe .bc_search_boat .bc-list-item .dropdown-toggle,
body.theme-aruba-deluxe .bc_search_tour .bc-list-item .dropdown-toggle {
    font-weight: 600;
    font-size: 13px;
    color: var(--color-primary);
    border: none !important;
    box-shadow: none !important;
    padding: 0;
}

body.theme-aruba-deluxe .bc_filter {
    background: #ffffff;
    border-radius: 18px;
    padding: 20px 18px;
    box-shadow: 0 16px 36px rgba(12, 32, 44, 0.12);
    position: sticky;
    top: 110px;
}

body.theme-aruba-deluxe.aruba-dark .bc_filter {
    background: #122431;
}

body.theme-aruba-deluxe.aruba-dark .bc_filter,
body.theme-aruba-deluxe.aruba-dark .bc_filter .item-title,
body.theme-aruba-deluxe.aruba-dark .bc_filter .item-title h3,
body.theme-aruba-deluxe.aruba-dark .bc_filter .item-title i,
body.theme-aruba-deluxe.aruba-dark .bc_filter .filter-title,
body.theme-aruba-deluxe.aruba-dark .bc_filter .item-content,
body.theme-aruba-deluxe.aruba-dark .bc_filter .bc-checkbox label,
body.theme-aruba-deluxe.aruba-dark .bc_filter .render,
body.theme-aruba-deluxe.aruba-dark .bc_filter .form-control,So
body.theme-aruba-deluxe.aruba-dark .bc_filter .form-control::placeholder {
    color: #ffffff;
}

body.theme-aruba-deluxe.aruba-dark .bc_filter .item-title h3,
body.theme-aruba-deluxe.aruba-dark .bc_filter .filter-title,
body.theme-aruba-deluxe.aruba-dark .bc_filter .item-title i {
    font-weight: 700;
}

body.theme-aruba-deluxe .bc_wrap .bc_search_tour .bc_filter {
    border-radius: 18px !important;
}

body.theme-aruba-deluxe .bc_wrap .bc-list-item .topbar-search .control .item .dropdown .dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    border-radius: 999px;
    cursor: pointer;
}


body.theme-aruba-deluxe .bc_filter .filter-title {
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 11px;
    color: rgba(15, 51, 66, 0.6);
    margin-bottom: 16px;
    font-weight: 700;
}

body.theme-aruba-deluxe .bc_filter .g-filter-item {
    border-top: 1px solid rgba(15, 51, 66, 0.08);
    padding-top: 16px;
    margin-top: 16px;
}

body.theme-aruba-deluxe .bc_filter .g-filter-item:first-of-type {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

body.theme-aruba-deluxe .bc_filter .item-title h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-primary);
}

body.theme-aruba-deluxe .bc_filter .item-title i {
    color: rgba(15, 51, 66, 0.6);
}

body.theme-aruba-deluxe .bc_filter .item-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: color 0.2s ease;
}

body.theme-aruba-deluxe .bc_filter .item-title:hover h3 {
    color: var(--color-primary);
}

body.theme-aruba-deluxe .bc_filter .item-title i {
    transition: transform 0.2s ease;
}

body.theme-aruba-deluxe .bc_filter .item-title.active i,
body.theme-aruba-deluxe .bc_filter .item-title[aria-expanded="true"] i {
    transform: rotate(180deg);
}

body.theme-aruba-deluxe .bc_filter .item-content {
    transition: max-height 0.25s ease, opacity 0.25s ease;
}

body.theme-aruba-deluxe .bc_filter .bc-checkbox label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--color-primary);
}

body.theme-aruba-deluxe .bc_filter .bc-checkbox .checkmark {
    border-radius: 6px;
}

body.theme-aruba-deluxe .bc_filter .btn-apply-price-range {
    margin-top: 12px;
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--color-primary);
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 11px;
}

body.theme-aruba-deluxe .bc_filter .btn-apply-price-range:hover {
    color: #ffffff;
    opacity: 0.9;
}

body.theme-aruba-deluxe .ajax-search-result .list-item .row {
    row-gap: 22px;
}

body.theme-aruba-deluxe .topbar-search .result-count {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 14px;
}

body.theme-aruba-deluxe.aruba-dark .topbar-search .result-count {
    color: #ffffff;
}

body.theme-aruba-deluxe .item-loop-wrap .thumb-image img,
body.theme-aruba-deluxe .item-tour.item-loop-wrap .thumb-image img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

@media (max-width: 991px) {
    body.theme-aruba-deluxe .item-loop-wrap .thumb-image img,
    body.theme-aruba-deluxe .item-tour.item-loop-wrap .thumb-image img {
        height: 180px;
    }
}

@media (max-width: 576px) {
    body.theme-aruba-deluxe .item-loop-wrap .thumb-image img,
    body.theme-aruba-deluxe .item-tour.item-loop-wrap .thumb-image img {
        height: 160px;
    }
}

body.theme-aruba-deluxe .item-loop-wrap .card-cta .btn-primary,
body.theme-aruba-deluxe .item-tour.item-loop-wrap .card-cta .btn-primary {
    background: var(--color-accent);
    border: none;
}

body.theme-aruba-deluxe .item-loop-wrap .card-cta .btn-primary:hover,
body.theme-aruba-deluxe .item-tour.item-loop-wrap .card-cta .btn-primary:hover {
    opacity: 0.92;
}

body.theme-aruba-deluxe .item-loop-wrap,
body.theme-aruba-deluxe .item-tour.item-loop-wrap {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

body.theme-aruba-deluxe .item-loop-wrap:hover,
body.theme-aruba-deluxe .item-tour.item-loop-wrap:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 44px rgba(12, 32, 44, 0.16);
}

body.theme-aruba-deluxe .item-loop-wrap .thumb-image img,
body.theme-aruba-deluxe .item-tour.item-loop-wrap .thumb-image img {
    transition: transform 0.35s ease;
}

body.theme-aruba-deluxe .item-loop-wrap:hover .thumb-image img,
body.theme-aruba-deluxe .item-tour.item-loop-wrap:hover .thumb-image img {
    transform: scale(1.03);
}

body.theme-aruba-deluxe .item-loop-wrap.skeleton-loading,
body.theme-aruba-deluxe .item-tour.item-loop-wrap.skeleton-loading {
    background: linear-gradient(110deg, rgba(15, 51, 66, 0.05) 8%, rgba(15, 51, 66, 0.12) 18%, rgba(15, 51, 66, 0.05) 33%);
    background-size: 200% 100%;
    animation: adl-skeleton 1.2s linear infinite;
    min-height: 260px;
}

body.theme-aruba-deluxe .item-loop-wrap.skeleton-loading * ,
body.theme-aruba-deluxe .item-tour.item-loop-wrap.skeleton-loading * {
    opacity: 0;
}

@keyframes adl-skeleton {
    to {
        background-position-x: -200%;
    }
}

body.theme-aruba-deluxe .bc_filter__mobile-toggle {
    display: none;
    width: 100%;
    margin-bottom: 16px;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--color-primary);
    color: #ffffff;
    font-weight: 600;
    text-align: center;
}

/* Map search bar (radio-like filters) */
body.theme-aruba-deluxe .bc_form_search_map .filter-item {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(0, 65, 88, 0.85);
    border-radius: 10px;
}

body.theme-aruba-deluxe .bc_form_search_map .filter-item .form-group {
    margin: 0;
    padding: 10px 14px;
}

body.theme-aruba-deluxe .bc_form_search_map .filter-item .field-icon,
body.theme-aruba-deluxe .bc_form_search_map .filter-item .fa-angle-down {
    color: var(--color-secondary);
    font-size: 14px;
}

body.theme-aruba-deluxe .bc_form_search_map .filter-item .form-content,
body.theme-aruba-deluxe .bc_form_search_map .filter-item .form-content input,
body.theme-aruba-deluxe .bc_form_search_map .filter-item .form-content .smart-search-location,
body.theme-aruba-deluxe .bc_form_search_map .filter-item .form-content .smart-select,
body.theme-aruba-deluxe .bc_form_search_map .filter-item .check-in-render,
body.theme-aruba-deluxe .bc_form_search_map .filter-item .check-out-render,
body.theme-aruba-deluxe .bc_form_search_map .filter-item .filter-title,
body.theme-aruba-deluxe .bc_form_search_map .filter-item .filter-title span {
    color: #ffffff;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.02em;
}

body.theme-aruba-deluxe .bc_form_search_map .filter-item .form-content input,
body.theme-aruba-deluxe .bc_form_search_map .filter-item .form-content .smart-search-location,
body.theme-aruba-deluxe .bc_form_search_map .filter-item .form-content .smart-select,
body.theme-aruba-deluxe .bc_form_search_map .filter-item .check-in-out {
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
}

body.theme-aruba-deluxe .bc_form_search_map .filter-item .filter-title {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 11px;
}

body.theme-aruba-deluxe .bc_form_search_map .filter-simple .filter-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
@media (max-width: 991px) {
    body.theme-aruba-deluxe .bc_filter__mobile-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
}

/* Aruba Deluxe Footer */
body.theme-aruba-deluxe .bc_footer {
    background: var(--color-primary);
    color: #e6edf3;
    padding-top: 40px;
}

body.theme-aruba-deluxe .bc_footer .mailchimp {
    background: transparent;
    border-bottom: 1px solid rgba(230, 237, 243, 0.12);
    padding-bottom: 32px;
    margin-bottom: 32px;
}

body.theme-aruba-deluxe .bc_footer .mailchimp .media {
    display: flex;
    align-items: center;
    gap: 16px;
}

body.theme-aruba-deluxe .bc_footer .mailchimp .media-left i {
    font-size: 32px;
    color: var(--color-accent);
}

body.theme-aruba-deluxe .bc_footer .mailchimp .media-heading {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 6px;
}

body.theme-aruba-deluxe .bc_footer .mailchimp p {
    color: rgba(230, 237, 243, 0.75);
}

body.theme-aruba-deluxe .bc_footer .subcribe-form .form-group {
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    padding: 6px;
    align-items: stretch;
}

body.theme-aruba-deluxe .bc_footer .subcribe-form .form-control {
    background: transparent;
    border: none;
    color: #ffffff;
    padding: 10px 12px;
    height: 44px;
    line-height: 24px;
}

body.theme-aruba-deluxe .bc_footer .subcribe-form .btn-submit {
    background: var(--color-accent);
    border: none;
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 0 50px 50px 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 11px;
    height: 68px;
    box-shadow: none;
    line-height: 24px;
    min-width: 140px;
}

body.theme-aruba-deluxe .bc_footer .subcribe-form .btn-submit i {
    margin-left: 6px;
}

body.theme-aruba-deluxe .bc_footer .subcribe-form .btn-submit:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

body.theme-aruba-deluxe .bc_footer .main-footer {
    background: transparent;
}

body.theme-aruba-deluxe .bc_footer .nav-footer .title {
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

body.theme-aruba-deluxe .bc_footer .nav-footer .context,
body.theme-aruba-deluxe .bc_footer .nav-footer .context a {
    color: rgba(230, 237, 243, 0.75);
    font-size: 14px;
}

body.theme-aruba-deluxe .bc_footer .nav-footer .context a:hover {
    color: #ffffff;
}

body.theme-aruba-deluxe .bc_footer .copy-right {
    border-top: 1px solid rgba(230, 237, 243, 0.12);
    margin-top: 32px;
    padding: 18px 0 28px;
    background: transparent;
}

body.theme-aruba-deluxe .bc_footer .copy-right .context {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    color: rgba(230, 237, 243, 0.7);
    font-size: 13px;
}

@media (max-width: 991px) {
    body.theme-aruba-deluxe .bc_footer .subcribe-form .form-group {
        flex-direction: column;
        border-radius: 16px;
    }

    body.theme-aruba-deluxe .bc_footer .subcribe-form .btn-submit {
        width: 100%;
    }

    body.theme-aruba-deluxe .bc_footer .copy-right .context {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Boat booking widget */
body.theme-aruba-deluxe .bc_single_book_wrap {
    position: sticky;
    top: 110px;
}

body.theme-aruba-deluxe .bc_single_book {
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(12, 32, 44, 0.12);
}

body.theme-aruba-deluxe .bc_single_book .form-head {
    background: var(--color-primary);
    color: #ffffff;
    padding: 18px 20px;
}

body.theme-aruba-deluxe .bc_single_book .form-head .price .value {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
}

body.theme-aruba-deluxe .bc_single_book .form-head .price small {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

body.theme-aruba-deluxe .bc_single_book .form-content {
    padding: 18px 20px 20px;
}

body.theme-aruba-deluxe .bc_single_book .form-group {
    border-radius: 14px;
    background: #f8f4f1;
    padding: 14px 16px;
    margin-bottom: 14px;
}

body.theme-aruba-deluxe .bc_single_book .form-group label {
    font-weight: 600;
    color: var(--color-primary);
}

body.theme-aruba-deluxe .bc_single_book .input-number-group {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border-radius: 999px;
    padding: 6px 10px;
    border: 1px solid rgba(15, 51, 66, 0.12);
}

body.theme-aruba-deluxe .bc_single_book .input-number-group .input input {
    width: 54px;
    border: none;
    text-align: center;
    background: transparent;
    color: var(--color-primary);
}

body.theme-aruba-deluxe .bc_single_book .input-number-group i {
    color: var(--color-accent);
    font-size: 18px;
}

body.theme-aruba-deluxe .bc_single_book .nice-select,
body.theme-aruba-deluxe .bc_single_book select.form-control {
    border-radius: 999px;
    border: 1px solid rgba(15, 51, 66, 0.12);
    padding: 8px 14px;
    min-width: 120px;
    background: #ffffff;
}

body.theme-aruba-deluxe .bc_single_book .nice-select {
    position: relative;
    width: 140px;
}

body.theme-aruba-deluxe .bc_single_book .nice-select .list {
    max-height: 220px;
    overflow-y: auto;
    z-index: 30;
    border-radius: 12px;
    box-shadow: 0 14px 28px rgba(12, 32, 44, 0.15);
}

body.theme-aruba-deluxe .bc_single_book .nice-select .list li {
    list-style: none;
}

body.theme-aruba-deluxe .bc_single_book .form-date-field {
    background: #ffffff;
    border: 1px dashed rgba(15, 51, 66, 0.2);
}

body.theme-aruba-deluxe .bc_single_book .form-section-group {
    background: #ffffff;
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 14px;
    border: 1px solid rgba(15, 51, 66, 0.08);
}

body.theme-aruba-deluxe .bc_single_book .form-section-title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(15, 51, 66, 0.6);
    margin-bottom: 10px;
}

body.theme-aruba-deluxe .bc_single_book .extra-price-wrap {
    font-size: 14px;
}

body.theme-aruba-deluxe .bc_single_book .submit-group .btn-primary,
body.theme-aruba-deluxe .bc_single_book .form-send-enquiry .btn-primary {
    width: 100%;
    border-radius: 12px;
    background: var(--color-accent);
    border: none;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 12px;
    padding: 12px 16px;
}

body.theme-aruba-deluxe .bc_single_book .form-send-enquiry {
    padding: 0 20px 20px;
}

@media (max-width: 991px) {
    body.theme-aruba-deluxe .bc_single_book_wrap {
        position: static;
        margin-top: 20px;
    }
}


/* Vendor/Owner card */
body.theme-aruba-deluxe .owner-info.widget-box {
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(12, 32, 44, 0.12);
    padding: 18px 20px;
    margin-bottom: 20px;
}

body.theme-aruba-deluxe .owner-info.widget-box .media {
    display: flex;
    align-items: center;
    gap: 14px;
}

body.theme-aruba-deluxe .owner-info.widget-box .media-left .avatar-cover {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 2px solid rgba(15, 51, 66, 0.12);
}

body.theme-aruba-deluxe .owner-info.widget-box .media-body h4 {
    margin-bottom: 6px;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

body.theme-aruba-deluxe .owner-info.widget-box .media-body .author-link {
    color: var(--color-primary);
}

body.theme-aruba-deluxe .owner-info.widget-box .media-body p {
    margin: 0;
    font-size: 13px;
    color: rgba(15, 51, 66, 0.7);
}

body.theme-aruba-deluxe .owner-info.widget-box .media-body img {
    width: 16px;
    height: 16px;
}

/* Breadcrumbs (dark mode) */
body.theme-aruba-deluxe.aruba-dark ol.ul {
    background: transparent;
    color: rgba(230, 237, 243, 0.7);
}

body.theme-aruba-deluxe.aruba-dark ol.ul li,
body.theme-aruba-deluxe.aruba-dark ol.ul li a,
body.theme-aruba-deluxe.aruba-dark ol.ul li span {
    color: rgba(230, 237, 243, 0.7);
}

body.theme-aruba-deluxe.aruba-dark ol.ul li.active span {
    color: #ffffff;
}

body.theme-aruba-deluxe.aruba-dark ol.ul li + li:before {
    color: rgba(230, 237, 243, 0.45);
}

@media (max-width: 991px) {
    body.theme-aruba-deluxe .bc_search_boat .bc_form_search,
    body.theme-aruba-deluxe .bc_search_tour .bc_form_search {
        margin-top: 24px;
    }

    body.theme-aruba-deluxe .bc_filter {
        position: static;
        margin-bottom: 20px;
    }
}

/* Boat Detail Page */
body.theme-aruba-deluxe .bc_detail_boat .bc_content {
    padding-top: 30px;
}

body.theme-aruba-deluxe .bc_detail_boat .g-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

body.theme-aruba-deluxe .bc_detail_boat .g-header h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(30px, 4vw, 48px);
}

body.theme-aruba-deluxe .bc_detail_boat .g-header .right {
    margin-left: auto;
}

body.theme-aruba-deluxe .bc_detail_boat .review-score {
    background: #ffffff;
    border-radius: 18px;
    padding: 16px 20px;
    box-shadow: 0 12px 28px rgba(12, 32, 44, 0.12);
}

body.theme-aruba-deluxe .bc_detail_boat .g-boat-feature .item {
    background: #f8f4f1;
    border-radius: 16px;
    padding: 14px 16px;
    display: flex;
    gap: 12px;
    height: 100%;
}

body.theme-aruba-deluxe .bc_detail_boat .g-boat-feature .item .icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(15, 51, 66, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

body.theme-aruba-deluxe .bc_detail_boat .g-overview,
body.theme-aruba-deluxe .bc_detail_boat .g-faq,
body.theme-aruba-deluxe .bc_detail_boat .g-location {
    background: #ffffff;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 12px 30px rgba(12, 32, 44, 0.08);
    margin-bottom: 20px;
}

body.theme-aruba-deluxe .bc_detail_boat .bc-form-book,
body.theme-aruba-deluxe .bc_detail_boat .form-book {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(12, 32, 44, 0.12);
    overflow: hidden;
}

body.theme-aruba-deluxe .bc_detail_boat .bc-form-book .form-head,
body.theme-aruba-deluxe .bc_detail_boat .form-book .form-head {
    background: var(--color-primary);
    color: #ffffff;
}

@media (max-width: 991px) {
    body.theme-aruba-deluxe .bc_detail_boat .g-header {
        flex-direction: column;
        align-items: flex-start;
    }

    body.theme-aruba-deluxe .bc_detail_boat .g-header .right {
        margin-left: 0;
        width: 100%;
    }
}



body.aruba-dark .bc_filter .g-filter-item .item-title,body.aruba-dark .bc_filter .g-filter-item .item-title h4,body.aruba-dark .bc_filter .g-filter-item .item-title h3,body.aruba-dark .bc_filter .g-filter-item .item-title i,body.aruba-dark .bc_filter .g-filter-item .item-title *{color:#fff!important;font-weight:700!important}
/* Fix nice-select list staying open in boat enquiry */
.bc_wrap .bc_detail_boat .bc_single_book .nice-select .list {
    display: none;
}
.bc_wrap .bc_detail_boat .bc_single_book .nice-select.open .list {
    display: block;
}
.bc_wrap .bc_detail_boat .bc_single_book .nice-select {
    z-index: 10;
}
/* Tour enquiry dropdown */
.bc_wrap .bc_detail_tour .bc_single_book .nice-select .list {
    display: none;
    background: #ffffff;
}
.bc_wrap .bc_detail_tour .bc_single_book .nice-select.open .list {
    display: block;
}
.bc_wrap .bc_detail_tour .bc_single_book .nice-select {
    z-index: 10;
}
/* Checkout nice-select dropdown */
.booking-review .nice-select .list {
    display: none;
}
.booking-review .nice-select.open .list {
    display: block;
}
.booking-review .nice-select {
    z-index: 10;
}
.bc_wrap .bc_detail_boat .bc_single_book .bc-boat-enquiry-mini .btn-outline-primary {
    color: #de0209;
    border-color: #de0209;
    background: transparent;
}
.bc_wrap .bc_detail_boat .bc_single_book .bc-boat-enquiry-mini .btn-outline-primary:hover,
.bc_wrap .bc_detail_boat .bc_single_book .bc-boat-enquiry-mini .btn-outline-primary:focus {
    color: #ffffff;
    background: #de0209;
    border-color: #de0209;
}

/* Shared enquiry page styles */
.boat-enquiry-card {
    border: 1px solid #e4e8ef;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
}
.boat-enquiry-card__media img {
    width: 100%;
    display: block;
    height: 220px;
    object-fit: cover;
}
.boat-enquiry-card__body {
    padding: 20px;
}
.boat-enquiry-card__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}
.boat-enquiry-card__price {
    font-size: 20px;
    font-weight: 600;
    color: #1a2b48;
}
.boat-enquiry-card__price small {
    font-size: 13px;
    font-weight: 500;
    color: #5e6d77;
    margin-left: 6px;
}
.boat-enquiry-card__location {
    margin-top: 10px;
    color: #5e6d77;
    font-size: 14px;
}
.boat-enquiry-form {
    background: #fff;
    border-radius: 18px;
    padding: 24px 28px;
    border: 1px solid #e4e8ef;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.boat-enquiry-form__header h2 {
    margin-bottom: 6px;
    font-size: 24px;
}
.boat-enquiry-form__header p {
    margin-bottom: 24px;
    color: #5e6d77;
}
.boat-enquiry-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.boat-enquiry-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}
@media (max-width: 991px) {
    .boat-enquiry-grid {
        grid-template-columns: 1fr;
    }
}

body.aruba-dark .card {
    background: #091c2a;
}
