:root {
    --primary: #1A746E;
    --primary-dark: #145954;
    --primary-light: #E6F9F8;
    --primary-ultra-light: #F7FDFD;
    --text-dark: #1a2a3a;
    --text-golfe: #C2A367;
    --text-mid: #4a5568;
    --text-light: #718096;
    --border: #CDD7E5;
    --white: #ffffff;
    --bg-light: #f7fafc;
    --gold: #f6ad55;
    --shadow: 0 4px 20px rgba(25, 118, 107, 0.12);
    --shadow-dark: 0 8px 30px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-sm: 8px;
}

@font-face {
    font-family: "MihaFont";
    src: url(Cocon.otf) format("opentype");
    font-weight: normal;
    font-style: normal;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: MihaFont;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-dark) var(--primary-light);
}

*::-webkit-scrollbar {
    width: 12px;
}

*::-webkit-scrollbar-track {
    background: var(--primary-light);
}

*::-webkit-scrollbar-thumb {
    background-color: var(--primary-dark);
    border-radius: 20px;
    border: 3px solid var(--primary-light);
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

.hdric{
    margin-right: 15px;
}
.hdric>.mdi {
    font-size: 18px;
    line-height: 1;
}
.hdsoc>.mdi {
    font-size: 30px;
    line-height: 1;
}

/* ======================== TOP BAR ======================== */
.topbar {
    background: var(--primary-dark);
    color: var(--white);
    padding: 10px 0;
    font-size: 16px;
}
.topbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6px;
}
.topbar-left { display: flex; align-items: center; gap: 10px; }
.topbar-right { display: flex; align-items: center; gap: 14px; }
.topbar a:hover { opacity: 0.85; }
.topbar .phone-link { display: flex; align-items: center; gap: 5px; }
.topbar .phone-link svg { width: 13px; height: 13px; }
.flag { width: 18px; height: 12px; border-radius: 2px; object-fit: cover; }
.topbar-btn {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.4);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s;
    font-family: MihaFont;
    letter-spacing: 1px;
    font-weight: normal;
    line-height: 20px;
}
.MLogin {
    padding: 0;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    line-height: 1;
    font-size: 20px;
}
.LLogin {
    width: 140px;
    margin: auto
}
.Logged {
    background: rgb(221, 244, 221);
    color:#1F5C1F;
    padding: 6px 18px;
    animation: LoggedAn 1s infinite alternate;
}

@keyframes LoggedAn {
    0% {
        background: rgb(54, 161, 54);
        color:white
    }
    100% {
        background: rgb(221, 244, 221);
        color:#1F5C1F
    }
}

@media only screen and  (max-width: 505px) {
    .Logged {
        background: rgb(235, 250, 235) !important;
        color:#2A7E2A !important;
        padding: inherit;
    }
}
.r {
    font-size: 13px;
    margin-left: 4px;
    color: #FF3333;
    display: none;
    border: none;
}
.AccDown {
    display: none;
    background: white;
    width: 150px;
    position: absolute;
    right: 20px;
    top: 50px;
    border-radius: 6px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    z-index: 999999;
}
.AccDown>div {
    text-align: left;
    padding: 10px 15px;
    font-size: 14px;
    border-bottom: 1px solid #D4D4D4;
    cursor: pointer;
    color: #454545;
    transition: 0.3s ease-in-out;
}
.AccDown>div:last-child {
    border: none;
}
.AccDown>div:hover {
    background-color:var(--primary-ultra-light);
    color: var(--primary);
    border-radius: 6px;
}
.topbar-btn:hover { background: rgba(255,255,255,0.35); }
.basket-link { display: flex; align-items: center; gap: 5px; }
.basket-count {
    background: var(--gold);
    color: var(--text-dark);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: normal;
}

/* ======================== HEADER / NAV ======================== */
header {
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 900;
}
.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
}
.logo { display: flex; align-items: center; gap: 8px; font-family: 'Playfair Display', serif; }
.logo-icon {
    height: 80px;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}
.logo-text { font-size: 22px; font-weight: normal; color: var(--primary); }
.logo-sub { font-size: 11px; color: var(--text-light); font-family: 'Poppins', sans-serif; font-weight: 400; display: block; margin-top: -4px; }

nav { display: flex; align-items: center; }
nav ul { display: flex; align-items: center; gap: 25px; }
nav ul li { position: relative; }
nav ul li > a {
    display: flex; align-items: center; gap: 4px;
    padding: 8px 12px;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-dark);
    border-radius: var(--radius-sm);
    transition: all 0.2s;
    white-space: nowrap;
}
nav ul li > a:hover, nav ul li > a.active { background: var(--primary-light); color: var(--primary); }
nav ul li > a .caret { font-size: 20px; margin-left: 2px; }
.mdi-map-marker-radius {
    color:#FF5252;
    font-size: 18px;
    margin-right: 5px;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-dark);
    min-width: 180px;
    padding: 8px 0;
    z-index: 1000;
    border: 1px solid var(--border);
}
.dropdown.wide { display: none; min-width: 220px; columns: 2; gap: 0; padding: 10px 0; }
nav ul li:hover > .dropdown { display: block; }
nav ul li:hover > .dropdown.wide { display: block; }
.dropdown a {
    display: block;
    padding: 8px 18px;
    font-size: 16px;
    color: var(--text-mid);
    transition: all 0.15s;
    break-inside: avoid;
}
.dropdown a:hover { background: var(--primary-light); color: var(--primary); padding-left: 22px; }

.MToggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: var(--primary-ultra-light);
    border: 1px solid var(--primary-dark);
    border-radius: 3px;
    cursor: pointer;
}
.MToggle span { display: block; width: 24px; height: 2px; background: var(--primary-dark); border-radius: 2px; transition: all 0.3s; }

