@charset "UTF-8";
/**
 * Property Listing SCSS
 * Main entry point that imports all partials
 */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/**
 * Property Listing SCSS
 * Main entry point that imports all partials
 */
/**
 * Property Listing Base Styles
 */
.property-listing-container {
  color: #333;
  background: #fff;
}

.property-loading {
  text-align: center;
  padding: 48px 24px;
  background: #16aace;
  border-radius: 8px;
  margin: 32px 0;
  border: 1px solid #ddd;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  color: #fff;
}
.property-loading::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #16aace;
  -webkit-animation: shimmer 2s infinite;
  animation: shimmer 2s infinite;
}
.property-loading .loading-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid #ddd;
  border-top: 4px solid #16aace;
  border-right: 4px solid #16aace;
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.property-loading p {
  color: #666;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  position: relative;
  z-index: 1;
}

@-webkit-keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
.no-properties {
  text-align: center;
  padding: 48px 24px;
  background: #16aace;
  border-radius: 8px;
  color: #666;
  border: 1px solid #ddd;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}
.no-properties::before {
  content: "🏠";
  font-size: 48px;
  display: block;
  margin-bottom: 16px;
  opacity: 0.6;
}
.no-properties p {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #333;
}
.no-properties .no-properties-subtitle {
  font-size: 14px;
  color: #666;
  margin-top: 8px;
}

/**
 * Property Listing SCSS
 * Main entry point that imports all partials
 */
/**
 * Property Listing Layout Styles
 */
.property-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 32px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.property-sidebar {
  position: sticky;
  top: 24px;
  -ms-flex-item-align: start;
  align-self: start;
}

.property-results {
  min-width: 0;
}

@media (max-width: 1024px) {
  .property-layout {
    grid-template-columns: 280px 1fr;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .property-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .property-sidebar {
    position: static;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .property-results {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
.results-toolbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 8px;
}
.results-toolbar .results-count {
  color: #666;
  font-size: 14px;
}

.property-grid {
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
@media (max-width: 1024px) {
  .property-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .property-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .property-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/**
 * Property Listing SCSS
 * Main entry point that imports all partials
 */
/**
 * Property Filters Styles
 */
.property-filters {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 32px;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  position: relative;
}

.filter-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-bottom: 15px;
}
.filter-row:last-child {
  margin-bottom: 0;
}

.filter-group {
  min-width: 0;
}
.filter-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #333;
  font-size: 14px;
}
.filter-group.active label {
  color: #16aace;
  font-weight: 700;
}
.filter-group.active .property-filter {
  border-color: #16aace;
  background: rgba(0, 124, 186, 0.05);
}
.filter-group.active .price-range-inputs .price-display span {
  background: rgba(0, 124, 186, 0.1);
  color: #16aace;
  font-weight: 700;
}

.property-filter {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
  background: #fff;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.property-filter:focus {
  outline: none;
  border-color: #16aace;
  -webkit-box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.2);
  box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.2);
}

.filter-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.filter-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #16aace;
  color: #fff;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border: none;
  position: relative;
  overflow: hidden;
}
.filter-btn:active {
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.filter-btn.secondary {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #fff;
  color: #333;
  border: 2px solid #ddd;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.filter-btn.secondary:hover {
  background: #f8f9fa;
  border-color: #16aace;
  color: #16aace;
  -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.filter-btn.secondary:active {
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.sort-group label {
  margin-right: 8px;
  font-weight: 600;
  color: #333;
}
.sort-group select {
  padding: 8px 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.price-range-group {
  grid-column: 1/-1;
}

.price-range-inputs .price-input-container {
  margin-bottom: 8px;
}
.price-range-inputs .price-input-container label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #333;
  font-size: 13px;
}
.price-range-inputs .price-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
  background: #fff;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.price-range-inputs .price-input:focus {
  outline: none;
  border-color: #16aace;
  -webkit-box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.2);
  box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.2);
}
.price-range-inputs .price-input::-webkit-input-placeholder {
  color: #6c757d;
  opacity: 0.7;
}
.price-range-inputs .price-input::-moz-placeholder {
  color: #6c757d;
  opacity: 0.7;
}
.price-range-inputs .price-input:-ms-input-placeholder {
  color: #6c757d;
  opacity: 0.7;
}
.price-range-inputs .price-input::-ms-input-placeholder {
  color: #6c757d;
  opacity: 0.7;
}
.price-range-inputs .price-input::placeholder {
  color: #6c757d;
  opacity: 0.7;
}
.price-range-inputs .price-display {
  display: none;
}

/**
 * Property Listing SCSS
 * Main entry point that imports all partials
 */
/**
 * Property Components Styles
 */
.property-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  position: relative;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}
.property-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.property-card:hover {
  -webkit-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: #16aace;
}

