:root {
    --pkl-cyan: #00c8f0;
    --pkl-cyan-soft: rgba(0, 200, 240, 0.14);
    --pkl-navy: #0d1b2a;
    --pkl-navy-2: #061526;
    --pkl-navy-3: #08243d;
    --pkl-text: #f8fbff;
    --pkl-muted: #9fb3c7;
    --pkl-green: #20c764;
    --pkl-orange: #ff8b2c;
    --pkl-gray: #7b8da3;
    --pkl-purple: #8a4dff;
    --pkl-shadow: 0 26px 90px rgba(0, 0, 0, 0.42);
}

body.villas-map-body,
body:has(.pkl-map-page) {
    margin: 0;
    background: #ffffff;
    overflow-x: hidden;
    overflow-y: auto;
    font-family: "Tajawal", "Raleway", Arial, sans-serif;
}

body.villas-map-body .header-one,
body:has(.pkl-map-page) .header-one,
body.villas-map-body .header-main,
body:has(.pkl-map-page) .header-main {
    position: relative;
    z-index: 9999;
    background: #ffffff;
    box-shadow: 0 2px 18px rgba(15, 23, 42, 0.06);
}

body.villas-map-body .header-main-one-wrapper,
body:has(.pkl-map-page) .header-main-one-wrapper {
    min-height: 88px;
    display: flex;
    align-items: center;
}

body.villas-map-body .thumbnail.logo-box img,
body:has(.pkl-map-page) .thumbnail.logo-box img,
body.villas-map-body .logo-box img,
body:has(.pkl-map-page) .logo-box img {
    max-width: 116px;
    max-height: 72px;
    width: auto;
    height: auto;
    object-fit: contain;
}

body.villas-map-body .parent-nav > li > a,
body:has(.pkl-map-page) .parent-nav > li > a,
body.villas-map-body .nav-main-link,
body:has(.pkl-map-page) .nav-main-link {
    color: #111827;
    font-weight: 700;
}

/* Page shell */
.pkl-map-page {
    width: 100%;
    margin: 0;
    padding: 0;
    color: var(--pkl-text);
    background: var(--pkl-navy);
}

.pkl-map-shell {
    display: block;
    width: 100%;
}

.pkl-map-card {
    position: relative;
    width: 100%;
    height: calc(100vh - 88px);
    min-height: 720px;
    overflow: hidden;
    background: radial-gradient(circle at 16% 18%, rgba(0, 200, 240, 0.16), transparent 25%),
        linear-gradient(135deg, var(--pkl-navy-2) 0%, var(--pkl-navy) 48%, var(--pkl-navy-3) 100%);
}

.pkl-map {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.mapboxgl-canvas {
    outline: none;
}

/* Loader */
.pkl-map-loader {
    position: absolute;
    inset: 0;
    z-index: 80;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--pkl-text);
    text-align: center;
    background: radial-gradient(circle at center, rgba(13, 27, 42, 0.74), rgba(4, 14, 28, 0.94));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.pkl-map-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.pkl-map-loader.is-error {
    padding: 30px;
    color: #ffd3d3;
}

.pkl-loader-ring {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.14);
    border-top-color: var(--pkl-cyan);
    animation: pklSpin 0.85s linear infinite;
}

@keyframes pklSpin {
    to { transform: rotate(360deg); }
}

/* Marketing card */
.pkl-booking-alert {
    position: absolute;
    top: 28px;
    right: 28px;
    z-index: 20;
    width: min(500px, calc(100% - 56px));
    padding: 30px 32px;
    color: var(--pkl-text);
    border-radius: 28px;
    border: 2px solid rgba(0, 200, 240, 0.92);
    background: linear-gradient(180deg, rgba(7, 24, 42, 0.94), rgba(8, 30, 52, 0.90));
    box-shadow: 0 0 0 1px rgba(0, 200, 240, 0.12) inset, 0 22px 80px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.pkl-booking-alert::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(rgba(0, 200, 240, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 200, 240, 0.05) 1px, transparent 1px);
    background-size: 28px 28px;
}

.pkl-alert-close {
    position: absolute;
    top: 17px;
    left: 17px;
    z-index: 2;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #dff8ff;
    font-size: 29px;
    line-height: 1;
    cursor: pointer;
    border: 1px solid rgba(0, 200, 240, 0.45);
    background: rgba(0, 200, 240, 0.06);
    transition: 0.18s ease;
}

.pkl-alert-close:hover {
    color: #041522;
    background: var(--pkl-cyan);
}

.pkl-alert-kicker {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--pkl-cyan);
    font-family: "Raleway", "Tajawal", sans-serif;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.42em;
    text-transform: uppercase;
}

