/***************************************************************
 * 1) GLOBAL / BASE STYLES
 ***************************************************************/
 .wb-page-width {
    max-width:1200px;
    margin:0 auto;
}

.bg-color {
    background-color:var(--bg-color);
}
.bg-alt-color {
    background-color:var(--bg-color);
}
.bg-primary-color {
    background-color:var(--primary-color);
}

.primary-color {
    color:var(--primary-color);
}

.white-color {
    color:#fcfcfc;
}

.section-py-bg {
    padding: 6rem 0;
}

.section-py-sm {
    padding: 3rem 0;
}

.p-4 {
    padding: min(max(1.12rem, calc(1.12rem + ((1vw - 0.32rem) * 0.6))), 1.6rem);
}

.p-6 {
    padding: min(max(1.68rem, calc(1.68rem + ((1vw - 0.32rem) * 0.9))), 2.4rem);
}

.p-8 {
    padding: min(max(2.24rem, calc(2.24rem + ((1vw - 0.32rem) * 1.2))), 3.2rem);
}

.p-10 {
    padding: min(max(2.8rem, calc(2.8rem + ((1vw - 0.32rem) * 1.4286))), 4rem);
}

.text-lg {
    font-size: 1.4rem;
}

.font-color {
    color:var(--font-color);
}

.primary-button {
    background-color: var(--primary-color);
    border:none;
    font-weight: 500;
    text-transform: uppercase;
    transition-duration: .2s;
    transition-timing-function: ease-in-out;
    transition-property: all;
    border-radius: .2rem;
    color: #ffffff;
    padding: 0.7rem 1rem;
    font-size: 0.8rem;
    letter-spacing: 0.9px;
    cursor:pointer;
}

.primary-button:hover {
    opacity:.9;
}

.wb-primary-button {
    background-color: var(--wisebnb-primary-color);
    border:none;
    font-weight: 500;
    text-transform: uppercase;
    transition-duration: .2s;
    transition-timing-function: ease-in-out;
    transition-property: all;
    border-radius: .2rem;
    color: #ffffff;
    padding: 0.7rem 1rem;
    font-size: 0.8rem;
    letter-spacing: 0.9px;
    cursor:pointer;
}

.wb-primary-button:hover {
    opacity:.9;
}

.wb-primary-link {
    color:var(--wisebnb-primary-color);
    font-weight:700;
    text-decoration:underline;
}


/* Add any base, global resets, or custom properties here if needed.
   For example, you could define color variables:
   :root {
       --primary-color: #333;
       --accent-color: #f00;
   }
   Currently, just referencing the container class below.
*/

/***************************************************************
 * 2) WISEBNB HEADER CONTAINER
 ***************************************************************/

 .wisebnb-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5px;
}

/***************************************************************
 * 3) ADMIN BAR (FIXED HEADER) & OPTIONAL SPACER
 ***************************************************************/

.wisebnb-fixed-header-row {
    position: relative; /* or fixed if needed at the very top */
    top: 0;
    width: 100%;
    background: var(--wisebnb-primary-color);
    color:#f0f0f1;
    z-index: 9999;
    font-weight:400;
    font-size:0.9rem;
    padding: 5px 2rem;
}

.wisebnb-adminbar-menu-item {
    color:white!important;
}

.wisebnb-adminbar-menu-item:hover {
    opacity: .8;
}

.wisebnb-adminbar-content {
    display: flex;
    align-items: center;   /* Vertically center icon + text links */
    gap: 1.5rem;             /* Space between items */
}

.wisebnb-header-spacer {
    height: 60px; /* Use this if you have a fixed header and need spacing */
}

/***************************************************************
 * 4) PAGE HEADERS (STANDARD / CENTER)
 ***************************************************************/

/* --- General Style for the Page Header Row --- */
.wisebnb-page-header-row {
    border-bottom: 1px solid #636363; /* updated for clarity */
    /* You can adjust the color as needed */
}

/* --- Standard Header Layout --- */
.wisebnb-page-header-row.wisebnb-page-header-standard {
    background: #ffffff;
}

.wisebnb-header-standard-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo on the left */
.wisebnb-logo-left {
    /* Any styling for the logo container */
}

/* Menu on the right */
.wisebnb-menu-right {
    text-align: right;
}

/* --- Center Header Layout --- */
.wisebnb-page-header-row.wisebnb-page-header-center {
    background: #ffffff;
    text-align: center;
    padding: 20px 0;
}

.wisebnb-logo-center {
    margin-bottom: 15px;
}

.wisebnb-menu-center {
    display: flex;
    justify-content: center;
    align-items: center;
    /* optionally, if there's text or inline elements you want aligned */
    text-align: center;
}

/***************************************************************
 * 5) MENU ITEMS (DESKTOP)
 ***************************************************************/

