
:root {
    --cv-blue-dark: #0A3D91;
    --cv-blue: #1557c0;
    --cv-blue-light: #eaf3fd;
    --cv-red: #e10600;
    --cv-yellow: #ffc93c;
    --cv-text-dark: #1f2933;
    --cv-text-muted: #6b7280;
    --cv-bg: #f5f6fb;
}   

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: var(--cv-bg);
    color: var(--cv-text-dark);
}

/* NAVBAR */
.cv-navbar {
    background-color: #003b95;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}
.cv-navbar .nav-link {
    font-weight: 500;
    color: #ffffff;
}
.cv-navbar .nav-link.active,
.cv-navbar .nav-link:hover {
    color: #ec8809;
}
.ms-auto {
margin-left: auto !important;
}

/* HERO */
.cv-hero {
    background: radial-gradient(circle at top left, #c10830 0, #d90e3d 45%, #c00931 100%);
    padding: 4rem 0 3rem;
    position: relative;
    overflow: visible;
    height: 460px;

}
.cv-hero .slider{
    color: #ffffff;
}
.cv-hero::after {
    content: "";
    position: fixed;
    right: -150px;
    top: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 40px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
}
.cv-hero-title {
    font-size: 2.6rem;
    font-weight: 700;
}
.cv-hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
}

/* SEARCH BAR */
.cv-search-card {
    background-color: #ffffff;
    border-radius: 999px;
    padding: 0.75rem 0.75rem;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
    max-width: 1080px;
    margin: 2rem auto 0;
}
.form-group-icon > i.fas:first-child, .form-group-icon .input-icon{
    color: black;
}
@media (max-width: 992px) {
    .cv-search-card {
        border-radius: 20px;
    }
}
.cv-search-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
}
.cv-search-input {
    border: none;
    box-shadow: none;
    font-size: 0.95rem;
    padding-left: 0;
}
.cv-search-input:focus {
    border: none;
    box-shadow: none;
}
.cv-search-divider {
    width: 1px;
    background-color: #e5e7eb;
    height: 40px;
}
.cv-btn-primary {
    background: linear-gradient(135deg, var(--main-color), var(--second-color));
    border: none;
    color: #ffffff;
    font-weight: 600;
    border-radius: 999px;
    padding-inline: 1.8rem;
}
.cv-btn-primary:hover {
    background: linear-gradient(135deg, var(--main-color), var(--second-color));
}
.btn:hover{
    color:white;
}

.cv-badge-top {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background-color: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 0.25rem 0.9rem;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* SECTION TITLES */
.cv-section {
    padding: 3rem 0;
}
.cv-section-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}
.cv-section-subtitle {
    font-size: 0.98rem;
    color: var(--cv-text-muted);
    margin-bottom: 1.8rem;
}

/* DESTINATION CARDS */
.cv-dest-card {
    border-radius: 18px;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cv-dest-card img {
    height: 200px;
    object-fit: cover;
}
.cv-dest-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
}
.cv-dest-name {
    font-weight: 600;
    font-size: 1rem;
}
.cv-dest-country {
    font-size: 0.85rem;
    color: var(--cv-text-muted);
}

