/* Center Search Widget & Modern Header Styles */

/* Oyo Portal Design System Overrides */
:root {
  --color-primary: #DD2833 !important;
  --color-primary-rgb: 221, 40, 51 !important;
  --color-secondary: #DD2833 !important;
  --text-dark: #333333 !important;
  --color-dark: #333333 !important;
  --color-medium: #333333 !important;
  --text-medium: #333333 !important;
}

body {
  color: #333333 !important;
}

.bg-primary {
  background-color: #DD2833 !important;
}

.btn-primary {
  background-color: #DD2833 !important;
  border-color: #DD2833 !important;
}

.btn-primary:hover {
  background-color: #333333 !important;
  border-color: #333333 !important;
}

.btn-secondary {
  background-color: #333333 !important;
  border-color: #333333 !important;
}

.btn-secondary:hover {
  background-color: #DD2833 !important;
  border-color: #DD2833 !important;
}

/* Header overrides */
.header-area.header_v1 {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.header-area.header_v1 .header-top {
  background-color: #0b1c24 !important; /* sleek deep dark color */
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  padding: 10px 0;
}

.header-area.header_v1 .header-top .contact-list li a {
  color: #c4d1d9 !important;
  font-weight: 400;
  transition: color 0.2s ease;
}

.header-area.header_v1 .header-top .contact-list li a:hover {
  color: #fff !important;
}

.header-area.header_v1 .header-top .dropdown-toggle {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 50px !important;
  padding: 6px 16px !important;
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  transition: all 0.2s ease !important;
}

.header-area.header_v1 .header-top .dropdown-toggle:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
}

.header-area.header_v1 .header-top .dropdown-menu {
  border: none !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
  border-radius: 8px !important;
  padding: 8px 0 !important;
}

.header-area.header_v1 .header-top .dropdown-item {
  font-size: 13px !important;
  padding: 8px 20px !important;
}

.header-area.header_v1 .header-bottom {
  background: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(10px);
  padding: 10px 0;
}

.header-area.header_v1 .navbar-nav .nav-item {
  margin-left: 10px;
  margin-right: 10px;
}

.header-area.header_v1 .navbar-nav .nav-link {
  color: #333333 !important;
  font-weight: 500 !important;
  font-size: 15px !important;
  padding-top: 15px !important;
  padding-bottom: 15px !important;
  transition: color 0.2s ease !important;
}

.header-area.header_v1 .navbar-nav .nav-item .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0px;
  left: 0;
  background-color: var(--color-primary);
  transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.header-area.header_v1 .navbar-nav .nav-item:hover .nav-link::after,
.header-area.header_v1 .navbar-nav .nav-item .nav-link.active::after {
  width: 100%;
}

.header-area.header_v1 .navbar-nav .nav-link.active {
  color: var(--color-primary) !important;
}

/* Category Tabs Section styles */
.hero-banner_v1 {
  background: #F5F5F5 !important;
  margin-top: 0px !important;
  padding: 160px 0 80px 0 !important;
  transition: all 0.3s ease;
  position: relative !important;
  z-index: 1001 !important;
}

@media (max-width: 991px) {
  .hero-banner_v1 {
    padding: 100px 0 60px 0 !important;
  }
}

.centered-search-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  text-align: center;
  z-index: 1002 !important;
}


/* Redesigned Premium Horizontal Search Bar */
.category-tabs-row {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 24px;
  align-items: center;
}

.category-tab-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  outline: none;
  position: relative;
  padding-bottom: 12px;
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.category-tab-btn img {
  width: 90px;
  height: 90px;
  display: block;
  background-color: #ffffff;
  padding: 8px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 2px solid transparent;
  transition: all 0.25s ease;
}

.category-tab-btn .tab-label {
  font-size: 14px;
  font-weight: 700;
  color: #333333;
  transition: color 0.2s ease;
}

.category-tab-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 44px;
  height: 3px;
  background-color: #DD2833;
  border-radius: 2px;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.category-tab-btn:hover {
  transform: translateY(-4px);
}

.category-tab-btn:hover img {
  box-shadow: 0 8px 20px rgba(221, 40, 51, 0.15);
  border-color: rgba(221, 40, 51, 0.2);
}

.category-tab-btn.active-tab img {
  box-shadow: 0 10px 25px rgba(221, 40, 51, 0.2);
  border-color: #DD2833;
  transform: scale(1.04);
}

.category-tab-btn.active-tab .tab-label {
  color: #DD2833;
}

.category-tab-btn.active-tab::after {
  transform: translateX(-50%) scaleX(1);
}

/* Search widget wrapper */
.search-card-wrapper {
  position: relative;
  text-align: left;
  max-width: 950px;
  margin: 0 auto;
}

.premium-search-bar {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 9999px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  padding: 6px 6px 6px 20px;
  position: relative;
}

.search-block-col {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  flex-grow: 1;
  flex-basis: 0;
  cursor: pointer;
  position: relative;
  transition: background 0.2s ease, border-radius 0.2s ease;
}

.search-block-col:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: #edf2f7;
}

.search-block-col:hover {
  background: #f7fafc;
  border-radius: 9999px;
}

.search-block-col.popover-active {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border-radius: 9999px;
}

.search-block-col.popover-active::after {
  display: none;
}

.search-block-col:hover::after {
  display: none;
}

.block-icon {
  font-size: 18px;
  color: #DD2833;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
}

.block-text {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-width: 0;
}

.block-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: #718096;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.block-input {
  border: none;
  outline: none;
  font-size: 13.5px;
  font-weight: 700;
  color: #2d3748;
  background: transparent;
  width: 100%;
  padding: 0;
}

.block-input::placeholder {
  color: #a0aec0;
  font-weight: 500;
}

.block-display-val {
  font-size: 13.5px;
  font-weight: 700;
  color: #a0aec0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.block-display-val.has-val {
  color: #2d3748;
}

/* Search Button */
.search-btn-wrapper {
  padding-left: 8px;
}

.btn-search-main {
  background-color: #DD2833 !important;
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 9999px;
  border: none;
  box-shadow: 0 4px 15px rgba(221, 40, 51, 0.25);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  outline: none;
}

.btn-search-main:hover {
  background-color: #bd1f29 !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(221, 40, 51, 0.35);
}

.btn-search-main:active {
  transform: translateY(0);
}

/* Popover Dropdown Container */
.popover-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 999;
  padding: 16px;
  display: none;
  animation: popoverFadeIn 0.2s ease;
}

#popover-location {
  width: 260px;
  left: 0;
  border-radius: 12px;
}

#popover-guests {
  width: 280px;
  right: 0;
  border-radius: 12px;
}

.popover-title {
  font-size: 12px;
  font-weight: 700;
  color: #718096;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  border-bottom: 1px solid #edf2f7;
  padding-bottom: 6px;
}

.popular-destinations-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dest-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  font-size: 13.5px;
  font-weight: 600;
  color: #4a5568;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s ease;
}

.dest-item i {
  color: #a0aec0;
}

.dest-item:hover {
  background: #f7fafc;
  color: #DD2833;
}

.dest-item:hover i {
  color: #DD2833;
}

/* Guest counter styles */
.counter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}

.counter-row:not(:last-child) {
  border-bottom: 1px solid #edf2f7;
  margin-bottom: 8px;
  padding-bottom: 8px;
}

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

.counter-label .title {
  font-size: 13.5px;
  font-weight: 700;
  color: #2d3748;
}

.counter-label .desc {
  font-size: 11px;
  color: #718096;
}

.counter-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.counter-controls button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #cbd5e0;
  background: #ffffff;
  color: #4a5568;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}

.counter-controls button:hover {
  border-color: #DD2833;
  color: #DD2833;
}

.counter-controls input {
  width: 30px;
  border: none;
  background: transparent;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #2d3748;
  outline: none;
}

/* Custom Calendar Popover */
.popover-calendar-wrapper {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  z-index: 999;
  padding: 24px;
  width: 760px;
  display: none;
  animation: popoverFadeIn 0.2s ease;
}

.calendar-header-tabs {
  display: flex;
  justify-content: center;
  background: #edf2f7;
  padding: 4px;
  border-radius: 99px;
  width: fit-content;
  margin: 0 auto 20px auto;
}