/* ======================== HERO SLIDER ======================== */
.hero {
    position: relative;
    height: 560px;
    overflow: hidden;
}
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    background-size: cover;
    background-position: center;
}
.slide.active { opacity: 1; }
.slide-1 { background: linear-gradient(135deg, #0d47a1 0%, #2196f3 40%, #00bcd4 100%); }
.slide-2 { background: linear-gradient(135deg, #1a237e 0%, #283593 40%, #3949ab 100%); }
.slide-3 { background: linear-gradient(135deg, #006064 0%, #00838f 40%, #26c6da 100%); }
.slide-4 { background: linear-gradient(135deg, #b71c1c 0%, #e53935 40%, #ef9a9a 100%); }
.slide-5 { background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 40%, #66bb6a 100%); }

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.55) 100%);
    z-index: 1;
    background-size: cover;
    background-attachment: scroll;
    background-position: center;
    background-repeat: no-repeat;
    background-origin: content-box;
}

/* Slide scenic elements */
.slide::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background-image: radial-gradient(circle at 20% 80%, white 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, white 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, white 0.5px, transparent 0.5px);
    background-size: 60px 60px, 80px 80px, 40px 40px;
}

.slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
    z-index: 2;
}
.slide-tag {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.4);
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.slide-content h1 {
    font-family: MihaFont;
    font-size: clamp(28px, 5vw, 56px);
    line-height: 1.2;
    margin-bottom: 12px;
    color: white;
    font-weight: normal;
    text-shadow:
        2px 2px 6px rgba(0,0,0,0.8),
        0 0 15px rgba(0,0,0,0.7);
}
.slide-content p {
    font-size: clamp(15px, 3vw, 24px);
    opacity: 0.9;
    max-width: 520px;
    line-height: 1.6;
    margin-bottom: 24px;
    font-weight: 400;
    text-shadow:
        3px 2px 3px rgba(0,0,0,1), 0 0 15px rgba(0,0,0,0.7);
}
.slide-cta {
    background: var(--primary);
    color: white;
    padding: 12px 32px;
    border-radius: 30px;
    font-weight: normal;
    font-size: 14px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(42,171,238,0.4);
}
.slide-cta:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(42,171,238,0.5); }

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}
.dot.active { background: white; width: 24px; border-radius: 4px; }

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.4);
    color: white;
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 30px;
    transition: all 0.2s;
}
.slider-arrow:hover { background: rgba(255,255,255,0.35); }
.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

/* ======================== SEARCH BAR ======================== */
.search-section {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 0px 9px rgba(0,0,0,0.5);
    position: relative;
    z-index: 10;
    width: 70%;
    margin: auto;
    background: white;
    border-radius: 0 0 13px 13px;
}
@media (max-width: 1024px) {
    .search-section {
        width: 100%;
    }
}
@media (max-width: 1300px) {
    .search-section {
        width: 85%;
    }
}
@media (max-width: 1100px) {
    .search-section {
        width: 100%;
    }
}
.search-form-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 20px;
}
.search-form {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}
.search-field {
    flex: 1;
    min-width: 160px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.search-field label {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.8px;
    color: var(--text-dark);
}
.search-field-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    background: var(--bg-light);
    transition: border-color 0.2s;
}
.search-field-inner:focus-within { border-color: var(--primary); background: var(--white); }
.search-field-inner svg { color: var(--primary); flex-shrink: 0; width: 16px; height: 16px; }
.search-field-inner input, .search-field-inner select {
    border: none;
    background: transparent;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: var(--text-dark);
    outline: none;
    width: 100%;
}
.search-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: normal;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    height: 44px;
}
.search-btn:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow); }
.mainsrc {
    width: 100%;
    background: var(--primary);
    color: white;
    border: none;
    padding: 0;
    border-radius: var(--radius-sm);
    font-family: MihaFont;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: all .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    height: 38px;
}
.mainsrc:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow); }
.dsearch {
    background: white;
    position: absolute;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    border-radius: 0 0 5px 5px;
    z-index: 9;
    display: none;
    top: 90px;
    text-align: center;
}
.dsearch>.dst {
    text-align: left;
    padding: 7px 15px;
    font-size: 15px;
    line-height: 24px;
    cursor: pointer;
    color:#424242;
    transition: background-color 0.3s ease-in-out;
    border-bottom: 1px solid #eee;
    font-weight: 400;
}
.dsearch>.dst:hover {
    background:var(--primary);
    color:white;
}
.dsearch>img {
    width: 50%;
    margin: 5px 0;
        margin-bottom: 5px;
    margin-bottom: 20px;
}
.MSrc {
    margin: auto !important;
}

.GuestsP {
    padding: 15px 0 0
}
.guestsb {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 0;
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: normal;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    height: 44px;
    width: 100%;
    text-align: center;
}
.guestsb:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow); }

/* ======================== SECTIONS ======================== */
.section { padding: 60px 20px; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-header { margin-bottom: 36px; }
.section-title {
    font-family: MihaFont;
    font-size: clamp(22px, 3vw, 25px);
    font-weight: normal;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
}
.section-title::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, var(--primary), transparent);
    max-width: 200px;
}
.section-title .title-bar {
    width: 4px; height: 28px;
    background: var(--primary);
    border-radius: 2px;
    flex-shrink: 0;
}
.section-sub { color: var(--text-light); font-size: 16px; margin-top: 6px; }

/* ======================== TOP PROMOS ======================== */
.promos-section { background: var(--primary-ultra-light); margin-top: -25px; padding-top: 80px;}
.promos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}
.promo-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: all 0.3s;
    cursor: pointer;
}
.promo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.promo-img {
    height: 130px;
    overflow: hidden;
    position: relative;
}
.promo-img .img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 36px;
    background-size: cover;
    background-repeat: no-repeat;
}
.promo-badge {
    position: absolute;
    top: 10px; left: 10px;
    background: #e53935;
    color: white;
    font-size: 10px;
    font-weight: normal;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}