/* HOTEL CARDS */
.cv-hotel-card {
    border-radius: 18px;
    overflow: hidden;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 26px rgba(15, 23, 42, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.cv-hotel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}
.cv-hotel-img-wrapper {
    position: relative;
}
.cv-hotel-img-wrapper img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.cv-tag-allin {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 4;
    background-color: rgba(14, 116, 144, 0.92);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
}
.cv-tag-city {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background-color: rgba(15, 23, 42, 0.8);
    color: #ffffff;
    font-size: 0.74rem;
    padding: 0.18rem 0.6rem;
    border-radius: 999px;
}
.cv-hotel-body {
    padding: 0.9rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.cv-hotel-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.cv-hotel-stars {
    color: #facc15;
    font-size: 0.85rem;
    width: 30%;
    text-align: right;
}
.fa-star {
    color: #facc15 !important;
}
.cv-hotel-desc {
    font-size: 0.85rem;
    color: var(--cv-text-muted);
    margin-top: 0.4rem;
    margin-bottom: 0.8rem;
}
.cv-hotel-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
}
.cv-hotel-price-label {
    font-size: 0.75rem;
    color: var(--cv-text-muted);
}
.cv-hotel-price {
    font-size: 1.05rem;
    font-weight: 700;
}

/* Similar blocks: keep identical card height/structure across breakpoints */
.deal_section .deal_item,
.clean-similar-packages .row > [class*="col-"] {
    display: flex;
}
.deal_section .deal_item > .cv-hotel-card,
.clean-similar-packages .row > [class*="col-"] > .cv-hotel-card {
    width: 100%;
}
.deal_section .cv-hotel-img-wrapper,
.clean-similar-packages .cv-hotel-img-wrapper {
    aspect-ratio: 16 / 9;
    min-height: 200px;
    overflow: hidden;
}
.deal_section .cv-hotel-img-wrapper img,
.clean-similar-packages .cv-hotel-img-wrapper img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 991px) {
    .deal_section .cv-hotel-img-wrapper,
    .clean-similar-packages .cv-hotel-img-wrapper {
        min-height: 180px;
    }
}
.footer__payment .cmi{
    font-size: 18px;
} 
/* INFO HOTEL CARD */
.card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, .125);
    box-shadow: none !important;
    border-radius: 10px;
}
.selected-room{
    border-radius: 0px 10px 10px 0px;
}
.room-sticky-price{
    border-radius:10px;
    box-shadow: none !important
    
}

.search-room-detail{
    background-color: #dff0fa;
}
.form-control:disabled, .form-control[readonly] {
    background-color: white !important;
}
.btn-success{
    border-radius: 10px !important;
}

/* PROMO SECTION */
.cv-promo-section {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 2rem 1.5rem;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}
.cv-promo-card {
    background-color: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 26px rgba(15, 23, 42, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.cv-promo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}
.cv-promo-img {
    position: relative;
}
.cv-promo-img img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}
.cv-promo-ribbon {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--cv-red);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.18rem 0.8rem;
    border-radius: 999px;
}
.cv-promo-body {
    padding: 0.9rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.cv-promo-title {
    font-size: 0.98rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}
.cv-promo-info {
    font-size: 0.8rem;
    color: var(--cv-text-muted);
    margin-bottom: 0.6rem;
}
.cv-promo-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #111827;
}
.cv-promo-price-badge {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--cv-red);
}

/* WHY SECTION */
.cv-why-section {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 2rem 2rem 2.2rem;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

/* FEATURES */
.cv-feature-card {
    background-color: #ffffff;
    border-radius: 18px;
    padding: 1.2rem 1rem;
    text-align: center;
    border: 1px solid #e5e7eb;
}
.cv-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--cv-blue-light);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}
.cv-feature-title {
    font-size: 0.95rem;
    font-weight: 600;
}
.cv-feature-text {
    font-size: 0.83rem;
    color: var(--cv-text-muted);
}

/* NEWSLETTER */
.cv-newsletter {
    background: linear-gradient(135deg, var(--main-color), var(--second-color));
    border-radius: 24px;
    padding: 1.8rem 2rem;
    color: #ffffff;
}
.cv-newsletter input {
    border-radius: 999px;
}

/* FOOTER */
.cv-footer-top {
    background-color: #020617;
    color: rgba(248, 250, 252, 0.9);
    padding: 2.5rem 0 1.8rem;
}
.cv-footer-bottom {
    background-color: #000;
    color: rgba(148, 163, 184, 0.9);
    font-size: 0.78rem;
    padding: 0.7rem 0;
}
.cv-footer-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}
.cv-footer-link {
    display: block;
    font-size: 0.83rem;
    color: rgba(226, 232, 240, 0.9);
    text-decoration: none;
    margin-bottom: 0.25rem;
}
.cv-footer-link:hover {
    color: #ffffff;
    text-decoration: underline;
}
/* ============================
MOBILE MENU (design amélioré)
============================ */

.menu-mobile {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 0.6rem 1rem;
    position: sticky;
    top: 0;
    z-index: 9999;
}

.menu-mobile .logo img {
    height: 42px;
    object-fit: contain;
}

.menu-mobile .contact i {
    font-size: 22px;
    color: #1e293b;
    transition: .2s ease;
}

.menu-mobile .contact i:hover {
    color: var(--main-color);
}

/* BURGER */
.line-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 10px;
}