.cal-tab {
  background: transparent;
  border: none;
  padding: 8px 24px;
  font-size: 13px;
  font-weight: 700;
  color: #4a5568;
  border-radius: 99px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.cal-tab.active {
  background: #ffffff;
  color: #2d3748;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.calendar-months-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.calendar-month-block {
  display: flex;
  flex-direction: column;
}

.calendar-month-header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 12px;
}

.calendar-month-header .month-title {
  font-size: 15px;
  font-weight: 700;
  color: #2d3748;
}

.cal-nav-arrow {
  background: transparent;
  border: 1px solid #e2e8f0;
  color: #4a5568;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  transition: all 0.15s ease;
}

.cal-nav-arrow:hover {
  background: #f7fafc;
  border-color: #cbd5e0;
  color: #DD2833;
}

#cal-prev-btn {
  left: 0;
}

#cal-next-btn {
  right: 0;
}

.calendar-days-grid-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
}

.calendar-days-grid-header .day-name {
  font-size: 11px;
  font-weight: 700;
  color: #a0aec0;
  text-align: center;
}

.calendar-days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.day-slot {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: #2d3748;
  border-radius: 50%;
  border: none;
  background: transparent;
}

.day-btn {
  cursor: pointer;
  transition: all 0.15s ease;
}

.day-btn:hover {
  background: #f7fafc;
  color: #DD2833;
  border-radius: 50%;
}

.day-btn.past {
  color: #cbd5e0 !important;
  cursor: not-allowed;
}

.day-btn.past:hover {
  background: transparent !important;
}

/* Range Selected states */
.day-btn.selected-start {
  background: #DD2833 !important;
  color: #ffffff !important;
  border-radius: 50% 0 0 50% !important;
}

.day-btn.selected-end {
  background: #DD2833 !important;
  color: #ffffff !important;
  border-radius: 0 50% 50% 0 !important;
}

.day-btn.selected-in-between {
  background: rgba(221, 40, 51, 0.08) !important;
  color: #DD2833 !important;
  border-radius: 0 !important;
  border-top: 1px dashed rgba(221, 40, 51, 0.2);
  border-bottom: 1px dashed rgba(221, 40, 51, 0.2);
}

.day-btn.hover-in-between {
  background: rgba(221, 40, 51, 0.04) !important;
  color: #DD2833 !important;
  border-radius: 0 !important;
}

/* Presets at bottom */
.calendar-presets-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  border-top: 1px solid #edf2f7;
  margin-top: 16px;
  padding-top: 16px;
  flex-wrap: wrap;
}

.preset-btn {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 600;
  color: #4a5568;
  cursor: pointer;
  transition: all 0.15s ease;
}

.preset-btn:hover {
  border-color: #DD2833;
  color: #DD2833;
}

.preset-btn.active {
  border-color: #DD2833;
  background: rgba(221, 40, 51, 0.05);
  color: #DD2833;
}

/* Fade in animation */
@keyframes popoverFadeIn {
  from {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

#popover-calendar.popover-fade-in {
  /* keep center translation */
  animation: calendarFadeIn 0.2s ease;
}

@keyframes calendarFadeIn {
  from {
    opacity: 0;
    transform: translate3d(-50%, 10px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(-50%, 0, 0);
  }
}

/* Media query for mobile responsive */
@media (max-width: 991px) {
  .search-card-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .search-card-col {
    padding: 0;
    border-right: none !important;
    padding-bottom: 20px;
  }
  .search-card-col:not(:last-child) {
    border-bottom: 1px solid #edf2f7;
  }
  .search-card-wrapper {
    padding: 24px 20px 48px 20px;
  }
  .category-tabs-row {
    gap: 40px;
  }
  .category-tab-btn img {
    width: 80px;
  }
}

/* Standardize homepage section headings to 30px */
.section-title .title,
.content-title .title {
  font-size: 30px !important;
}

/* Header layout modifications for Oyo Red theme */
@media (min-width: 1200px) {
  /* Hide the topbar on desktop */
  .header-area.header_v1 .header-top {
    display: none !important;
  }
}

/* Ensure the OYO brand logo has correct proportions on desktop */
.navbar-brand img {
  max-height: 42px !important;
  width: auto !important;
}

/* Style the Customer and Vendor dropdowns inside the main navbar */
.header-navbar-dropdown .dropdown-toggle {
  background: rgba(51, 51, 51, 0.04) !important;
  border: 1px solid rgba(51, 51, 51, 0.08) !important;
  border-radius: 50px !important;
  padding: 8px 20px !important;
  color: #333333 !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  display: flex !important;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease !important;
}

.header-navbar-dropdown .dropdown-toggle:hover {
  background: rgba(221, 40, 51, 0.08) !important;
  border-color: rgba(221, 40, 51, 0.2) !important;
  color: #DD2833 !important;
}

.header-navbar-dropdown .dropdown-menu {
  border: none !important;
  box-shadow: 0 10px 30px rgba(51, 51, 51, 0.08) !important;
  border-radius: 12px !important;
  padding: 8px 0 !important;
}

.header-navbar-dropdown .dropdown-item {
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #333333 !important;
  padding: 10px 24px !important;
  transition: all 0.2s ease !important;
}

.header-navbar-dropdown .dropdown-item:hover {
  background-color: rgba(221, 40, 51, 0.06) !important;
  color: #DD2833 !important;
}

/* Explore By Cities Section Redesign */
.category-area_v1 .card_content {
  margin-top: -22px !important;
  padding-inline-start: 24px !important;
  padding-inline-end: 24px !important;
  display: flex;
  justify-content: center;
}

.category-area_v1 .card_content .btn-secondary {
  background-color: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  color: #333333 !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04) !important;
  padding: 10px 24px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
  min-width: 150px;
  transition: all 0.25s ease !important;
}

.category-area_v1 .card_content .btn-secondary span {
  color: #333333 !important;
  transition: color 0.25s ease !important;
}

.category-area_v1 .card_content .btn-secondary i {
  color: #DD2833 !important; /* Arrow in Brand Red */
  transition: transform 0.25s ease, color 0.25s ease !important;
}

.category-area_v1 .card_content .btn-secondary:hover {
  background-color: #ffffff !important;
  border-color: rgba(221, 40, 51, 0.3) !important;
  box-shadow: 0 8px 20px rgba(221, 40, 51, 0.08) !important;
  transform: translateY(-3px);
}

.category-area_v1 .card_content .btn-secondary:hover span {
  color: #DD2833 !important;
}

.category-area_v1 .card_content .btn-secondary:hover i {
  color: #DD2833 !important;
  transform: translateX(4px);
}

[dir="rtl"] .category-area_v1 .card_content .btn-secondary:hover i {
  transform: translateX(-4px) !important;
}

/* Popular Hotel Rooms Section Redesign */
.product-default {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 6px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02) !important;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
  overflow: hidden;
}

.product-default:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px rgba(221, 40, 51, 0.06) !important;
  border-color: rgba(221, 40, 51, 0.2) !important;
}

/* Room image */
.product-default .product_img {
  border-top-left-radius: 6px !important;
  border-top-right-radius: 6px !important;
  overflow: hidden;
  position: relative;
}

.product-default .product_img a.lazy-container {
  border-radius: 0 !important; /* remove inside radius to bleed into image edges */
}

/* Wishlist button */
.product-default .btn-icon {
  background: #ffffff !important;
  border: 1px solid rgba(51,51,51,0.06) !important;
  box-shadow: 0 4px 10px rgba(51,51,51,0.08) !important;
  border-radius: 50% !important;
  width: 38px !important;
  height: 38px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: #333333 !important;
  transition: all 0.2s ease !important;
  top: 15px !important;
  right: 15px !important;
  z-index: 5;
}

.product-default .btn-icon:hover {
  transform: scale(1.1);
  color: #DD2833 !important;
  background-color: #ffffff !important;
  border-color: rgba(221, 40, 51, 0.15) !important;
}

.product-default .btn-icon.active {
  color: #DD2833 !important;
  background-color: #ffffff !important;
}

.product-default .btn-icon.active i {
  font-weight: 900 !important;
}

/* Ratings Badge */
.product-default .ratings {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(221, 40, 51, 0.05);
  border: 1px solid rgba(221, 40, 51, 0.1);
  padding: 4px 10px;
  border-radius: 4px;
}

