
@media (max-width: 1200px) { .shb-hotels-grid { grid-template-columns: repeat(3, 1fr) !important; } 
.shb-search-bar-container {
    margin: 10px auto 30px !important;
} }
@media (max-width: 900px) { .shb-hotels-grid { grid-template-columns: repeat(2, 1fr) !important; } }
.shb-hotels-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px;   }
.home .shb-hotels-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px;   }
.shb-hotel-card { background: #fff; border-radius: 12px; overflow: hidden; border: 1px solid #f0f0f0; box-shadow: 0 4px 15px rgba(0,0,0,0.04); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.shb-hotel-card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(0,0,0,0.08); }
.shb-hotel-image-wrapper { width: 100%; height: 210px; overflow: hidden; position: relative; }
.shb-hotel-image-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; display: block; }
.shb-hotel-card:hover .shb-hotel-image-wrapper img { transform: scale(1.05); }
.shb-hotel-content { padding: 22px; }
.shb-hotel-title { margin: 0 0 10px 0; font-size: 15px; font-weight: 700; color: #111; line-height: 1.3; }
.shb-hotel-title a { text-decoration: none; color: inherit; }
.shb-hotel-meta { display: flex; align-items: center; font-size: 13px; color: #777; margin-bottom: 5px; }
.shb-hotel-meta svg { width: 14px; height: 14px; margin-right: 6px; fill: currentColor; }
.shb-hotel-features { display: flex; gap: 15px; font-size: 13px; color: #555; margin-bottom: 10px; }
.shb-hotel-features span { display: flex; align-items: center; }
.shb-hotel-features svg { width: 16px; height: 16px; margin-right: 6px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.shb-hotel-price { font-size: 15px; font-weight: 700; color: #111; margin-bottom: 15px; }
.shb-view-details { display: inline-flex; align-items: center; font-size: 14px; font-weight: 600; color: #d69b30; text-decoration: none; transition: color 0.2s ease; }
.shb-view-details:hover { color: #b88222; }
.shb-view-details svg { width: 16px; height: 16px; margin-left: 5px; fill: currentColor; transition: transform 0.2s ease; }

/* Search Form (Horizontal Bar) - Premium Redesign */
.shb-search-bar-container {
    background: #ffffff;
    padding: 10px 14px 10px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin: 70px auto 30px;
    position: relative;
    z-index: 10;
   max-width:80%;
    border: 1px solid #f2f2f2;
}

.shb-search-field-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 12px;
    border-right: 1px solid #eeeeee;
}

.shb-search-field-item:last-of-type {
    border-right: none;
}

.shb-field-icon {
    color: #444444;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.shb-field-inputs {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.shb-field-inputs label {
    font-size: 11px;
    font-weight: 600;
    color: #888888;
    margin-bottom: 2px;
    letter-spacing: 0.2px;text-align:left;
}

.shb-field-inputs input,
.shb-field-inputs select {
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 700;
    color: #111111;
    padding: 2px 0;
    outline: none;
    width: 100%;
 
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.shb-field-inputs select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23333333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
    padding-right: 18px;
}

.shb-search-btn {
    background: #111111;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.shb-search-btn:hover {
    background: #2b2b2b;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Search Results Layout */
.shb-search-results-container { display: flex;    flex-direction: column;}

.shb-sidebar-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #111;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    text-align: center;
}

.shb-sidebar-toggle:hover {     background: #333; }
.shb-sidebar-toggle svg {    transition: transform 0.3s ease; }
.shb-sidebar-toggle.active svg {     transform: rotate(90deg); }
.shb-search-results-layout { display: flex; gap: 30px; margin-top: 60px; }
.shb-search-sidebar { width: 250px; flex-shrink: 0; background: #f9f9f9; padding: 25px; border-radius: 12px; border: 1px solid #eee; height: fit-content; }
.shb-search-sidebar h3 { margin-top: 0; margin-bottom: 20px; font-size: 18px; color: #111; }
.shb-sidebar-field { margin-bottom: 20px; }
.shb-sidebar-field label { display: block; font-size: 13px; font-weight: 600; color: #555; margin-bottom: 8px; }
.shb-sidebar-field input, .shb-sidebar-field select { width: 100%; padding: 10px 12px; border: 1px solid #ddd; border-radius: 6px; font-size: 14px; outline: none; transition: border-color 0.2s; }
.shb-sidebar-field input:focus, .shb-sidebar-field select:focus { border-color: #d69b30; }
.shb-sidebar-button { width: 100%; background: #d69b30; color: #fff; border: none; padding: 12px; border-radius: 6px; font-size: 15px; font-weight: 600; cursor: pointer; transition: background 0.3s; }
.shb-sidebar-button:hover { background: #b88222; }
.shb-search-main { flex: 1; }

@media (max-width: 900px) {
    .shb-search-bar-container{margin:10px auto 30px;}
  
    .shb-search-divider, .shb-sidebar-field label { display: none; }
    .shb-search-button { width: 100%; justify-content: center; }
    .shb-search-results-layout { flex-direction: column;margin-top: 0px; }
    .shb-search-sidebar { width: 100%; }
     .shb-sidebar-toggle {
        display: flex;
    }
     .shb-search-sidebar {
        width: 100%;
        margin-bottom: 0px;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        padding-top: 0;
        padding-bottom: 0;
        border-color: transparent;
        transition: all 0.4s ease-in-out;
    }
      .shb-search-sidebar.active {
        max-height: 800px;
        opacity: 1;
        padding-top: 25px;
        padding-bottom: 25px;
        margin-bottom: 20px;
        border-color: #eee;
    }
}

/* Guest Reviews Section */
.shb-reviews-section { margin-top: 50px; position: relative; }
.shb-reviews-title { font-size: 25px; color: #111; margin-bottom: 30px; font-weight: normal; }
.shb-reviews-carousel-wrapper { position: relative; overflow: hidden; padding: 10px 0; }
.shb-reviews-track { display: flex; gap: 24px; transition: transform 0.5s ease-in-out; }

.shb-review-card { 
    background: #ffffff; border: 1px solid #eaeaea; border-radius: 16px; padding: 30px; 
    flex: 0 0 calc(33.333% - 16px); 
    display: flex; flex-direction: column; justify-content: space-between; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.03); transition: transform 0.3s ease, box-shadow 0.3s ease; 
}
.shb-review-card:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0,0,0,0.06); }

.shb-review-body { display: flex; gap: 15px; margin-bottom: 30px; }
.shb-review-quote { font-size: 60px; color: #d69b30; line-height: 0.8; height: 30px; }
.shb-review-text { font-size: 13px; color: #444; line-height: 1.6; }

.shb-review-footer { display: flex; justify-content: space-between; align-items: flex-end; margin-top: auto; }
.shb-review-user { display: flex; align-items: center; gap: 12px; }
.shb-review-avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.shb-review-avatar-placeholder { width: 50px; height: 50px; border-radius: 50%; background: #eee; }
.shb-review-meta { display: flex; flex-direction: column; }
.shb-review-name { font-size: 15px; font-weight: 700; color: #111; margin-bottom: 2px; }
.shb-review-location { font-size: 13px; color: #777; }
.shb-review-rating { display: flex; gap: 2px; }

.shb-carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); background: #fff; border: 1px solid #ddd; color: #333; width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 10; box-shadow: 0 4px 15px rgba(0,0,0,0.1); transition: all 0.2s; }
.shb-carousel-btn:hover { background: #f5f5f5; color: #000; }
.shb-carousel-prev { left: -20px; }
.shb-carousel-next { right: -20px; }

@media (max-width: 900px) {
    .shb-review-card { flex: 0 0 calc(50% - 12px); }
     .shb-gallery-col{width:100%;}
     
}
@media (max-width: 600px) {
    .shb-gallery-col{width:100%;}
    .shb-hotel-features {
    display: block;
}
    .shb-review-card { flex: 0 0 100% !important; }
    .shb-carousel-prev { left: 0px; }
    .shb-carousel-next { right: 0px; }
}

/* Features Section (Surroundings & Location) */
.shb-features-section { margin-top: 50px;  }
.shb-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 50px; }
.shb-feature-column { display: flex; flex-direction: column; }
.shb-feature-title { font-size: 28px; color: #111; margin-bottom: 20px; font-weight: normal; }
.shb-feature-box { display: flex; background: #fff; border: 1px solid #eaeaea; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.03); flex: 1; }
.shb-feature-media { flex: 1;  display: flex; }
.shb-feature-media iframe { width: 100%; height: 100%; border: none; }
.shb-feature-list { flex: 1; padding: 15px; display: flex; flex-direction: column; justify-content: center; gap: 25px; }
.shb-feature-item { display: flex; align-items: flex-start; gap: 20px; }
.shb-feature-icon { font-size: 22px; color: #d69b30; min-width: 30px; text-align: center; }
.shb-feature-text { flex: 1; }
.shb-feature-text h4 { margin: 0 0 5px 0; font-size: 15px; font-weight: 700; color: #222; }
.shb-feature-text p { margin: 0; font-size: 12px; color: #666; line-height: 1.5; }
.shb-feature-distance { font-size: 14px; color: #555; font-weight: 600; white-space: nowrap; margin-left: 10px; padding-top: 2px; }

@media (max-width: 1100px) {
    .shb-single-hotel-wrapper {
    margin-top: 30px !important;
}
    .shb-booking-widget{margin-top:0 !important;}
    .shb-main-body {
    margin: 0 !important;
}
    .shb-features-grid { grid-template-columns: 1fr; }
}


    
@media (max-width: 768px) {
    .shb-feature-box { flex-direction: column; }
    .shb-feature-media { min-height: 250px; }
    .shb-feature-list { padding: 25px; }
}

/* --- SINGLE HOTEL PAGE REDESIGN --- */
.shb-single-hotel-wrapper { color: #333; margin-top: 0px; }

/* Hero Section */
.shb-hero-section { position: relative;  min-height: 550px; display: flex; flex-direction: column; justify-content: flex-end; padding: 60px 0; background-size: cover; background-position: center; color: #fff; margin-bottom: 40px; }
.shb-hero-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgb(0 0 0 / 40%);z-index: 1; }
.shb-hero-content { position: relative; z-index: 2; max-width: 900px; }
.shb-hero-title {  font-size: 40px; font-weight: normal; margin: 0 0 15px 0; color: #fff; line-height: 1.1; }
.shb-hero-meta { display: flex; gap: 25px; font-size: 15px; margin-bottom: 20px; }
.shb-hero-location i, .shb-hero-rating i { color: #d69b30; margin-right: 6px; }
.shb-hero-price { font-size: 20px; margin-bottom: 20px;  }
.shb-hero-desc { font-size: 14px; line-height: 1.6; opacity: 0.9; margin-bottom: 30px; max-width: 700px; }
.shb-hero-actions { display: flex; gap: 15px; }
.shb-btn { padding: 14px 28px; border-radius: 8px; font-weight: 600; text-decoration: none; font-size: 15px; transition: all 0.3s ease; border: 1px solid transparent; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }
.shb-btn-primary { background: #d69b30; color: #fff; }
.shb-btn-primary:hover { background: #b88222; transform: translateY(-2px); }
.shb-btn-secondary { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.6); color: #fff; backdrop-filter: blur(5px); }
.shb-btn-secondary i { margin-right: 8px; }
.shb-btn-secondary:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }

/* Gallery Section */
.shb-gallery-section { display: grid; gap: 12px; }
.shb-gallery-grid-1 { grid-template-columns: 1fr; height: 430px; }
.shb-gallery-grid-2 { grid-template-columns: 1fr 1fr; height: 430px; }
.shb-gallery-grid-3 { grid-template-columns: 1fr 1fr 1fr; height: 430px; }
.shb-gallery-grid-4 { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; height: 430px; }
.shb-gallery-grid-5 { grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr; height: 430px; } 
.shb-gallery-item { position: relative; border-radius: 16px; overflow: hidden; cursor: pointer; }
.shb-gallery-grid-5 .shb-gallery-item-0 { grid-column: 1 / 2; grid-row: 1 / 3; }
.shb-gallery-img { width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 0.6s ease; }
.shb-gallery-item:hover .shb-gallery-img { transform: scale(1.06); }
.shb-gallery-more { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.55); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 14px;text-decoration: none; transition: background 0.3s; }
.shb-gallery-item:hover .shb-gallery-more { background: rgba(0,0,0,0.45); }

/* Main Layout & Containers */
.shb-container { margin: 0 10%; }
.shb-main-body { padding-bottom: 80px; }
.shb-section-title { font-size: 25px; font-weight: normal; margin: 0 0 30px 0; color: #111; }

/* Top Row (Gallery + Widget) */
.shb-top-row { display: flex; gap: 40px; margin-top: 0; position: relative; z-index: 10; margin-bottom: 60px; align-items: flex-start; }
.shb-gallery-col { flex: 1; min-width: 0; }
.shb-widget-col { width: 380px; flex-shrink: 0; }

/* Overview & Quick Facts Row */
.shb-overview-row { display: flex; gap: 40px; margin-bottom: 60px; align-items: flex-start; }
.shb-overview-text-col { flex: 1; min-width: 0; }
.shb-overview-text { font-size: 16px; color: #444; line-height: 1.8; }
.shb-quick-facts-col { width: 380px; flex-shrink: 0; padding-top: 5px; }
.shb-quick-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.shb-fact-item { display: flex; align-items: center; gap: 15px; }
.shb-fact-item i { font-size: 24px; color: #d69b30; width: 30px; text-align: center; }
.shb-fact-text { display: flex; flex-direction: column; }
.shb-fact-text small { font-size: 12px; color: #777; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.shb-fact-text strong { font-size: 15px; color: #111; font-weight: 600; }

/* Amenities */
.shb-amenities-section { margin-bottom: 60px; }
.shb-amenities-grid { display: grid; grid-template-columns: repeat(6, 1fr); }
.shb-amenity-box { display: flex; align-items: center; gap: 12px; padding: 15px 18px; border: 1px solid #eee; border-radius: 10px; font-size: 14px; font-weight: 500; color: #333; transition: box-shadow 0.3s; }
.shb-amenity-box:hover { box-shadow: 0 4px 15px rgba(0,0,0,0.03); border-color: #ddd; }
.shb-amenity-icon { color: #d69b30; font-size: 16px; }

/* Room Details */
.shb-rooms-section { margin-bottom: 60px; }
.shb-rooms-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.shb-room-card { border: 1px solid #eee; border-radius: 14px; overflow: hidden; background: #fff; transition: box-shadow 0.3s; }
.shb-room-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.shb-room-img { height: 160px; background-size: cover; background-position: center; }
.shb-room-info { padding: 20px; }
.shb-room-info h4 { margin: 0 0 10px 0; font-size: 18px; color: #111;font-weight:600; }
.shb-room-amenities { list-style: none; padding: 0; margin: 0 0 15px 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 15px; }
.shb-room-amenities li { font-size: 13px; color: #444; display: flex; align-items: flex-start; gap: 8px; }
.shb-room-amenities li i { color: #d69b30; font-size: 13px; margin-top: 2px; width: 14px; text-align: center; flex-shrink: 0; }
.shb-room-info p { font-size: 13px; color: #666; line-height: 1.5; margin: 0; }

/* Booking Widget (Overlapping) */
.shb-booking-widget { background: #fff; border-radius: 16px; border: 1px solid #eee; box-shadow: 0 15px 40px rgba(0,0,0,0.06); overflow: hidden;margin-top:-150px; }
.shb-widget-header { padding: 15px 15px 20px; border-bottom: 1px solid #f2f2f2; }
.shb-widget-price { font-size: 23px; color: #111; }
.shb-widget-subtitle { font-size: 14px; color: #777; margin-top: 5px; }
.shb-widget-body { padding: 15px; }
.shb-widget-body .shb-enquiry-form { display: flex; flex-direction: column; gap: 10px; }
.shb-form-row { display: flex; gap: 15px; }
.shb-form-group-half { flex: 1; min-width: 0; }
.shb-widget-body label { display: block; font-size: 12px; font-weight: 600; margin-bottom: 8px;letter-spacing: 0.5px; }
.shb-widget-body input, .shb-widget-body select { width: 100%; box-sizing: border-box; padding: 14px 16px; border: 1px solid #ddd; border-radius: 8px; font-size: 14px; outline: none; transition: border-color 0.2s; color: #111; font-weight: 500; }
.shb-widget-body input:focus, .shb-widget-body select:focus { border-color: #d69b30; }
.shb-submit-btn { width: 100%; background: #111; color: #fff; padding: 12px; border-radius: 8px; border: none; font-size: 16px; font-weight: 600; cursor: pointer; transition: background 0.3s; }
.shb-submit-btn:hover { background: #333; }
.shb-widget-contact-btn { display: flex; justify-content: center; align-items: center; gap: 8px; width: 100%; border: 1px solid #ddd; padding: 12px; border-radius: 8px; color: #222; text-decoration: none; font-weight: 600; font-size: 15px; margin-top: 10px; transition: background 0.3s; }
.shb-widget-contact-btn:hover { background: #f9f9f9; }

/* Lightbox */
.shb-lightbox-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.95); z-index: 99999; display: none; justify-content: center; align-items: center; }
.shb-lightbox-content { position: relative; width: 90%; max-width: 1200px; height: 90%; display: flex; flex-direction: column; justify-content: center; align-items: center; }
.shb-lightbox-image-container { width: 100%; height: calc(100% - 60px); display: flex; justify-content: center; align-items: center; }
.shb-lightbox-image-container img { max-width: 100%; max-height: 100%; object-fit: contain; }
.shb-lightbox-close { position: absolute; top: -20px; right: 0; background: transparent; border: none; color: #fff; font-size: 40px; cursor: pointer; line-height: 1; z-index: 10; opacity: 0.7; transition: opacity 0.2s; }
.shb-lightbox-close:hover { opacity: 1; }
.shb-lightbox-prev, .shb-lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.1); border: none; color: #fff; font-size: 30px; width: 60px; height: 60px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.3s; }
.shb-lightbox-prev:hover, .shb-lightbox-next:hover { background: rgba(255,255,255,0.3); }
.shb-lightbox-prev { left: -30px; }
.shb-lightbox-next { right: -30px; }
.shb-lightbox-counter { margin-top: 20px; color: #fff; font-size: 16px; opacity: 0.8; }

/* Existing tweaks */
.shb-reviews-container-wrap { margin-top: 60px; }

/* Responsive adjustments */
@media (max-width: 1200px) {
     .shb-main-body {
    margin: 0 !important;
}
    .shb-container { margin: 0 5%; }
    .shb-amenities-grid { grid-template-columns: repeat(3, 1fr); }
    .shb-rooms-grid { grid-template-columns: repeat(2, 1fr); }
    .shb-top-row { gap: 30px; }
    .shb-widget-col { width: 340px; }
    .shb-overview-row { gap: 30px; }
    .shb-quick-facts-col { width: 340px; }
}
@media (max-width: 992px) {
    .shb-top-row { flex-direction: column; margin-top: 0; gap: 40px; }
    .shb-widget-col { width: 100%; }
    .shb-overview-row { flex-direction: column; gap: 40px; }
    .shb-quick-facts-col { width: 100%; }
}
@media (max-width: 768px) {
    .shb-booking-widget {
    margin-top: 0;
}
    .shb-single-hotel-wrapper{margin-top:30px;}
    .shb-hero-section { min-height:auto;}
    .shb-hero-title { font-size: 30px; }
    .shb-gallery-grid-5 { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 180px); height: auto; }
    .shb-gallery-grid-5 .shb-gallery-item-0 { grid-column: 1 / 3; grid-row: 1 / 2; }
    .shb-amenities-grid { grid-template-columns: repeat(2, 1fr); }
    .shb-rooms-grid { grid-template-columns: 1fr; }
    .shb-lightbox-prev { left: 0; }
    .shb-lightbox-next { right: 0; }
}
@media (max-width: 576px) {
    .shb-form-row { flex-direction: column; gap: 0; margin-bottom: 0; }
    .shb-form-group-half { margin-bottom: 15px; }
}
.flatpickr-current-month {
    font-size: 16px !important;
}
.flatpickr-current-month span.cur-month:hover {
    background: transparent !important;
}

/* --- Fix Flatpickr Grid Alignment Issues --- */
.flatpickr-calendar {
    height: auto !important;
    padding-bottom: 10px !important;
    box-sizing: border-box !important;
}
.flatpickr-calendar .flatpickr-innerContainer {
    overflow: visible !important;
}
.flatpickr-calendar .flatpickr-day {
    display: inline-block !important;
}
.flatpickr-calendar .flatpickr-day.prevMonthDay,
.flatpickr-calendar .flatpickr-day.nextMonthDay {
   visibility: hidden !important;
}
.flatpickr-calendar .dayContainer {
    justify-content: flex-start !important;
    align-content: flex-start !important;
}
@media (max-width: 767px) {
    .shb-hotel-image-wrapper{height:auto;}
    .shb-hotel-image-wrapper img{height:120px;}
    .shb-hotel-features {
    font-size: 12px;
}
    .shb-hotel-price, .shb-view-details {
    font-size: 12px;margin-bottom:0;
}
    .shb-hotel-title, .shb-hotel-meta {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;display:block;
}
    .shb-hotel-content {
    padding: 10px 5px;
}
    .shb-gallery-grid-2 {
    height: 150px;
}
  .shb-gallery-grid-3 {
    height: 100px;
}
    .shb-gallery-grid-1 {
    height: 150px !important;
    width: 150px;
}
  .shb-search-field-item {
   border-right:0;
}
    .shb-search-bar-container {border-radius: 12px; padding: 20px; gap: 20px;display:block;max-width:100%; }
}

/* --- Sticky WhatsApp Button --- */
.shb-whatsapp-sticky {
    position: fixed;
    bottom: 50px;
    right: 20px;
    background-color: #25D366;
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 9999;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: shb-whatsapp-pulse 1.2s infinite;
}
.shb-whatsapp-sticky:hover, .shb-callus-sticky:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    color: white;
}
.shb-whatsapp-sticky i {
   font-size:30px;
}
.shb-callus-sticky i
{
    font-size:20px;
}
@keyframes shb-whatsapp-pulse {
    0% { box-shadow: 0 4px 10px rgba(0,0,0,0.15), 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 4px 10px rgba(0,0,0,0.15), 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 4px 10px rgba(0,0,0,0.15), 0 0 0 0 rgba(37, 211, 102, 0); }
}
.main-footer p {
    text-align: justify;
}