.property-image {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: #f8f9fa;
}
.property-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-filter: brightness(0.95);
  filter: brightness(0.95);
}
.property-card:hover .property-image img {
  -webkit-filter: brightness(1.05);
  filter: brightness(1.05);
}

.property-slider {
  position: relative;
  height: 200px;
  overflow: hidden;
  display: block;
}
.property-slider .slider-container {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.property-slider .slider-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}
.property-slider .slider-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.property-slider .slider-image.active {
  opacity: 1;
  visibility: visible;
}
.property-slider .slider-nav {
  position: absolute;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}
.property-slider .slider-nav .slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.property-slider .slider-nav .slider-dot.active {
  background: #16aace;
}
.property-slider .slider-arrow {
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  border: none;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  position: absolute;
  top: 40%;
  font-size: 32px;
  line-height: 42px;
  font-weight: bold;
  padding-bottom: 2px;
}
.property-slider .slider-arrow:hover {
  background: rgba(0, 0, 0, 0.8);
}
.property-slider .slider-arrow.prev {
  left: 10px;
}
.property-slider .slider-arrow.next {
  right: 10px;
}

/**
 * Property Card Actions
 */
.property-card-actions {
  padding: 0 24px 24px 24px;
  text-align: center;
}

.view-property-btn {
  display: block;
  text-align: center;
  padding: 10px 20px;
  background: #16aace;
  color: white !important;
  text-decoration: none;
  border-radius: 3px;
  font-weight: 700;
  font-size: 16px;
  border: none;
  position: relative;
  overflow: hidden;
}
.view-property-btn:hover {
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.view-property-btn .btn-icon {
  font-size: 16px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.no-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  color: #6c757d;
  font-size: 14px;
  background: #f8f9fa;
  background-image: url("../img/placeholder.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.property-media {
  position: relative;
  overflow: hidden;
  min-height: 200px;
  display: block;
}
.property-media .property-image {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}
.property-media .image-count {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}
.property-media .property-image-container {
  position: relative;
}
.property-media .finishing-status-ribbon {
  position: absolute;
  top: 10px;
  z-index: 11;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0px 10px;
}
.property-media .finishing-status-ribbon .express-interest-wrap .interest-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 2px 5px;
  color: red !important;
  font-size: 9px;
  line-height: 19px;
}
.property-media .finishing-status-ribbon .express-interest-wrap .interest-btn svg {
  width: 16px;
  height: 16px;
}
.property-media .finishing-status-ribbon .status-badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 3px;
  overflow: hidden;
  font-size: 9px;
  line-height: 19px;
}
.property-media .finishing-status-ribbon .status-label {
  background: #1aa385;
  color: #fff;
  padding: 2px 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  font-weight: bold;
}
.property-media .finishing-status-ribbon .status-value {
  background: #d1ede7;
  color: #1aa385;
  padding: 2px 12px;
  font-weight: bold;
}
.property-media .finishing-status-ribbon .info-icon {
  background: #fff;
  color: #1aa385;
  font-weight: bold;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 11px;
}