.product-default .ratings .product-ratings {
  font-size: 11px;
}

.product-default .ratings span {
  font-size: 12px;
  font-weight: 600;
  color: #DD2833 !important;
}

/* Star rank at the top left of the card image */
.product-default .rank-star {
  background: rgba(255, 255, 255, 0.95) !important;
  border-radius: 4px !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05) !important;
  padding: 4px 8px !important;
  top: 15px !important;
  left: 15px !important;
  font-weight: 700;
  font-size: 11px !important;
  color: #DD2833 !important;
}

/* Location list & text */
.product-default .product_details {
  padding: 24px 20px !important;
}

.product-default .product_title {
  margin-bottom: 8px;
}

.product-default .product_title .title a {
  color: #333333 !important;
  font-weight: 700 !important;
  font-size: 18px !important;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.product-default .product_title .title a:hover {
  color: #DD2833 !important;
}

.product-default .location {
  display: flex !important;
  align-items: center;
  gap: 6px;
  font-size: 13px !important;
  color: #333333 !important;
  margin-top: 8px;
}

.product-default .location i {
  color: #DD2833 !important;
  font-size: 14px;
}

/* Amenities Icons List */
.product-default .product-icon_list {
  display: flex !important;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px !important;
  margin-top: 16px !important;
}

.product-default .product-icon_list li {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  background: #f7fafc !important;
  border: 1px solid #edf2f7 !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  color: #333333 !important;
  font-size: 12px !important;
  transition: all 0.2s ease !important;
}

.product-default .product-icon_list li:hover {
  background: rgba(221, 40, 51, 0.06) !important;
  border-color: rgba(221, 40, 51, 0.15) !important;
  color: #DD2833 !important;
  transform: translateY(-2px);
}

.product-default .product-icon_list li.more_item_show_btn {
  font-size: 11px !important;
  font-weight: 700;
  cursor: pointer;
  position: relative;
}

/* Hotel Brand Author Link */
.product-default .product_author {
  margin-top: 16px !important;
}

.product-default .product_author a {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #333333 !important;
  transition: color 0.2s ease;
}

.product-default .product_author a img {
  border-radius: 50% !important;
  border: 1px solid #e2e8f0 !important;
  width: 24px !important;
  height: 24px !important;
  object-fit: cover;
}

.product-default .product_author a:hover {
  color: #DD2833 !important;
}

/* Prices Bottom Section */
.product-default .product_bottom {
  padding: 16px 20px !important;
  background: #fcfdfe !important;
  border-top: 1px solid #edf2f7 !important;
}

.product-default .product-price_list {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(65px, 1fr)) !important;
  gap: 8px !important;
  justify-content: stretch !important;
  padding-left: 0 !important;
  margin-bottom: 0 !important;
}

.product-default .product-price_list li {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 6px !important;
  padding: 6px 4px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.2s ease !important;
  box-shadow: 0 2px 4px rgba(0,0,0,0.01) !important;
}

.product-default .product-price_list li span.h6 {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #333333 !important;
  margin-bottom: 2px !important;
  transition: color 0.2s ease !important;
}

.product-default .product-price_list li span:not(.h6) {
  font-size: 10px !important;
  font-weight: 600 !important;
  color: #333333 !important;
  text-transform: uppercase;
  transition: color 0.2s ease !important;
}

.product-default .product-price_list li:hover {
  background: #DD2833 !important;
  border-color: #DD2833 !important;
  box-shadow: 0 4px 10px rgba(221, 40, 51, 0.2) !important;
  transform: translateY(-2px);
}

.product-default .product-price_list li:hover span.h6,
.product-default .product-price_list li:hover span {
  color: #ffffff !important;
}

/* Counter Section Redesign */
.counter-area_v1 {
  position: relative !important;
  background-attachment: scroll !important;
}

.counter-area_v1 .overlay {
  background-color: #0c1821 !important;
  opacity: 0.75 !important;
}

.counter-area_v1 .card {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  border-radius: 6px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
  padding: 30px 24px !important;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
  height: 100%;
}

.counter-area_v1 .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(221, 40, 51, 0.1) !important;
  border-color: rgba(221, 40, 51, 0.2) !important;
}

.counter-area_v1 .card .card_icon {
  width: 65px;
  height: 65px;
  margin: 0 auto 20px auto !important;
  background-color: rgba(221, 40, 51, 0.08) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease !important;
}

.counter-area_v1 .card:hover .card_icon {
  background-color: #DD2833 !important;
  transform: rotateY(180deg);
}

.counter-area_v1 .card .card_icon img {
  max-width: 32px !important;
  height: auto !important;
  transition: filter 0.3s ease !important;
}

.counter-area_v1 .card:hover .card_icon img {
  filter: brightness(0) invert(1) !important;
}

.counter-area_v1 .card .card_title {
  color: #DD2833 !important;
  font-size: 36px !important;
  font-weight: 800 !important;
  margin-bottom: 12px !important;
}

.counter-area_v1 .card .card_text {
  color: #333333 !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  letter-spacing: 0.2px;
}

/* ==========================================
   Airbnb-Style Room Slider CSS Overrides
   ========================================== */
