/* Split Banner Slider */
.split-banner {
    font-family: 'Mulish', sans-serif;
    position: relative;
    height: 80vh;
    min-height: 600px;
    background: #f8f9fa;
}

.carousel-inner {
    height: 100%;
}

.carousel-item {
    height: 100%;
}

/* Split Content */
.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
}

/* Text Section */
.split-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    background: #1f2937;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.text-shape {
    position: absolute;
    width: 600px;
    height: 600px;
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    transition: transform 1s ease;
}

.carousel-item.active .text-shape {
    transform: translate(-50%, -50%) rotate(180deg);
}

.text-content {
    position: relative;
    z-index: 1;
    max-width: 500px;
}

.text-overline {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #e67e22;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.text-heading {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease 0.2s;
}

.text-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease 0.3s;
}

.text-features {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease 0.4s;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature i {
    color: #e67e21;
}

.text-cta {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease 0.5s;
}

.carousel-item.active .text-overline,
.carousel-item.active .text-heading,
.carousel-item.active .text-description,
.carousel-item.active .text-features,
.carousel-item.active .text-cta {
    opacity: 1;
    transform: translateY(0);
}

.btn-shop {
    display: inline-flex;
    align-items: center;
    padding: 15px 40px;
    background: #e67e21;
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-shop i {
    margin-left: 10px;
    transition: transform 0.3s;
}

.btn-shop:hover {
    background: #f0a653;
    color: #ffffff;
}

.btn-shop:hover i {
    transform: translateX(5px);
}

/* Image Section */
.split-image {
    position: relative;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 1s ease;
}

.carousel-item.active .banner-image {
    transform: scale(1);
}

/* Navigation */
.banner-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.nav-dots {
    display: flex;
    gap: 10px;
}

.nav-dot {
    width: 30px;
    height: 4px;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s;
}

.nav-dot.active {
    background: #e67e21;
    width: 50px;
}

.nav-arrows {
    display: flex;
    gap: 20px;
}

.nav-arrow {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s;
}

.nav-arrow:hover {
    background: #e67e21;
    border-color: #e67e21;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .text-heading {
        font-size: 3rem;
    }
    .split-text {
        padding: 40px;
    }
}

@media (max-width: 991px) {
    .split-content {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
    }
    .split-text {
        padding: 40px;
        text-align: center;
    }
    .text-content {
        margin: 0 auto;
    }
    .text-features {
        justify-content: center;
    }
    .banner-nav {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .text-heading {
        font-size: 2.5rem;
    }
    .text-features {
        flex-direction: column;
        gap: 15px;
    }
    .nav-arrow {
        width: 40px;
        height: 40px;
    }
}