/* Carousel Widget Styles */
.elementor-widget-carousel .custom-carousel-wrapper {
    max-width: 100%;
    margin: 0 auto;
}

.elementor-widget-carousel .carousel-navigation {
    display: flex;
    gap: 10px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.elementor-widget-carousel .carousel-nav-button {
    background: #DEDDD7;
    color: #5F5E59;
    border: none;
    padding: 16px 52px;
    border-radius: 32px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex: 1;
}

.elementor-widget-carousel .carousel-nav-button:hover,
.elementor-widget-carousel .carousel-nav-button.active {
    background: var(--primary-color);
    color: #FFFFFF;
}

.elementor-widget-carousel .carousel-container {
    width: 100%;
}

.elementor-widget-carousel .carousel-slide {
    padding: 0 15px;
    outline: none;
}

.elementor-widget-carousel .slide-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    aspect-ratio: 16/10;
}

.elementor-widget-carousel .slide-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.elementor-widget-carousel .carousel-circle-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 2;
}

.elementor-widget-carousel .carousel-circle-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.elementor-widget-carousel .carousel-circle-btn svg {
    width: 24px;
    height: 24px;
}

.elementor-widget-carousel .slide-content {
    text-align: left;
}

.elementor-widget-carousel .slide-title {
    color: var(--primary-color);
    margin: 0 0 20px 0;
}

.elementor-widget-carousel .slide-text {
    color: var(--primary-color);
    margin: 0 0 20px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .elementor-widget-carousel .carousel-navigation {
        justify-content: center;
    }
    
    .elementor-widget-carousel .carousel-nav-button {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .elementor-widget-carousel .slide-title {
        font-size: 20px;
    }
    
    .elementor-widget-carousel .slide-text {
        font-size: 14px;
    }
    
    .elementor-widget-carousel .carousel-circle-btn {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
    }
    
    .elementor-widget-carousel .carousel-circle-btn svg {
        width: 20px;
        height: 20px;
    }
}