.airbnb-homes-section {
  background-color: #ffffff;
  padding: 60px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.airbnb-section-wrapper {
  position: relative;
}

.airbnb-section-header {
  border-bottom: none;
}

.airbnb-section-title {
  font-size: 26px !important;
  font-weight: 700 !important;
  color: #333333 !important;
  letter-spacing: -0.6px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.airbnb-section-title .arrow-icon {
  font-size: 22px;
  color: #333333;
  transition: transform 0.2s ease;
}

.airbnb-section-title:hover .arrow-icon {
  transform: translateX(4px);
}

.airbnb-carousel-nav .airbnb-nav-btn {
  width: 38px !important;
  height: 38px !important;
  border: 1px solid rgba(51, 51, 51, 0.1) !important;
  background-color: #ffffff !important;
  color: #333333 !important;
  font-size: 14px !important;
  border-radius: 50% !important;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
  transition: all 0.2s ease;
}

.airbnb-carousel-nav .airbnb-nav-btn:hover {
  background-color: #DD2833 !important;
  border-color: #DD2833 !important;
  color: #ffffff !important;
  box-shadow: 0 6px 16px rgba(221, 40, 51, 0.25) !important;
  transform: translateY(-2px);
}

.airbnb-carousel-nav .airbnb-nav-btn:active {
  transform: scale(0.95);
}

.airbnb-carousel-container {
  overflow: hidden !important;
  padding: 16px 6px !important;
  margin: -16px -6px !important;
}

.airbnb-room-card {
  border: 1px solid rgba(51, 51, 51, 0.08) !important;
  background: #ffffff !important;
  border-radius: 20px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
  width: 100%;
  padding: 14px !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.airbnb-room-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 40px rgba(221, 40, 51, 0.12) !important;
  border-color: rgba(221, 40, 51, 0.25) !important;
}

.airbnb-image-wrapper {
  aspect-ratio: 1.25 / 1 !important;
  border-radius: 14px !important;
  position: relative;
  background-color: #f7f7f7;
  overflow: hidden;
}

.airbnb-room-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.airbnb-room-card:hover .airbnb-room-img {
  transform: scale(1.08);
}

/* Guest Favourite Badge */
.guest-fav-badge {
  top: 12px;
  left: 12px;
  background-color: #333333 !important;
  color: #ffffff !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  padding: 5px 12px !important;
  border-radius: 30px !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15) !important;
  border: none !important;
  z-index: 5;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
}

/* Floating Price Tag */
.airbnb-price-badge {
  bottom: 12px;
  left: 12px;
  z-index: 5;
  background: linear-gradient(135deg, rgba(51, 51, 51, 0.95) 0%, rgba(34, 34, 34, 0.95) 100%) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff !important;
  padding: 6px 14px !important;
  border-radius: 30px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  transition: all 0.3s ease;
}

.airbnb-price-badge strong {
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 800;
}

.airbnb-price-badge span {
  font-size: 11px !important;
  opacity: 0.8;
  margin-left: 2px;
}

/* Wishlist Heart Button */
.airbnb-wishlist-btn {
  top: 12px;
  right: 12px;
  z-index: 5;
  background: rgba(255, 255, 255, 0.95) !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  border-radius: 50% !important;
  padding: 0 !important;
  cursor: pointer;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.airbnb-wishlist-btn:hover {
  transform: scale(1.15);
  background: #ffffff !important;
  box-shadow: 0 6px 16px rgba(221, 40, 51, 0.25) !important;
}

.airbnb-wishlist-btn .heart-icon-svg {
  width: 17px;
  height: 17px;
  fill: rgba(51, 51, 51, 0.35);
  stroke: #333333;
  stroke-width: 2.5;
  overflow: visible;
  transition: fill 0.3s ease, stroke 0.3s ease;
}

.airbnb-wishlist-btn.active .heart-icon-svg {
  fill: #DD2833 !important;
  stroke: #DD2833 !important;
}

/* Details wrapper */
.airbnb-details-wrapper {
  padding: 16px 6px 6px 6px !important;
}

/* Hotel Subtitle */
.airbnb-hotel-subtitle {
  font-size: 10px !important;
  font-weight: 700 !important;
  color: rgba(51, 51, 51, 0.4) !important;
  letter-spacing: 1px !important;
  margin-bottom: 4px !important;
}

.airbnb-card-title {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #333333 !important;
  line-height: 1.35 !important;
  margin-bottom: 8px !important;
}

.airbnb-card-title a {
  color: #333333 !important;
  text-decoration: none;
  transition: color 0.25s ease;
}

.airbnb-card-title a:hover {
  color: #DD2833 !important;
}

/* Amenities badge design */
.airbnb-amenities-row {
  margin: 12px 0 !important;
}

.amenity-badge {
  background: rgba(51, 51, 51, 0.04) !important;
  color: #333333 !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  padding: 4px 10px !important;
  border-radius: 30px !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s ease;
}

.airbnb-room-card:hover .amenity-badge {
  background: rgba(221, 40, 51, 0.05) !important;
  color: #DD2833 !important;
}

.airbnb-card-divider {
  border-top: 1px solid rgba(51, 51, 51, 0.08) !important;
  opacity: 1 !important;
  margin: 12px 0 10px 0 !important;
}

.airbnb-meta-row {
  margin-top: 10px !important;
}

.airbnb-rating {
  font-weight: 700 !important;
  font-size: 13px !important;
}

.airbnb-rating .rating-star-icon {
  font-size: 11px;
}

/* CTA Arrow Link */
.airbnb-card-arrow-link {
  color: #333333 !important;
  text-decoration: none !important;
  transition: color 0.25s ease !important;
}

.airbnb-card-arrow-link i {
  transition: transform 0.25s ease !important;
}

.airbnb-card-arrow-link:hover,
.airbnb-room-card:hover .airbnb-card-arrow-link {
  color: #DD2833 !important;
}

.airbnb-card-arrow-link:hover i,
.airbnb-room-card:hover .airbnb-card-arrow-link i {
  transform: translateX(4px);
}

/* Responsive tweaks */
@media (max-width: 575px) {
  .airbnb-room-card {
    padding: 10px !important;
    border-radius: 16px !important;
  }
  .airbnb-image-wrapper {
    border-radius: 10px !important;
  }
  .guest-fav-badge {
    top: 8px;
    left: 8px;
    padding: 3px 8px !important;
    font-size: 9px !important;
  }
  .airbnb-price-badge {
    bottom: 8px;
    left: 8px;
    padding: 4px 10px !important;
  }
  .airbnb-price-badge strong {
    font-size: 13px !important;
  }
  .airbnb-price-badge span {
    font-size: 9px !important;
  }
  .airbnb-wishlist-btn {
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
  }
  .airbnb-wishlist-btn .heart-icon-svg {
    width: 14px;
    height: 14px;
  }
  .airbnb-details-wrapper {
    padding: 12px 2px 2px 2px !important;
  }
  .airbnb-card-title {
    font-size: 15px !important;
  }
  .amenity-badge {
    padding: 3px 8px !important;
    font-size: 10px !important;
    gap: 4px;
  }
  .airbnb-card-arrow-link {
    font-size: 12px !important;
  }
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .airbnb-section-title {
    font-size: 20px !important;
  }
  .airbnb-carousel-nav {
    display: none !important; /* Swipe is natural on mobile */
  }
}

/* ==========================================
   OYO & TimeStay Promotional Banners Section
   ========================================== */
.timestay-promo-banners-section {
  padding-top: 20px;
}

.promo-banner-card {
  border-radius: 8px !important;
  background-color: #fcfdfe;
  transition: all 0.3s ease;
  overflow: hidden;
}

.promo-banner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
}

.promo-banner-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px !important;
}

/* ==========================================
   Deals Newsletter Bar Section
   ========================================== */
.deals-newsletter-card {
  border-color: #e2e8f0 !important;
  background-color: #ffffff !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03) !important;
}

.bg-light-red {
  background-color: rgba(221, 40, 51, 0.08) !important; /* light red */
  width: 48px;
  height: 48px;
}

.fire-icon-wrapper i {
  font-size: 20px;
}

.max-width-600 {
  max-width: 500px;
}

.btn-notify {
  background-color: #DD2833 !important; /* matching red */
  border-color: #DD2833 !important;
  color: #ffffff !important;
  border-radius: 6px !important;
  transition: all 0.25s ease !important;
}

.btn-notify:hover {
  background-color: #333333 !important;
  border-color: #333333 !important;
  transform: scale(1.02);
}

.border-grey {
  border-color: #cbd5e0 !important;
}

/* ==========================================
   World Map & Locations Section
   ========================================== */
.world-map-section {
  padding-top: 30px;
  background-color: #ffffff;
}

.world-map-wrapper {
  background-color: #fafbfc;
  border-radius: 16px;
  padding: 30px;
  border: 1px solid #edf2f7;
}

.map-floating-pin {
  position: absolute;
  width: 42px;
  height: 42px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  border: 2px solid #ffffff;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.map-floating-pin img {
  width: 24px;
  height: auto;
  object-fit: contain;
}

.map-floating-pin:hover {
  transform: scale(1.2) translateY(-4px);
  box-shadow: 0 10px 24px rgba(221, 40, 51, 0.2);
  z-index: 10;
}

/* Float animations for pins */
@keyframes mapFloat {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}

.map-floating-pin.pin-1 { animation: mapFloat 4s ease-in-out infinite; }
.map-floating-pin.pin-2 { animation: mapFloat 4.5s ease-in-out infinite 0.5s; }
.map-floating-pin.pin-3 { animation: mapFloat 5s ease-in-out infinite 1s; }
.map-floating-pin.pin-4 { animation: mapFloat 3.8s ease-in-out infinite 1.5s; }

.map-info-content h2 {
  font-size: 32px !important;
  line-height: 1.25 !important;
  letter-spacing: -0.8px;
}

.stats-row {
  border-bottom-color: #edf2f7 !important;
}

.stats-row h3 {
  font-size: 28px !important;
  line-height: 1;
}

.stat-divider {
  border-end-color: #edf2f7 !important;
}

.country-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

@media (max-width: 991px) {
  .deals-newsletter-card {
    flex-direction: column;
    align-items: flex-start !important;
    padding: 24px !important;
  }
  
  .deals-form-wrapper {
    width: 100% !important;
    max-width: 100% !important;
  }
  
  }
}

/* ==========================================
   Premium Homepage Redesign Sections (3 to 17)
   ========================================== */
.homepage-premium-section {
  padding: 60px 0;
  font-family: 'Inter', -apple-system, sans-serif;
}

.section-title-premium {
  font-size: 26px !important;
  font-weight: 800 !important;
  color: #1e293b;
  letter-spacing: -0.5px;
}

.bg-light {
  background-color: #f8fafc !important;
}

/* Premium Slider Nav Buttons */
.premium-slider-nav {
  display: flex;
  gap: 10px;
}

.nav-btn-round {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #cbd5e1;
  background-color: #ffffff;
  color: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.nav-btn-round:hover {
  background-color: #DD2833;
  border-color: #DD2833;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(221, 40, 51, 0.25);
  transform: translateY(-2px);
}

/* Card Styling */
.premium-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid #e2e8f0;
}

.premium-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;
  border-color: rgba(221, 40, 51, 0.15);
}