.line {
    width: 26px;
    height: 3px;
    background: #1e293b;
    border-radius: 6px;
    margin: 3px 0;
    transition: all .3s ease;
}

/* MENU SLIDE PANEL */
.menu-container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 82%;
    height: 100vh;
    background: #ffffff;
    box-shadow: -4px 0 16px rgba(0,0,0,0.12);
    padding-top: 70px;
    transition: .35s ease;
    z-index: 99999;
    overflow-y: auto;
}

.menu-container.open {
    right: 0;
}

/* LINKS */
.nav-container ul li {
    padding: 14px 0;
    border-bottom: 1px solid #f1f5f9;
}

.nav-container ul li a {
    color: #1e293b;
    font-size: 17px;
    font-weight: 600;
    display: block;
}

.nav-container ul li a:hover {
    color: var(--main-color);
}

.nav-container ul li .active {
    width: 6px;
    height: 6px;
    background: var(--main-color);
    display: inline-block;
    border-radius: 50%;
    margin-left: 8px;
}

/* TOP CONTACT (email + user icon) */
.menu-mobile .contact {
    display: flex;
    gap: 16px;
}

.menu-mobile .contact a {
    display: flex;
    align-items: center;
}

/* BONUS : effet overlay derrière le menu */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.45);
    z-index: 9990;
    backdrop-filter: blur(2px);
}

.menu-overlay.show {
    display: block;
}
/* ===============================
RESET POSITION HERO HEADER
=============================== */

.new-hero-header {
    position: relative !important;
    width: 100%;
    overflow: visible;
}

/* Texte au centre */
.hero-content {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    color: #fff;
    width: 100%;
}

/* Slogan style */
.hero-title {
    font-size: 38px;
    font-weight: 700;
    color: white;
}
.hero-subtitle {
    font-size: 18px;
    color: #f0f0f0;
}

/* Overlay bleu moderne */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.20), rgba(0,0,0,0.35));
    z-index: 10;
}

/* ===============================
MOTEUR DE RECHERCHE
=============================== */

ul.city-list{
    width: 180%
}
.PeriodOverlay{
    font-weight: bold;
    position:absolute; 
    top:0; 
    left:35px; 
    height:100%; 
    width:calc(100% - 35px);                         
    display:flex; align-items:center; 
    color:#8087a8; 
    pointer-events:none;
    font-size:12px; padding-left:8px; z-index:2;
}
.form-control-new{
    font-weight: bold;
}
.stayNumber{
    font-weight:600;
    font-size: 12px;
}

.search-container {
    z-index: 100;
    top: -216px;
    }
/* La card moteur */
#search .modern-search-content,
#search-engine {
    background: white;
    border-radius: 24px;
    padding: 10px 20px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
    display:none;
}

/* Petit correctif responsive */
@media(max-width: 768px) {
    .hero-content {
        top: 32%;
    }
=
    .cv-hero .slider{
        display: none;
    }
    ul.city-list{
    width: 100% !important;

    }

}


/* =========================
HOTEL LIST – DESKTOP
========================= */

.cv-hotel-list-item {
background: #fff;
border-radius: 14px;
margin-bottom: 20px;
border: 1px solid #e5e7eb;
}

.cv-hotel-row {
display: flex;
gap: 18px;
align-items: stretch;
}

.cv-hotel-image {
width: 260px;
flex-shrink: 0;
position: relative;
}

.cv-hotel-image img {
width: 100%;
height: 190px;
object-fit: cover;
border-radius: 12px;
}

.cv-hotel-info {
flex: 1;
display: flex;
flex-direction: column;
min-width: 0;
}

.cv-hotel-title {
font-size: 2rem;
font-weight: 700;
margin-bottom: 4px;
line-height: 1.2;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}

.cv-stars i {
font-size: 12px;
color: #fbbf24;
}

.cv-hotel-location {
font-size: 14px;
color: #2563eb;
margin-bottom: 6px;
display: -webkit-box;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
overflow: hidden;
}

.cv-hotel-tags {
    margin-bottom: 8px;
    display:flex;
    gap: 8px;
    flex-wrap: wrap;
}

