.cw-ro-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.cw-ro-filter-btn {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 16px;
  border: 1px solid #e5e7eb;
  border-radius: 9999px;
  background: #ffffff;
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.cw-ro-filter-btn:hover {
  border-color: rgb(194.4086956522, 199.0695652174, 208.3913043478);
  color: #111827;
}
.cw-ro-filter-btn--active {
  background: #18181b;
  border-color: #18181b;
  color: #fff;
}
.cw-ro-filter-btn--active:hover {
  background: #303036;
  border-color: #303036;
  color: #fff;
}

.cw-ro-avail-bar {
  position: relative;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #ffffff;
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  margin-bottom: 24px;
}

.cw-ro-avail-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #111827;
}
.cw-ro-avail-label svg {
  color: #6b7280;
}

.cw-ro-date-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 260px;
  height: 40px;
  padding: 0 14px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #ffffff;
  font-size: 14px;
  color: #6b7280;
  cursor: pointer;
  text-align: left;
}
.cw-ro-date-trigger:hover {
  border-color: rgb(205.9391304348, 209.7130434783, 217.2608695652);
}

.cw-ro-date-label--active {
  color: #111827;
}

.cw-ro-clear-btn {
  height: 36px;
  padding: 0 12px;
  border: none;
  background: transparent;
  font-size: 13px;
  color: #6b7280;
  cursor: pointer;
  border-radius: 6px;
}
.cw-ro-clear-btn:hover {
  background: #f3f4f6;
}

.cw-ro-avail-count {
  margin-left: auto;
  font-size: 14px;
  color: #6b7280;
}

.cw-ro-calendar-popover {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  padding: 16px;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 100;
}

.cw-ro-cal-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.cw-ro-cal-nav button {
  border: none;
  background: none;
  cursor: pointer;
  font-size: 20px;
  color: #6b7280;
  padding: 4px 8px;
  line-height: 1;
}
.cw-ro-cal-nav button:hover {
  color: #111827;
}

.cw-ro-cal-months {
  display: flex;
  gap: 24px;
}
@media (max-width: 600px) {
  .cw-ro-cal-months {
    flex-direction: column;
  }
}

.cw-ro-cal-month {
  min-width: 260px;
}

.cw-ro-cal-title {
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
}

.cw-ro-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  text-align: center;
}

.cw-ro-cal-header {
  padding: 4px;
  font-size: 12px;
  color: #9ca3af;
}

.cw-ro-day {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  font-size: 13px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s;
}
.cw-ro-day:hover:not(.cw-ro-day--disabled):not(.cw-ro-day--start):not(.cw-ro-day--end) {
  background: #f9fafb;
}
.cw-ro-day--disabled {
  color: #d1d5db;
  cursor: default;
}
.cw-ro-day--today {
  font-weight: 600;
}
.cw-ro-day--start {
  background: #18181b;
  color: #fff;
  font-weight: 600;
  border-radius: 8px 0 0 8px;
}
.cw-ro-day--end {
  background: #18181b;
  color: #fff;
  font-weight: 600;
  border-radius: 0 8px 8px 0;
}
.cw-ro-day--start.cw-ro-day--end {
  border-radius: 8px;
}
.cw-ro-day--range {
  background: #f3f4f6;
  border-radius: 0;
}
.cw-ro-day--empty {
  cursor: default;
}

.cw-ro-card-wrap {
  display: flex;
}

.cw-ro-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  transition: box-shadow 0.2s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.cw-ro-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cw-ro-card-wrap.cw-ro-card--unavailable {
  opacity: 0.45;
  pointer-events: none;
}

.cw-ro-card-image {
  position: relative;
  height: 192px;
  overflow: hidden;
}
.cw-ro-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.cw-ro-card-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #f3f4f6;
  color: #9ca3af;
}

.cw-ro-card-price-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border: 1px solid #e5e7eb;
  border-radius: 9999px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 600;
}

.cw-ro-card-header {
  padding: 16px 16px 8px;
}

.cw-ro-card-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.cw-ro-card-title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.cw-ro-card-type {
  font-size: 11px;
  font-weight: 500;
  color: #6b7280;
  background: #f3f4f6;
  border-radius: 9999px;
  padding: 2px 8px;
  text-transform: capitalize;
}

.cw-ro-card-desc {
  margin: 4px 0 0;
  font-size: 13px;
  color: #6b7280;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cw-ro-card-body {
  padding: 0 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.cw-ro-card-body > * + * {
  margin-top: 12px;
}

.cw-ro-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cw-ro-stat {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #6b7280;
}

.cw-ro-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.cw-ro-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 4px 10px;
  font-size: 12px;
  color: #374151;
}
.cw-ro-badge--filled {
  background: #f3f4f6;
  border-color: transparent;
}

.cw-ro-beds {
  font-size: 12px;
  color: #6b7280;
}

.cw-ro-bed-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2px;
}

.cw-ro-bed-type {
  text-transform: capitalize;
}

.cw-ro-bed-price {
  font-weight: 500;
  color: #111827;
}

.cw-ro-bed-seasonal-row {
  display: flex;
  justify-content: space-between;
  padding-left: 12px;
  font-size: 11px;
  color: #6b7280;
  opacity: 0.8;
}

.cw-ro-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.cw-ro-amenity-tag {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 3px 8px;
  font-size: 11px;
  color: #374151;
}
.cw-ro-amenity-tag--more {
  color: #6b7280;
}

.cw-ro-services {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.cw-ro-service-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #f3f4f6;
  border-radius: 8px;
  padding: 3px 8px;
  font-size: 11px;
  color: #374151;
}
.cw-ro-service-tag svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}
.cw-ro-service-tag--more {
  background: none;
  border: 1px solid #e5e7eb;
  color: #6b7280;
}

.cw-ro-seasonal {
  font-size: 12px;
}

.cw-ro-seasonal-title {
  margin: 0 0 4px;
  font-weight: 500;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 4px;
}

.cw-ro-seasonal-row {
  display: flex;
  justify-content: space-between;
  color: #6b7280;
  margin-bottom: 2px;
}

.cw-ro-seasonal-badge {
  border: 1px solid #e5e7eb;
  border-radius: 9999px;
  padding: 1px 6px;
  font-size: 10px;
}

.cw-ro-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: auto !important;
  padding-top: 4px;
  text-decoration: none;
}

@media (max-width: 640px) {
  .cw-ro-avail-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .cw-ro-date-trigger {
    min-width: 0;
    width: 100%;
  }
  .cw-ro-avail-count {
    margin-left: 0;
  }
}/*# sourceMappingURL=room-overview.css.map */