/* ========================================
   KASHLOOM ATELIER - LUXURY HERO SLIDER
   Premium Crochet Brand
   ======================================== */

/* === HERO SLIDER CONTAINER === */
.luxury-hero-slider {
    position: relative;
    width: 100%;
    min-height: 85vh;
    background: var(--color-ivory, #FFFCF7);
    overflow: hidden;
}

/* Crochet Texture Overlay */
.luxury-hero-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="%23E8DFD2" opacity="0.3"/></svg>');
    background-size: 20px 20px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
}

/* === SLIDER WRAPPER FOR OWL CAROUSEL === */
.luxury-slider-wrapper {
    position: relative;
    height: 100%;
    z-index: 2;
}

/* === SINGLE SLIDE === */
.luxury-slide {
    position: relative;
    min-height: 85vh;
    display: flex !important;
    align-items: center;
    background: linear-gradient(135deg, #FFFCF7 0%, #F8F5F0 50%, #F0EBE0 100%);
}

/* Slide Background Image */
.luxury-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.luxury-slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    filter: grayscale(20%);
}

/* Gradient Overlay */
.luxury-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(255, 252, 247, 0.95) 0%,
            rgba(255, 252, 247, 0.85) 50%,
            rgba(255, 252, 247, 0.6) 100%);
    z-index: 2;
    pointer-events: none;
}

/* === SLIDE CONTENT === */
.luxury-slide-content {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 4rem;
}

/* Text Content */
.slide-text {
    max-width: 650px;
    animation: slideInLeft 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
    animation-delay: 0.3s;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #9D8B7C;
    margin-bottom: 1.5rem;
    display: inline-block;
    position: relative;
    padding-bottom: 0.75rem;
}

.slide-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #9D8B7C;
}

.slide-title {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: clamp(2.75rem, 6vw, 5rem);
    font-weight: 600;
    line-height: 1.15;
    color: #2C2520;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.slide-title-highlight {
    display: block;
    font-weight: 700;
    color: #9D8B7C;
    font-style: italic;
}

.slide-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.8;
    color: #5D4F42;
    margin-bottom: 2.5rem;
    max-width: 540px;
}

/* CTA Button */
.slide-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #FFFCF7;
    background: #2C2520;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(44, 37, 32, 0.15);
    position: relative;
    overflow: hidden;
}

.slide-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 252, 247, 0.2), transparent);
    transition: left 0.6s ease;
}

.slide-cta:hover::before {
    left: 100%;
}

.slide-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(44, 37, 32, 0.25);
    background: #403730;
}

.slide-cta i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.slide-cta:hover i {
    transform: translateX(5px);
}

/* Visual Content */
.slide-visual {
    position: relative;
    animation: slideInRight 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
    animation-delay: 0.5s;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-image-main {
    position: relative;
    width: 100%;
    max-width: 550px;
    margin-left: auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(44, 37, 32, 0.15);
}

.slide-image-main img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.luxury-slide:hover .slide-image-main img {
    transform: scale(1.05);
}

/* Decorative Elements */
.slide-decoration {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(157, 139, 124, 0.2);
    border-radius: 50%;
    top: -50px;
    right: -50px;
    z-index: -1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* === OWL CAROUSEL CONTROLS === */
.luxury-slider-wrapper .owl-nav {
    position: absolute;
    bottom: 3rem;
    right: clamp(1.5rem, 5vw, 4rem);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.luxury-slider-wrapper .owl-nav button {
    width: 60px !important;
    height: 60px !important;
    background: rgba(255, 252, 247, 0.95) !important;
    border: 1px solid rgba(44, 37, 32, 0.1) !important;
    border-radius: 50% !important;
    color: #2C2520 !important;
    font-size: 1.5rem !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 15px rgba(44, 37, 32, 0.1) !important;
}

.luxury-slider-wrapper .owl-nav button:hover {
    background: #2C2520 !important;
    color: #FFFCF7 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(44, 37, 32, 0.2) !important;
}

.luxury-slider-wrapper .owl-dots {
    position: absolute;
    bottom: 3rem;
    left: clamp(1.5rem, 5vw, 4rem);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.luxury-slider-wrapper .owl-dot {
    width: 50px !important;
    height: 3px !important;
    background: rgba(44, 37, 32, 0.2) !important;
    border-radius: 3px !important;
    transition: all 0.3s ease !important;
}

.luxury-slider-wrapper .owl-dot.active {
    background: #2C2520 !important;
    width: 80px !important;
}

/* === TRUST BADGES === */
.luxury-trust-badges {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 252, 247, 0.6);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(44, 37, 32, 0.05);
    z-index: 4;
    padding: 1.5rem 0;
}

.trust-badges-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.trust-badge-icon {
    width: 45px;
    height: 45px;
    background: #F8F5F0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #9D8B7C;
}

.trust-badge-text {
    text-align: left;
}

.trust-badge-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #2C2520;
    margin-bottom: 0.25rem;
}

.trust-badge-subtitle {
    font-size: 0.75rem;
    color: #5D4F42;
    font-weight: 400;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .luxury-slide-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding-top: 4rem;
        padding-bottom: 6rem;
    }

    .slide-visual {
        order: -1;
    }

    .slide-image-main {
        max-width: 100%;
    }

    .luxury-slider-wrapper .owl-nav {
        bottom: 8rem;
    }
}

@media (max-width: 768px) {
    .luxury-hero-slider {
        min-height: auto;
    }

    .luxury-slide {
        min-height: auto;
        padding: 3rem 0 8rem;
    }

    .slide-title {
        font-size: 2.5rem;
    }

    .slide-description {
        font-size: 1rem;
    }

    .slide-cta {
        padding: 1rem 2rem;
        font-size: 0.875rem;
    }

    .luxury-slider-wrapper .owl-nav {
        bottom: auto;
        top: 2rem;
        right: 1rem;
    }

    .luxury-slider-wrapper .owl-nav button {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.125rem !important;
    }

    .luxury-slider-wrapper .owl-dots {
        bottom: 1.5rem;
        left: 50%;
        transform: translateX(-50%);
    }

    .luxury-trust-badges {
        position: relative;
    }

    .trust-badges-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .trust-badge {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 2rem;
    }

    .slide-label {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }
}