.cv-amenities{
margin-top: 6px;
display: flex;
flex-wrap: wrap;
gap: 6px;
}
.cv-amenity{
background: #f3f4f6;
color: #111827;
font-size: 11px;
padding: 4px 8px;
border-radius: 999px;
display: inline-flex;
align-items: center;
gap: 6px;
}
.cv-amenity i{
font-size: 12px;
color: #0369a1;
}

.cv-badge {
    width: fit-content !important;
    background: #e0f2fe;
    color: #0369a1;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 6px;
    margin-right: 4px;
}

.cv-badge-promo {
background: #fee2e2;
color: #b91c1c;
}

.cv-hotel-desc {
font-size: 13px;
color: #4b5563;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
line-height: 1.4;
}

/* PRICE BOX DESKTOP */
.cv-hotel-pricebox {
text-align: right;
display: flex;
flex-direction: column;
justify-content: space-between;
padding-left: 14px;
border-left: 1px solid #e5e7eb;
gap: 12px;
}

.cv-btn-primary {
background: #2b6fe3;
color: #fff;
border-radius: 10px;
padding: 10px;
font-weight: 700;
text-align: center;
}
.price-item {
    font-size: 2rem !important;
    font-weight: bold !important;
    color: var(--main-color) !important;
}
.cv-hotel-row .img-card-deal {
    margin: 10px;
    border-radius: 999px;
    background: #1d4ed8;
    color: #fff;
    font-weight: 700;
    padding: 6px 12px;
    font-size: 1.6rem;
    line-height: 1;
}
.cv-hotel-info .hotel-options-icons {
    margin-bottom: 8px;
}
.cv-hotel-pricebox .cv-btn-primary {
    width: 100%;
    border-radius: 12px;
    box-shadow: none;
}
.cv-hotel-pricebox .price_list_item {
    margin-bottom: 0;
}

/* =========================
MOBILE – BOOKING STYLE
========================= */

@media (max-width: 768px) {

.cv-hotel-row {
    display: grid;
    grid-template-columns: 110px 1fr;
    grid-template-areas:
    "img info"
    "price price";
    gap: 12px;
}

.cv-hotel-image {
    grid-area: img;
    width: 120px;
}

.cv-hotel-image img {
    height: 170px;
}

.cv-hotel-info {
    grid-area: info;
}

/* ❌ cacher description en mobile */
.cv-hotel-desc {
    display: none;
}

.cv-hotel-title {
    font-size: 1.6rem;
    line-height: 1.2;
}

.cv-hotel-location {
    font-size: 12px;
    color: #6b7280;
}

.cv-hotel-tags {
    margin-top: 6px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    display: flex !important;
    
}

/* ✅ PRIX EN BAS COMME BOOKING */
.cv-hotel-pricebox {
    grid-area: price;
    border-top: 1px solid #e5e7eb;
    padding-top: 10px;
    margin-top: 6px;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    text-align: left;
    padding-left: 0;
    border-left: 0;
}

.cv-hotel-pricebox .price_list_item {
    margin: 0;
}



.cv-hotel-pricebox span {
    font-size: 11px;
    color: #6b7280;
}

.cv-hotel-pricebox .btn {
    padding: 8px 14px;
    font-size: 13px;
    border-radius: 8px;
    white-space: nowrap;
}
.price-item {
    font-size: 1.6rem !important;
}
.cv-hotel-row .img-card-deal {
    font-size: 1.3rem;
}
}
.cv-tax{
    display: block;
    font-size: 10px;
    color: #00bd25 !important;
    text-transform: lowercase;
    
}
/* ===========================
TITRE + ÉTOILES (COMPORTEMENT BOOKING)
=========================== */

.cv-hotel-title {
    display: flex;
    flex-wrap: wrap;              /* autorise le retour à la ligne */
    align-items: center;
    gap: 6px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
}

/* Le texte du titre peut se casser */
.cv-hotel-title {
    white-space: normal;
}

/* ⭐ ÉTOILES */
.cv-hotel-title .cv-stars {
    display: inline-flex;
    flex-shrink: 0;               /* ❗ empêche la coupure des étoiles */
    white-space: nowrap;          /* ❗ toutes les étoiles sur UNE ligne */
}
.cv-room-type
{
    width: fit-content;
    font-size: 12px;
    color: #0369a1;
    /* margin-top: 6px; */
    align-items: center;
    background: #aaffa7;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 6px;
}