/* --- General menu list appearance --- */
.wisebnb-menu-list {
    display: flex; /* horizontal by default */
    gap: 1.8rem; /* space between items */
    list-style: none;
    margin: 0;
    padding: 0;
}

/* --- Individual menu items --- */
.wisebnb-menu-list .menu-item a {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.8rem;
    text-decoration: none;
    color: var(--primary-color); /* Use your defined variable or a hex code */
    position: relative; /* For the hover underline effect */
}

/* --- Hover Underline Effect --- */
.menu-item a:after {    
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease, left 0.3s ease;
}

.menu-item a:hover:after { 
    width: 100%; 
    left: 0; 
}

/***************************************************************
 * 6) RESPONSIVE TOGGLE (HAMBURGER / DESKTOP MENU)
 ***************************************************************/

/* Hide hamburger on desktop by default */
.menu-icon {
    display: none;
    cursor: pointer;
}

/* Show the desktop menu placeholder by default */
.menu-placeholder {
    display: block;
}

/* --- On Mobile Screens --- */
@media (max-width: 768px) {

    /* Hide the desktop menu items */
    .menu-placeholder {
        display: none;
    }

    /* Show the hamburger icon */
    .menu-icon {
        display: inline-block;
        cursor: pointer;
    }
    .wisebnb-menu-list {
        display:block;
    }
    .wisebnb-menu-list .menu-item a {
        font-size:1rem;
    }

}

/***************************************************************
 * 7) FULL-SCREEN MODAL MENU
 ***************************************************************/

/* Fullscreen overlay hidden by default */
.wisebnb-fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none; /* hidden initially */
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: white;
    z-index: 9999;
    padding: 1em;
    text-align: center;
  }
  
  /* Show it when we toggle an "active" class */
  .wisebnb-fullscreen-menu.active {
    display: flex;
  }
  
  /* The close icon in the top-right corner */
  .wisebnb-fullscreen-menu .menu-close-icon {
    position: absolute;
    top: 0.5em;
    right: 0.5em;
    cursor: pointer;
  }

  /* Vertical stack for the menu items */
  .wisebnb-fullscreen-menu .wisebnb-menu-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
  
  .wisebnb-fullscreen-menu .wisebnb-menu-list .menu-item {
    margin: 1em 0;
  }

/*****************************************************
 * Full-Screen Hero (hero_section = "full_screen")
 *****************************************************/
.hero-mode-full_screen .wisebnb-page-header-row {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    /* Remove border, make background transparent if you want overlay effect */
    border-bottom: none;
    background: transparent;
}

/* 1) Default header styling for all pages (non-fullscreen scenario) */
.wisebnb-page-header-row {
    background: var(--primary-color);
    border-bottom: 1px solid #ccc;
  }
  
  /* Default menu item color */
  .wisebnb-page-header-row .wisebnb-menu-list .menu-item a {
    color: #111; /* Dark text for normal pages */
  }
  
/* White text for menu items in full_screen mode */
.hero-mode-full_screen .wisebnb-menu-list .menu-item a {
    color: #fff;
}
  
/* The .wisebnb-hero-full-screen container is 100vh tall, centered content */
.hero-mode-full_screen .wisebnb-hero-full-screen {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: #333; 
    display: flex;
    align-items: center;
    justify-content: center;
}
  
.hero-mode-full_screen .wisebnb-hero-full-screen .hero-content {
    position: relative; /* Keeps it above the gradient overlay */
    z-index: 2; /* Higher than the overlay */
    text-align: left; /* Align text to the left */
    color: var(--font-color); /* Change text color for readability */
    background: #fff; /* White background for the content box */
    padding: 30px 40px; /* Generous padding for the content box */
    border-radius: 8px; /* Optional: Adds rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Adds a subtle shadow for a floating effect */
    max-width: 80%; /* Ensures the box doesn’t stretch too wide */
    margin-left: 10%; /* Moves the box slightly to the left */
}

/* Adjust vertical centering */
.hero-mode-full_screen .wisebnb-hero-full-screen {
    display: flex;
    align-items: center; /* Vertical centering */
    justify-content: flex-start; /* Aligns horizontally to the left */
    padding-left: 5%; /* Ensures the hero content has space from the edge */
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Ensure small screens still look good */
@media (max-width: 768px) {
    .hero-mode-full_screen .wisebnb-hero-full-screen .hero-content {
        padding: 20px;
        margin-left: 0; /* Less aggressive margin on smaller screens */
        max-width: 90%;
    }

    .hero-mode-full_screen .wisebnb-hero-full-screen {
        padding: 20px;
        justify-content: center; /* Center content horizontally on smaller screens */
    }
}
  
/* Step 2: The pseudo-element that creates the gradient overlay */
.hero-mode-full_screen .wisebnb-hero-full-screen::before {
    content: "";
    position: absolute;
    inset: 0; /* top:0; right:0; bottom:0; left:0; shorthand */
    z-index: 1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 20%, rgba(0, 0, 0, 0) 50%);
}
  
