.rps-shelf {
    margin: 48px 0;
    padding: 32px 20px;
    border-top: 1px solid #e5e5e5;
    box-sizing: border-box;
}

.rps-shelf,
.rps-shelf * {
    box-sizing: border-box;
}

.rps-shelf__title {
    font-size: 1.5rem;
    margin-bottom: 24px;
    text-align: center;
}

/* Especificidade maior que ".swiper" (do CSS do Swiper) para garantir
   que o padding/overflow abaixo sempre prevaleca, independente da
   ordem de carregamento dos estilos. */
.rps-shelf .rps-swiper {
    position: relative;
    overflow: hidden;
    padding: 0 44px;
}

.rps-shelf .rps-swiper .swiper-wrapper {
    box-sizing: border-box;
}

.rps-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    transition: box-shadow .2s ease;
    height: 100%;
}

.rps-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
}

.rps-card__link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.rps-card__image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 12px;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.rps-card__name {
    font-size: 1rem;
    margin: 8px 0 4px;
    color: #222;
}

.rps-card__price {
    font-size: 1.05rem;
    font-weight: 700;
    color: #d32f2f;
    margin: 0;
}

.rps-shelf .rps-nav {
    color: #333;
}

.rps-shelf .rps-nav:after {
    font-size: 18px !important;
}

@media (max-width: 480px) {
    .rps-shelf .rps-swiper {
        padding: 0 32px;
    }
}
