/* --- TAMANHO DOS CARDS --- */
.card-manga-pequeno {
    width: 150px !important; /* Tamanho fixo para manter padrão */
    max-width: 150px !important;
    transition: transform 0.3s ease;
}

/* Efeito de Hover (Zoom) */
.card-manga-pequeno:hover {
    transform: scale(1.05);
    z-index: 10;
}

/* --- ESTRUTURA DO OWL CAROUSEL --- */
.owl-carousel .owl-stage {
    display: flex !important;
    align-items: center; /* Centraliza verticalmente */
}

/* Remove margens extras que atrapalham o layout */
.owl-carousel.owl-theme {
    margin: 0 !important;
}

/* --- SETAS DE NAVEGAÇÃO (DESKTOP) --- */
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.7) !important; /* Fundo escuro */
    color: #fff !important;
    font-size: 2rem !important; /* Tamanho do ícone (‹ ›) */
    display: flex !important;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    outline: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

/* Posição das Setas (Fora do carrossel) */
.owl-carousel .owl-nav button.owl-prev {
    left: -20px;
}
.owl-carousel .owl-nav button.owl-next {
    right: -20px;
}

/* Hover nas Setas */
.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
    background-color: #0d6efd !important; /* Azul Bootstrap */
    border-color: #0d6efd;
    transform: translateY(-50%) scale(1.1); /* Leve pulinho */
}

/* Seta Desabilitada (quando chega no fim) */
.owl-carousel .owl-nav button.disabled {
    opacity: 0; /* Esconde totalmente se não puder clicar */
    cursor: default;
}

/* --- MOBILE (Esconde setas em telas pequenas) --- */
@media (max-width: 991px) {
    
    /* Ajuste de margem para caber na tela do celular sem setas */
    .owl-carousel.owl-theme {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}