/* Step 3: Ensure your actual hero text stays above the overlay */
.hero-mode-full_screen .wisebnb-hero-full-screen .hero-content {
    position: relative;
    z-index: 2; /* higher than the overlay's z-index:1 */
    text-align: left;
    max-width:500px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}
  
/*****************************************************
* Full-Width Hero (hero_section = "full_width")
*****************************************************/

.hero-mode-full_width .wisebnb-page-header-row {
position: relative; /* Normal doc flow */
background: #fff;   /* White background */
border-bottom: 1px solid #636363;
}

.hero-mode-full_width .wisebnb-menu-list .menu-item a {
color: var(--primary-color);
}

/* .wisebnb-hero-full-width might be a smaller hero, not 100vh */
.hero-mode-full_width .wisebnb-hero-full-width {
width: 100%;
min-height: 400px; 
background-color: #f7f7f7; 
display: flex;
align-items: center;
justify-content: center;
}

.hero-mode-full_width .wisebnb-hero-full-width h2,
.hero-mode-full_width .wisebnb-hero-full-width p {
color: #333;
}

/******************************************************
 * Full-Width Hero
 * (Using .custom-fw-hero-section, etc.)
 ******************************************************/

/* The main hero container (full browser width) */
.custom-fw-hero-section {
    position: relative;
    width: 100%;
    min-height: 400px;
    background-size: cover;
    background-position: 50% 50%;
    display: flex;
    align-items: center;  
    justify-content: center; /* center the entire container if needed */
    overflow: hidden;
}
  
  /* 1) The new container, centered with max-width 1200px */
.custom-fw-container {
    position: relative; /* for stacking context */
    z-index: 2;        /* above the overlay's z-index */
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;    /* center horizontally */
    display: flex;     /* if you want the .custom-fw-content-box to be a column inside */
    align-items: center;
    justify-content: left; /* or flex-start, depending on your design */
    padding: 2rem;     /* optional horizontal padding so content never touches edges */
}
  
  /* 2) The white box for your text, inside the container */
  .custom-fw-content-box {
    background: #fff;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    border-radius: 4px; /* optional rounding */
    max-width:500px;
    
    /* Adjust width or let it shrink-to-fit. 
       If you want a specific width, use something like: 
       max-width: 600px; 
    */
  }
  
  /* (Optional) Style headings, paragraphs, buttons inside the box */
  .custom-fw-content-box h1 {
    margin-top: 0;
    line-height:1.1;
  }
  .custom-fw-content-box p {
    line-height: 1.4;
    margin-bottom: 1rem;
  }
  
  /* Media Query for smaller screens */
  @media (max-width: 768px) {
    .custom-fw-container {
      padding: 1rem;
    }
    .custom-fw-content-box {
      width: 100%;
      box-sizing: border-box;
    }
  }

/*****************************************************
* BOX HERO MODE
* When hero_section = 'box', we add hero-mode-box to <body>.
* Or you could just target .wisebnb-hero-box directly.
***********************************************************/
.hero-mode-box .wisebnb-hero-box {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 0;
}

/* The wrapper holds two columns side by side on larger screens */
.hero-mode-box .wisebnb-hero-box .hero-box-wrapper {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 300px;
    gap:2rem;
}

/* First column: textual content */
.hero-mode-box .wisebnb-hero-box .hero-box-content {
    flex: 1;
    background: #ffffff;
    padding: 2rem;
    display:block;
    flex-direction: column;
    justify-content: center;
    border-radius:0.3rem;
}

/* Second column: featured image as background */
.hero-mode-box .wisebnb-hero-box .hero-box-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    border-radius:0.3rem;
}
 
/* On smaller devices (e.g. <= 768px), stack vertically */
@media (max-width: 768px) {
    .hero-mode-box .wisebnb-hero-box .hero-box-wrapper {
        flex-direction: column;
        min-height: auto;
    }
}

/* Footer section */

.footer-flex-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem; /* adjust spacing as needed */
}
  
.wb-footer-section {
    /* Any additional styling for your footer section */
    margin-top: 2rem; /* example */
}

.footer-col {
    flex: 0 0 auto;
}

.footer-col-left {
    text-align: left;       
    display: flex;
    flex-direction: column;
    align-items: flex-start;  
  }

.footer-links {
    display: flex;
    gap: 3rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    display: inline;
}

.footer-links a {
    text-decoration: none;
    font-size:0.9rem;
    color: #626262;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .footer-flex-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-col {
        margin-bottom: 1rem;
        width: 100%;
    }

    .footer-links {
        flex-direction: column;
        gap: 5px;
        align-items: left; 
    }

    .footer-links li {
        display: block; /* Make list items block-level for full width */
    }
}


