/* =============================================
   Luxe Masterpieces Slider — Styles
   ============================================= */

.luxe-slider-wrapper {
    font-family: 'Jost', sans-serif;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Header */
.luxe-slider-header {
    margin: 0 auto;
}

.luxe-slider-subtitle {
    font-family: 'Gilda Display', serif;
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 12px;
}

.luxe-slider-desc {
    font-size: 16px;
    line-height: 1.6;
}

/* Swiper container */
.luxe-slider-wrapper .swiper {
    width: 100%;
    position: relative;
    padding-bottom: 70px !important;
    overflow: hidden;
}

/* ======================
   Card — shared
   ====================== */
.luxe-slide-card {
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    height: 500px;
    border-radius: 4px;
}

/* Content position: bottom-inside (default) */
.luxe-slide-card.luxe-content-bottom-inside {
    display: flex !important;
    align-items: flex-end !important;
}

/* Content position: overlay-center */
.luxe-slide-card.luxe-content-overlay-center {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.luxe-content-overlay-center .luxe-slide-content {
    max-width: 80%;
    text-align: center;
}

/* Content position: bottom-outside */
.luxe-slide-card.luxe-content-bottom-outside {
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
}

.luxe-content-bottom-outside .luxe-slide-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: inherit;
}

.luxe-content-bottom-outside .luxe-slide-content {
    position: relative;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    margin: 0;
}

/* Image */
.luxe-slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.luxe-content-bottom-outside .luxe-slide-image {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

.luxe-slide-card:hover .luxe-slide-image {
    /* Scale controlled via Elementor selector */
}

/* Overlay */
.luxe-slide-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* ======================
   Badges
   ====================== */
.luxe-slide-badges {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 5;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.luxe-content-bottom-outside .luxe-slide-badges {
    /* Keep badges inside image-wrap */
}

.luxe-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1;
    white-space: nowrap;
}

/* ======================
   Content area
   ====================== */
.luxe-slide-content {
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
}

.luxe-content-bottom-inside .luxe-slide-content,
.luxe-content-overlay-center .luxe-slide-content {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

/* Title */
.luxe-slide-title {
    font-family: 'Gilda Display', serif;
    font-size: 24px;
    font-weight: 400;
    margin: 0;
}

.luxe-slide-title a {
    text-decoration: none;
    transition: color 0.3s;
}

/* Address */
.luxe-slide-address {
    font-size: 13px;
    line-height: 1.4;
    display: flex;
    align-items: center;
}

/* Excerpt */
.luxe-slide-excerpt {
    font-size: 14px;
    line-height: 1.5;
}

/* ======================
   Meta row
   ====================== */
.luxe-slide-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.luxe-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.luxe-meta-item svg {
    flex-shrink: 0;
}

.luxe-meta-sep {
    width: 1px;
    height: 14px;
    margin: 0 10px;
    flex-shrink: 0;
}

/* ======================
   Price
   ====================== */
.luxe-slide-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}

.luxe-slide-price {
    font-size: 15px;
    font-weight: 500;
}

.luxe-slide-price-status {
    margin-right: 4px;
}

.luxe-slide-old-price {
    font-size: 13px;
}

.luxe-slide-old-price del {
    text-decoration: line-through;
}

/* ======================
   Navigation — positions
   ====================== */
.luxe-slider-navigation {
    display: flex;
    gap: 16px;
    z-index: 10;
}

/* bottom-center (default) */
.luxe-nav-bottom-center .luxe-slider-navigation {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
}

/* bottom-left */
.luxe-nav-bottom-left .luxe-slider-navigation {
    position: absolute;
    bottom: 0;
    left: 0;
}

/* bottom-right */
.luxe-nav-bottom-right .luxe-slider-navigation {
    position: absolute;
    bottom: 0;
    right: 0;
}

/* sides */
.luxe-nav-sides .luxe-slider-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    justify-content: space-between;
    padding: 0 10px;
    pointer-events: none;
}

.luxe-nav-sides .luxe-slider-btn {
    pointer-events: auto;
}

/* Navigation button base */
.luxe-slider-btn {
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, border-color 0.3s, color 0.3s;
    line-height: 1;
    padding: 0;
}

/* ======================
   Pagination
   ====================== */
.luxe-slider-wrapper .swiper-pagination {
    position: relative;
    margin-top: 20px;
    bottom: auto !important;
}

.luxe-slider-wrapper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    opacity: 1;
    transition: background 0.3s;
}

.luxe-slider-wrapper .swiper-pagination-progressbar {
    position: relative !important;
    height: 3px;
    border-radius: 2px;
}

/* ======================
   Responsive
   ====================== */
@media (max-width: 767px) {
    .luxe-slide-content {
        margin: 15px !important;
    }

    .luxe-content-bottom-outside .luxe-slide-content {
        margin: 12px 0 0 0 !important;
    }

    .luxe-slide-badges {
        top: 10px;
        left: 10px;
    }

    .luxe-nav-sides .luxe-slider-navigation {
        padding: 0 5px;
    }

    .luxe-slide-meta {
        font-size: 11px;
    }

    .luxe-meta-sep {
        margin: 0 6px;
    }
}