.recently-viewed-wrapper-29f9e917 {
    width: 100%;
}
.rv-title {
    text-align: center;
    margin-bottom: 20px;
}
.rv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.rv-item {
    text-align: center;
    border: 1px solid #eee;
    padding: 10px;
    border-radius: 8px;
    transition: box-shadow 0.3s;
}
.rv-item:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.rv-item a {
    text-decoration: none;
    color: inherit;
}
.rv-item img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 10px;
}
@media (max-width: 768px) {
    .rv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
