/* LUXURY THEME RECENTLY VIEWED PAGE */

.recently-viewed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.recently-viewed-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.recently-viewed-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.rv-link {
    text-decoration: none;
    color: inherit;
    flex: 1;
}

.rv-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.rv-details {
    padding: 15px;
}

.rv-title {
    margin: 0 0 10px;
    font-size: 1rem;
    font-weight: 500;
}

.rv-price {
    font-weight: bold;
    color: #000;
    margin-bottom: 10px;
}

.rv-date {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 10px;
}

.rv-actions {
    padding: 0 15px 15px;
    display: flex;
    gap: 10px;
}

.btn-rv-add {
    width: 100%;
    font-size: 0.8rem;
}

.btn-rv-buy {
    width: 100%;
    font-size: 0.8rem;
    background: #333;
    color: white;
    border: 1px solid #333;
}

.btn-rv-buy:hover {
    background: #000;
    color: #fff;
}