:root {
    /* Brand Colors */
    --brand-color: #FF385C;
    --brand-hover: #E31C5F;
    --brand-gradient: linear-gradient(to right, #E61E4D 0%, #E31C5F 50%, #D70466 100%);

    /* Text Colors */
    --text-main: #222222;
    --text-secondary: #717171;
    --text-inverse: #FFFFFF;

    /* Backgrounds & Surfaces */
    --bg-main: #FFFFFF;
    --bg-secondary: #F7F7F7;
    --surface: #FFFFFF;

    /* Borders & Shadows */
    --border-main: #DDDDDD;
    --border-dark: #717171;
    --shadow-main: 0 6px 16px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.15);

    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-xxl: 48px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 24px;

    /* Typography */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    /* Font Sizes */
    --size-h1: 32px;
    --size-h2: 22px;
    --size-h3: 18px;
    --size-body: 16px;
    --size-small: 14px;
    --size-micro: 10px;

    /* Transitions */
    --transition: 0.3s cubic-bezier(0.2, 0, 0, 1);

    /* Project Specific - Fallback */
    --bv-primary: #0891b2;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.5;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 600;
}

/* Typography Utilities */
.text-h2 {
    font-size: var(--size-h2);
}

.text-h3 {
    font-size: var(--size-h3);
}

.text-secondary {
    color: var(--text-secondary);
}

.text-small {
    font-size: var(--size-small);
}

/* Layout Utilities */
.spacer-32 {
    width: 32px;
    height: 32px;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.gap-12 {
    gap: 12px;
}

.gap-16 {
    gap: 16px;
}

.gap-24 {
    gap: 24px;
}

.bv-navbar {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 1rem;
    transition: background 0.4s ease, box-shadow 0.4s ease;
   
}

.border-divider {
    border-bottom: 1px solid var(--border-main);
}

.padding-bottom-24 {
    padding-bottom: 24px;
}

.margin-bottom-24 {
    margin-bottom: 24px;
}

.margin-bottom-16 {
    margin-bottom: 16px;
}

.margin-bottom-4 {
    margin-bottom: 4px;
}

.relative {
    position: relative;
}

/* Functional Utilities */
.hidden-datepicker {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}



.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Header */

/* Title Section */
.title-section {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 0;
}

.property-title {
    font-size: 26px;
    margin-bottom: 8px;
}

.share-btn-row {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-top: 8px;
}

button.reserve-btn {
    background: var(--bv-primary);
    width: 100%;
    border: var(--bv-primary);
    padding: 10px;
    margin: 10px 0 0 0;
    border-radius: 30px;
    color: var(--bg-secondary);
}

.pill-button-black:hover {
    background: #222;
}

/* Gallery-Grid */
.gallery-section {
    padding-top: var(--spacing-lg);
    position: relative;
    margin-top: 116px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 10px;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 410px;
}

.gallery-item {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid #ccc;
    border-radius: 0;
}

.gallery-item:hover {
    filter: brightness(0.9);
}

.main-img {
    grid-row: span 2;
}

.show-all-btn {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: white;
    border: 1px solid #222;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    z-index: 5;
}

.show-all-btn:hover {
    background: #f7f7f7;
    box-shadow: var(--shadow-hover);
}

/* Content Layout */
.content-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-xxl);
    padding-top: var(--spacing-xxl);
}

/* Property Info (Left Side) */
.property-info-header {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding-bottom: 0;
    border-bottom: none;
    width: 100%;
}

.host-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
}

.features-section {
    /* padding: 32px 0; */
    border-bottom: 1px solid var(--bs-cyan);
}

.reviews-section {

    background: none;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-icon {
    font-size: 24px;
}

.feature-title {
    font-weight: 600;
}

.feature-desc {
    color: var(--text-secondary);
    font-size: 14px;
}

.description-section {
    padding: 32px 0;
    border-bottom: 1px solid var(--bv-primary);
    border-top: 1px solid var(--bv-primary);
}

.description-text {
    line-height: 1.6;
}

.text-underline-btn {
    background: none;
    border: none;
    text-decoration: underline;
    font-weight: 600;
    cursor: pointer;
    padding-top: 16px;
    font-family: inherit;
    font-size: 16px;
}

/* Amenities */
.amenities-section {
    padding: 32px 0;
    border-bottom: 1px solid var(--bv-primary);
    /* border-top: 1px solid var(--bv-primary); */
}

.amenities-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: var(--spacing-md);
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.amenity-item svg {
    display: none !important;
}

.amenity-item i {
    display: none;
}

.amenity-btn-all {
    border: 1px solid var(--bv-primary);
    background: var(--bv-primary);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    margin-top: 32px;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
    color: var(--bg-main);
}



/* Booking Card (Right Side) */
.booking-sidebar {
    position: relative;
}

.booking-card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-main);
    position: sticky;
    top: 100px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.price-nightly {
    font-size: 22px;
    font-weight: 700;
}

.price-booking-period {
    color: var(--text-secondary);
}

