/* Property Carousel Styles */
.property-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.property-carousel-track {
    display: flex;
    gap: 0;
    width: 100%;
    height: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.property-carousel-track::-webkit-scrollbar { display: none; }

.property-carousel-slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    scroll-snap-align: center;
}

.property-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.property-carousel-nav {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    z-index: 3;
}

.property-carousel-dots {
    display: flex;
    gap: 6px;
    justify-content: center;
    align-items: center;
    background: rgba(255,255,255,0.7);
    padding: 4px 8px;
    border-radius: 999px;
    backdrop-filter: blur(4px);
}

.property-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #cfd8dc;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.property-carousel-dot.active {
    background-color: #8B4513;
}

.prev-slide, .next-slide {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.prev-slide:hover, .next-slide:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

/* Responsive styles */
@media (max-width: 768px) {
    .property-carousel-nav {
        bottom: 6px;
        padding: 0 6px;
    }
    
    .property-carousel-dot {
        width: 6px;
        height: 6px;
    }
    
    .prev-slide, .next-slide {
        width: 26px;
        height: 26px;
        font-size: 0.8rem;
    }
}