.card-img-container {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.card-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.premium-card:hover .card-img-container img {
  transform: scale(1.06);
}

.card-img-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #DD2833;
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-price-overlay {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background-color: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 11px;
  backdrop-filter: blur(4px);
}

.card-price-overlay strong {
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
}

.card-rating-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
}

.card-title-premium {
  font-size: 16px !important;
  font-weight: 700 !important;
  margin-bottom: 8px;
  line-height: 1.4;
}

.card-title-premium a {
  color: #1e293b !important;
  text-decoration: none;
  transition: color 0.2s;
}

.card-title-premium a:hover {
  color: #DD2833 !important;
}

.card-meta {
  font-size: 12px;
  color: #64748b;
}

.card-loc-text {
  font-size: 13px;
  color: #64748b;
}

.btn-premium-card {
  background-color: #f1f5f9;
  color: #1e293b;
  font-weight: 600;
  border: none;
  padding: 10px;
  border-radius: 8px;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-premium-card:hover {
  background-color: #DD2833;
  color: #ffffff;
}

.price-bold {
  font-size: 18px;
  font-weight: 800;
  color: #1e293b;
}

/* 5. Bar & Lounge Section (Dark Mode) */
.lounge-card {
  background-color: #1e293b;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid #334155;
  height: 100%;
}

.lounge-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3) !important;
  border-color: #DD2833;
}

.lounge-img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.lounge-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.lounge-card:hover .lounge-img img {
  transform: scale(1.06);
}

.lounge-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #DD2833;
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.lounge-title {
  font-size: 16px !important;
  font-weight: 700 !important;
  margin-bottom: 12px;
}

.lounge-title a {
  color: #ffffff !important;
  text-decoration: none;
  transition: color 0.2s;
}

.lounge-title a:hover {
  color: #DD2833 !important;
}

.lounge-meta-grid {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 8px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* 6. Trending Destinations Grid */
.dest-card-premium {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.dest-card-premium img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.dest-card-premium:hover img {
  transform: scale(1.08);
}

.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: all 0.3s ease;
}

.dest-card-overlay h4 {
  color: #ffffff !important;
  font-weight: 800 !important;
  font-size: 20px;
  margin-bottom: 4px;
}

.dest-card-overlay .explore-btn {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.dest-card-premium:hover .explore-btn {
  color: #ffffff;
  transform: translateX(4px);
}

/* 7. Deals & Offers Coupon Card */
.coupon-card {
  border-radius: 16px;
  height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  position: relative;
}

.bg-gradient-red {
  background: linear-gradient(135deg, #f43f5e 0%, #be123c 100%) !important;
}

.bg-gradient-blue {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%) !important;
}

.bg-gradient-orange {
  background: linear-gradient(135deg, #f97316 0%, #c2410c 100%) !important;
}

.bg-gradient-green {
  background: linear-gradient(135deg, #10b981 0%, #047857 100%) !important;
}

.coupon-header .badge {
  font-size: 10px;
  font-weight: 700;
  border-radius: 4px;
}

.coupon-code {
  font-family: monospace;
  font-weight: bold;
  font-size: 13px;
  background-color: rgba(255, 255, 255, 0.15);
  padding: 2px 8px;
  border-radius: 4px;
}

.coupon-discount-val {
  font-size: 24px !important;
  font-weight: 850 !important;
}

/* 8. Featured Properties Tabbed Grid */
.feat-tab-btn {
  background: none;
  border: 1px solid #e2e8f0;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 13.5px;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  transition: all 0.25s ease;
}

.feat-tab-btn:hover,
.feat-tab-btn.active {
  background-color: #DD2833;
  color: #ffffff;
  border-color: #DD2833;
  box-shadow: 0 4px 12px rgba(221, 40, 51, 0.2);
}

/* 9. Why Choose Us */
.why-us-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #edf2f7;
  transition: all 0.3s ease;
  height: 100%;
}

.why-us-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.04) !important;
  border-color: rgba(221, 40, 51, 0.1);
}

.why-us-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: rgba(221, 40, 51, 0.06);
  border-radius: 50%;
  color: #DD2833 !important;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.why-us-card:hover .why-us-icon-wrapper {
  background-color: #DD2833;
  color: #ffffff !important;
  transform: rotateY(180deg);
}

.why-us-title {
  font-size: 16px !important;
  font-weight: 700 !important;
  margin-bottom: 8px;
  color: #1e293b;
}

/* 10. Membership columns */
.membership-plan-card {
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  position: relative;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
}

.membership-plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06) !important;
}

.plan-label {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 30px;
}

.plan-label.silver { background: #f1f5f9; color: #475569; }
.plan-label.gold { background: #fef3c7; color: #d97706; }
.plan-label.platinum { background: #fae8ff; color: #c084fc; }

.gold-plan-border {
  border: 2px solid #d97706;
}

.popular-plan-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #d97706;
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 14px;
  border-radius: 20px;
}

.plan-benefits-list {
  list-style: none;
  padding: 0;
}

.plan-benefits-list li {
  margin-bottom: 10px;
  font-size: 13.5px;
  color: #475569;
}

/* 11. Popular Cities */
.city-grid-card {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  transition: all 0.25s ease;
}

.city-grid-card:hover {
  transform: translateY(-3px);
  border-color: #DD2833;
  box-shadow: 0 8px 20px rgba(221, 40, 51, 0.08) !important;
}

.city-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}

.city-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 12. Testimonials */
.testimonial-card {
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  height: 100%;
}

.testimonial-card .author-img {
  width: 45px;
  height: 45px;
  object-fit: cover;
}

/* 13. Download App Frame */
.phone-mockup-frame {
  width: 170px;
  height: 310px;
  background-color: #000000;
  border-radius: 24px;
  padding: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  border: 4px solid #334155;
  overflow: hidden;
}

.phone-screen-content {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.phone-screen-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mock-brand-tag {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  font-size: 8px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 8px;
  white-space: nowrap;
}

.app-store-badge img {
  height: 38px;
  border-radius: 6px;
}

/* 15. Blog Section */
.blog-card-premium {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  height: 100%;
}

.blog-card-premium:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.06) !important;
}

.blog-card-img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-category-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #1e293b;
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
}

.blog-card-title {
  font-size: 16px !important;
  font-weight: 700 !important;
}

.blog-card-title a {
  color: #1e293b !important;
  text-decoration: none;
  transition: color 0.2s;
}

.blog-card-title a:hover {
  color: #DD2833 !important;
}

/* 16. FAQ Accordions */
.faq-accordion .faq-item {
  transition: all 0.2s ease;
}

.faq-question {
  transition: color 0.2s;
}

.faq-question:hover {
  color: #DD2833;
}

.faq-answer {
  line-height: 1.6;
}


/* ========================================================
   Flexible Calendar CSS Rules
   ======================================================== */
.calendar-flexible-container {
  display: none;
  padding: 10px 0;
  animation: popoverFadeIn 0.25s ease;
}

.flexible-stay-length {
  text-align: center;
  border-bottom: 1px solid #edf2f7;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.flexible-stay-length h6,
.flexible-months h6 {
  font-family: 'Outfit', 'Inter', sans-serif !important;
  font-weight: 700 !important;
  color: #1e293b !important;
  font-size: 15px !important;
}

.flex-stay-btn {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 10px 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: #475569;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
  outline: none;
}

.flex-stay-btn:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #0f172a;
}

.flex-stay-btn.active {
  background: #DD2833 !important;
  color: #ffffff !important;
  border-color: #DD2833 !important;
  box-shadow: 0 4px 12px rgba(221, 40, 51, 0.25) !important;
}

.flexible-months {
  text-align: center;
}

.flex-month-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 16px 14px;
  width: 105px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.flex-month-card:hover {
  border-color: #cbd5e1;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.flex-month-card.active {
  border-color: #DD2833 !important;
  background: rgba(221, 40, 51, 0.03) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(221, 40, 51, 0.15) !important;
}

.flex-month-card .month-emoji {
  font-size: 26px;
}

.flex-month-card .month-name-text {
  font-size: 12px;
  font-weight: 700;
  color: #475569;
  font-family: 'Inter', sans-serif;
}

.flex-month-card.active .month-name-text {
  color: #DD2833 !important;
}