.booking-inputs-container {
    border: 1px solid #717171;
    border-radius: 8px;
    position: relative;
}

.date-inputs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid #717171;
    cursor: pointer;
}

.date-field-wrapper {
    padding: 10px;
    position: relative;
}

.date-field-wrapper:first-child {
    border-right: 1px solid #717171;
}

.input-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}

.date-display {
    font-size: 14px;
}

.calendar-icon-inline {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #717171;
    font-size: 14px;
}

.guest-field-wrapper {
    padding: 10px;
    position: relative;
}

.guest-select-input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 14px;
    padding: 4px 0;
    background: transparent;
    cursor: pointer;
    color: var(--text-main);
    font-family: var(--font-body);
}

.btn-reserve {
    width: 100%;
    background: linear-gradient(to right, #E61E4D 0%, #E31C5F 50%, #D70466 100%);
    color: white;
    border: none;
    padding: 14px;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: var(--spacing-md);
}

.reserve-note {
    text-align: center;
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: var(--spacing-sm);
}

.price-breakdown-list {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: var(--text-secondary);
}

.price-item-row {
    display: flex;
    justify-content: space-between;
}

.price-item-label {
    text-decoration: underline;
}

.price-total-row {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-main);
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 18px;
}

/* Footer */
footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-main);
    margin-top: 64px;
    padding: 48px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-column-title {
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 14px;
    color: #484848;
}

/* Utilities */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-2.expanded {
    -webkit-line-clamp: unset;
}

/* Offcanvas Amenities */
.offcanvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9000;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.offcanvas-overlay.active {
    visibility: visible !important;
    opacity: 1 !important;
}

.offcanvas {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 580px;
    height: 100%;
    background: white;
    z-index: 9001;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.2, 0, 0, 1);
    padding: 0;
    /* Padding moved to header and content */
    display: flex;
    flex-direction: column;
}

.offcanvas.active {
    transform: translateX(0) !important;
    visibility: visible !important;
}

.offcanvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    position: sticky;
    top: 0;
    background: white;
    border-bottom: 1px solid var(--border-main);
    z-index: 10;
}

.offcanvas-content {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

.offcanvas-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
}

/* Calendar Section (Inline) */
.calendar-section {
    padding: 48px 0;
}

.calendar-header {
    margin-bottom: 24px;
}

.calendar-header h2 {
    font-size: 22px;
    margin-bottom: 4px;
}

.calendar-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-right: 24px;
}

.icon-btn-plain {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

/* Customizing Inline Flatpickr */
#inline-calendar .flatpickr-calendar {
    width: 100% !important;
    box-shadow: none;
    border: none;
}

#inline-calendar .flatpickr-innerContainer {
    justify-content: center;
}

#inline-calendar .flatpickr-months {
    padding: 0 10px;
}

#inline-calendar .flatpickr-month {
    flex: 1;
}

@media (max-width: 768px) {
    #inline-calendar .flatpickr-calendar {
        width: 300px !important;
    }
}

/* Reviews Section */
.reviews-section {
    padding: 48px 0;
    border-top: 1px solid var(--border-main);
    margin-top: 48px;
}

.reviews-header {
    margin-bottom: 32px;
}

.reviews-header h2 {
    font-size: 22px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 80px;
    margin-bottom: 48px;
}

.review-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-main);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--border-main);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
    background: var(--bv-primary);
}

.review-card:hover {
    background-color: #4b93b0 !important;
    /* Wahi blue color jo image mein hai */
    color: white !important;
    /* Text hamesha white rahe */
}

.reviews-section .review-card {
    background: var(--bv-primary);
    color: white;
    border: none;
}

.review-user-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-main);

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--border-dark);
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
}

.review-user-name {
    font-weight: 600;
    font-size: 16px;
}

.review-user-tenure {
    color: var(--bg-secondary);
    font-size: 14px;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
}

.stars {
    display: flex;
    gap: 2px;
    font-size: 10px;
}

.review-date {
    font-weight: 600;
}

.review-text {
    line-height: 1.6;
}

.show-more-link {
    background: none;
    border: none;
    text-decoration: underline;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    margin-top: 12px;
    padding: 0;
    display: inline-block;
    width: fit-content;
    color: var(--text-main);
}

.reviews-section .show-more-link {
    color: var(--bg-secondary);
}

.review-text.collapsed {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-show-all-reviews {
    border: 1px solid var(--bv-primary);
    background: var(--bv-primary);
    padding: 13px 23px;
    border-radius: 41px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    font-size: 16px;
    transition: var(--transition);
    color: var(--bg-main);
}

button#show-more-toggle {
    background: var(--bv-primary);
    padding: 10px 20px;
    color: var(--bg-main);
    border-radius: 51px;
    text-decoration: none;
    margin-top: 20px;
}

.hotel-info {
    font-size: 18px;
    margin: 12px 0;
    display: flex;
    /* replaced by prop-stats */
}

.rr {
    font-size: 28px;
    font-weight: normal;
    display: flex;
    /* replaced by prop-stats */
}