.footer-address-info {
    font-size:0.8rem;
}

/*****************************************************
* GENERAL ELEMENTS
******************************************************/

/* Fields that can be edited in frontend */
.editable-field {
    text-decoration: underline dotted #757575; /* or your preferred color */
    cursor: pointer; /* so the user sees it’s clickable */
}

.editable-field img {
    max-width: 300px;
    height: auto;
}

/* Floating post update button in frontend */
.update-post-button {
    cursor:pointer;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index:9999;
}

/*****************************************************
* HOME PAGE
******************************************************/

.home-paragraph {
    font-size:1.1rem;
}

.image-frame {
    padding-top: 8px;
    padding-right: 8px;
    padding-bottom: 8px;
    padding-left: 8px;
    border-radius: .3rem;
    box-shadow: 0px 71px 85px -57px rgba(0, 0, 0, 0.62);
}

.section-two-cols-blocks {
    display:flex;
    flex-wrap:wrap;
    gap:3rem;
}

.section-block-content {
    flex:1; 
    min-width:300px;
}   

.section-block-text {
    padding: 0 min(max(2.8rem, calc(2.8rem + ((1vw - 0.32rem) * 1.4286))), 4rem);
}

/* Property Section */
.wb-pre-blocks-section {
    width: 100%;
    margin-bottom: 2rem; /* adjust as needed */
}

.pre-blocks-centered-content {
    margin: 0 auto; /* center horizontally */
    text-align: center;
}

.property-block-text {
    padding: 0 min(max(2.8rem, calc(2.8rem + ((1vw - 0.32rem) * 1.4286))), 4rem);
}

/* Responsive: On smaller screens, single column */
@media (max-width: 768px) {
    .property-block-text {
        padding: min(max(0.84rem, calc(0.84rem + ((1vw - 0.32rem) * 0.45))), 1.2rem);
    }
}

/* Grid Layout */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem; /* spacing between items */
    margin: 0 auto; /* center the grid in the container */
}

.grid-item {
    background: #fff;
}

/* Center the single product container */
.center-product {
    display: flex;
    justify-content: center;  /* horizontally center the card */
  }
  
  /* Optionally restrict how wide the single card can grow */
  .center-product .product-item {
    max-width: 800px; /* or any preferred limit */
    width: 100%;       /* so it shrinks on small devices */
    margin: 0 auto;    
  }

/* Card Image Container */
.card-image {
    position: relative; /* needed for absolutely positioned overlays */
}

.card-image img {
    display: block;
    width: 100%;
    height: auto;
}

/* Overlays Container */
.image-overlays {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Individual labels inside the overlay */
.image-label {
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 0.3rem 0.5rem;
    font-size: 0.9rem;
    border-radius: 3px;
}

.property-type {
    /* bottom right in the flex row */
    text-transform: uppercase; /* double ensure uppercase if needed */
}

/* Responsive: On smaller screens, single column */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* Three-column features row under the title */
.property-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem; /* spacing between the 3 columns */
  }
  
.feature-col {
    display: flex;
    flex-direction: row;  /* icon + text horizontally */
    align-items: center;
    gap: 0.5rem;          /* spacing between icon and text */
}
  
.feature-col img {
    width: 24px; /* or adjust as needed */
    height: auto;
}
  
@media (max-width: 768px) {
    .property-features {
      grid-template-columns: 1fr; /* stack vertically on smaller devices */
    }
}

/* Slider Wrapper */
.wb-simple-slider {
    position: relative; /* still optional if you want arrow buttons absolutely positioned */
    overflow: hidden;
} 
  
.wb-slider-wrapper {
    position: relative; /* or static */
}

.wb-slide {
    display: none;    /* hide non-active slides */
}
  
.wb-slide.active {
    display: block;   /* show the current slide */
}
  
  /* Arrow buttons can be placed absolutely if you'd like */
.wb-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    padding: 0.5rem 0.8rem;
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
    z-index: 10;
}
  
.wb-slider-prev {
    left: 1rem;
}
  
.wb-slider-next {
    right: 1rem;
}

/*****************************************************
* CONTACT PAGE
******************************************************/

.wb-contact-center {
    display: flex;
    justify-content: center; /* Horizontally center */
    align-items: center; /* Vertically center */
    text-align: center; /* Center text inside */
    flex-direction: column; /* Stack elements vertically */
    height: 100%; /* Optional: Set a height for vertical centering */
}

.contact-col {
    background-color:white;
}

/* Target the specific form by its class */
.wb-simple-contact-form {
    margin: 0 auto; /* Center the form horizontally */
    font-family: inherit; /* Inherit font family for the form */
}

