.cwc-info-carousel-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.cwc-info-carousel-wrapper.cwc-ic-loading {
    opacity: 0;
    transform: translateY(20px);
}

.cwc-info-carousel-wrapper.cwc-ic-loaded {
    opacity: 1;
    transform: translateY(0);
}

.cwc-ic-swiper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.cwc-ic-item {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.cwc-ic-image {
    flex: 0 0 45%;
    max-width: 45%;
}

.cwc-ic-img-inner {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    overflow: hidden;
    background: #f5f5f5;
}

.cwc-ic-img-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cwc-ic-content {
    flex: 1;
    text-align: left;
}

.cwc-ic-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: #2166F3;
    line-height: 1.2;
}

.cwc-ic-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

/* Internal Navigation below description */
.cwc-ic-navigation {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    z-index: 10;
    position: relative;
    pointer-events: auto;
}

.cwc-ic-prev,
.cwc-ic-next {
    width: 44px;
    height: 44px;
    background-color: #8CC63F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cwc-ic-prev:hover,
.cwc-ic-next:hover {
    background-color: #7AB52E;
    transform: scale(1.1);
}

.cwc-ic-prev svg,
.cwc-ic-next svg {
    width: 24px;
    height: 24px;
}

/* Swipe transition tweak */
.swiper-wrapper {
    display: flex;
    flex-wrap: nowrap;
}

.swiper-slide {
    height: auto;
    width: 100%;
    flex-shrink: 0;
}

/* Before init hide other slides to prevent jump */
.cwc-ic-swiper:not(.swiper-initialized) .swiper-slide:not(:first-child) {
    display: none;
}

@media (max-width: 991px) {
    .cwc-ic-item {
        flex-direction: column;
        gap: 25px;
    }

    .cwc-ic-image {
        flex: 0 0 100%;
        max-width: 350px;
        margin: 0 auto;
    }

    .cwc-ic-content {
        text-align: center;
    }

    .cwc-ic-navigation {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .cwc-info-carousel-wrapper {
        padding: 25px;
        border-radius: 20px;
    }

    .cwc-ic-title {
        font-size: 24px;
    }
}