.promo-card-body { padding: 12px 14px; }
.promo-city { font-size: 15px; letter-spacing: 0.8px; color: var(--primary-dark); font-weight: 400; }
.promo-name { font-size: 13px; font-weight: normal; color: var(--text-dark); margin-top: 3px; }

/* ======================== HONEYMOON ======================== */
.honeymoon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.hotel-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    transition: all 0.3s;
    border: 1px solid var(--border);
    width: 100%;
}
.hotel-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-dark); }
.hotel-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}
.hotel-img .img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 52px;
    background-size: cover;
    background-repeat: no-repeat;
}
.hotel-stars { display: flex; gap: 2px; }
.hotel-stars span { color: var(--gold); font-size: 15px; }
.hotel-badge-overlay {
    position: absolute;
    bottom: 10px; right: 10px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: normal;
}
.hotel-card-body { padding: 8px 13px; }
.hotel-location { font-size: 13px; letter-spacing: 0.8px; color: var(--primary-dark); font-weight: 400; margin-bottom: 5px; }
.hotel-name { font-size: 16px; font-weight: 400; color: var(--text-dark); margin-bottom: 5px; }
.hotel-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border); }
.hotel-price .from { font-size: 14px; color: var(--text-light); }
.hotel-price .amount { font-size: 22px; font-weight: 400; color: var(--primary-dark); }
.hotel-price .currency { font-size: 13px; font-weight: 400; color: var(--primary-dark); }
.hotel-price .board { font-size: 11px; color: var(--text-light); }
.discount { color:#FF2929; font-size: 15px; text-decoration: line-through; }
.discval {
    position: absolute;
    background: rgba(186, 238, 186, 0.8);
    color:#165A16;
    top: 15px;
    padding: 4px 5px;
    font-size: 15px;
    line-height: 1;
}

.btn-discover {
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 400;
    transition: all 0.2s;
    white-space: nowrap;
}
.btn-discover:hover { background: var(--primary-dark); }

/* ======================== CAROUSEL ======================== */
.carousel-wrapper { position: relative; }
.carousel-track-outer { overflow: hidden; border-radius: var(--radius); }
.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}
.carousel-track:active { cursor: grabbing; }
.carousel-track .hotel-card { flex: 0 0 280px; }
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--primary);
    color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    z-index: 5;
    font-size: 30px;
    box-shadow: var(--shadow);
    transition: all 0.2s;
}
.carousel-btn:hover { background: var(--primary); color: white; }
.carousel-btn.prev-btn { left: -20px; }
.carousel-btn.next-btn { right: -20px; }

/* ======================== SERVICES SECTION ======================== */
.services-section { background: var(--text-dark); color: white; }
.services-section .section-title { color: white; }
.services-section .section-title::after { background: linear-gradient(to right, var(--primary), transparent); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 36px;
}
.service-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}
.service-card:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-4px); }
.service-icon { font-size: 40px; margin-bottom: 14px; display: block; }
.service-name { font-size: 15px; font-weight: normal; }