/* ========================================================
   Rooms Search page background & Sidebar Redesign
   ======================================================== */
.listing-area {
  background-color: #F5F5F5 !important;
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

/* Premium card frames for filters */
.widget-area-style-2 {
  background-color: #ffffff !important;
  border-radius: 16px !important;
  padding: 24px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03) !important;
  border: 1px solid #eaeaea !important;
}

.widget-area-style-2 .widget {
  border-bottom: 1px solid #f1f5f9 !important;
  padding-bottom: 20px !important;
  margin-bottom: 20px !important;
}

.widget-area-style-2 .widget:last-child {
  border-bottom: none !important;
}

/* Accent accordion titles */
.widget-area-style-2 .accordion-button {
  font-family: 'Outfit', 'Inter', sans-serif !important;
  font-weight: 700 !important;
  color: #1e293b !important;
  font-size: 14.5px !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.widget-area-style-2 .accordion-button:not(.collapsed) {
  color: #DD2833 !important;
}

/* Category select tag buttons instead of bullet checks */
.widget-area-style-2 .list-item .category-toggle::before,
.widget-area-style-2 .list-item .category-toggle::after {
  display: none !important;
}

.widget-area-style-2 .list-item {
  padding-left: 0 !important;
  list-style: none !important;
  margin-bottom: 0 !important;
}

.widget-area-style-2 .list-item .category-toggle {
  display: block !important;
  padding: 8px 16px !important;
  background-color: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  color: #475569 !important;
  margin-bottom: 6px !important;
  transition: all 0.2s ease !important;
  text-decoration: none !important;
  font-size: 13px !important;
}

.widget-area-style-2 .list-item.active .category-toggle,
.widget-area-style-2 .list-item .category-toggle.active {
  background-color: #DD2833 !important;
  color: #ffffff !important;
  border-color: #DD2833 !important;
  box-shadow: 0 4px 12px rgba(221, 40, 51, 0.15) !important;
}

/* Check-in Date input modern styling */
.widget-area-style-2 #checkInDatetime {
  border-radius: 8px !important;
  border: 1px solid #cbd5e1 !important;
  font-size: 13.5px !important;
  padding: 10px 12px !important;
  font-family: 'Inter', sans-serif !important;
}

/* Radios and Checkboxes clean spacing */
.widget-area-style-2 .widget-booking-hour .form-check,
.widget-area-style-2 .widget-ratings .form-check,
.widget-area-style-2 .widget-amenities .form-check {
  padding-left: 0 !important;
  margin-bottom: 8px !important;
}

.widget-area-style-2 .widget-amenities ul.toggle-list {
  list-style: none !important;
  padding-left: 0 !important;
  margin: 0 !important;
}

.widget-area-style-2 .widget-amenities ul.toggle-list li {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-bottom: 8px !important;
  padding-left: 0 !important;
}

.widget-area-style-2 input.input-checkbox {
  width: 18px !important;
  height: 18px !important;
  accent-color: #DD2833 !important;
  cursor: pointer !important;
  border-radius: 4px !important;
  border: 1px solid #cbd5e1 !important;
  margin: 0 !important;
}

.widget-area-style-2 .form-check-input.hour {
  width: 18px !important;
  height: 18px !important;
  accent-color: #DD2833 !important;
  cursor: pointer !important;
  margin: 0 8px 0 0 !important;
}

.widget-area-style-2 .form-check-label {
  font-size: 13.5px !important;
  font-weight: 500 !important;
  color: #475569 !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
}

/* Reset button styling */
.widget-area-style-2 .cta .btn-primary {
  background-color: #DD2833 !important;
  border-color: #DD2833 !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  padding: 12px !important;
}

.widget-area-style-2 .cta .btn-primary:hover {
  background-color: #bd1f29 !important;
}

/* Mobile offcanvas overrides */
@media (max-width: 1199px) {
  #widgetOffcanvas {
    width: 320px !important;
    background-color: #ffffff !important;
    z-index: 9999 !important;
  }
  .offcanvas-backdrop {
    z-index: 9998 !important;
  }
  #widgetOffcanvas .offcanvas-header {
    border-bottom: 1px solid #f1f5f9 !important;
    padding: 16px 20px !important;
  }
  #widgetOffcanvas .offcanvas-title {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    font-size: 16px !important;
  }
  #widgetOffcanvas .widget-area-style-2 {
    box-shadow: none !important;
    border: none !important;
    padding: 15px 20px !important;
  }
}

/* ========================================================
   About Us Hotel Theme Styles
   ======================================================== */
.about-area .info-list .card {
  background: #ffffff !important;
  border-radius: 12px !important;
  padding: 16px 20px !important;
  border: 1px solid #eaeaea !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02) !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 16px !important;
  transition: all 0.25s ease !important;
}

.about-area .info-list .card:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05) !important;
  border-color: #cbd5e1 !important;
}

.about-area .info-list .card_icon {
  background: rgba(221, 40, 51, 0.08) !important;
  width: 50px !important;
  height: 50px !important;
  border-radius: 8px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.about-area .info-list .card_icon img {
  width: 28px !important;
  height: auto !important;
}

.about-area .info-list .card_content span.h3,
.about-area .info-list .card_content span.h4 {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 700 !important;
  color: #1e293b !important;
  font-size: 16px !important;
  margin-bottom: 4px !important;
  display: block !important;
}

.about-area .info-list .card_text {
  font-size: 13px !important;
  color: #64748b !important;
  margin-bottom: 0 !important;
}

.counter-area .card {
  background: #ffffff !important;
  border-radius: 16px !important;
  border: 1px solid rgba(221, 40, 51, 0.1) !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04) !important;
  padding: 30px !important;
  transition: transform 0.2s ease !important;
}

.counter-area .card:hover {
  transform: translateY(-4px) !important;
}

.counter-area .card_title {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 800 !important;
  color: #DD2833 !important;
  font-size: 32px !important;
}

.counter-area .card_text {
  color: #475569 !important;
  font-size: 14px !important;
  font-weight: 600 !important;
}

/* ========================================================
   Newsletter Form Style Overrides
   ======================================================== */
.newsletter-subscription-card .form-control {
  background-color: #ffffff !important;
  color: #333333 !important;
  border: 1px solid #e2e8f0 !important;
}

.newsletter-subscription-card .form-control::placeholder {
  color: #94a3b8 !important;
}

.newsletter-subscription-card .btn-dark {
  background-color: #0f172a !important;
  color: #ffffff !important;
  border: none !important;
  transition: all 0.2s ease;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}

.newsletter-subscription-card .btn-dark:hover {
  background-color: #1e293b !important;
  transform: translateY(-1px);
}

/* Responsive Overrides for Search Filter Bar */
@media (max-width: 767px) {
  .premium-search-bar {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    border-radius: 24px !important;
    padding: 16px !important;
    gap: 12px !important;
  }
  .search-block-col {
    width: 100% !important;
    padding: 12px 16px !important;
    border-radius: 12px !important;
    background: #f8fafc !important;
  }
  .search-block-col:hover {
    background: #f1f5f9 !important;
  }
  .search-block-col.popover-active {
    border-radius: 12px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
  }
  .search-block-col:not(:last-child)::after {
    display: none !important;
  }
  .search-btn-wrapper {
    padding-left: 0 !important;
    margin-top: 8px !important;
    width: 100% !important;
  }
  .btn-search-main {
    width: 100% !important;
    justify-content: center !important;
    padding: 14px 20px !important;
    border-radius: 12px !important;
  }
  .popover-dropdown {
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    top: calc(100% + 8px) !important;
    box-sizing: border-box !important;
    border-radius: 12px !important;
  }
  .popover-calendar-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    left: 0 !important;
    transform: none !important;
    padding: 16px !important;
    box-sizing: border-box !important;
    border-radius: 16px !important;
  }
  .calendar-months-container {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
}

/* ========================================================
   Premium Redesign Overrides for Room Cards (.product-default)
   ======================================================== */
.product-default {
  border: 1px solid #f1f5f9 !important;
  border-radius: 16px !important;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04) !important;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.4s ease !important;
  background: #ffffff !important;
  overflow: hidden !important;
}

.product-default:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12) !important;
  border-color: #e2e8f0 !important;
}

.product-default .product_img {
  border-radius: 16px 16px 0 0 !important;
  overflow: hidden !important;
  position: relative !important;
}

