/* Properties Horizontal Slider styles (sec-main mimic) */
.sec-main.properties-horizontal-slider {
  width: 100%;
  margin: 50px 0;
  display: flex;
  justify-content: center;
}
.phs-container {
  width: 1240px;
}
.phs-header {
  margin-bottom: 20px;
}
.phs-title {
  font-size: 28px;
  font-weight: 600;
  color: #1f1f1f;
}

/* Navigation Controls */
.phs-navigation {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.phs-nav-buttons {
  display: flex;
  gap: 10px;
}

.phs-nav-btn {
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: #f5f5f5;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.phs-nav-btn:hover:not(:disabled) {
  background: #5DB873;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.phs-nav-btn:hover:not(:disabled) svg {
  fill: #fff;
}

.phs-nav-btn svg {
  width: 24px;
  height: 24px;
  fill: #666;
}

.phs-nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.phs-nav-btn:disabled svg {
  fill: #999;
}

/* Progress Bar */
.phs-nav-progress {
  flex: 1;
  height: 2px;
  background: #e5e5e5;
  border-radius: 1px;
  overflow: hidden;
}

.phs-nav-progress-bar {
  height: 100%;
  background: #5DB873;
  transition: width 0.3s ease;
  border-radius: 1px;
  width: 0;
}

.phs-track-wrapper { 
  overflow: hidden;
  margin: 0 -10px;
  padding: 10px 10px 20px 10px;
}
.phs-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
  will-change: transform;
}

/* Property Card - Same as block-prefilterkorey */
.phs-track .property-card {
  flex: 0 0 280px;
  min-width: 280px;
  height: 400px;
  border-radius: 20px;
  box-shadow: 0px 1px 10px 3px rgb(195, 195, 195);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #fff;
}

.phs-track .property-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 5px 20px 5px rgb(180, 180, 180);
}

/* Card Image */
.phs-track .property-card .sec_2_2_img1 {
  position: relative;
  height: 50%;
  width: 100%;
  border-radius: 20px 20px 0px 0px;
  overflow: hidden;
}

.phs-track .property-card .sec_2_2_img1 img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* Slick Slider dentro de la imagen */
.phs-track .property-card .sec_2_2_img1 .property-slider,
.phs-track .property-card .sec_2_2_img1 .slick-list,
.phs-track .property-card .sec_2_2_img1 .slick-track {
  height: 100%;
  width: 100%;
}

.phs-track .property-card .sec_2_2_img1 .slick-slide {
  height: 200px;
}

.phs-track .property-card .sec_2_2_img1 .slick-slide img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

/* Flechas de Slick */
.phs-track .property-card .sec_2_2_img1 .slick-next,
.phs-track .property-card .sec_2_2_img1 .slick-prev,
.phs-track .property-card .sec_2_2_img1 .slick-next:focus,
.phs-track .property-card .sec_2_2_img1 .slick-prev:focus {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 11;
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0);
  border: none;
  cursor: pointer;
}

.phs-track .property-card .sec_2_2_img1 .slick-prev {
  left: 10px;
}

.phs-track .property-card .sec_2_2_img1 .slick-next {
  right: 10px;
}

.phs-track .property-card .sec_2_2_img1 .slick-arrow:hover {
  background-color: rgba(0, 0, 0, 0);
}

.phs-track .property-card .sec_2_2_img1 .slick-next:before,
.phs-track .property-card .sec_2_2_img1 .slick-prev:before {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  transition: background-color 0.2s;
  opacity: 1;
}

.phs-track .property-card .sec_2_2_img1 .like {
  position: absolute;
  right: 20px;
  top: 20px;
  height: 35px;
  width: 35px;
  background-color: #F5F5F5;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 22px;
  color: #555;
  cursor: pointer;
  transition: color 0.3s ease;
}

.phs-track .property-card .sec_2_2_img1 .like:hover {
  color: red;
}

.phs-track .property-card .sec_2_2_img1 .like.active {
  color: red;
}

.phs-track .property-card .sec_2_2_img1 .price-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.8);
  color: #000;
  padding: 5px 10px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
}

/* Card Content */
.phs-track .property-card .sec_2_2_des {
  height: 50%;
  width: 100%;
  border-radius: 0 0 20px 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  background: #fff;
}

.phs-track .property-card .sec_2_2_des1 {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.phs-track .property-card .sec_2_2_des1 .property-location {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  margin: 0;
}

.phs-track .property-card .sec_2_2_des1 .p1 {
  font-size: 14px;
  color: #717171;
  font-weight: 400;
  margin: 0;
}

/* Amenities */
.phs-track .property-card .sec_2_2_des2 {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  flex-wrap: nowrap;
  color: #333;
}

.phs-track .property-card .sec_2_2_des2 span {
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.phs-track .property-card .sec_2_2_des2 span img {
  height: 16px;
  width: 16px;
}

.phs-empty { color: #666; padding: 40px; text-align: center; }

@media (max-width: 1280px) {
  .phs-container { width: 95%; }
}

@media (max-width: 900px) {
  .phs-track .property-card {
    flex: 0 0 260px;
    min-width: 260px;
    height: 380px;
  }
}

@media (max-width: 600px) {
  .phs-track .property-card {
    flex: 0 0 240px;
    min-width: 240px;
    height: 360px;
  }
  
  .phs-track .property-card .sec_2_2_des2 span {
    font-size: 12px;
  }
}
