@charset "UTF-8";
.booking-list-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 24px 48px;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.booking-list-container *, .booking-list-container *::before, .booking-list-container *::after {
  box-sizing: border-box;
}
.search-section {
  position: sticky;
  top: 70px;
  z-index: 100;
  background: transparent;
  padding: 16px 0 20px;
  margin: 0 -24px 32px;
  padding-left: 24px;
  padding-right: 24px;
}
.search-form {
  max-width: 880px;
  margin: 0 auto;
}
.search-form-inner {
  display: flex;
  align-items: stretch;
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 9999px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.search-form-inner:hover, .search-form-inner:focus-within {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  border-color: transparent;
}
.search-field {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px 24px;
  cursor: pointer;
  transition: all 0.15s ease;
  border-right: 1px solid #ebebeb;
}
.search-field:last-child {
  border-right: none;
}
.search-field:hover {
  background: #f7f7f7;
}
.search-field.location-field {
  flex: 1.3;
}
.search-field.date-field {
  flex: 0.9;
}
.search-field.guests-field {
  flex: 1;
  border-right: none;
  padding-right: 8px;
}
.search-field.submit-field {
  flex: 0 0 auto;
  padding: 8px;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.search-field.submit-field:hover {
  background: transparent;
}
.search-field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #222222;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.search-field .field-icon, .search-field .field-label {
  display: inline;
}
.search-field .field-icon {
  display: none;
}
.search-field input[type="text"] {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 14px;
  color: #222222;
  padding: 0;
  outline: none;
}
.search-field input[type="text"]::placeholder {
  color: #717171;
  font-weight: 400;
}
.guests-field .guests-selector {
  display: flex;
  align-items: center;
}
.guests-field .guest-input {
  display: flex;
  align-items: center;
  gap: 8px;
}
.guests-field .guest-input .guest-label {
  font-size: 14px;
  color: #717171;
}
.guests-field .number-input {
  display: flex;
  align-items: center;
  gap: 8px;
}
.guests-field .number-input button {
  width: 28px;
  height: 28px;
  border: 1px solid #dddddd;
  border-radius: 50%;
  background: #ffffff;
  color: #717171;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.guests-field .number-input button:hover:not(:disabled) {
  border-color: #222222;
  color: #222222;
}
.guests-field .number-input button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.guests-field .number-input input {
  width: 24px !important;
  height: auto !important;
  padding: 0 !important;
  text-align: center;
  border: none !important;
  background: transparent !important;
  font-size: 14px !important;
  font-weight: 600;
  color: #222222;
  -moz-appearance: textfield;
}
.guests-field .number-input input::-webkit-outer-spin-button, .guests-field .number-input input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.submit-field .btn-search {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  min-width: 48px;
  padding: 0 16px;
  border: none;
  border-radius: 9999px;
  background: linear-gradient(135deg, #ff385c 0%, #e31c5f 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .submit-field .btn-search span {
    display: none;
  }
}
.submit-field .btn-search::before {
  content: "🔍";
  font-size: 16px;
}
.submit-field .btn-search:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 12px rgba(255, 56, 92, 0.4);
}
.submit-field .btn-search:active {
  transform: scale(0.98);
}
.popular-section {
  margin-bottom: 48px;
}
.section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  font-weight: 700;
  color: #222222;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}
