/* ===================================================================
   Recently Viewed — products/show.blade.php
   =================================================================== */

.rv-card {
    display: block;
    color: #333;
    border-radius: .5rem;
    overflow: hidden;
    background: #fff;
    border: 1px solid #efefef;
    transition: box-shadow .15s, transform .15s;
    height: 100%;
}
.rv-card:hover {
    box-shadow: 0 4px 18px rgba(0,0,0,.1);
    transform: translateY(-2px);
    color: #333;
}

.rv-card__img {
    position: relative;
    aspect-ratio: 1 / 1;
    background: #f8f8f8;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rv-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .2s ease;
}
.rv-card:hover .rv-card__img img { transform: scale(1.04); }

.rv-card__img-placeholder {
    font-size: 2rem;
    color: #ccc;
}

.rv-card__body {
    padding: .6rem .75rem .75rem;
}

.rv-card__brand {
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #aaa;
    margin-bottom: .2rem;
}

.rv-card__name {
    font-size: .82rem;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: .3rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rv-card__price {
    font-size: .88rem;
    font-weight: 700;
    color: var(--brand, #c0392b);
    margin-bottom: 0;
}
