.tuh-carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.tuh-carousel-prev,
.tuh-carousel-next,
button.tuh-carousel-prev,
button.tuh-carousel-next {
    background: #8C52FF;
    background-color: #8C52FF;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: white;
    padding: 0;
    margin: 0;
    box-shadow: 0 2px 4px rgba(140, 82, 255, 0.3);
    font-size: 14px;
    line-height: 1;
    text-decoration: none;
    outline: none;
}

.tuh-carousel-prev:hover,
.tuh-carousel-next:hover,
button.tuh-carousel-prev:hover,
button.tuh-carousel-next:hover {
    background: #7c3aed;
    background-color: #7c3aed;
    transform: scale(1.1);
    color: white;
}

.tuh-carousel-prev:disabled,
.tuh-carousel-next:disabled,
button.tuh-carousel-prev:disabled,
button.tuh-carousel-next:disabled {
    background: #e5e7eb;
    background-color: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
    opacity: 1;
}

.tuh-carousel-prev svg,
.tuh-carousel-next svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
}

.tuh-carousel-counter {
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
    min-width: 50px;
    text-align: center;
    padding: 0 8px;
}

.tuh-carousel-counter .current {
    color: #8C52FF;
    font-size: 16px;
}

.tuh-carousel-layout .tuh-bumps-container {
    overflow: hidden;
    padding-top: 15px;
    position: relative;
}

.tuh-carousel-layout .tuh-order-bump {
    display: none;
    animation: tuh-slide-in 0.3s ease;
    margin: 0;
}

.tuh-carousel-layout .tuh-order-bump.active {
    display: block;
}

@keyframes tuh-slide-in {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.tuh-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.tuh-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--tuh-gray-300, #d1d5db);
    cursor: pointer;
    transition: all 0.2s ease;
}

.tuh-carousel-dot:hover {
    background: var(--tuh-gray-400, #9ca3af);
}

.tuh-carousel-dot.active {
    background: var(--tuh-primary, #8C52FF);
    transform: scale(1.2);
}

/* Usar ::before para não conflitar com ::after do Premium layout */
.tuh-carousel-layout .tuh-order-bump.added::before {
    content: "✓";
    position: absolute;
    top: -8px;
    right: 15px;
    left: auto;
    background: #22c55e;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 10;
    padding: 0;
    letter-spacing: 0;
}

.tuh-carousel-nav .tuh-added-count {
    background: #22c55e;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

@media (max-width: 480px) {
    .tuh-carousel-nav {
        gap: 8px;
        padding: 8px;
    }

    .tuh-carousel-prev,
    .tuh-carousel-next {
        width: 30px;
        height: 30px;
    }

    .tuh-carousel-prev svg,
    .tuh-carousel-next svg {
        width: 14px;
        height: 14px;
    }

    .tuh-carousel-counter {
        font-size: 13px;
        min-width: 45px;
    }

    .tuh-carousel-counter .current {
        font-size: 15px;
    }

    .tuh-carousel-nav .tuh-added-count {
        font-size: 11px;
    }
}