.product-default .product_img a.lazy-container {
  border-radius: 16px 16px 0 0 !important;
  overflow: hidden !important;
}

.product-default .product_img img {
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.product-default:hover .product_img img {
  transform: scale(1.08) !important;
}

/* Premium glassmorphic wishlist button overlay */
.product-default .btn-icon {
  width: 40px !important;
  height: 40px !important;
  background: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  border-radius: 50% !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  color: #64748b !important;
  top: 16px !important;
  right: 16px !important;
  position: absolute !important;
  z-index: 5 !important;
}

.product-default .btn-icon:hover {
  background: #ffffff !important;
  color: #DD2833 !important;
  transform: scale(1.1) !important;
}

.product-default .btn-icon.active {
  background: #ffffff !important;
  color: #DD2833 !important;
  box-shadow: 0 4px 12px rgba(221, 40, 51, 0.2) !important;
}

/* Rating badge overlay on top left of card image */
.product-default .rank-star {
  position: absolute !important;
  top: 16px !important;
  left: 16px !important;
  background: rgba(15, 23, 42, 0.75) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  color: #ffb800 !important;
  padding: 6px 12px !important;
  border-radius: 20px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  display: flex !important;
  gap: 3px !important;
  align-items: center !important;
  z-index: 5 !important;
}

.product-default .rank-star i {
  margin: 0 !important;
  font-size: 9px !important;
}

/* Card details styling */
.product-default .product_details {
  background: #ffffff !important;
  border-radius: 0 0 16px 16px !important;
}

.product-default .product_details > div {
  padding: 24px !important;
}

.product-default .product_title {
  margin-bottom: 12px !important;
}

.product-default .product_title h4.title a {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 700 !important;
  font-size: 18px !important;
  color: #0f172a !important;
  transition: color 0.2s ease !important;
  display: block !important;
  line-height: 1.4 !important;
  text-decoration: none !important;
}

.product-default .product_title h4.title a:hover {
  color: #DD2833 !important;
}

/* Location list and ratings */
.product-default .product-info_list {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  margin-top: 12px !important;
  align-items: flex-start !important;
  padding: 0 !important;
  list-style: none !important;
}

.product-default .product-info_list li {
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
}

.product-default .product-info_list li.location {
  color: #64748b !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  gap: 6px !important;
}

.product-default .product-info_list li.location i {
  color: #94a3b8 !important;
  font-size: 15px !important;
}

.product-default .product-info_list .ratings {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-top: 2px !important;
}

.product-default .product-info_list .ratings span {
  color: #475569 !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}

/* Hotel Brand Tag */
.product-default .product_author {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-top: 14px !important;
  padding: 6px 12px !important;
  background: #f8fafc !important;
  border-radius: 8px !important;
  border: 1px solid #e2e8f0 !important;
  transition: all 0.2s ease !important;
  text-decoration: none !important;
}

.product-default .product_author img {
  border-radius: 50% !important;
  width: 22px !important;
  height: 22px !important;
  object-fit: cover !important;
  margin: 0 !important;
}

.product-default .product_author span {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #475569 !important;
  transition: color 0.2s ease !important;
}

.product-default .product_author:hover {
  background: #f1f5f9 !important;
  border-color: #cbd5e1 !important;
}

.product-default .product_author:hover span {
  color: #DD2833 !important;
}

/* Card Icons List (Amenities list) */
.product-default .product-icon_list {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 6px !important;
  margin-top: 16px !important;
  padding: 0 !important;
  list-style: none !important;
}

.product-default .product-icon_list li.list-item {
  width: 32px !important;
  height: 32px !important;
  border-radius: 8px !important;
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #475569 !important;
  font-size: 13px !important;
  transition: all 0.2s ease !important;
  margin: 0 !important;
}

.product-default .product-icon_list li.list-item:hover {
  background: #e2e8f0 !important;
  color: #0f172a !important;
}

.product-default .product-icon_list li.more_item_show_btn {
  font-size: 11px !important;
  font-weight: 700 !important;
  color: #64748b !important;
  cursor: pointer !important;
  padding: 4px 8px !important;
  background: #f1f5f9 !important;
  border-radius: 6px !important;
  border: 1px solid #e2e8f0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 2px !important;
  transition: all 0.2s ease !important;
  margin: 0 !important;
}

/* Pricing Bottom Section styling */
.product-default .product_bottom {
  padding: 18px 24px !important;
  border-top: 1px solid #f1f5f9 !important;
  background: #fafafb !important;
  border-bottom-left-radius: 16px !important;
  border-bottom-right-radius: 16px !important;
}

/* Elegant, Modern Pill Buttons for Prices */
.product-default .product-price_list {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  justify-content: center !important;
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
  width: 100% !important;
}

.product-default .product-price_list li {
  flex: 1 1 calc(25% - 8px) !important;
  min-width: 62px !important;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 12px !important;
  padding: 8px 6px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
  cursor: pointer !important;
  margin: 0 !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02) !important;
}

.product-default .product-price_list li span.h6 {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  color: #0f172a !important;
  margin: 0 0 2px 0 !important;
  transition: color 0.25s ease !important;
  line-height: 1.2 !important;
}

.product-default .product-price_list li span:not(.h6) {
  font-size: 10px !important;
  font-weight: 600 !important;
  color: #64748b !important;
  text-transform: uppercase !important;
  letter-spacing: 0.3px !important;
  transition: color 0.25s ease !important;
  line-height: 1.2 !important;
}

.product-default .product-price_list li:hover {
  background: #DD2833 !important;
  border-color: #DD2833 !important;
  box-shadow: 0 4px 12px rgba(221, 40, 51, 0.25) !important;
  transform: translateY(-2px) !important;
}

.product-default .product-price_list li:hover span.h6,
.product-default .product-price_list li:hover span:not(.h6) {
  color: #ffffff !important;
}

/* Airbnb Style Cards */
.airbnb-card {
  position: relative;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: none;
}

.airbnb-card:hover {
  transform: none;
  box-shadow: none;
}

.airbnb-img-container {
  position: relative;
  width: 100%;
  aspect-ratio: 20 / 19;
  border-radius: 12px;
  overflow: hidden;
  background: #f3f4f6;
}

.airbnb-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.airbnb-card:hover .airbnb-img-container img {
  transform: scale(1.03);
}

.airbnb-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ffffff;
  color: #222222;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-transform: none;
}

.airbnb-body {
  padding: 10px 0 4px 0;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.airbnb-title {
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #222222 !important;
  margin-bottom: 2px !important;
  line-height: 1.25 !important;
}

.airbnb-title a {
  color: #222222 !important;
  text-decoration: none !important;
}

.airbnb-title a:hover {
  color: #ff385c !important;
}

.airbnb-sub-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #717171;
  margin-top: 2px;
  flex-wrap: wrap;
}

.airbnb-bullet {
  color: #b0b0b0;
}

.airbnb-card-rating {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-weight: 500;
  color: #222222;
}

.airbnb-card-rating i {
  color: #ff385c;
  font-size: 10px;
}

/* Airbnb Style Wishlist Button */
.oyo-wishlist-btn {
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;
  background: transparent !important;
  color: #ffffff !important;
  font-size: 18px !important;
  z-index: 10 !important;
  border: none !important;
  text-decoration: none !important;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.6));
  transition: transform 0.2s ease !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.oyo-wishlist-btn:hover {
  transform: scale(1.15) !important;
  color: #ff385c !important;
}

.oyo-wishlist-btn.active {
  color: #ff385c !important;
  filter: none !important;
}

.oyo-wishlist-btn.active i {
  font-weight: 900 !important;
}


/* Sticky Pill Search Bar (Airbnb Style) */
.oyo-sticky-pill-search-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}

.oyo-sticky-pill-search {
  display: inline-flex;
  align-items: center;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 40px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.05);
  padding: 8px 8px 8px 24px;
  cursor: pointer;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  user-select: none;
}

.oyo-sticky-pill-search:hover {
  box-shadow: 0 2px 4px rgba(0,0,0,0.1), 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-1px);
}

.oyo-sticky-pill-search .pill-sec {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #222222;
  white-space: nowrap;
}

