.rp-remote-products-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 2rem 0;
    font-family: inherit;
    max-width: 100% !important;
}

.rp-product-card {
    border: 1px dashed #0c7582;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    background: transparent;
    gap: 30px;
    max-width: 936px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .rp-product-card {
        flex-direction: column;
        text-align: center;
    }
}

.rp-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 250px;
    width: 100%;
}

.rp-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    aspect-ratio: 1;
    object-fit: cover;
}

.rp-product-info {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #0c7582;
}

.rp-product-title {
    font-size: 1.5rem;
    margin: 0 0 15px 0;
    font-weight: 700;
    color: #0c7582;
}

.rp-product-desc {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    color: #0c7582;
}

/* Ensure any paragraph inside description has no margin to keep it clean */
.rp-product-desc p {
    margin: 0 0 10px 0;
}
.rp-product-desc p:last-child {
    margin: 0;
}

.rp-product-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.rp-product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0c7582;
    margin: 0;
}

.rp-product-button {
    display: inline-block;
    background: #0c7582;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.2s ease, transform 0.1s ease;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    text-wrap: nowrap;
}

.rp-product-button:hover {
    background: #0a5f69;
    color: #ffffff;
    text-decoration: none;
}