.property-info {
  padding: 10px;
  position: relative;
  z-index: 2;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.property-location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 8px;
}
.property-location .location {
  font-size: 14px;
  color: #333;
  font-weight: 500;
}
.property-location .tag {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid;
}
.property-location .tag.furnished {
  background: #28a745;
  color: white;
  border-color: #28a745;
}
.property-location .tag.available {
  background: #f8f9fa;
  color: #16aace;
  border-color: #16aace;
}

.property-details {
  display: block;
  width: 100%;
  padding-bottom: 10px;
}
.property-details .property-meta {
  display: grid;
  grid-template-columns: 40% 30% 30%;
  margin-bottom: 16px;
}
@media (max-width: 479px) {
  .property-details .property-meta .price-meta .monthly-rent {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
}
.property-details .property-meta .meta-item {
  text-align: center;
  padding: 5px 10px;
  border-right: 1px solid #ddd;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 14px;
  vertical-align: middle;
  height: 100%;
}
.property-details .property-meta .meta-item .monthly-rent,
.property-details .property-meta .meta-item .security-deposit,
.property-details .property-meta .meta-item .meta-bhk,
.property-details .property-meta .meta-item .meta-baths,
.property-details .property-meta .meta-item .sqftarea,
.property-details .property-meta .meta-item .sqftarea-txt {
  display: block;
  width: 100%;
}
.property-details .property-meta .meta-item .price-on-request {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  width: 100%;
}
.property-details .property-meta .meta-item:last-child {
  border: none;
}
.property-details .property-meta .meta-item .monthly-rent .monthly-rent-amount {
  font-size: 21px;
  font-weight: 700;
}
.property-details .property-meta .meta-item .meta-bhk,
.property-details .property-meta .meta-item .sqftarea,
.property-details .property-meta .meta-item .price-on-request {
  color: #000;
  font-size: 16px;
  font-weight: 700;
}
.property-details .property-meta .meta-item .meta-value {
  font-weight: 700;
  color: #333;
  font-size: 15px;
  line-height: 1.2;
}
.property-details .property-meta .meta-item .meta-label {
  font-size: 11px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}
.property-details .ripple-effect {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-animation: ripple-animation 0.6s linear;
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
  z-index: 10;
}
@-webkit-keyframes ripple-animation {
  to {
    -webkit-transform: scale(4);
    transform: scale(4);
    opacity: 0;
  }
}
@keyframes ripple-animation {
  to {
    -webkit-transform: scale(4);
    transform: scale(4);
    opacity: 0;
  }
}
.property-details .property-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin: 12px 0;
  font-size: 13px;
}
.property-details .property-specs .spec-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 4px 0;
}
.property-details .property-specs .spec-item .spec-label {
  font-weight: 600;
  color: #555;
  min-width: 100px;
}
.property-details .property-specs .spec-item .spec-value {
  color: #333;
  font-weight: 500;
  text-align: right;
}
.property-details .property-status {
  display: inline-block;
  padding: 4px 8px;
  background: #f8f9fa;
  color: #666;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  text-transform: capitalize;
}

.highlights {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 16px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.highlights strong {
  font-weight: 600;
  color: #070707;
  margin-right: 8px;
  display: block;
  font-size: 12px;
}
.highlights ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
}
.highlights ul li {
  background: #f5f5f5;
  padding: 0px 10px;
  border-radius: 4px;
  font-size: 12px;
  color: #666;
}

.property-content {
  padding: 20px;
}

.property-title {
  margin: 0 0 12px 0;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.property-title a {
  text-decoration: none;
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.property-title a:hover {
  color: #16aace;
}
.property-card:hover .property-title {
  color: #16aace;
}

.property-actions {
  display: block;
  margin-top: 16px;
  text-align: center;
}

.interest-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  border: 1px solid red;
  background-color: #ffe6e6;
  color: red;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 4px;
  font-size: 18px;
  cursor: pointer;
  text-decoration: none;
}
.interest-btn:hover {
  background-color: #f8dede;
}
.interest-btn svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: red;
  stroke-width: 2;
}