/* ================================================
   PROPERTY STATS ROW - Matches Reference Image
   Dashed border top, icon + label inline items
   ================================================ */
.prop-stats-wrap {
    border-top: 1.5px dashed #b0bec5;
    padding-top: 14px;
    width: 100%;
}

.prop-stats-row {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.prop-stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0f4c5c;
    font-size: 15px;
}

.prop-stat-icon {
    font-size: 18px;
    color: #0f4c5c;
    flex-shrink: 0;
}

.prop-stat-label {
    color: #0f4c5c;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 15px;
}

.prop-stat-label strong {
    font-weight: 600;
}

.gallery-grid a:first-child img {
    border-radius: 25px 0 0 25px;
}

.gallery-grid a:nth-last-child(1) img {
    border-radius: 0 0 25px 0;
}

.gallery-grid a:nth-last-child(3) img {
    border-radius: 0 25px 0 0;
}

.gallery-item:hover {
    transform: translateY(0);
    z-index: 2;
}

/* Reviews Offcanvas */
#reviews-offcanvas .offcanvas-header {
    border-bottom: 1px solid var(--border-color);
    padding: 24px;
    margin-bottom: 0;
}

#reviews-offcanvas .offcanvas-content {
    padding: 0;
}

.reviews-sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px;
}

/* Map Section */
.map-section {
    padding: 48px 0;
    border-top: 1px solid var(--border-main);
}

.map-section h2 {
    font-size: 22px;
    margin-bottom: 4px;
}

.location-text {
    margin-bottom: 24px;
    font-size: 16px;
}

#map {
    height: 480px;
    width: 100%;
    border-radius: var(--radius-md);
    z-index: 1;
}

/* Leaflet Popups */
.leaflet-popup-content-wrapper {
    border-radius: 8px;
    font-family: var(--font-body);
}

.price-row {
    margin-bottom: 10px;
}

button.pill-button-black {
    background: var(--bv-primary);
    border: none;
    color: white;
    padding: 10px 26px;
    border-radius: 30px;
}

/* Responsiveness */
@media (max-width: 1120px) {
    .content-layout {
        gap: 40px;
    }
}

@media (max-width: 950px) {
    .content-layout {
        grid-template-columns: 1fr;
    }

    .booking-card {
        position: static;
        margin-top: var(--spacing-xxl);
        box-shadow: none;
        border: 1px solid var(--border-main);
    }

    .booking-sticky-footer {
        display: flex;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 80px;
        /* Space for mobile sticky footer */
    }

    .amenities-section {
        padding-right: 10px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(1, 300px);
        height: auto;
        border-radius: 0;
        margin: 0 -24px;
        width: calc(100% + 48px);
    }

    .gallery-item:not(:first-child) {
        display: none;
    }

    .main-img {
        grid-row: span 1;
        border-radius: 0;
    }

    .show-all-btn {
        bottom: 16px;
        right: 16px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .calendar-section {
        overflow-x: auto;
    }

    #inline-calendar .flatpickr-calendar {
        width: 100% !important;
        min-width: 300px;
    }
}

/* Mobile Sticky Booking Bar */
.booking-sticky-footer {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    border-top: 1px solid var(--border-main);
    padding: 16px 24px;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.sticky-footer-left {
    display: flex;
    flex-direction: column;
}

.sticky-footer-price {
    font-size: 18px;
    font-weight: 700;
}

.sticky-footer-dates {
    font-size: 14px;
    text-decoration: underline;
    color: var(--text-main);
}

.btn-mobile-reserve {
    background: var(--brand-gradient);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    border: none;
    font-size: 16px;
    cursor: pointer;
}


/* ================================================
   BOOKING SIDEBAR - Matching Reference Image
   Clean white card, teal icons, pill-style fields
   ================================================ */

/* Booking card title */
.booking-card-title {
    text-align: center;
    font-weight: 500;
    font-size: 20px;
    color: #222;
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

/* Inputs wrapper */
.booking-inputs-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

/* Date row: two fields side by side */
.bk-date-row {
    display: flex;
    align-items: stretch;
    border: 1.5px solid #c9d4d8;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    background: #fff;
}

/* Each field block */
.bk-field {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    flex: 1;
    min-width: 0;
}

/* Vertical divider between Check in / Check Out */
.bk-divider-v {
    width: 1.5px;
    background: #c9d4d8;
    align-self: stretch;
    flex-shrink: 0;
}

/* Icon on the left of each field */
.bk-field-icon {
    color: #1a6579;
    font-size: 16px;
    flex-shrink: 0;
}

/* Text area inside each field */
.bk-field-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

/* The value/placeholder text */
.bk-field-value {
    font-size: 14px;
    color: #555;
    font-family: var(--font-body);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Guests row - full width */
.bk-guests-row {
    border: 1.5px solid #c9d4d8;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.bk-guests-field {
    width: 100%;
    padding: 12px 14px;
}

/* Guest select dropdown - transparent, no border */
.bk-guest-select {
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    color: #555;
    font-family: var(--font-body);
    cursor: pointer;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
}