/* /Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-brgzv9tpmr] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-brgzv9tpmr] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Pages/ComingSoon.razor.rz.scp.css */
.bg-image[b-k331sqclan] {
    display: block;
    height: 150px;
    background-image: url('img/bg_image.jpg');
    /*background-position: 0 -110px;*/
    background-repeat: repeat-x;
    background-size: contain;
}

.center-content[b-k331sqclan] {
    position: relative;
    margin: auto;
    top: 25vh;
}

.img-gif[b-k331sqclan] {
    height: 30px;
    width: 30px;
}

.no-link[b-k331sqclan] {
    text-decoration: none;
    color: black;
}

.insta-link[b-k331sqclan] {
    background-color: #ac2bac;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-family: Arial, sans-serif;
    font-weight: bold;
    display: inline-block;
}

/* Clase que activa la animación al hacer scroll */
.tarjeta-articulo.visible[b-k331sqclan] {
    width: 0%;
    opacity: 0;
    transform: translateY(0);
}

/* Estilos del Carrusel Interno */
.carrusel[b-k331sqclan] {
    position: relative;
    height: 200px;
}

.slide[b-k331sqclan] {
    width: 100%;
    height: 200px;
    object-fit: cover;
    opacity: 0;
    width: 0%;
    transition-property: opacity, width;
    transition-duration: 1s;
    transition-timing-function: ease-in-out;
}

    .slide.active[b-k331sqclan] {
        opacity: 1;
        width: 100%;
    }


/* Small devices (large phones, 640px and up) */
@media (max-width: 480px) {
    .carrusel[b-k331sqclan] {
        height: 300px;
    }

    .slide[b-k331sqclan] {
        height: 300px;
    }
}

/* Large mobile/Tablet (portrait) */
@media (min-width: 640px) {
    .carrusel[b-k331sqclan] {
        height: 300px;
    }

    .slide[b-k331sqclan] {
        height: 300px;
    }
}

/* Tablet (landscape)/Small laptop */
@media (min-width: 768px) {
    .carrusel[b-k331sqclan] {
        height: 325px;
    }

    .slide[b-k331sqclan] {
        height: 325px;
    }
}

/*Laptop/Desktop*/
@media(min-width: 1024px) {
    .carrusel[b-k331sqclan] {
        height: 350px;
    }

    .slide[b-k331sqclan] {
        height: 350px;
    }
}

/* Large devices (laptops, 1024px and up) */
@media (min-width: 1024px) {
    .carrusel[b-k331sqclan] {
        height: 350px;
    }

    .slide[b-k331sqclan] {
        height: 350px;
    }
}
/* /Components/Pages/home.razor.rz.scp.css */
/* Estilos de la Tarjeta */
.contenedor-catalogo[b-ynryrsebad] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.tarjeta-articulo[b-ynryrsebad] {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    opacity: 0; /* Inicialmente invisible para la animación */
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

/* Clase que activa la animación al hacer scroll */
    .tarjeta-articulo.visible[b-ynryrsebad] {
        opacity: 1;
        transform: translateY(0);
    }

/* Estilos del Carrusel Interno */
.carrusel[b-ynryrsebad] {
    position: relative;
    height: 200px;
}

.slide[b-ynryrsebad] {
  /*  position: absolute;*/
    width: 300px;
    height: 300px;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

    .slide.active[b-ynryrsebad] {
        opacity: 1;
    }