/* Style the input, textarea, and checkbox */
.wb-simple-contact-form input[type="text"],
.wb-simple-contact-form input[type="email"],
.wb-simple-contact-form textarea {
    width: 100%; /* Full width for inputs and textarea */
    padding: 10px;
    margin-bottom: 15px; /* Space between fields */
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit; /* Ensure textarea inherits font family */
}

/* Style the checkbox and its label */
.wb-simple-contact-form input[type="checkbox"] {
    margin-right: 10px;
}

.wb-simple-contact-form label {
    font-size: 14px;
    line-height: 1.5;
}

/*****************************************************
* SINGLE PRODUCT
******************************************************/

.wb-main-block-grid {
    display:grid; 
    grid-template-columns: 1fr 1fr 1fr; 
    gap:1rem;
}

.wb-two-cols-span-grid {
    display:grid;
    grid-template-columns: 1fr 2fr;
    gap:1rem;
    align-items:center;
}

.item-block {
    display:flex;
    align-items:center;
    gap:0.5rem;
    margin-bottom:0.5rem;
}

.highlighted-item {
    background-color:#f4f4f4;
    padding: 8px 10px;
    border-radius:.2rem;
}

.col-content {
    display:flex;
    flex-direction:column;
    gap:1rem;
}

/* On smaller screens, stack 2nd & 3rd columns vertically */
@media (max-width: 768px) {
    .wb-main-block-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .wb-two-cols-span-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
}

/*****************************************************
 * 1) Desktop Grid & (Optional) Sticky Right Column
 *****************************************************/
 @media (min-width: 992px) {
    .wisebnb-productdetails-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 2rem;
    }
    .wisebnb-col-left {
      grid-column: span 3;
    }
    .wb-sticky-form {
      grid-column: span 2;
      /* Optional sticky: uncomment if desired
         position: sticky;
         top: 80px;
      */
    }
    /* Hide the mobile button on desktop */
    .wb-mobile-booking-button {
      display: none;
    }
  }
  
  /*****************************************************
   * 2) Mobile (<992px)
   *****************************************************/
  @media (max-width: 991px) {
    .wisebnb-productdetails-grid {
      display: block; /* stack sections */
    }
    /* The booking form is always visible now, not hidden */
    /* .wb-sticky-form { display: block; } -- it's block or normal by default */
  
    /* Show the mobile booking button (fixed at bottom) */
    .wb-mobile-booking-button {
      display: block;
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--primary-color);
      color: #fff;
      padding: 0.75rem 1rem;
      border-radius: .5rem;
      font-size: 1rem;
      cursor: pointer;
      z-index: 9999;
    }
    .wb-mobile-booking-button a {
      color: #fff;
      text-decoration: none;
    }
  }


.wb-productdetails-block {
    border-bottom:1px solid #ccc;
}

.col-title {
    font-size:1.1rem;
    font-weight:500;
}

.col-content{
    font-size:0.9rem;
}

.wb-host-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.host-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
    gap: 1.5rem;
}

.host-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.host-profile {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.host-name {
    font-size: 1rem;
    font-weight: 500;
}

.wb-amenities-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns */
    gap: 1rem; /* Spacing between items */
    padding-left: 20px; /* Keep the bullets aligned properly */
    margin: 0;
}

.wb-amenities-list li {
    margin-bottom: 0.5rem;
}

/* On smaller screens, switch to a single column */
@media (max-width: 768px) {
    .wb-amenities-list {
        grid-template-columns: 1fr; /* Single column */
    }
}

/* Property Slider */
.wb-property-gallery {
    width: 100%;
    max-height: 600px; /* Adjust for desired height */
    overflow: hidden;
    position: relative;
}

.property-swiper .swiper-slide {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f7f7f7;
}

.property-swiper img.gallery-image {
    width: 100%;
    height: auto;
    max-height: 600px; /* Ensures the image stays within the section */
    object-fit: cover;
}

@media (max-width: 768px) {
    .wb-property-gallery {
        max-height: 400px;
    }
    .property-swiper img.gallery-image {
        max-height: 400px;
    }
}

/* Property Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 equal columns */
    grid-template-rows: repeat(2, 1fr); /* Ensure equal row heights */
    gap: 5px; /* Uniform gap */
    position: relative;
    align-items: stretch; /* Ensures all items fill their row */
}

/* Featured image spans 2 cols and 2 rows */
.grid-featured {
    grid-column: span 2;
    grid-row: span 2;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    overflow: hidden; 
}

/* Ensure images fit properly */
.grid-featured img,
.gallery-thumb {
    width: 100%;
    height: 100%;
    min-height: 100%;
    max-height: 100%;
    object-fit: cover;
    cursor: pointer;
    border-radius: .2rem;
    aspect-ratio: 1/1; 
}

/* Ensure smaller images align properly */
.grid-image {
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    overflow: hidden;
}

