.featured-properties-slider-wrapper {
    padding: 60px 0;
    background: #fff;
    position: relative;
}

.featured-properties-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.featured-properties-header {
    text-align: center;
    margin-bottom: 50px;
}

.featured-properties-title {
    color: #92857A;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0 0 20px 0;
}

.featured-properties-underline {
    height: 3px;
    width: 100px;
    background-color: #92857A;
    margin: 0 auto;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.featured-properties-slider {
    position: relative;
    margin: 0 auto;
    padding: 0 70px;
}

.featured-properties-slider .swiper {
    overflow: hidden;
    position: relative;
}

.featured-properties-slider .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.featured-property-card {
    background: white;
    border: 1px solid #333;
    border-radius: 0;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: row;
    height: 260px;
    width: 100%;
    position: relative;
    transform: none !important;
    backface-visibility: hidden;
}

.featured-property-card:hover {
    box-shadow: 4px 4px 15px rgba(0,0,0,0.2);
    border-color: #92857A;
    z-index: 10;
    transform: none !important;
}

.featured-property-image {
    position: relative;
    overflow: hidden;
    flex: 0 0 300px;
    height: 100%;
    width: 300px;
}

.featured-property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-property-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #92857A;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-property-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    min-width: 0;
}

.featured-property-divider {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #92857A 0%, #E6E0DA 100%);
}

.featured-property-header {
    margin-bottom: 12px;
    text-align: left;
}

.featured-property-title {
    font-size: 17px;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px 0;
    line-height: 1.3;
    text-transform: none;
    letter-spacing: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.featured-property-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-property-title a:hover {
    color: #92857A;
}

.featured-property-address {
    color: #666;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.featured-property-info {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 12px;
}

.featured-property-info-item {
    font-size: 13px;
    color: #666;
    flex: 0 0 auto;
    white-space: nowrap;
}

.featured-property-info-item strong {
    color: #333;
    font-weight: 600;
}

.featured-property-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
}

