.rw-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 9998;
    backdrop-filter: blur(2px);
}

.rw-producto-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    max-width: 600px;
    height: 100%;
    background: #fff;
    z-index: 9999;
    overflow-y: auto;
    padding: 3rem;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.3s ease-out;
}

.rw-producto-panel .rw-close {
    font-size: 1.5rem;
    font-weight: bold;
    position: absolute;
    top: 2rem;
    left: 3rem;
    cursor: pointer;
    color: #333;
	padding-top: 10%;
}

.rw-producto-panel .imagen-producto{
	display: flex;
    justify-content: center;
}

.rw-producto-panel .imagen-producto img {
	width: 60% !important;
}

.rw-producto-panel .fondo-naranja{
	background-color: #DF9134;
	width: fit-content;
    padding: 3px 20px;
    border-radius: 60px;
    color: #fff;
    text-transform: uppercase;
}

.rw-producto-detalle h2 {
	font-size: 1.5rem;
	font-weight: 400;
}


@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