.recommendation-section {
  margin-bottom: 48px;
}
.recommendation-section .section-title {
  margin-bottom: 20px;
}
.recommendation-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 8px;
}
.recommendation-slider::-webkit-scrollbar {
  display: none;
}
.recommendation-slider::after {
  content: "";
  flex: 0 0 1px;
}
.recommendation-card {
  flex: 1;
  min-width: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.recommendation-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.recommendation-card:hover .card-image img {
  transform: scale(1.08);
}
.recommendation-card .card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.recommendation-card .card-image {
  position: relative;
  height: 235px;
  overflow: hidden;
}
.recommendation-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.recommendation-card .card-image .card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
  pointer-events: none;
}
.recommendation-card .card-image .card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.95);
  color: #222222;
  font-size: 11px;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: 0.02em;
  backdrop-filter: blur(4px);
}
.recommendation-card .card-content {
  padding: 14px 16px 18px;
}
.recommendation-card .card-title {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
  color: #222222;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.recommendation-card .card-desc {
  margin: 0;
  font-size: 13px;
  color: #717171;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.recommendation-card.event-card .card-tag.event-tag {
  background: linear-gradient(135deg, #ff385c 0%, #e31c5f 100%);
  color: #fff;
}
@media (max-width: 768px) {
  .recommendation-card .card-image {
    height: 195px;
  }
  .recommendation-card .card-content {
    padding: 12px 14px 16px;
  }
  .recommendation-card .card-title {
    font-size: 15px;
  }
  .recommendation-card .card-desc {
    font-size: 12px;
  }
}
@media (max-width: 560px) {
  .recommendation-section {
    margin-bottom: 36px;
  }
  .recommendation-slider {
    flex-direction: column;
    gap: 12px;
  }
  .recommendation-card .card-image {
    height: 210px;
  }
}
.results-section {
  min-height: 400px;
  animation: fadeIn 0.4s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
.results-count strong {
  font-size: 22px;
  font-weight: 700;
  color: #222222;
  letter-spacing: -0.02em;
}
.results-count .search-info {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  color: #717171;
}
.results-sort {
  display: flex;
  align-items: center;
  gap: 8px;
}
.results-sort label {
  font-size: 14px;
  color: #717171;
}
.results-sort select {
  height: 40px;
  padding: 0 36px 0 16px;
  border: 1px solid #dddddd;
  border-radius: 8px;
  background: #ffffff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23222' d='M6 8L2 4h8z'/%3E%3C/svg%3E") no-repeat right 14px center;
  font-size: 14px;
  font-weight: 500;
  color: #222222;
  cursor: pointer;
  appearance: none;
  transition: all 0.15s ease;
}
.results-sort select:hover {
  border-color: #222222;
}
.results-sort select:focus {
  outline: none;
  border-color: #222222;
  box-shadow: 0 0 0 2px rgba(34, 34, 34, 0.1);
}
.property-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1200px) {
  .property-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .property-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .property-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.property-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.property-card:hover .property-thumbnail img {
  transform: scale(1.03);
}
.property-card .property-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.property-thumbnail {
  position: relative;
  aspect-ratio: 1.0526315789;
  overflow: hidden;
  border-radius: 12px;
  background: #f7f7f7;
}
.property-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.property-thumbnail .no-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}
.property-thumbnail .no-image span {
  font-size: 56px;
  opacity: 0.4;
}
.property-thumbnail .property-type-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.95);
  color: #222222;
  font-size: 12px;
  font-weight: 600;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.property-thumbnail .property-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.property-thumbnail .property-badge.popular {
  background: linear-gradient(135deg, #ff385c 0%, #bd1e59 100%);
  color: #fff;
}
.property-thumbnail .property-badge.closing-soon {
  background: linear-gradient(135deg, #ff8c00 0%, #ff6b00 100%) !important;
  color: #fff !important;
  animation: pulse 2s infinite;
}
.property-thumbnail .wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}
.property-thumbnail .wishlist-btn svg {
  width: 24px;
  height: 24px;
  fill: rgba(0, 0, 0, 0.5);
  stroke: #fff;
  stroke-width: 2;
  transition: all 0.15s ease;
}
.property-thumbnail .wishlist-btn:hover svg {
  transform: scale(1.1);
}
.property-thumbnail .image-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.property-thumbnail .image-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transition: all 0.15s ease;
}
.property-thumbnail .image-dots .dot.active {
  background: #fff;
  transform: scale(1.2);
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.85;
  }
}
.property-info {
  padding: 12px 2px 0;
}
.property-name {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 600;
  color: #222222;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.property-address {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0 0 4px;
  font-size: 14px;
  color: #717171;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.property-address .icon {
  font-size: 12px;
  opacity: 0.7;
}
.property-review {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 0 4px;
  font-size: 14px;
}
.property-review .review-star {
  color: #ff385c;
  font-size: 13px;
}
.property-review .review-rating {
  font-weight: 600;
  color: #222222;
}
.property-review .review-count {
  color: #717171;
  font-size: 13px;
}
.property-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 6px;
}
.property-price .price-label {
  font-size: 14px;
  color: #717171;
}
.property-price .price-value {
  font-size: 16px;
  font-weight: 700;
  color: #222222;
}
.property-price .price-unit {
  font-size: 14px;
  color: #717171;
  font-weight: 400;
}
.pagination-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}
.pagination {
  display: flex;
  align-items: center;
  gap: 4px;
}
.page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: #222222;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.15s ease;
}
.page-link:hover:not(.disabled):not(.active) {
  background: #f7f7f7;
}
.page-link.active {
  background: #222222;
  color: #ffffff;
  font-weight: 600;
}
.page-link.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}
.page-link.first, .page-link.prev, .page-link.next, .page-link.last {
  color: #717171;
}
.page-link.first:hover:not(.disabled), .page-link.prev:hover:not(.disabled), .page-link.next:hover:not(.disabled), .page-link.last:hover:not(.disabled) {
  color: #222222;
  background: #f7f7f7;
}
.no-results, .search-guide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  padding: 48px 24px;
  text-align: center;
  background: #f7f7f7;
  border-radius: 16px;
}
.no-results-icon, .guide-icon {
  font-size: 72px;
  margin-bottom: 20px;
  filter: grayscale(0.2);
}
.no-results h3, .search-guide h3 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 700;
  color: #222222;
  letter-spacing: -0.02em;
}
.no-results p, .search-guide p {
  margin: 0;
  font-size: 15px;
  color: #717171;
  max-width: 400px;
  line-height: 1.6;
}
.flatpickr-calendar {
  font-family: inherit !important;
  border-radius: 16px !important;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15) !important;
  border: none !important;
  padding: 8px;
}
.flatpickr-calendar.arrowTop::before, .flatpickr-calendar.arrowTop::after {
  display: none;
}
.flatpickr-months {
  padding: 8px 0;
}
.flatpickr-months .flatpickr-month {
  height: 40px;
}
.flatpickr-months .flatpickr-prev-month, .flatpickr-months .flatpickr-next-month {
  padding: 8px 12px;
}
.flatpickr-months .flatpickr-prev-month svg, .flatpickr-months .flatpickr-next-month svg {
  width: 14px;
  height: 14px;
}
.flatpickr-months .flatpickr-prev-month:hover svg, .flatpickr-months .flatpickr-next-month:hover svg {
  fill: #ff385c;
}
.flatpickr-months .flatpickr-current-month {
  font-size: 15px;
  font-weight: 600;
}
.flatpickr-weekdays {
  padding: 8px 0;
}
.flatpickr-weekday {
  font-size: 12px;
  font-weight: 600;
  color: #717171;
}
.flatpickr-day {
  border-radius: 50%;
  font-weight: 500;
  line-height: 38px;
  height: 38px;
  max-width: 38px;
  margin: 1px;
}
.flatpickr-day:hover:not(.selected):not(.today) {
  background: #f7f7f7;
  border-color: transparent;
}
.flatpickr-day.today {
  border-color: #222222;
}
.flatpickr-day.today:hover {
  background: #222222;
  color: #fff;
}
.flatpickr-day.selected {
  background: #222222 !important;
  border-color: #222222 !important;
  color: #fff;
}
.flatpickr-day.selected:hover {
  background: #090909 !important;
}
.flatpickr-day.inRange {
  background: rgba(34, 34, 34, 0.08);
  border-color: transparent;
  box-shadow: none;
}
.flatpickr-day.startRange, .flatpickr-day.endRange {
  background: #222222;
  border-color: #222222;
  color: #fff;
}
.flatpickr-day.flatpickr-disabled {
  color: #b0b0b0;
}
@media (max-width: 768px) {
  .booking-list-container {
    padding: 0 16px 40px;
  }
  .search-section {
    margin: 0 -16px 24px;
    padding: 12px 16px 16px;
  }
  .search-form-inner {
    flex-direction: column;
    border-radius: 16px;
    gap: 0;
  }
  .search-field {
    border-right: none;
    border-bottom: 1px solid #ebebeb;
    padding: 16px 20px;
  }
  .search-field:last-child {
    border-bottom: none;
  }
  .search-field.guests-field {
    padding-right: 20px;
  }
  .search-field.submit-field {
    padding: 12px 16px 8px;
  }
  .submit-field .btn-search {
    width: 100%;
    border-radius: 8px;
  }
  .submit-field .btn-search span {
    display: inline;
  }
  .submit-field .btn-search::before {
    display: none;
  }
  .results-header {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .results-count strong {
    font-size: 18px;
  }
  .section-title {
    font-size: 20px;
  }
}
@media (max-width: 560px) {
  .property-thumbnail {
    aspect-ratio: 1.1764705882;
  }
  .property-info {
    padding-top: 10px;
  }
  .property-name {
    font-size: 16px;
  }
  .property-price .price-value {
    font-size: 17px;
  }
}
#dev-container, body, html {
  overflow: visible !important;
}
/*# sourceMappingURL=5b1bdb85f540bce067ab02ebfa39ab463098da8c.list.scss.map */