.featured-property-pricing {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.featured-property-price {
    font-size: 22px;
    font-weight: 700;
    color: #92857A;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.featured-property-price-per-m {
    font-size: 12px;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.featured-property-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.featured-property-id {
    font-size: 11px;
    color: #999;
    white-space: nowrap;
}

.featured-property-link {
    display: inline-block;
    padding: 8px 20px;
    background-color: #92857A;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.featured-property-link:hover {
    background-color: #816B63;
    transform: translateX(5px);
}

.featured-properties-nav-prev {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 60px;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
}

.featured-properties-nav-prev::before {
    content: '';
    position: absolute;
    left: -50px;
    top: 50%;
    width: 50px;
    height: 50px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><path d='M90,10 L90,90 L13.4,50 Z' fill='%23E6E0DA' stroke='%23E6E0DA' stroke-width='20' stroke-linejoin='round' stroke-linecap='round'/></svg>") no-repeat center/contain;
    filter: drop-shadow(-2px 3px 6px rgba(0,0,0,.15));
    transition: all .3s ease;
}

.featured-properties-nav-prev:hover::before {
    border-right-color: #92857A;
    filter: drop-shadow(3px 4px 10px rgba(0,0,0,0.25));
    transform: translateX(-3px);
}

.featured-properties-nav-next {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 60px;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
}

.featured-properties-nav-next::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 50%;
    width: 50px;
    height: 50px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><path d='M10,10 L10,90 L86.6,50 Z' fill='%23E6E0DA' stroke='%23E6E0DA' stroke-width='20' stroke-linejoin='round' stroke-linecap='round'/></svg>") no-repeat center/contain;
    filter: drop-shadow(-2px 3px 6px rgba(0,0,0,.15));
    transition: all .3s ease;
}

.featured-properties-nav-next:hover::before {
    border-left-color: #92857A;
    filter: drop-shadow(-3px 4px 10px rgba(0,0,0,0.25));
    transform: translateX(3px);
}

.featured-properties-nav-prev svg,
.featured-properties-nav-next svg {
    display: none;
}

.featured-properties-slider .swiper-wrapper {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.featured-properties-slider .swiper-slide {
    height: auto;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
    transition: none !important;
}

.featured-properties-slider .swiper-slide-active,
.featured-properties-slider .swiper-slide-next,
.featured-properties-slider .swiper-slide-prev {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.featured-properties-slider .swiper-slide * {
    transform: none !important;
    transition: box-shadow 0.3s ease, border-color 0.3s ease !important;
}

.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.swiper-button-disabled:hover {
    background-color: #E6E0DA;
}

.swiper-pagination {
    position: relative;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #D9D9D9;
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #92857A;
    width: 30px;
    border-radius: 5px;
}

.featured-properties-empty {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-size: 16px;
    background: #f9f9f9;
    border: 1px dashed #D9D9D9;
    border-radius: 8px;
    margin: 40px auto;
    max-width: 600px;
}

@media (max-width: 1600px) {
    .featured-property-image {
        flex: 0 0 280px;
        width: 280px;
    }
}

@media (max-width: 1400px) {
    .featured-property-image {
        flex: 0 0 260px;
        width: 260px;
    }
    
    .featured-property-card {
        height: 250px;
    }
    
    .featured-property-content {
        padding: 18px;
    }
}

@media (max-width: 1200px) {
    .featured-properties-container {
        padding: 0 20px;
    }
    
    .featured-properties-slider {
        padding: 0 60px;
    }
    
    .featured-properties-nav-prev {
        left: 8px;
    }
    
    .featured-properties-nav-next {
        right: 8px;
    }
    
    .featured-property-image {
        flex: 0 0 240px;
        width: 240px;
    }
    
    .featured-property-card {
        height: 240px;
    }
}

@media (max-width: 1024px) {
    .featured-property-card {
        height: 250px;
    }
    
    .featured-property-image {
        flex: 0 0 350px;
        width: 350px;
    }
}

@media (max-width: 768px) {
    .featured-properties-title {
        font-size: 28px;
    }
    
    .featured-properties-container {
        padding: 0 15px;
    }
    
    .featured-properties-slider {
        padding: 0 45px;
    }
    
    .featured-properties-nav-prev {
        left: 5px;
    }
    
    .featured-properties-nav-next {
        right: 5px;
    }
    
    .featured-property-card {
        flex-direction: column;
        height: auto;
    }
    
    .featured-property-image {
        flex: none;
        width: 100%;
        height: 220px;
    }
    
    .featured-property-divider {
        width: 100%;
        height: 2px;
        left: 0;
        top: 0;
        background: linear-gradient(90deg, #92857A 0%, #E6E0DA 100%);
    }
    
    .featured-properties-nav-prev,
    .featured-properties-nav-next {
        width: 35px;
        height: 50px;
    }
    
    .featured-properties-nav-prev::before {
        border-width: 25px 35px 25px 0;
    }
    
    .featured-properties-nav-next::before {
        border-width: 25px 0 25px 35px;
    }
    
    .featured-property-content {
        padding: 20px;
    }
    
    .featured-property-title {
        font-size: 18px;
    }
    
    .featured-property-price {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .featured-properties-container {
        padding: 0 10px;
    }
    
    .featured-properties-title {
        font-size: 24px;
        letter-spacing: 1px;
    }
    
    .featured-properties-slider {
        padding: 0 35px;
    }
    
    .featured-properties-nav-prev,
    .featured-properties-nav-next {
        width: 30px;
        height: 40px;
    }
    
    .featured-properties-nav-prev {
        left: 5px;
    }
    
    .featured-properties-nav-prev::before {
        border-width: 20px 30px 20px 0;
    }
    
    .featured-properties-nav-next {
        right: 5px;
    }
    
    .featured-properties-nav-next::before {
        border-width: 20px 0 20px 30px;
    }
    
    .featured-property-link {
        padding: 8px 20px;
        font-size: 13px;
    }
    
    .featured-property-content {
        padding: 15px;
    }
    
    .featured-property-title {
        font-size: 16px;
    }
    
    .featured-property-info {
        gap: 10px;
    }
    
    .featured-property-info-item {
        font-size: 12px;
    }
    
    .featured-property-price {
        font-size: 18px;
    }
}