/* Hover effect */
.gallery-thumb:hover {
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    /* Hide the grid layout entirely for small screens. */
    .gallery-grid {
        display: block;
    }

    /* Hide all non-featured images */
    .grid-image {
        display: none !important;
    }

    /* Let the featured image behave as a normal block (no forced square). */
    .grid-featured {
        grid-column: auto;
        grid-row: auto;
        display: block;
        width: 100%;
        height: auto;
    }

    .grid-featured img {
        width: 100%;
        height: auto;
        aspect-ratio: auto;
        max-height: none;
        min-height: 0;
    }
}

/* "View All Photos" Overlay */
.view-all-overlay {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
}

.fullscreen-swiper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #f7f7f7;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
    overflow: hidden; 
    display: flex;   
    align-items: center;  
    justify-content: center;
}

/* Ensure it appears when active */
.fullscreen-swiper.active {
    opacity: 1;
    visibility: visible;
}

/* Make sure the Swiper container is 100% of the fullscreen area */
.swiper {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Swiper Slide Layout */
.fullscreen-swiper .swiper-slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center; 
    justify-content: center;
    overflow: hidden;     
}

/* Your fullscreen image is contained, never stretched beyond viewport */
.fullscreen-image {
    display: block;
    margin: auto;
    object-fit: contain;  
    max-width: 90vw;
    max-height: 90vh;
    width: auto; 
    height: auto; 
}

/* Hide Non-Active Slides to Prevent Visibility Issues */
.swiper-slide:not(.swiper-slide-active) {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out;
}

/* Updated Close Button */
.close-swiper {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    font-weight: bold;
    color: rgb(27, 27, 27);
    cursor: pointer;
    z-index: 10000;
}

.image-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 10px 15px;
    font-size: 14px;
    border-radius: 5px;
    max-width: 80%;
    text-align: center;
    display: inline-block;
}

.swiper-button-next, .swiper-button-prev {
    color: rgb(7, 7, 7)!important;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    height: auto;
    margin: 0 20px;
    z-index: 10001;
}

/* Optional: bigger arrow icons if needed */
.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.8rem;
}

.swiper-pagination {
    display: none !important;
}

.leaflet-bottom {
    display:none!important;
}

/* Room List Styling */
.wb-rooms-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns */
    gap: 2rem; /* Spacing between rooms */
}

/* Each room item */
.wb-room-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Room image */
.room-image img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

/* Room info */
.room-info {
    flex: 1;
    display: flex;
    flex-direction: column; /* Ensure title and link stay close */
    gap: 0; /* Reduce spacing between elements */
}

.room-info p {
    margin: 0;
    padding: 0;
    line-height: 1.2; /* Improve text alignment */
}

.view-gallery {
    cursor: pointer;
    font-size: 0.85rem;
}

.view-gallery:hover {
    text-decoration: underline;
}

/* Responsive: Stack content on smaller screens */
@media (max-width: 768px) {
    .wb-rooms-list {
        grid-template-columns: 1fr; 
    }
    .wb-room-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .room-image img {
        width: 100%;
        height: auto;
    }
}

/***************************************************************
 * CHECKOUT PAGE
 ***************************************************************/

.woocommerce-checkout #payment {
    background-color: #fafafa!important;
}
.woocommerce-checkout #payment div.payment_box {
    background-color: #fff!important;
    color:var(--primary-color)!important;
}

.woocommerce-checkout #payment div.payment_box::before {
    content: ""!important;
    display: block!important;
    border: 1em solid #fff!important;
    border-right-color: transparent!important;
    border-left-color: transparent!important;
    border-top-color: transparent!important;
    position: absolute!important;
    top: -.75em!important;
    left: 0!important;
    margin: -1em 0 0 2em!important;
}

#order_review_heading {
    margin-top:30px!important;
}

.woocommerce button.button {
    background-color:var(--primary-color)!important;
}

.woocommerce button.button:hover {
    background-color:var(--primary-color-hover)!important;
}

/***************************************************************
 * BLOG - SINGLE POST
 ***************************************************************/

.wb-blog-single-terms {
    display: inline-block;
    background-color:var(--bg-color);
    padding: 2px 10px;
    border: 1px solid #e7e7e7;
    border-radius:.2rem;
    font-size:0.9rem;
    text-transform:capitalize;
    margin-right:4px;
}

.wb-blog-single-terms a {
    color:#737373!important;
}

.wb-blog-single-title {
    font-weight:400;
    line-height:1.1;
    margin-top:1rem;
    margin-bottom:2rem;
    font-size:3rem;
}

.wb-blog-single-content {
    font-size:1.2rem;
    line-height:1.7;
}

.wb-blog-single-content p {
    margin:0;
}

.post-category-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.wb-blog-single-content h2, .wb-blog-single-content h3, .wb-blog-single-content h4, .wb-blog-single-content h5, .wb-blog-single-content h6 {
    font-weight:400;
    margin-top:20px;
}