.related-properties-header h2 {
  margin-bottom: 2rem;
}

.related-property-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}
@media (min-width: 480px) {
  .related-property-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 768px) {
  .related-property-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.related-property-grid .property-card {
  margin-bottom: 10px;
}

/* Property Images Gallery - New Layout */
.property-images-gallery-new {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (min-width: 480px) {
  .property-images-gallery-new {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.property-images-gallery-new {
  gap: 15px;
  margin: 20px 0;
  min-height: 300px;
}
.property-images-gallery-new .gallery-main {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 65%;
  flex: 0 0 65%;
  position: relative;
}
.property-images-gallery-new .gallery-main .gallery-cover {
  width: 100%;
  height: 100%;
  min-height: 300px;
  max-height: 432px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.property-images-gallery-new .gallery-main .gallery-cover:hover {
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}
.property-images-gallery-new .gallery-main .gallery-cover-link {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  overflow: hidden;
}
.property-images-gallery-new .gallery-thumbnails {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 35%;
  flex: 0 0 35%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}
.property-images-gallery-new .gallery-thumbnails .thumbnail-item {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.property-images-gallery-new .gallery-thumbnails .thumbnail-item:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.property-images-gallery-new .gallery-thumbnails .thumbnail-item.thumbnail-count .thumbnail-image {
  -webkit-filter: blur(1px);
  filter: blur(1px);
}
.property-images-gallery-new .gallery-thumbnails .thumbnail-item .thumbnail-link {
  display: block;
  width: 100%;
  height: 100%;
}
.property-images-gallery-new .gallery-thumbnails .thumbnail-item .thumbnail-image {
  width: 100%;
  height: 100%;
  min-height: 140px;
  max-height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 5px;
}
.property-images-gallery-new .gallery-thumbnails .thumbnail-item .count-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 94px;
  font-weight: bold;
  border-radius: 5px;
  z-index: 2;
}
.property-images-gallery-new {
  /* Responsive design for new gallery layout */
}
@media (max-width: 480px) {
  .property-images-gallery-new {
    gap: 8px;
  }
  .property-images-gallery-new .gallery-main {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    height: 250px;
  }
  .property-images-gallery-new .gallery-main .gallery-cover {
    min-height: 250px;
  }
  .property-images-gallery-new .gallery-thumbnails {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 5px;
    height: 120px;
  }
  .property-images-gallery-new .gallery-thumbnails .thumbnail-item {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .property-images-gallery-new .gallery-thumbnails .thumbnail-item .thumbnail-image {
    min-height: 120px;
  }
  .property-images-gallery-new .gallery-thumbnails .thumbnail-item .count-overlay {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .property-images-gallery-new .gallery-main {
    height: 200px;
  }
  .property-images-gallery-new .gallery-main .gallery-cover {
    min-height: 200px;
  }
  .property-images-gallery-new .gallery-thumbnails {
    height: 100px;
    gap: 5px;
  }
  .property-images-gallery-new .gallery-thumbnails .thumbnail-item .thumbnail-image {
    min-height: 100px;
  }
  .property-images-gallery-new .gallery-thumbnails .thumbnail-item .count-overlay {
    font-size: 16px;
  }
}

/* Single image layout fallback */
.property-images-gallery-single {
  margin: 20px 0;
}
.property-images-gallery-single img {
  width: 100%;
  height: auto;
  max-height: 620px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.property-images-gallery-single img:hover {
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}

/* Enhanced Property Images Lightbox */
.property-lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.property-lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}
.property-lightbox-overlay.thumbnails-expanded .lightbox-main {
  height: calc(100vh - 200px);
}
.property-lightbox-overlay.thumbnails-expanded .lightbox-thumbnails {
  height: 150px;
}
.property-lightbox-overlay .lightbox-container {
  position: relative;
  width: 100%;
  height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.property-lightbox-overlay .lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: none;
  font-size: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 10001;
}
.property-lightbox-overlay .lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.property-lightbox-overlay .lightbox-main {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
}
.property-lightbox-overlay .lightbox-next {
  right: 10px;
}
.property-lightbox-overlay .lightbox-prev {
  left: 10px;
}
.property-lightbox-overlay .lightbox-prev,
.property-lightbox-overlay .lightbox-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  font-size: 32px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 10001;
  backdrop-filter: blur(4px);
  font-weight: bold;
}
.property-lightbox-overlay .lightbox-prev:hover,
.property-lightbox-overlay .lightbox-next:hover {
  background: rgba(255, 255, 255, 0.4);
  border-color: rgba(255, 255, 255, 0.6);
  -webkit-transform: translateY(-50%) scale(1.15);
  transform: translateY(-50%) scale(1.15);
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.property-lightbox-overlay .lightbox-prev:active,
.property-lightbox-overlay .lightbox-next:active {
  -webkit-transform: translateY(-50%) scale(1.05);
  transform: translateY(-50%) scale(1.05);
}
.property-lightbox-overlay .lightbox-prev.prev,
.property-lightbox-overlay .lightbox-next.prev {
  left: 20px;
}
.property-lightbox-overlay .lightbox-prev.next,
.property-lightbox-overlay .lightbox-next.next {
  right: 20px;
}
.property-lightbox-overlay .lightbox-slider {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}
.property-lightbox-overlay .lightbox-slider .lightbox-slide {
  display: none;
  width: 100%;
  height: 100%;
}
.property-lightbox-overlay .lightbox-slider .lightbox-slide.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.property-lightbox-overlay .lightbox-slider .lightbox-slide .lightbox-image {
  padding-top: 1rem;
  width: auto;
  height: auto;
  max-height: 80vh;
  border-radius: 5px;
  -webkit-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.property-lightbox-overlay .lightbox-slider .lightbox-slide .lightbox-loading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
}
.property-lightbox-overlay .lightbox-slider .lightbox-slide .lightbox-loading .loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid #fff;
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
}
.property-lightbox-overlay .lightbox-info {
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  z-index: 10001;
}
.property-lightbox-overlay .lightbox-counter {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  background: rgba(0, 0, 0, 0.7);
  padding: 5px 15px;
  border-radius: 20px;
}
.property-lightbox-overlay .lightbox-title {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  max-width: 80vw;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.property-lightbox-overlay .lightbox-thumbnails {
  height: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.8);
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
  position: relative;
}
.property-lightbox-overlay .lightbox-thumbnails .thumbnails-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  padding: 15px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}
.property-lightbox-overlay .lightbox-thumbnails .thumbnails-container::-webkit-scrollbar {
  height: 6px;
}
.property-lightbox-overlay .lightbox-thumbnails .thumbnails-container::-webkit-scrollbar-track {
  background: transparent;
}
.property-lightbox-overlay .lightbox-thumbnails .thumbnails-container::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}
.property-lightbox-overlay .lightbox-thumbnails .lightbox-thumbnail {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 80px;
  height: 60px;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.property-lightbox-overlay .lightbox-thumbnails .lightbox-thumbnail:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.property-lightbox-overlay .lightbox-thumbnails .lightbox-thumbnail.active {
  border-color: #16aace;
  -webkit-box-shadow: 0 0 0 2px rgba(22, 170, 206, 0.5);
  box-shadow: 0 0 0 2px rgba(22, 170, 206, 0.5);
}
.property-lightbox-overlay .lightbox-thumbnails .lightbox-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.property-lightbox-overlay .lightbox-thumbnails .thumbnails-toggle {
  position: absolute;
  top: -30px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border: none;
  width: 40px;
  height: 30px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 5px 5px 0 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.property-lightbox-overlay .lightbox-thumbnails .thumbnails-toggle:hover {
  background: rgba(0, 0, 0, 0.9);
}
.property-lightbox-overlay .lightbox-thumbnails .thumbnails-toggle .toggle-icon {
  font-size: 16px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.property-lightbox-overlay {
  /* Responsive lightbox */
}
@media (max-width: 480px) {
  .property-lightbox-overlay .lightbox-close {
    top: 15px;
    right: 15px;
    font-size: 20px;
    width: 36px;
    height: 36px;
  }
  .property-lightbox-overlay .lightbox-prev,
  .property-lightbox-overlay .lightbox-next {
    width: 44px;
    height: 44px;
    font-size: 24px;
  }
  .property-lightbox-overlay .lightbox-prev.prev,
  .property-lightbox-overlay .lightbox-next.prev {
    left: 10px;
  }
  .property-lightbox-overlay .lightbox-prev.next,
  .property-lightbox-overlay .lightbox-next.next {
    right: 10px;
  }
  .property-lightbox-overlay .lightbox-info {
    bottom: 15px;
  }
  .property-lightbox-overlay .lightbox-counter {
    font-size: 13px;
    padding: 5px 8px;
  }
  .property-lightbox-overlay .lightbox-title {
    font-size: 14px;
    max-width: 90vw;
  }
  .property-lightbox-overlay .lightbox-thumbnails.thumbnails-expanded {
    height: 120px;
  }
  .property-lightbox-overlay .lightbox-thumbnails .thumbnails-container {
    padding: 8px;
  }
  .property-lightbox-overlay .lightbox-thumbnails .thumbnails-container .lightbox-thumbnail {
    width: 60px;
    height: 45px;
  }
  .property-lightbox-overlay .lightbox-thumbnails .thumbnails-toggle {
    right: 15px;
    width: 36px;
    height: 28px;
    top: -28px;
  }
}
@media (max-width: 768px) {
  .property-lightbox-overlay .lightbox-prev,
  .property-lightbox-overlay .lightbox-next {
    display: none;
  }
  .property-lightbox-overlay .lightbox-thumbnails.thumbnails-expanded {
    height: 130px;
  }
}

/**
 * Property Listing SCSS
 * Main entry point that imports all partials
 */
/**
 * Pagination Styles
 */
.property-pagination {
  text-align: center;
  margin-top: 30px;
}
.property-pagination .pagination-wrapper {
  display: inline-block;
}
.property-pagination .pagination-wrapper .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 6px;
}
.property-pagination .pagination-wrapper .page-numbers li {
  margin: 0;
}
.property-pagination .pagination-wrapper .page-numbers a,
.property-pagination .pagination-wrapper .page-numbers span {
  display: inline-block;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  text-decoration: none;
  color: #333;
  background: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  min-width: 40px;
  text-align: center;
}
.property-pagination .pagination-wrapper .page-numbers a.dots,
.property-pagination .pagination-wrapper .page-numbers span.dots {
  border: none;
  background: transparent;
  cursor: default;
}
.property-pagination .pagination-wrapper .page-numbers a:hover {
  background: #16aace;
  color: #fff;
  border-color: #16aace;
}
.property-pagination .pagination-wrapper .page-numbers .current {
  background: #16aace;
  color: #fff;
  border-color: #16aace;
}

.customer-redirect-container {
  display: block;
  text-align: center;
}
.customer-redirect-container .customer-redirect-btn {
  display: inline-block;
  color: #ffffff;
  border-width: 2px;
  border-color: #16aace;
  font-size: 18px;
  font-weight: 700;
  background-color: #16aace;
  padding: 10px 20px;
  border-radius: 3px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.property-amenities h2 {
  margin-bottom: 2rem;
}

.amenities-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.amenities-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
  font-size: 16px;
}
.amenities-list li img {
  width: 22px;
  height: auto;
  margin-right: 5px;
}

.property-monthly-rent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
/*# sourceMappingURL=property-listing.css.map */