.pkl-alert-kicker::after {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--pkl-cyan);
    box-shadow: 0 0 0 8px rgba(0, 200, 240, 0.12);
}

.pkl-booking-alert h2 {
    position: relative;
    z-index: 1;
    margin: 0 0 14px;
    color: #ffffff;
    font-size: clamp(30px, 2.4vw, 44px);
    line-height: 1.15;
    font-weight: 900;
    text-align: right;
}

.pkl-booking-alert p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--pkl-muted);
    font-size: 17px;
    line-height: 1.8;
    text-align: right;
}

.pkl-alert-stat {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 74px;
    margin-top: 26px;
    border-radius: 18px;
    border: 1px solid rgba(0, 200, 240, 0.32);
    background: rgba(0, 200, 240, 0.06);
}

.pkl-alert-stat strong {
    color: var(--pkl-cyan);
    font-size: 44px;
    line-height: 1;
    font-weight: 900;
}

.pkl-alert-stat span {
    color: var(--pkl-muted);
    font-size: 16px;
}

/* Legend */
.pkl-map-legend {
    position: absolute;
    left: 50%;
    bottom: 22px;
    z-index: 25;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 520px;
    max-width: calc(100vw - 40px);
    padding: 13px 18px;
    border-radius: 999px;
    color: var(--pkl-text);
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.88), rgba(0, 55, 104, 0.72));
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.pkl-legend-title,
.pkl-legend-item {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    white-space: nowrap;
    line-height: 1;
}

.pkl-legend-title {
    padding: 10px 14px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    background: rgba(255, 255, 255, 0.08);
}

.pkl-legend-item {
    gap: 8px;
    padding: 10px 12px;
    color: #f8fafc;
    font-size: 13px;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.065);
    border: 1px solid rgba(255, 255, 255, 0.085);
}

.pkl-legend-dot {
    width: 15px;
    height: 15px;
    min-width: 15px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.42);
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.06), 0 8px 20px rgba(0, 0, 0, 0.25);
}

.pkl-legend-dot.available { background: var(--pkl-green); }
.pkl-legend-dot.reserved { background: var(--pkl-orange); }
.pkl-legend-dot.sold { background: var(--pkl-gray); }
.pkl-legend-dot.selected { background: var(--pkl-purple); }

