/* ===== Related Products Widget ===== */

.rpw-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.rpw-item {
    display: block;
    text-decoration: none;
    text-align: center;
}

.rpw-image {
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    overflow: hidden;
    background-color: #fff;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rpw-image img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    object-fit: contain;
}

.rpw-no-image {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 14px;
}

.rpw-title {
    margin: 12px 0 0;
    font-size: 15px;
    font-weight: 600;
    color: #333333;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.rpw-item:hover .rpw-title {
    color: #2ecc71;
}