/* --- ESTILOS GERAIS E LIMPOS PARA OS CARROSSÉIS DE PRODUTOS --- */
.product-carousel-wrapper {
    /* Removido max-width, pois o .container do Bootstrap cuidará disso */
    margin: 30px auto 50px auto;
    position: relative;
    /* Mantém a referência para as setas */
    /* Removido o padding daqui para não criar espaço extra indesejado */
}

.product-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-card .product-image {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.product-card .product-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}



.product-card h2 {
    font-size: 2rem;
    font-weight: 900;
    font-family: 'Lato', sans-serif;
    font-style: italic;
    color: #333 !important;
    margin-bottom: 20px;
    flex-grow: 1;
    text-align: center;
    margin-top: 20px;
}

.product-card h3 {
    font-size: 1.2rem;
    font-weight: normal;
    font-family: 'Lato', sans-serif;
    font-style: normal;
    color: #333;
    margin-bottom: 20px;
    margin-top: 20px;
    flex-grow: 1;
    text-align: center;
}



/* --- ESTILIZAÇÃO DAS SETAS (ATUALIZADO) --- */
.product-carousel-wrapper .owl-nav {
    position: static;
}

.product-carousel-wrapper .owl-nav button.owl-prev,
.product-carousel-wrapper .owl-nav button.owl-next {
    position: absolute;
    top: 40%;
    /* Ajuste a altura vertical conforme preferir */
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: #fff !important;
    /* Fundo branco para se destacar */
    border-radius: 50% !important;
    color: #333 !important;
    /* Ícone escuro */
    font-size: 20px !important;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    /* Sombra sutil */
}

.product-carousel-wrapper .owl-nav button.owl-prev:hover,
.product-carousel-wrapper .owl-nav button.owl-next:hover {
    background: #f8f9fa !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%) scale(1.05);
    /* Efeito de zoom no hover */
}

/* MÁGICA ACONTECE AQUI: Empurra as setas para fora dos itens */
.product-carousel-wrapper .owl-nav button.owl-prev {
    left: -25px;
}

.product-carousel-wrapper .owl-nav button.owl-next {
    right: -25px;
}

.product-carousel-wrapper .owl-dots {
    margin-top: 15px;
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 767.98px) {
    .product-carousel-wrapper {
        padding: 0 15px;
    }

    .product-carousel-wrapper .owl-nav {
        display: none;
    }
}