@media (min-width: 768px) {
    .products-list[data-layout="list"] .product-card .product-card__badges {
        left: -16px;
    }
}

.image--type--product img {
    max-width: 100% !important;
    max-height: 100% !important;
    height: 100% !important;
    width: 100% !important;
    object-fit: contain;
}

.ArticuloNombre {
    font-family: "Roboto", "sans-serif";
    font-size: 16px;
    font-weight: 400;
}

.articles-region {
    position: relative;
}

.articles-region__loading {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 0.85rem;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease, visibility 0.22s ease;
    z-index: 6;
}

.articles-region--loading .articles-region__loading {
    opacity: 1;
    visibility: visible;
}

.articles-region--loading .products-view {
    filter: saturate(0.85);
}

.articles-region__spinner {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 3px solid rgba(7, 16, 33, 0.12);
    border-top-color: rgb(250, 144, 8);
    animation: articlesSpin 0.7s linear infinite;
}

.articles-region__loading-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: #233048;
    letter-spacing: 0.02em;
}

.articles-region--entering #ListaArticulos .products-list__item {
    opacity: 0;
    transform: translateY(10px);
    animation: articleFadeIn 0.34s ease forwards;
}

    .articles-region--entering #ListaArticulos .products-list__item:nth-child(1) {
        animation-delay: 0.02s;
    }

    .articles-region--entering #ListaArticulos .products-list__item:nth-child(2) {
        animation-delay: 0.04s;
    }

    .articles-region--entering #ListaArticulos .products-list__item:nth-child(3) {
        animation-delay: 0.06s;
    }

    .articles-region--entering #ListaArticulos .products-list__item:nth-child(4) {
        animation-delay: 0.08s;
    }

    .articles-region--entering #ListaArticulos .products-list__item:nth-child(5) {
        animation-delay: 0.10s;
    }

    .articles-region--entering #ListaArticulos .products-list__item:nth-child(6) {
        animation-delay: 0.12s;
    }

    .articles-region--entering #ListaArticulos .products-list__item:nth-child(n+7) {
        animation-delay: 0.14s;
    }

@keyframes articlesSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes articleFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
