/* Related Products Widget */
.rp-widget {
    width: 100%;
}

/* Title Wrapper */
.rp-title-wrap {
  
}

/* Section Title */
.rp-section-title {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    background-color: #00a0e9;
    padding: 10px 25px;
    border-radius: 6px;
    line-height: 1.4;
}

/* Grid */
.rp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Card */
.rp-widget .rp-grid .rp-card {
    display: flex;
    flex-direction: column;
    background: #f5f5f5;
    border-radius: 8px;
    padding: 15px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12) !important;
}

/* Card Image */
.rp-card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 6px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rp-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.rp-card:hover .rp-card-image img {
    transform: scale(1.1);
}

/* Card Title */
.rp-card-title {
    font-size: 14px;
    font-weight: 400;
    color: #333;
    text-align: center;
    margin: 15px 0 0 0;
    line-height: 1.5;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    transition: color 0.3s;
}

.rp-card:hover .rp-card-title {
    color: #00a0e9;
}
