.chaaya-swiper {
    position: relative;
    width: 100%;
    height: var(--chaaya-slider-height, 600px);
    overflow: hidden;
    /* border-radius: 8px; Remove border radius for full width hero feel */
}

.chaaya-swiper .swiper {
    width: 100%;
    height: 100%;
}

.chaaya-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.chaaya-slide__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.chaaya-slide__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.chaaya-slide__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none; /* Allow clicks to pass through if needed */
}

.chaaya-slide__content-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    display: flex;
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
    pointer-events: none; /* Allow clicks to pass through to link overlay */
}

.chaaya-slide__caption {
    text-align: center;
    max-width: 800px;
    padding: 20px;
    pointer-events: auto; /* Re-enable pointer events for buttons/text */
}

.chaaya-slide__title {
    margin: 0 0 15px;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.chaaya-slide__text {
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.chaaya-slide__button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.chaaya-slide__button:hover {
    background-color: #000;
    color: #fff;
    transform: translateY(-2px);
}

.chaaya-slide__link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    cursor: pointer;
}

/* Swiper Navigation Customization */
.chaaya-swiper .swiper-button-next,
.chaaya-swiper .swiper-button-prev {
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.chaaya-swiper .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}

.chaaya-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .chaaya-swiper {
        height: 400px; /* Smaller height on mobile */
    }
    
    .chaaya-slide__title {
        font-size: 1.8rem;
    }
    
    .chaaya-slide__text {
        font-size: 1rem;
    }
}
