/* Custom CSS for ACUARIO */

/* Estilos generales */
body {
    font-family: 'AllRoundGothicW01-Demi', Arial, sans-serif !important;
}

/* Estilos para carruseles */
.owl-carousel-container {
    position: relative;
    margin: 20px 0;
}

.owl-carousel .item {
    padding: 10px;
}

/* Estilos para tarjetas de productos */
.product-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Estilos para navegación de carrusel */
.owl-nav button {
    background: rgba(255, 255, 255, 0.9) !important;
    color: #4A86AF !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    font-size: 18px !important;
    border: 2px solid #4A86AF !important;
    transition: all 0.3s ease;
}

.owl-nav button:hover {
    background: #4A86AF !important;
    color: white !important;
    transform: scale(1.1);
}

/* Estilos para indicadores de carga */
.loading-message {
    text-align: center;
    padding: 20px;
    color: #666;
}

/* Estilos responsive */
@media (max-width: 767px) {
    .owl-nav {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        display: flex !important;
        flex-direction: column;
        gap: 10px;
        z-index: 10;
        margin: 0;
        padding: 0 10px;
        width: auto;
        height: auto;
        left: auto;
        justify-content: center;
    }
    
    .owl-nav button {
        width: 35px !important;
        height: 35px !important;
        font-size: 16px !important;
    }
} 