.oyo-sticky-pill-search .pill-sec.text-muted {
  font-weight: 500;
  color: #717171 !important;
}

.oyo-sticky-pill-search .pill-divider {
  width: 1px;
  height: 20px;
  background-color: #dddddd;
  margin-inline: 16px;
}

.oyo-sticky-pill-search .pill-search-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #DD2833;
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-inline-start: 12px;
  transition: background-color 0.2s ease;
}

.oyo-sticky-pill-search:hover .pill-search-btn {
  background-color: #bd1f29;
}

/* Visibility triggers on scroll for sticky header */
.header-area:not(.is-sticky) .oyo-sticky-pill-search-container {
  display: none !important;
}

.header-area.is-sticky .oyo-sticky-pill-search-container {
  display: flex !important;
}

.header-area.is-sticky .oyo-cities-nav-container {
  display: none !important;
}

/* Circular Experience Badges styles */
.experience-circle-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.experience-avatar-wrapper {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border: 3px solid #ffffff;
  transition: all 0.25s ease;
}

.experience-circle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.experience-circle-card:hover .experience-avatar-wrapper {
  transform: scale(1.08) translateY(-4px);
  box-shadow: 0 8px 20px rgba(221, 40, 51, 0.2);
  border-color: #DD2833;
}

.experience-circle-card:hover .experience-circle-img {
  transform: scale(1.05);
}

.experience-circle-title {
  color: #222222 !important;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 700 !important;
  margin-top: 8px;
  transition: color 0.2s ease;
}

.experience-circle-card:hover .experience-circle-title {
  color: #DD2833 !important;
}

/* Minimal Airbnb Style Footer Overrides */
.footer-area {
  background-color: #f7f7f7 !important;
  background-image: none !important;
  color: #222222 !important;
  border-top: 1px solid #e7e7e7 !important;
}

.footer-top {
  background: transparent !important;
  border: none !important;
}

.footer-widget h4.title {
  color: #222222 !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-transform: none !important;
  margin-bottom: 20px !important;
  letter-spacing: normal !important;
}

.footer-links li a {
  color: #717171 !important;
  font-size: 14px !important;
  text-decoration: none !important;
  transition: color 0.15s ease !important;
  display: inline-block;
}

.footer-links li a:hover {
  color: #222222 !important;
  text-decoration: underline !important;
}

.footer-links li a i {
  color: #717171 !important;
}

.copy-right-area {
  background-color: #f7f7f7 !important;
  border-top: 1px solid #e7e7e7 !important;
  padding: 24px 0 !important;
}

.copyright-text {
  color: #222222 !important;
  font-size: 14px !important;
}

.social-icon-btn {
  color: #222222 !important;
  font-size: 18px !important;
  text-decoration: none !important;
  transition: transform 0.2s ease, color 0.2s ease !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}

.social-icon-btn:hover {
  transform: scale(1.1) !important;
  color: #ff385c !important;
}

 / *   A i r b n b   S t y l e   C a r d s   * / 
 . a i r b n b - c a r d   { 
         b o r d e r :   n o n e ; 
         b o r d e r - r a d i u s :   1 2 p x ; 
         b a c k g r o u n d :   # f f f ; 
         o v e r f l o w :   h i d d e n ; 
         t r a n s i t i o n :   t r a n s f o r m   0 . 2 s   e a s e ,   b o x - s h a d o w   0 . 2 s   e a s e ; 
         b o x - s h a d o w :   0   4 p x   1 5 p x   r g b a ( 0 , 0 , 0 , 0 . 0 5 ) ; 
 } 
 . a i r b n b - c a r d : h o v e r   { 
         b o x - s h a d o w :   0   8 p x   2 5 p x   r g b a ( 2 2 1 , 4 0 , 5 1 , 0 . 1 5 ) ;   / *   W a r m   i n d i a n   a c c e n t   s h a d o w   * / 
         t r a n s f o r m :   t r a n s l a t e Y ( - 3 p x ) ; 
 } 
 . a i r b n b - i m g - w r a p p e r   { 
         p o s i t i o n :   r e l a t i v e ; 
         w i d t h :   1 0 0 % ; 
         a s p e c t - r a t i o :   1   /   1 ; 
         o v e r f l o w :   h i d d e n ; 
         b o r d e r - r a d i u s :   1 2 p x   1 2 p x   0   0 ; 
 } 
 . a i r b n b - c a r d - i m g   { 
         w i d t h :   1 0 0 % ; 
         h e i g h t :   1 0 0 % ; 
         o b j e c t - f i t :   c o v e r ; 
 } 
 . a i r b n b - w i s h l i s t - b t n   { 
         p o s i t i o n :   a b s o l u t e ; 
         t o p :   1 2 p x ; 
         r i g h t :   1 2 p x ; 
         z - i n d e x :   1 0 ; 
         c u r s o r :   p o i n t e r ; 
         b a c k g r o u n d :   t r a n s p a r e n t ; 
         b o r d e r :   n o n e ; 
 } 
 . a i r b n b - f e a t u r e d - b a d g e   { 
         p o s i t i o n :   a b s o l u t e ; 
         t o p :   1 2 p x ; 
         l e f t :   1 2 p x ; 
         z - i n d e x :   1 0 ; 
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 9 5 ) ; 
         p a d d i n g :   4 p x   1 0 p x ; 
         b o r d e r - r a d i u s :   1 6 p x ; 
         f o n t - s i z e :   1 2 p x ; 
         f o n t - w e i g h t :   6 0 0 ; 
         c o l o r :   # 3 3 3 ; 
         b o x - s h a d o w :   0   2 p x   4 p x   r g b a ( 0 , 0 , 0 , 0 . 1 ) ; 
 } 
 . a i r b n b - c a r d - i n f o   { 
         p a d d i n g :   1 2 p x   1 5 p x   1 5 p x ; 
 } 
 . a i r b n b - t i t l e   { 
         f o n t - s i z e :   1 6 p x ; 
         f o n t - w e i g h t :   6 0 0 ; 
         m a r g i n - b o t t o m :   2 p x ; 
         c o l o r :   # 2 2 2 ; 
 } 
 . a i r b n b - t i t l e   a   { 
         c o l o r :   i n h e r i t ; 
         t e x t - d e c o r a t i o n :   n o n e ; 
 } 
 . a i r b n b - s u b t i t l e   { 
         f o n t - s i z e :   1 4 p x ; 
         c o l o r :   # 7 1 7 1 7 1 ; 
 } 
 . a i r b n b - r a t i n g   { 
         f o n t - s i z e :   1 4 p x ; 
         f o n t - w e i g h t :   6 0 0 ; 
         c o l o r :   # 2 2 2 ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
 } 
 . a i r b n b - p r i c e   { 
         f o n t - s i z e :   1 5 p x ; 
 } 
 . r o o m - s w i p e r   { 
         w i d t h :   1 0 0 % ; 
         h e i g h t :   1 0 0 % ; 
 } 
 . r o o m - s w i p e r   . s w i p e r - b u t t o n - n e x t , 
 . r o o m - s w i p e r   . s w i p e r - b u t t o n - p r e v   { 
         c o l o r :   w h i t e ; 
         b a c k g r o u n d :   r g b a ( 0 , 0 , 0 , 0 . 3 ) ; 
         w i d t h :   3 2 p x ; 
         h e i g h t :   3 2 p x ; 
         b o r d e r - r a d i u s :   5 0 % ; 
         t r a n s f o r m :   s c a l e ( 0 . 7 ) ; 
         o p a c i t y :   0 ; 
         t r a n s i t i o n :   o p a c i t y   0 . 2 s ; 
 } 
 . a i r b n b - i m g - w r a p p e r : h o v e r   . s w i p e r - b u t t o n - n e x t , 
 . a i r b n b - i m g - w r a p p e r : h o v e r   . s w i p e r - b u t t o n - p r e v   { 
         o p a c i t y :   1 ; 
 } 
 . r o o m - s w i p e r   . s w i p e r - p a g i n a t i o n - b u l l e t   { 
         b a c k g r o u n d :   w h i t e ; 
         o p a c i t y :   0 . 7 ; 
 } 
 . r o o m - s w i p e r   . s w i p e r - p a g i n a t i o n - b u l l e t - a c t i v e   { 
         o p a c i t y :   1 ; 
 } 
  
 