.wb-blog-single-content h2 {
    font-size:2.5rem;
}
.wb-blog-single-content h3 {
    font-size:2.2rem;
}
.wb-blog-single-content h4 {
    font-size:2rem;
}
.wb-blog-single-content h5 {
    font-size:1.5rem;
}

.wb-blog-single-content a {
    font-weight:700;
    text-decoration:underline;
    color:var(--primary-color)!important;
}

.wb-blog-single-content blockquote {
    font-style:italic;
    border-left: 3px solid var(--primary-color);
    padding: 20px 10px;
    font-size:1rem;
}

.single-post-layout.center-layout {
    display: flex;
    justify-content: center;
    padding: 0 10px; /* Optional: add horizontal padding for extra spacing */
}

.center-layout-container {
    max-width: 800px;
    width: 100%;
    text-align: left;
    padding: 0 10px; /* Adjust padding as needed for responsiveness */
    box-sizing: border-box;
}

.single-post-featured-image {
    border-radius:0.3rem;
}

.wb-blog-single-dates {
    font-size:0.85rem;
}

/***************************************************************
 * BLOG - RELATED POST
 ***************************************************************/

.related-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size:1rem;
}

.related-posts-list li {
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}

.related-post-block {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.related-post-featured-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 0.3rem;
}

.related-post-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

/***************************************************************
 * BLOG - ARCHIVE CENTER
 ***************************************************************/

 /* Center the parent container */
.wb-posts-layout-center {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh; /* Ensures full height */
    padding: 20px;
}

/* Center the inner container */
.wb-posts-center-container {
    max-width: 800px; /* Adjust width as needed */
    width: 100%;
    text-align: center;
}

/* Style the post block to be centered */
.wb-post-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 8px;
    background-color: #fff;
    transition: 0.3s ease-in-out;
    width: 100%;
    max-width: 600px;
    margin: 0 auto 20px;
}

/* Center the post title */
.wb-post-title {
    font-size: 3rem;
    font-weight: 400;
    line-height: 1;
}

/* Center the post dates */
.wb-post-dates {
    font-size: 0.9rem;
    color: #777;
}

/* Style the post image */
.wb-post-image {
    width: 100%;
    max-width: 100%;
    margin-top:30px;
    margin-bottom: 15px;
}

/* Ensure image fits nicely */
.wb-post-featured-image {
    border-radius: 0.3rem;
    width: 100%;
    height: auto;
    display: block;
}

/* Read text button */
.wb-read-text {
    font-size: 1rem;
    font-weight: bold;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    transition: color 0.3s ease-in-out;
}

.wb-read-text:hover {
    color: #000;
}

/***************************************************************
 * BLOG - ARCHIVE STANDARD
 ***************************************************************/

 /* Center the standard posts container */
.wb-posts-layout-standard {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 900px; /* Adjust as needed */
    margin: 0 auto;
    padding: 20px;
}

/* Style each post block */
.wb-post-block-standard {
    display: flex;
    width: 100%;
    text-decoration: none;
    color: inherit;
    margin-bottom: 1rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}

.wb-post-block-standard:hover {
    transform: translateY(-2px);
}

/* Inner post layout */
.wb-post-block-standard-inner {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 15px;
}

/* Featured image section */
.wb-post-image-standard {
    flex: 0 0 150px; /* Set fixed width */
    display: flex;
    justify-content: center;
    align-items: center;
}

.wb-post-featured-image-standard {
    border-radius: 0.3rem;
    width: 100%;
    height: auto;
    display: block;
}

/* Post content section */
.wb-post-content-standard {
    flex: 1;
    padding-left: 20px;
}

/* Post title */
.wb-post-title-standard {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
}

/* Post dates */
.wb-post-dates-standard {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 10px;
}

/* Read button */
.wb-read-button-standard {
    font-size: 1rem;
    font-weight: bold;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    transition: color 0.3s ease-in-out;
}

.wb-read-button-standard:hover {
    color: #000;
}

/* Responsive: Stack items vertically on small screens */
@media (max-width: 768px) {
    .wb-post-block-standard-inner {
        flex-direction: column;
        text-align: center;
    }

    .wb-post-image-standard {
        flex: 0 0 auto;
        width: 100%;
        margin-bottom: 15px;
    }

    .wb-post-content-standard {
        padding-left: 0;
    }
}

/***************************************************************
 * BLOG - ARCHIVE GRID
 ***************************************************************/

 /* Center the grid container and set max width */
.wb-posts-layout-grid {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
}

/* Grid container */
.wb-posts-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Default: 3 columns */
    gap: 20px;
    max-width: 1200px; /* Adjust width as needed */
    width: 100%;
}

/* Individual post item */
.wb-post-grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}

