.lux-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
}
.lux-swiper-09383f9f {
    width: 100%;
    padding-bottom: 50px;
}
.lux-slide {
    width: 800px; /* Overridden by inline style from elementor */
    max-width: 90vw;
    transition: all 0.4s ease;
}
.lux-slide-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.swiper-slide-active .lux-slide {
    transform: scale(1);
    opacity: 1;
}
.swiper-slide:not(.swiper-slide-active) {
    /* Opacity and blur controlled via Elementor settings */
}
.lux-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.lux-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
.lux-image-wrapper {
    position: relative;
    width: 100%;
    height: 400px; /* Overridden by Elementor */
    overflow: hidden;
}
.lux-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, opacity 0.5s ease;
}
.lux-image.hover-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
.lux-card:hover .lux-image.hover-img {
    opacity: 1;
}
.lux-card:hover .lux-image.main-img {
    opacity: 0;
}
/* If no hover image, scale main image */
.lux-card:hover .lux-image.main-img:only-of-type {
    opacity: 1;
}
.lux-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #111;
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    z-index: 10;
}
.lux-content {
    display: flex;
    justify-content: space-between;
    padding: 30px;
    background: inherit;
    border-radius: inherit;
}
.lux-content-left {
    flex: 1;
    padding-right: 15px;
}
.lux-content-right {
    text-align: right;
    min-width: 120px;
}
.lux-title {
    margin: 0 0 10px;
    font-size: 24px;
    font-weight: 700;
}
.lux-desc {
    margin: 0 0 15px;
    color: #666;
    line-height: 1.5;
}
.lux-loc {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #888;
}
.lux-price {
    font-size: 28px;
    font-weight: 700;
    color: #c9a050;
    margin-bottom: 10px;
}
.lux-meta {
    color: #888;
    font-size: 14px;
}
.lux-nav {
    color: #111;
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.lux-nav:hover {
    background: #111;
    color: #fff;
}
.lux-nav:after {
    font-size: 20px;
}

@media (max-width: 768px) {
    .lux-content {
        flex-direction: column;
        text-align: left;
    }
    .lux-content-right {
        text-align: left;
        margin-top: 15px;
    }
}