.pl-carousel-1 {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100%;
}

.pl-carousel-1 .carousel-container {
    position: relative;
    overflow: hidden;
    flex: 1;
    margin: 0 20px;
    width: 100%;
}

.pl-carousel-1 .carousel-items {
    display: flex;
    transition: transform 0.3s ease-in-out;
    width: 100%;
    gap: 20px;
}

.pl-carousel-1 .carousel-item {
    min-width: calc(100% - 10px);
    max-width: calc(100% - 10px);
    flex-shrink: 0;
    box-sizing: border-box;
}

.pl-carousel-1 .carousel-nav-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 10;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 40px;
}

.pl-carousel-1 .carousel-nav-btn:hover {
    opacity: 0.7;
}

.pl-carousel-1 .carousel-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.pl-carousel-1 .carousel-nav-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Ensure Elementor containers within carousel items don't interfere */
.pl-carousel-1 .carousel-item .e-con {
    width: 100%;
    flex-shrink: 0;
}

/* Handle responsive behavior */
@media (max-width: 768px) {
    .pl-carousel-1 .carousel-container {
        margin: 0 10px;
    }

    .pl-carousel-1 .carousel-nav-btn {
        min-width: 30px;
        min-height: 30px;
        padding: 5px;
    }

    .pl-carousel-1 .carousel-nav-btn svg {
        width: 18px;
        height: 18px;
    }
}