.wb-post-grid-item:hover {
    transform: translateY(-2px);
}

/* Post image */
.wb-post-grid-image {
    width: 100%;
    max-height: 200px;
    overflow: hidden;
    border-radius: 8px;
}

.wb-post-grid-thumbnail {
    width: 100%;
    height: auto;
    display: block;
}

/* Post title */
.wb-post-grid-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin: 15px 0;
    color: #333;
}

/* Read button */
.wb-read-button-grid {
    font-size: 1rem;
    font-weight: bold;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    transition: color 0.3s ease-in-out;
}

.wb-read-button-grid:hover {
    color: #000;
}

/* Responsive: Change grid layout for smaller screens */
@media (max-width: 1024px) {
    .wb-posts-grid-container {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on medium screens */
    }
}

@media (max-width: 768px) {
    .wb-posts-grid-container {
        grid-template-columns: repeat(1, 1fr); /* 1 column on small screens */
    }
}

/***************************************************************
* EXPLORE
***************************************************************/

.wb-explore-hero {
    text-align:center;
    margin:2rem 0;
}

/* Grid Layout */
.wb-explore-grid {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 20px;
    align-items: flex-start;
    margin-top: 20px;
}

/* Filter Section */
.wb-filters {
    background: #ffffff;
    padding: 15px;
    border-radius: 8px;
}

/* Places List Section */
.wb-place-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Place Card */
.wb-place-card {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}

.wb-place-card:hover {
    transform: translateY(-5px);
}

/* Title */
.wb-place-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Details */
.wb-place-details p {
    margin: 5px 0;
    font-size: 0.9rem;
}

/* Responsive Layout */
@media screen and (max-width: 992px) {
    .wb-explore-grid {
        grid-template-columns: 1fr;
    }

    .wb-filters {
        order: -1; /* Moves filter section to the top */
    }
}

/* Text/number/date fields */
.filter-input {
    font-family: inherit;
    width: 100%;
    max-width: 100%;
    padding: 0.5rem;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.filter-checkbox {
    margin-right: 0.4rem;
    transform: scale(1.2);
    accent-color: var(--primary-color);
  }
  
  .filter-checkbox-label {
    cursor:pointer;
}

.filter-select {
    font-family: inherit;
    width: 100%;
    max-width: 100%;
    padding: 0.5rem;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
  }


/***************************************************************
* CHECKOUT
***************************************************************/

dl.variation {
    display: grid!important;
    grid-template-columns: auto 1fr!important;
    gap:  4px!important;
}

dl.variation dt, dl.variation dd {
    margin:  0!important;
    display: flex!important;
}

dl.variation dd p {
    margin-block-start:  0!important;
    margin-block-end:  0!important;
}

dl.variation dt {
    font-weight: 700!important;
}

/***************************************************************
* MY ACCOUNT
***************************************************************/

.order-again, .order-actions--heading, .order-actions-button {
    display:none!important;
}

.woocommerce-orders-table__cell-order-number {
    font-size:1rem!important;
}

/***************************************************************
* LOGIN
***************************************************************/

.wisebnb-full-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  }
  
  .wisebnb-center-login {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
}

/* Login Form Container */
.wisebnb-login-wrapper {
    min-width: 400px;
    margin: 50px auto;
    padding: 20px;
    text-align: center;
}

/* Login Header */
.wisebnb-login-header {
    text-align: center;
    margin-bottom: 20px;
}

.wisebnb-login-header img {
    display: block;
    margin: 0 auto 20px;
}

.wisebnb-login-header h1 {
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 10px;
    color: #333;
}

.wisebnb-login-header p {
    font-size: 16px;
    color: #555;
    margin: 0;
}

/* Login Form */
.wisebnb-login-form {
    width: 100%;
    text-align: center;
}

.wisebnb-login-form p {
    margin-bottom: 15px;
    text-align: left;
}

.wisebnb-login-form label {
    display: block;
    margin-bottom: 5px;
}

.wisebnb-login-form input[type="text"],
.wisebnb-login-form input[type="password"] {
    font-family: inherit;
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.wisebnb-login-form button {
    width: 100%;
    padding: 10px;
    background-color: var(--wisebnb-secondary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
}

.wisebnb-login-form button:hover {
    opacity: 0.9;
}

.wisebnb-login-form a {
    display: block;
    margin-top: 10px;
    color: var(--wisebnb-secondary-color);
    text-decoration: none;
}

.wisebnb-login-form a:hover {
    text-decoration: underline;
}

/* Responsive Styling for Smaller Devices */
@media (max-width: 768px) {
    .wisebnb-login-page {
        flex-direction: column;
        height: auto;
    }

    .wisebnb-login-section,
    .wisebnb-progress-section {
        width: 100%;
        height: auto;
        padding: 20px 0;
    }
}

.wisebnb-login-error {
    color:red;
}