.rr-product-grid {
    display: grid;
    gap: 30px;
    margin: 20px 0;
}
.rr-product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.4s ease;
    border: 1px solid rgba(62,49,32,0.06);
}
.rr-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.rr-product-card .product-image {
    height: 280px;
    overflow: hidden;
    position: relative;
    background: #E3D7C9;
}
.rr-product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.rr-product-card:hover .product-image img {
    transform: scale(1.05);
}
.rr-product-card .product-info {
    padding: 18px 20px 22px;
}
.rr-btn-primary, .rr-btn-cart {
    background: #8E7353;
    color: #fff;
    font-weight: 600;
    font-size: 0.75rem;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
    border-radius: 4px;
}
.rr-btn-primary:hover, .rr-btn-cart:hover {
    background: #7A5C3F;
    transform: scale(1.02);
}
@media (max-width: 992px) {
    .rr-product-grid { grid-template-columns: repeat(2,1fr) !important; }
}
@media (max-width: 600px) {
    .rr-product-grid { grid-template-columns: 1fr !important; }
}