.cwc-character-highlights-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 0;
    overflow: visible;
}

.cwc-addon-bg {
    position: absolute;
    pointer-events: none;
    line-height: 0;
}

.cwc-addon-bg img {
    width: 100%;
    height: auto;
    display: block;
}

.cwc-inner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: 500px;
    line-height: 0;
    /* Prevents tiny gaps below inline-block items */
}

.cwc-bg-shape {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    z-index: 1;
    transition: all 0.3s ease;
}

.cwc-image-container {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    align-self: flex-end;
    /* Force image to bottom */
}

.cwc-image-container img {
    height: auto;
    width: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.cwc-highlights-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.cwc-highlight-item {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 25px;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    pointer-events: auto;
    white-space: nowrap;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateX(var(--cwc-h-align, 0%));
}

.cwc-highlight-item:hover {
    transform: translateX(var(--cwc-h-align, 0%)) scale(1.05);
}

.cwc-dot {
    width: 10px;
    height: 10px;
    background-color: #56d364;
    border-radius: 50%;
    flex-shrink: 0;
}

.cwc-text {
    font-weight: 600;
}

/* Responsive Scaling - Removed forced container scaling which was messing up positioning */
@media (max-width: 1024px) {
    /* We handle responsive positioning via Elementor controls instead of scaling the whole container */
}

@media (max-width: 767px) {
    .cwc-inner {
        min-height: 400px;
    }

    .cwc-highlight-item {
        padding: 8px 15px;
        gap: 8px;
        font-size: 12px;
        /* Slightly larger than before for readability */
    }

    .cwc-dot {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 480px) {
    .cwc-inner {
        min-height: 350px;
    }

    .cwc-highlight-item {
        padding: 6px 12px;
        font-size: 11px;
    }
}

.cwc-highlight-item.cwc-flip {
    flex-direction: row-reverse;
}

a.cwc-highlight-item {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}