/* ======================== FOOTER ======================== */
footer {
    background: #111827;
    color: rgba(255,255,255,0.8);
    padding: 60px 20px 0;
}
.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 3fr 1.5fr 1.5fr 1.5fr;
    gap: 45px;
}
.footer-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.footer-logo-icon { width: 40px; height: 40px; background: var(--primary); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: white; font-weight: normal; font-family: 'Playfair Display', serif; font-size: 16px; }
.footer-logo-text { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: normal; color: white; }
.footer-desc { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.6); margin-bottom: 20px; color: white; margin-top: 35px; }
.AddrLab {
    font-size:15px;font-weight:400;color:var(--text-golfe);margin-bottom:3px;letter-spacing:0.8px;
}
.footer-h { font-size: 16px; font-weight: 400; color: var(--text-golfe); margin-bottom: 18px; letter-spacing: 0.8px; }
.footer-list li { margin-bottom: 10px; }
.footer-list a { font-size: 16px; color: white; transition: color 0.2s; display: flex; align-items: center; gap: 6px; }
.footer-list a:hover { color: var(--text-golfe); }
.footer-list a::before { content: '›'; color: var(--text-golfe); font-size: 16px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 15px; color: white; }
.footer-contact-item>span {
    font-size: 17px
}
.footer-contact-icon { color: var(--primary); font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.newsletter-form { display: flex; gap: 8px; margin-top: 12px; }
.newsletter-input {
    flex: 1;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    outline: none;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-input:focus { border-color: var(--primary); }
.newsletter-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: normal;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}
.newsletter-btn:hover { background: var(--primary-dark); }
.payment-icons { display: flex; gap: 10px; margin-top: 16px; }
.payment-icon {
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: normal;
    color: white;
    letter-spacing: 1px;
}
.footer-bottom {
    max-width: 1280px;
    margin: 40px auto 0;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    font-size: 15px;
    color: rgba(255,255,255,0.4);
    font-weight: 400
}
.footer-bottom a { color: var(--text-golfe); }

/* ======================== LOGIN/SIGNUP MODAL ======================== */
.ErrMsg {
    font-size: 15px;
    color: #E00000;
    text-align: center;
    background: #FFDBDB;
    margin: auto;
    width: 100%;
    font-weight: normal;
    padding: 10px 0;
    padding-top: 15px;
    margin-bottom: 10px;
}
.ErrClose, .ErrLClose {
    background: #FE5461;
    color: white;
    padding: 6px 20px;
    border-radius: 4px;
    font-size: 13px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    margin: 15px 0 5px 0;
    border: 1px solid #FE5461;
}
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
    background: white;
    border-radius: 16px;
    width: 100%;
    max-width: 440px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transform: translateY(20px) scale(0.97);
    transition: transform 0.3s;
    text-align: center;
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal-header {
    background: var(--primary-dark);
    color: white;
    padding: 13px 13px 10px;
    position: relative;
}
.modal-header h2 { font-family: 'MihaFont', serif; font-size: 19px; font-weight: 400; text-align: left; }
.modal-header p { font-size: 13px; opacity: 0.85; margin-top: 4px; }
.modal-close {
    position: absolute;
    top: 7px; right: 16px;
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 32px; height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
}
.modal-close:hover { background: rgba(255,255,255,0.35); }
.modal-tabs {
    display: flex;
    background: #f8fafc;
    border-bottom: 1px solid var(--border);
}
.modal-tab {
    flex: 1;
    padding: 14px;
    text-align: center;
    font-size: 15px;
    font-weight: 400;
    cursor: pointer;
    color: var(--text-light);
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}
.modal-tab.active { color: var(--primary-dark); border-bottom-color: var(--primary-dark); background: white; }
.modal-body { padding: 20px; }
.modal-panel { display: none; }
.modal-panel.active { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { margin-bottom: 16px; text-align: left; }
.form-group label { display: block; font-size: 15px; font-weight: normal; color: var(--text-mid); margin-bottom: 6px; letter-spacing: 0.6px; text-align: left }
.form-control {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    font-family: MihaFont;
    font-size: 15px;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.2s;
    text-align: left;
}
.form-control:focus { border-color: var(--primary); }
.form-select { display: flex; gap: 8px; }
.form-select label { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 500; cursor: pointer; color: var(--text-mid); }
.form-select input[type="radio"] { accent-color: var(--primary); }
.form-check { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 16px; }
.form-check input { accent-color: var(--primary); margin-top: 2px; flex-shrink: 0; }
.form-check label { font-size: 12px; color: var(--text-light); line-height: 1.5; }
.btn-submit {
    width: 100%;
    background: var(--primary);
    color: white;
    border: none;
    padding: 13px;
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: normal;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-submit:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow); }
.form-divider { display: flex; align-items: center; gap: 12px; margin: 16px 0; font-size: 16px}
.form-divider::before, .form-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.form-divider span { font-size: 12px; color: var(--text-light); }
.is_invalid {
    border: 1px solid #FF3D3D !important;
    margin-bottom: 5px;
}
.MdLoad {
    width: 70px
}
.MCaptcha {
    text-align: left;
    margin-bottom: 15px;
    font-size: 15px;
    color: var(--primary-dark);
}
#SignCapt {
    margin-bottom: 15px;
}
#SignCapt>div {
    margin: auto;
}
/* ======================== MOBILE NAV ======================== */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: white;
    box-shadow: 4px 0 20px rgba(0,0,0,0.15);
    z-index: 1500;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s;
    padding: 20px 0;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1400;
    opacity: 0;
    transition: opacity 0.3s;
}
.mobile-nav-overlay.open { opacity: 1; }
.mobile-nav-header { padding: 0 20px 16px; border-bottom: 1px solid var(--border); margin-bottom: 10px; display: flex; align-items: center; justify-content: space-between; }
.mobile-nav-close { background: none; border: none; font-size: 22px; cursor: pointer; color: var(--text-mid); }
.mobile-nav-item a { display: flex; align-items: center; justify-content: space-between; padding: 13px 20px; font-size: 16px; font-weight: 500; color: var(--text-dark); border-bottom: 1px solid #f1f5f9; }
.mobile-nav-item a:hover { background: var(--primary-light); color: var(--primary); }
.mobile-sub-items { background: #f8fafc; }
.mobile-sub-items a { padding-left: 34px; font-size: 16px; font-weight: 400; color: var(--text-mid); }
.mobile-sub-toggle { display: none; }
.mobile-sub-label { display: flex; align-items: center; justify-content: space-between; padding: 13px 20px; font-size: 16px; font-weight: 500; color: var(--text-dark); border-bottom: 1px solid #f1f5f9; cursor: pointer; }
.mobile-sub-label:hover { background: var(--primary-light); color: var(--primary); }
.mobile-sub-label .caret-mobile { transition: transform 0.3s; font-size: 17px; }
.mobile-sub-toggle:checked ~ .mobile-sub-items { display: block; }
.mobile-sub-toggle:checked ~ .mobile-sub-label .caret-mobile { transform: rotate(180deg); }

/* ======================== BACK TO TOP ======================== */
.back-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--primary);
    color: white;
    width: 42px; height: 42px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    z-index: 500;
    font-size: 18px;
}
.back-top.visible { opacity: 1; pointer-events: all; }
.back-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* ======================== RESPONSIVE ======================== */
@media (max-width: 1024px) {
    .footer-inner { grid-template-columns: 1fr 1fr; }
    nav { display: none; }
    .MToggle { display: flex; }
    .mobile-nav { display: block; }
    .mobile-nav-overlay { display: block; }
    .carousel-track .hotel-card { flex: 0 0 260px; }
}

@media (max-width: 768px) {
    .topbar-left .phone-second { display: none; }
    .hero { height: 420px; }
    .slide-content h1 { font-size: 28px; }
    .search-form { flex-direction: column; }
    .search-field { min-width: 100%; }
    .search-tabs { overflow-x: auto; }
    .search-tab { font-size: 12px; padding: 12px 14px; }
    .promos-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
    .honeymoon-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr; }
    .carousel-track .hotel-card { flex: 0 0 85vw; }
    .carousel-btn.prev-btn { left: -10px; }
    .carousel-btn.next-btn { right: -10px; }
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .topbar-right .topbar-btn.pro-access { display: none; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .promos-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ======================== BLOG SECTION ======================== */
.blog-section { background: var(--bg-light); }
.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-dark); }
.blog-img {
    height: 170px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}
