.rp-container-7eb219fa {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.rp-wrapper-7eb219fa {
    position: relative;
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rp-item-7eb219fa {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.rp-item-7eb219fa.rp-active-7eb219fa {
    opacity: 1;
    visibility: visible;
    position: relative;
    z-index: 1;
}

.rp-image-7eb219fa {
    flex: 1;
    max-width: 50%;
}

.rp-image-7eb219fa img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.rp-content-7eb219fa {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.rp-title-7eb219fa {
    margin: 0 0 10px;
    font-size: 2em;
}

.rp-title-7eb219fa a {
    color: inherit;
    text-decoration: none;
}

.rp-price-7eb219fa {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 20px;
}

.rp-btn-7eb219fa {
    display: inline-block;
    padding: 12px 24px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.rp-btn-7eb219fa:hover {
    background-color: #555;
    color: #fff;
}

@media (max-width: 768px) {
    .rp-item-7eb219fa {
        flex-direction: column;
        text-align: center;
    }
    
    .rp-image-7eb219fa {
        max-width: 100%;
    }
    
    .rp-content-7eb219fa {
        align-items: center;
    }
}