/* Mobile */
@media (max-width: 768px) {
    .cv-hotel-title {
        font-size: 15px;
        line-height: 1.2;
    }

    .cv-hotel-title .cv-stars i {
        font-size: 13px;
    }
}
/* ===========================
MOBILE ACTION BAR
=========================== */
.mobile-actions {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.mobile-actions button {
    flex: 1;
    border: 1px solid #ddd;
    background: #fff;
    padding: 8px 0;
    font-weight: 600;
    border-radius: 6px;
}

/* ===========================
MOBILE FILTER OVERLAY
=========================== */
.mobile-filter-overlay {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 9999;
    display: none;
    flex-direction: column;
}

.mobile-filter-overlay.active {
    display: flex;
}

.mobile-filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    font-weight: 700;
    border-bottom: 1px solid #eee;
}

.mobile-filter-header button {
    background: none;
    border: none;
    font-size: 20px;
}

.mobile-filter-content {
    overflow-y: auto;
    padding: 16px;
}

/* HERO DESTINATION */
.cv-destination-hero {
    background: linear-gradient(
        rgba(10,61,145,.75),
        rgba(10,61,145,.75)
    ),
    url('https://media.travelife.io/pictures/sliders/jaamaalafnaa.jpg') center/cover;
    color: #fff;
    padding: 5rem 0 4rem;
}

.cv-destination-title {
    font-size: 2.6rem;
    font-weight: 700;
}

.cv-destination-subtitle {
    font-size: 1.05rem;
    max-width: 680px;
    opacity: .9;
}

/* EDITORIAL */
.cv-editorial {
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 18px 40px rgba(0,0,0,.06);
    margin-top: -60px;
    position: relative;
    z-index: 2;
}

.cv-editorial img {
    border-radius: 16px;
    object-fit: cover;
    height: 280px;
    width: 100%;
}
.cv-amenities{
margin-top: 6px;
display: flex;
flex-wrap: wrap;
gap: 6px;
}
.cv-amenity{
background: #f3f4f6;
color: #111827;
font-size: 11px;
padding: 4px 8px;
border-radius: 999px;
display: inline-flex;
align-items: center;
gap: 6px;
}
.cv-amenity i{
font-size: 12px;
color: #0369a1;
}
.strong-points-item{
    display: flex;
    align-items: center;
    grid-gap: 10px;
    border:none;
    background-color: #ffffff;
    border-radius: 24px;
    padding: 12px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}
.booking-search{
    border-radius: 24px;
}
/* Page Reservation*/
.alert-creditCard {
    display: none;
}

/* =========================
RESULTS TOOLBAR (LIST/MAP/SORT)
========================= */
.cv-results-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 14px 16px;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
}

.cv-results-toolbar-title {
    min-width: 0;
}

.cv-results-toolbar-title #results-header-messages {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
}

.cv-results-toolbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cv-view-switch {
    display: inline-flex;
    gap: 0;
    border: 1px solid #d1d5db;
    border-radius: 11px;
    overflow: hidden;
    background: #f8fafc;
}

.cv-view-btn {
    border: 0 !important;
    border-radius: 0 !important;
    min-width: 92px;
    height: 42px;
    font-weight: 700;
    color: #334155;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.cv-view-btn + .cv-view-btn {
    border-left: 1px solid #d1d5db !important;
}

.cv-view-btn:hover {
    background: #eef2ff;
    color: #1e3a8a;
}

.cv-view-btn.active,
.cv-view-btn:focus {
    background: linear-gradient(135deg, var(--main-color), #1d4ed8);
    color: #fff !important;
    box-shadow: none !important;
}

.cv-sort-wrap {
    min-width: 220px;
}

.cv-sort-select {
    height: 42px;
    border-radius: 11px !important;
    border: 1px solid #d1d5db !important;
    font-weight: 600;
    color: #334155;
    box-shadow: none !important;
}

.cv-sort-select:focus {
    border-color: #3b82f6 !important;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.18) !important;
}

@media (max-width: 991px) {
    .cv-results-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .cv-results-toolbar-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .cv-view-switch {
        width: 100%;
    }

    .cv-view-btn {
        flex: 1 1 50%;
    }

    .cv-sort-wrap {
        min-width: 100%;
    }
}