.blog-img .img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 52px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
.blog-cat-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--primary);
    color: white;
    font-size: 10px; font-weight: normal;
    padding: 3px 10px; border-radius: 20px;
    text-transform: uppercase; letter-spacing: 0.6px;
}
.blog-body { padding: 16px 18px; display: flex; flex-direction: column; flex: 1; gap: 8px; }
.blog-meta { display: flex; align-items: center; gap: 10px; }
.blog-date {
    display: flex; align-items: center; gap: 5px;
    font-size: 13px; color: var(--text-light); font-weight: 500;
}
.blog-date svg { width: 12px; height: 12px; }
.blog-read-time {
    font-size: 11px; color: var(--text-light);
    background: var(--primary-light); color: var(--primary);
    padding: 2px 8px; border-radius: 10px; font-weight: normal;
}
.blog-title {
    font-size: 15px; font-weight: 400; color: var(--text-dark);
    line-height: 1.45;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-title:hover { color: var(--primary); }
.blog-excerpt {
    font-size: 12.5px; color: var(--text-light); line-height: 1.65;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
    flex: 1;
}
.blog-footer { margin-top: auto; padding-top: 12px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.blog-author { display: flex; align-items: center; gap: 7px; }
.blog-avatar {
    width: 28px; height: 28px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; background: var(--primary-light); flex-shrink: 0;
}
.blog-author-name { font-size: 11px; font-weight: normal; color: var(--text-mid); }
.btn-read-more {
    display: flex; align-items: center; gap: 4px;
    background: var(--primary-light); color: var(--primary);
    padding: 6px 12px; border-radius: 20px;
    transition: all 0.2s; white-space: nowrap;
    border: 1.5px solid var(--primary-light);
    font-size: 15px;
    font-weight: 400;
}
.btn-read-more:hover { background: var(--primary); color: white; border-color: var(--primary); }
.btn-read-more svg { width: 11px; height: 11px; }

@media (max-width: 1024px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .blog-grid { grid-template-columns: 1fr; } }

/* ======= HERO ======= */
.hero {
    position: relative; height: 300px; overflow: hidden;
    background: linear-gradient(135deg, #0d1b2a 0%, #1a3a5c 50%, #2AABEE 100%);
    display: flex; align-items: center; justify-content: center; text-align: center;
}
.hero::before {
    content:''; position:absolute; inset:0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-overlay { position:absolute; inset:0; background:rgba(0,0,0,0.45); }
.hero-content { position:relative; z-index:2; color:white; padding:20px; }
.hero-stars { display:flex; justify-content:center; gap:6px; margin-bottom:14px; }
.hero-stars span { color:var(--primary); font-size:20px; }
.hero-content h1 { font-family:MihaFont; font-size:clamp(28px,4vw,44px); font-weight:700; margin-bottom:10px; }
.hero-content p { font-size:16px; opacity:.85; }
.hero-scroll-btn {
    margin-top:35px; display:inline-flex; align-items:center; justify-content:center;
    background:var(--primary); color:white; width:48px; height:48px;
    border-radius:10px; font-size:20px; cursor:pointer; transition:all .3s;
    border:none; animation: bounce 1.5s infinite;
}
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

/* ======= BREADCRUMB ======= */
.breadcrumb {
    background: white; border-bottom:1px solid var(--border);
    padding:10px 20px;
}
.breadcrumb-inner { max-width:1280px; margin:0 auto; display:flex; align-items:center; gap:8px; font-size:16px; }
.breadcrumb a { color:var(--text-dark); }
.breadcrumb a:hover { color:var(--primary); }
.breadcrumb .sep { color:var(--border); }
.breadcrumb .current { color:var(--primary); font-weight:400; }

/* ======= LAYOUT ======= */
.page-layout {
    max-width:1280px; margin:0 auto; padding:24px 20px;
    display:grid; grid-template-columns:300px 1fr; gap:24px; align-items:start;
}

/* ======= SIDEBAR ======= */
.sidebar {
    background:var(--white); border-radius:var(--radius);
    border:1px solid var(--border); overflow:hidden;
    position:sticky; top:88px;
}
.sidebar-block {
    padding:20px; border-bottom:1px solid var(--border);
}
.sidebar-block:last-child { border-bottom:none; }
.sidebar-label {
    font-size:15px; font-weight:400; color:var(--primary);
    letter-spacing:1px; margin-bottom:12px;
    display:flex; align-items:center; gap:6px;
}
.sidebar-label::before { content:''; display:block; width:3px; height:14px; background:var(--primary); border-radius:2px; }

/* Destination select */
.select-wrap { position:relative; }
.select-wrap select, .select-wrap input {
    width:100%; padding:10px 36px 10px 34px;
    border:1.5px solid var(--border); border-radius:var(--radius-sm);
    font-family:'Poppins',sans-serif; font-size:13px; color:var(--text-dark);
    background:var(--bg-light); outline:none; cursor:pointer;
    appearance:none; -webkit-appearance:none;
    transition:border-color .2s;
}
.select-wrap select:focus, .select-wrap input:focus { border-color:var(--primary); background:white; }
.select-icon { position:absolute; left:10px; top:50%; transform:translateY(-50%); font-size:15px; pointer-events:none; }
.select-arrow { position:absolute; right:10px; top:50%; transform:translateY(-50%); pointer-events:none; color:var(--text-light); font-size:12px; }

/* Date input */
.date-input-wrap { position:relative; }
.date-input-wrap input[type="text"] {
    width:100%; padding:10px 34px 10px 34px;
    border:1.5px solid var(--border); border-radius:var(--radius-sm);
    font-family:'Poppins',sans-serif; font-size:13px; color:var(--text-dark);
    background:var(--bg-light); outline:none; cursor:pointer; transition:border-color .2s;
}
.date-input-wrap input[type="text"]:focus { border-color:var(--primary); }
.date-icon { position:absolute; left:10px; top:50%; transform:translateY(-50%); font-size:15px; }
.date-arrow { position:absolute; right:10px; top:50%; transform:translateY(-50%); color:var(--text-light); font-size:12px; }

/* Counters (chambres/adultes/enfants) */
.counters-row { display:grid; grid-template-columns:1fr 1fr 1fr; gap:8px; align-items:end; }
.counter-group { display:flex; flex-direction:column; gap:4px; }
.counter-label { font-size:13px; font-weight:400; text-transform:uppercase; letter-spacing:.6px; color:var(--text-light); }
.counter-input {
    display:flex; align-items:center; border:1.5px solid var(--border);
    border-radius:var(--radius-sm); overflow:hidden; background:var(--bg-light);
}
.counter-input>div{
    height: 35px;
    font-size: 18px;
    text-align: center;
    margin: auto;
    line-height: 2;
    color:var(--primary-dark)
}

.counter-input input {
    flex:1; text-align:center; border:none; background:transparent;
    font-family:'Poppins',sans-serif; font-size:13px; font-weight:400;
    width:0; outline:none; padding:8px 0;
}
.counter-btn {
    background:none; border:none; width:28px; height:36px;
    display:flex; align-items:center; justify-content:center;
    cursor:pointer; color:var(--text-mid); font-size:16px; font-weight:400;
    transition:all .15s;
}
.counter-btn:hover { background:var(--primary-light); color:var(--primary); }
.guests-icon-btn {
    background:var(--primary); color:white;
    border:none; border-radius:var(--radius-sm); width:36px; height:36px;
    display:flex; align-items:center; justify-content:center;
    cursor:pointer; font-size:16px; margin-top:auto; align-self:flex-end;
    transition:background .2s;
}
.guests-icon-btn:hover { background:var(--primary-dark); }

/* Star checkboxes */
.star-list { display:flex; flex-direction:column; gap:8px; }
.star-check { display:flex; align-items:center; gap:10px; cursor:pointer; }
.star-check input[type="checkbox"] { display:none; }
.checkbox-box {
    width:18px; height:18px; border:2px solid var(--border);
    border-radius:4px; display:flex; align-items:center; justify-content:center;
    transition:all .15s; flex-shrink:0; background:white;
}
.star-check input:checked ~ .checkbox-box { background:var(--primary); border-color:var(--primary); }
.star-check input:checked ~ .checkbox-box::after { content:'✓'; color:white; font-size:11px; font-weight:400; }
.star-row { display:flex; align-items:center; gap:2px; }
.star-row span { color:var(--gold); font-size:20px; }

/* Services checkboxes */
.service-list { display:flex; flex-direction:column; gap:8px; }
.service-check { display:flex; align-items:center; gap:10px; cursor:pointer; }
.service-check input[type="checkbox"] { display:none; }
.service-check input:checked ~ .checkbox-box { background:var(--primary); border-color:var(--primary); }
.service-check input:checked ~ .checkbox-box::after { content:'✓'; color:white; font-size:11px; font-weight:400; }
.service-name { font-size:15px; font-weight:400; color:var(--text-mid); }

/* Search button */
.search-btn {
    width:100%; background:var(--primary); color:white; border:none;
    padding:13px; border-radius:var(--radius-sm);
    font-family:MihaFont; font-size:17px; font-weight:400;
    cursor:pointer; transition:all .2s;
    display:flex; align-items:center; justify-content:center; gap:8px;
}
.search-btn:hover { background:var(--primary-dark); transform:translateY(-1px); box-shadow:var(--shadow); }

/* ======= RESULTS AREA ======= */
.results-area { display:flex; flex-direction:column; gap:16px; }

/* Sort bar */
.sort-bar {
    display:flex; align-items:center; gap:12px;
    background:white; padding:12px 18px; border-radius:var(--radius);
    border:1px solid var(--border);
}
.sort-label { font-size:13px; font-weight:400; color:var(--text-mid); white-space:nowrap; }
.sort-select-wrap { position:relative; }
.sort-select-wrap select {
    padding:8px 32px 8px 10px;
    border:1.5px solid var(--border); border-radius:var(--radius-sm);
    font-family:'Poppins',sans-serif; font-size:13px; color:var(--text-dark);
    background:var(--bg-light); outline:none; cursor:pointer; appearance:none;
    transition:border-color .2s;
}
.sort-select-wrap select:focus { border-color:var(--primary); }
.sort-icon { position:absolute; left:10px; top:50%; transform:translateY(-50%); font-size:14px; }
.sort-arrow { position:absolute; right:8px; top:50%; transform:translateY(-50%); font-size:11px; color:var(--text-light); }
.results-count { margin-left:auto; font-size:13px; color:var(--text-light); white-space:nowrap; }
.results-count strong { color:var(--primary); }

/* ======= HOTEL CARD ======= */
.hotel-card {
    background:white; border-radius:var(--radius);
    border:1px solid var(--border); overflow:hidden;
    box-shadow:0 2px 10px rgba(0,0,0,0.04);
    transition:box-shadow .3s, transform .3s;
    width:100%;
    max-width:100%;
    overflow:hidden;
}
.hotel-card:hover { box-shadow:var(--shadow-dark); transform:translateY(-2px); }

.hotel-card-top { display:flex;
    min-width:0;
    width:100%; }

.hotel-img-wrap {
    position:relative; flex: 0 0 240px;
    width:260px; min-height:220px;
    overflow:hidden;
}
.hotel-img-wrap .img-placeholder {
    width:100%; height:100%; min-height:220px;
    display:flex; align-items:center; justify-content:center;
    font-size:64px;
    background-repeat: no-repeat;
    background-size: cover;
}
.discount-badge {
    position:absolute; top:12px; left:12px;
    background:#ef4444; color:white;
    font-size:16px; font-weight:400;
    padding:4px 9px; border-radius:6px;
}
.hotel-img-wrap .hotel-stars-overlay {
    position:absolute; bottom:10px; left:10px;
    display:flex; gap:2px;
}
.hotel-img-wrap .hotel-stars-overlay span { color:#FFCE0A; font-size:20px; text-shadow: 0px 0px 3px black;}

.h-hotel-info { flex:1; padding:10px 16px; display:flex; flex-direction:column; gap:6px; border-bottom:1px solid var(--border); min-width:0; overflow:hidden; }
.h-hotel-name-row { display:flex; align-items:flex-start; justify-content:space-between; gap:10px; }
.h-hotel-name { font-size:18px; font-weight:400; color:var(--primary-dark); line-height:1.3; overflow:hidden; text-overflow:ellipsis;}
.hotel-actions { display:flex; gap:8px; flex-shrink:0; }
.action-btn {
    width:34px; height:34px; border-radius:var(--radius-sm);
    border:1.5px solid var(--border); background:white;
    display:flex; align-items:center; justify-content:center;
    cursor:pointer; font-size:16px; transition:all .2s;
}
.action-btn:hover { border-color:var(--primary); background:var(--primary-light); }
.action-btn.fav:hover { border-color:#ef4444; background:#fef2f2; }
.h-hotel-location { display:flex; align-items:center; gap:5px; font-size:14px; font-weight:400; color:var(--text-dark); letter-spacing:.5px; }
.h-hotel-location span { font-size:15px; }
.h-hotel-desc { font-size:14px; color:var(--text-mid); line-height:1.6; overflow:hidden; text-overflow:ellipsis; overflow-wrap:break-word;
    word-break:break-word;}
.hotel-amenities { display:flex; align-items:center; gap:10px; margin-top:4px; }
.amenity { font-size:20px; cursor:default; position:relative;color:var(--primary) }
.amenity::after {
    content: attr(data-tip);
    position:absolute; bottom:calc(100% + 6px); left:50%; transform:translateX(-50%);
    background:var(--text-dark); color:white; font-size:14px; padding:4px 8px;
    border-radius:5px; white-space:nowrap; pointer-events:none;letter-spacing: 1px;
    opacity:0; transition:opacity .2s;
}
.amenity:hover::after { opacity:1;  }

/* Board tabs */
.hotel-card-tabs { border-bottom:1px solid var(--border); }
.board-tabs { display:flex; overflow-x:auto; }
.board-tab {
    padding:10px 18px; font-size:15px; font-weight:400;
    color:var(--text-dark); cursor:pointer; white-space:nowrap;
    border-bottom:2px solid transparent; transition:all .2s;
}
.board-tab.active { color:var(--primary); border-bottom-color:var(--primary); font-weight:400; }
.board-tab:hover { color:var(--primary); }
.board-tabs-arrow {
    margin-left: auto;
    padding: 3px 7px;
    cursor: pointer;
    color: var(--text-light);
    display: flex;
    align-items: center;
    flex-shrink: 0;
    font-size: 24px;
}

/* Price footer */
.hotel-card-footer {
    display:flex; align-items:center; padding:8px 8px 8px 15px; gap:12px; flex-wrap:wrap;
}
.price-block { display:flex; align-items:baseline; gap:5px; flex:1; }
.price-current { font-size: 22px; font-weight: 400; color:var(--primary-dark); line-height:1; }
.price-tnd { font-size:13px; font-weight:400; color:var(--primary-dark); }
.price-old { font-size:15px; color:#FF2E2E; text-decoration:line-through; }
.price-old-tnd { font-size:11px; color:#FF2E2E; }
.btn-reserve {
    background:var(--primary-dark); color:white;
    padding:8px 20px; border-radius:5px;
    font-family:MihaFont; font-size:16px; font-weight:400;
    border:none; cursor:pointer; transition:all .2s;
    display:flex; align-items:center; gap:8px;
    white-space:nowrap;
}
.btn-reserve:hover { background:var(--primary-dark); }

/* Room row */
.room-row {
    display:flex; align-items:center; justify-content:space-between;
    padding:9px 18px; background:var(--bg-light);
    font-size:15px; border-top:1px solid var(--border);
}
.room-info { display:flex; align-items:center; gap:8px; cursor: pointer;}
.room-check { width:18px; height:18px; background:var(--primary); border-radius:4px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.nroom-check { width:18px; height:18px; background:var(--border); border-radius:4px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.room-check::after { content:'✓'; color:white; font-size:10px; font-weight:700; }
.nroom-check::after { content:''; }
.room-name { font-weight:500; color:var(--text-dark); }
.dispo-badge {
    font-size: 14px;
    font-weight: 400;
    padding:4px 12px; border-radius:20px;
    letter-spacing:.4px;
}
.BdgCh {
    margin: 5px 0
}

.badge-success {
    font-size: 14px;
    font-weight: 400;
    color: #497F2F;
    background: #E2F1DA;
    padding: .20em .65em;
    line-height: 1;
    text-align: center;
}
.dispo-badge.available { background:#BDF9D2; color:#0C5527; }
.dispo-badge.unavailable { background:#fef2f2; color:#dc2626; }
.dispo-badge.onreq { background:#FFE4BD; color:#C27400; }
.badgetx-danger {font-size:14px;font-weight:500;color:#E95371;line-height: 1;}
.unavailable-bar {
    text-align:center; padding:14px; background:#fef2f2;
    color:#dc2626; font-size:13px; font-weight:600;
    border-top:1px solid #fecaca;
}

/* ======= MOBILE FILTER TOGGLE ======= */
.flic {
    color: var(--primary) !important;
}

.filter-toggle-btn {
    display:none; width:100%; padding:12px; margin-bottom:16px;
    background:var(--primary); color:white; border:none;
    border-radius:var(--radius-sm); font-family:'Poppins',sans-serif;
    font-size:14px; font-weight:600; cursor:pointer;
    align-items:center; justify-content:center; gap:8px;
}

/* ======= RESPONSIVE ======= */
@media (max-width:1024px) {
    .page-layout { grid-template-columns:260px 1fr; gap:16px; }
    nav { display:none; }
    .hamburger { display:flex; }
}
@media (max-width:768px) {
    .page-layout { grid-template-columns:100%; }
    .sidebar { position:static; display:none; }
    .sidebar.open { display:block; }
    .filter-toggle-btn { display:flex; }
    .hotel-card-top { flex-direction:column; }
    .hotel-img-wrap { width:100%; min-height:200px; }
    .hotel-img-wrap .img-placeholder { min-height:200px; }
    .sort-bar { flex-wrap:wrap; gap:8px; }
    .results-count { margin-left:0; }
    .price-current { font-size:22px; }
}
@media (max-width:480px) {
    .board-tab { font-size: 14px; padding: 10px 12px; }
    .hotel-name { font-size:15px; }
}































.room-card {
    background: #F7F9FB;
    margin: 5px;
    margin-bottom: 10px
}

.room-nohdr {
    padding: 0 !important
}

.room-header {
    padding: 0.5rem 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #E4EBF1;
}

.room-label {
    font-size: 17px;
    font-weight: 500;
    color: #00568F;
    display: flex;
    align-items: center;
    gap: 6px;
}

.room-body {
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.field label {
    font-size: 15px;
    font-weight: 500;
    color: #575652;
    letter-spacing: 0.04em;
    text-align: left;
}

.field select {
    background: #ffffff;
    border: 1px solid #c8c7c0;
    border-radius: 5px;
    padding: 8px 10px;
    font-size: 14px;
    color: #1a1a18;
    cursor: pointer;
    width: 100%;
    font-family: inherit;
    margin-top: 5px
}

.field select:focus {
    outline: none;
    border: 1px solid #c8c7c0;
    outline-width: 0;
}

.ages-section {
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: opacity 0.2s;
}

.ages-label {
    font-size: 14px;
    font-weight: 500;
    color: #575652;
    letter-spacing: 0.04em;
    text-align: left;
    border-bottom: 1px solid #9E9E9E;
    padding-bottom: 7px;
    margin: 5px 0;
}

.ages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}
.HfSpr {
    border-top: 1px solid #e0e0e0;
    margin-bottom: 20px;
}
#FDate {
    cursor: pointer;
}

.age-field {
    display: flex;
    flex-direction: column;
    gap: 3px;
    align-items: center;
}

.age-field span {
    font-size: 14px;
    color: #696863;
}

.age-field select {
    width: 100%;
    text-align: center;
    background: #ffffff;
    border: 1px solid #c8c7c0;
    border-radius: 8px;
    padding: 7px 2px;
    font-size: 13px;
    color: #1a1a18;
    font-family: inherit;
    cursor: pointer;
    margin-top: 5px;
}

.age-field select:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    background: #f1f0eb;
}

.age-field select:not(:disabled):focus {
    outline: none;
    border: 1px solid #c8c7c0;
    outline-width: 0;
}

.delete-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #A30000;
    padding: 5px 6px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.15s, background 0.15s;
    font-size: 18px;
    line-height: 1;
    background: white;
}

.delete-btn:hover {
    color: #a32d2d;
    background: #fcebeb;
}

.RBody {
    height: auto;
    overflow-y: auto;
    max-height: 500px
}

.RBody::-webkit-scrollbar {
    width: 5px;
}
.RBody::-webkit-scrollbar-track {
    background: #F8E7E7;
    border-radius: 5px;
}
.RBody::-webkit-scrollbar-thumb {
    background: #a32d2d;
    border-radius: 5px;
}
.RBody::-webkit-scrollbar-thumb:hover {
    background: #8b2424;
}

.modal-footer {
    padding: 10px;
    padding-bottom: 0px;
    border-top: 1px solid #e0dfd8;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    background: white;
}

.AddGRoom {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    background: #0077C7;
    color:white;
    padding: 9px 15px;
    cursor: pointer;
    transition: background 0.15s;
    border-radius: 0 7px;
    border: none;
    font-weight: 400;
    font-family: MihaFont;
    margin-bottom: 10px;
}
.geott {
    padding-bottom: 7px;
}
.choff {
    margin-bottom: 5px;
}
.AddGRoom:hover { background: #00568F; }

.ConfGRooms {
    font-size: 16px;
    font-weight: 400;
    color: white;
    background: #5DA13B;
    border: none;
    border-radius: 0 7px;
    padding: 9px 15px;
    cursor: pointer;
    transition: opacity 0.15s;
    width: 105px;
    font-family: MihaFont;
    margin-bottom: 10px;
}
.ConfGRooms:hover { background: #497F2F; }
.page-wrap { max-width:1280px; margin:0 auto; padding:30px 20px 60px; display:grid; grid-template-columns:360px 1fr; gap:28px; align-items:start; }
.xBook {
    width: 100%;
    text-align: center;
}