.pkl-map-toast {
    position: absolute;
    right: 18px;
    bottom: 96px;
    z-index: 30;
    max-width: min(440px, calc(100% - 36px));
    padding: 15px 18px;
    border-radius: 18px;
    color: #fff;
    background: rgba(13, 27, 42, 0.94);
    border: 1px solid rgba(0, 200, 240, 0.22);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(18px);
    transform: translateY(18px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s ease;
}

.pkl-map-toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* Popup */
.mapboxgl-popup { pointer-events: auto !important; z-index: 999 !important; }
.mapboxgl-popup-content { padding: 0 !important; border-radius: 26px !important; background: transparent !important; box-shadow: none !important; pointer-events: auto !important; }
.mapboxgl-popup-close-button { display: none !important; }

.pkl-warehouse-popup,
.pkl-warehouse-popup * { pointer-events: auto !important; }

.pkl-warehouse-popup {
    width: min(380px, calc(100vw - 32px));
    overflow: hidden;
    border-radius: 26px;
    color: var(--pkl-text);
    border: 1px solid rgba(0, 200, 240, 0.22);
    background: linear-gradient(180deg, rgba(13, 27, 42, 0.96), rgba(8, 30, 52, 0.92));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(18px);
}

.pkl-popup-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 20px 20px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pkl-popup-head strong {
    color: #ffffff;
    font-size: 25px;
    font-weight: 900;
    font-family: "Raleway", "Tajawal", sans-serif;
}

.pkl-popup-badge {
    padding: 11px 14px;
    border-radius: 999px;
    color: #effff6;
    font-size: 12px;
    font-weight: 900;
    background: rgba(32, 199, 100, 0.16);
    border: 1px solid rgba(32, 199, 100, 0.28);
}

.pkl-popup-body { padding: 16px 20px 20px; }

.pkl-popup-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.pkl-popup-row span { color: var(--pkl-muted); font-size: 15px; font-weight: 700; }
.pkl-popup-row strong { color: #ffffff; font-size: 15px; font-weight: 900; text-align: end; }

.pkl-popup-cta {
    width: 100%;
    min-height: 58px;
    margin-top: 18px;
    border: 0;
    border-radius: 16px;
    color: #041522;
    font-size: 17px;
    font-weight: 900;
    cursor: pointer;
    background: linear-gradient(135deg, var(--pkl-cyan), #64dcff);
    box-shadow: 0 16px 34px rgba(0, 200, 240, 0.28);
    transition: transform 0.18s ease, filter 0.18s ease;
}

.pkl-popup-cta:hover { transform: translateY(-1px); filter: brightness(1.05); }
.pkl-popup-cta:disabled { opacity: 0.62; cursor: not-allowed; background: rgba(148, 163, 184, 0.42); color: #ffffff; box-shadow: none; }

/* Livewire modal */
.mk-booking-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    font-family: "Tajawal", "Raleway", Arial, sans-serif;
}

.mk-booking-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    cursor: pointer;
    background: rgba(4, 14, 28, 0.78);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.mk-booking-panel {
    position: relative;
    z-index: 2;
    width: min(680px, 100%);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    padding: 34px;
    border-radius: 32px;
    color: var(--pkl-text);
    border: 2px solid rgba(0, 200, 240, 0.72);
    background: linear-gradient(180deg, rgba(7, 24, 42, 0.98), rgba(8, 30, 52, 0.96));
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.58);
}

.mk-booking-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(rgba(0, 200, 240, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 200, 240, 0.045) 1px, transparent 1px);
    background-size: 28px 28px;
}

.mk-booking-close {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #dff8ff;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    border: 1px solid rgba(0, 200, 240, 0.45);
    background: rgba(0, 200, 240, 0.06);
    transition: 0.18s ease;
}

.mk-booking-close:hover { color: #041522; background: var(--pkl-cyan); }

.mk-booking-header { padding-left: 56px; text-align: right; }
.mk-booking-kicker { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 10px; color: var(--pkl-cyan); font-family: "Raleway", "Tajawal", sans-serif; font-size: 12px; font-weight: 900; letter-spacing: 0.32em; text-transform: uppercase; }
.mk-booking-kicker::after { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--pkl-cyan); box-shadow: 0 0 0 8px rgba(0, 200, 240, 0.12); }
.mk-booking-header h2 { margin: 0 0 10px; color: #ffffff; font-size: clamp(30px, 4vw, 46px); line-height: 1.1; font-weight: 900; }
.mk-booking-header p { margin: 0; color: var(--pkl-muted); font-size: 16px; line-height: 1.8; }

.mk-selected-warehouse {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 24px 0;
    padding: 18px 20px;
    border-radius: 18px;
    border: 1px solid rgba(0, 200, 240, 0.30);
    background: rgba(0, 200, 240, 0.08);
}

.mk-selected-warehouse span { color: var(--pkl-muted); font-weight: 800; }
.mk-selected-warehouse strong { color: #ffffff; font-family: "Raleway", "Tajawal", sans-serif; font-size: 22px; font-weight: 900; text-align: left; }

.mk-booking-form { display: grid; gap: 22px; }
.mk-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.mk-field { display: grid; gap: 8px; }
.mk-field-full { grid-column: 1 / -1; }
.mk-field span { color: #dfeaf5; font-size: 14px; font-weight: 900; }

.mk-field input,
.mk-field textarea {
    width: 100%;
    min-height: 54px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 14px 16px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    outline: none;
    background: rgba(255, 255, 255, 0.06);
    transition: 0.18s ease;
    font-family: inherit;
}

.mk-field textarea { resize: vertical; min-height: 112px; }
.mk-field input::placeholder,
.mk-field textarea::placeholder { color: rgba(159, 179, 199, 0.72); }
.mk-field input:focus,
.mk-field textarea:focus { border-color: rgba(0, 200, 240, 0.52); box-shadow: 0 0 0 4px rgba(0, 200, 240, 0.10); background: rgba(255, 255, 255, 0.08); }
.mk-field small { color: #ffd3d3; font-size: 13px; font-weight: 700; }

.mk-booking-success {
    display: grid;
    gap: 8px;
    margin-bottom: 20px;
    padding: 18px 20px;
    border-radius: 18px;
    color: #edfff4;
    background: rgba(32, 199, 100, 0.16);
    border: 1px solid rgba(32, 199, 100, 0.30);
}

.mk-booking-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.mk-submit-btn,
.mk-cancel-btn { min-height: 56px; border-radius: 16px; font-family: inherit; font-size: 16px; font-weight: 900; cursor: pointer; transition: 0.18s ease; }
.mk-submit-btn { flex: 1 1 260px; border: 0; color: #041522; background: linear-gradient(135deg, var(--pkl-cyan), #68e2ff); box-shadow: 0 16px 34px rgba(0, 200, 240, 0.28); }
.mk-submit-btn:disabled { opacity: 0.65; cursor: wait; }
.mk-cancel-btn { flex: 0 0 150px; color: #ffffff; border: 1px solid rgba(255, 255, 255, 0.12); background: rgba(255, 255, 255, 0.08); }

/* Bookings page */
.mk-bookings-page { min-height: 100vh; padding: 70px 20px; color: var(--pkl-text); background: radial-gradient(circle at 15% 16%, rgba(0, 200, 240, 0.18), transparent 30%), linear-gradient(135deg, #061526 0%, #0d1b2a 52%, #092845 100%); }
.mk-bookings-container { width: min(1280px, 100%); margin: 0 auto; }
.mk-bookings-hero { margin-bottom: 26px; padding: 30px; border-radius: 28px; border: 2px solid rgba(0, 200, 240, 0.52); background: rgba(13, 27, 42, 0.82); }
.mk-bookings-hero span { color: var(--pkl-cyan); letter-spacing: 0.28em; font-family: "Raleway", "Tajawal", sans-serif; font-weight: 900; font-size: 13px; }
.mk-bookings-hero h1 { margin: 10px 0; font-size: clamp(32px, 4vw, 56px); font-weight: 900; }
.mk-bookings-hero p { margin: 0; color: var(--pkl-muted); }
.mk-bookings-card { overflow: hidden; border-radius: 24px; border: 1px solid rgba(0, 200, 240, 0.28); background: rgba(13, 27, 42, 0.88); }
.mk-bookings-table-wrap { overflow-x: auto; }
.mk-bookings-table { width: 100%; border-collapse: collapse; min-width: 1100px; }
.mk-bookings-table th,
.mk-bookings-table td { padding: 16px 14px; text-align: right; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.mk-bookings-table th { color: var(--pkl-cyan); font-weight: 900; white-space: nowrap; }
.mk-bookings-table td { color: #eef7ff; font-weight: 600; }
.mk-booking-status { display: inline-flex; padding: 7px 10px; border-radius: 999px; color: #edfff4; background: rgba(32, 199, 100, 0.16); border: 1px solid rgba(32, 199, 100, 0.24); font-weight: 900; }
.mk-empty-bookings { padding: 28px !important; text-align: center !important; color: var(--pkl-muted) !important; }
.mk-bookings-pagination { padding: 18px; }

/* Mapbox attribution: keep but small */
.mapboxgl-ctrl-bottom-left { left: 10px !important; bottom: 10px !important; }
.mapboxgl-ctrl-logo { opacity: 0.55 !important; transform: scale(0.72); transform-origin: bottom left; filter: grayscale(1); }
.mapboxgl-ctrl-attrib { opacity: 0.55 !important; font-size: 10px !important; border-radius: 10px !important; background: rgba(2, 6, 23, 0.45) !important; color: rgba(255, 255, 255, 0.72) !important; }

@media (max-width: 992px) {
    .pkl-map-card { height: calc(100vh - 78px); min-height: 680px; }
    .pkl-booking-alert { top: 16px; right: 16px; left: 16px; width: auto; }
    .pkl-map-legend { width: calc(100vw - 28px); min-width: auto; bottom: 14px; border-radius: 22px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; padding: 10px; }
    .pkl-legend-title { grid-column: 1 / -1; justify-content: center; }
    .pkl-legend-item { font-size: 12px; padding: 9px 8px; }
}

@media (max-width: 768px) {
    .pkl-map-card { height: calc(100vh - 70px); min-height: 620px; }
    .pkl-booking-alert { padding: 20px; border-radius: 24px; }
    .pkl-alert-close { width: 42px; height: 42px; font-size: 26px; }
    .pkl-alert-kicker { font-size: 11px; letter-spacing: 0.22em; }
    .pkl-booking-alert h2 { font-size: 26px; }
    .pkl-booking-alert p { font-size: 14px; }
    .mk-booking-modal { padding: 12px; align-items: flex-end; }
    .mk-booking-panel { width: 100%; max-height: calc(100vh - 24px); padding: 24px; border-radius: 26px; }
    .mk-booking-header { padding-left: 46px; }
    .mk-booking-header h2 { font-size: 30px; }
    .mk-form-grid { grid-template-columns: 1fr; }
    .mk-booking-actions { flex-direction: column; }
    .mk-submit-btn,
    .mk-cancel-btn { width: 100%; flex: 1 1 auto; }
    .mk-selected-warehouse { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 576px) {
    .pkl-map-legend { left: 10px; right: 10px; bottom: 10px; transform: none; width: auto; grid-template-columns: repeat(2, 1fr); border-radius: 18px; }
    .pkl-legend-item { justify-content: space-between; font-size: 12px; }
    .pkl-warehouse-popup { width: calc(100vw - 24px); }
    .pkl-popup-head strong { font-size: 20px; }
    .pkl-popup-row span,
    .pkl-popup-row strong { font-size: 13px; }
}


/* =========================================================
   English Livewire Booking Form + No Background Overlay
   ضع هذا الكود في آخر public/css/villas-map.css
   ========================================================= */

body.villas-map-body .mk-booking-modal {
    background: transparent !important;
}

body.villas-map-body .mk-booking-backdrop {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

body.villas-map-body .mk-booking-panel::after {
    display: none !important;
}

body.villas-map-body .mk-booking-panel {
    direction: ltr !important;
    text-align: left !important;
    width: min(760px, calc(100vw - 32px)) !important;
    max-height: calc(100vh - 48px) !important;
    overflow-y: auto !important;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 200, 240, 0.65) rgba(255, 255, 255, 0.08);
    background: rgba(7, 24, 42, 0.96) !important;
}

body.villas-map-body .mk-booking-panel::-webkit-scrollbar {
    width: 8px;
}

body.villas-map-body .mk-booking-panel::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
}

body.villas-map-body .mk-booking-panel::-webkit-scrollbar-thumb {
    background: rgba(0, 200, 240, 0.70);
    border-radius: 999px;
}

body.villas-map-body .mk-booking-header {
    padding-left: 0 !important;
    padding-right: 58px !important;
    text-align: left !important;
}

body.villas-map-body .mk-booking-kicker {
    justify-content: flex-start !important;
}

body.villas-map-body .mk-booking-kicker::after {
    display: none !important;
}

body.villas-map-body .mk-booking-kicker::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--pkl-cyan, #00c8f0);
    box-shadow: 0 0 0 8px rgba(0, 200, 240, 0.12);
}

body.villas-map-body .mk-booking-close {
    left: auto !important;
    right: 18px !important;
}

body.villas-map-body .mk-selected-warehouse {
    direction: ltr !important;
}

body.villas-map-body .mk-selected-warehouse strong {
    text-align: right !important;
}

body.villas-map-body .mk-field,
body.villas-map-body .mk-field span,
body.villas-map-body .mk-field input,
body.villas-map-body .mk-field textarea {
    direction: ltr !important;
    text-align: left !important;
}

body.villas-map-body .mk-booking-actions {
    direction: ltr !important;
}

@media (max-width: 768px) {
    body.villas-map-body .mk-booking-modal {
        align-items: center !important;
        padding: 12px !important;
    }

    body.villas-map-body .mk-booking-panel {
        width: 100% !important;
        max-height: calc(100vh - 24px) !important;
    }

    body.villas-map-body .mk-booking-header {
        padding-right: 48px !important;
    }

    body.villas-map-body .mk-form-grid {
        grid-template-columns: 1fr !important;
    }
}

body.villas-map-body .pkl-popup-actions {
    display: grid;
    grid-template-columns: 0.9fr 1.4fr;
    gap: 12px;
    margin-top: 18px;
}

body.villas-map-body .pkl-popup-more,
body.villas-map-body .pkl-popup-cta {
    min-height: 58px;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 900;
}

body.villas-map-body .pkl-popup-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #eaf8ff;
    text-decoration: none;
    border: 1px solid rgba(0, 195, 255, 0.35);
    background: rgba(0, 195, 255, 0.09);
    transition: 0.18s ease;
}

body.villas-map-body .pkl-popup-more svg {
    width: 19px;
    height: 19px;
    fill: #00c3ff;
}

body.villas-map-body .pkl-popup-more:hover {
    color: #041522;
    background: #00c3ff;
    transform: translateY(-1px);
}

body.villas-map-body .pkl-popup-more:hover svg {
    fill: #041522;
}

body.villas-map-body .pkl-popup-cta {
    width: 100%;
    border: 0;
    color: #041522;
    cursor: pointer;
    background: linear-gradient(135deg, #00c3ff, #66dcff);
    box-shadow: 0 16px 34px rgba(0, 195, 255, 0.28);
    transition: 0.18s ease;
}

body.villas-map-body .pkl-popup-cta:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
}

body.villas-map-body .pkl-popup-cta:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    color: #ffffff;
    background: rgba(148, 163, 184, 0.42);
    box-shadow: none;
}

@media (max-width: 520px) {
    body.villas-map-body .pkl-popup-actions {
        grid-template-columns: 1fr;
    }
}


