.pdp-popup {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.pdp-popup-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    width: 90%;
    max-width: 700px;
    border-radius: 8px;
    position: relative;
}

.pdp-content-left,
.pdp-content-right,
.pdp-popup-content h3,
.pdp-popup-content p,
.pdp-popup-content .pdp-button {
    padding: 8px 0;
}

/* Layout en dos columnas para escritorio */
.desktop-layout {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.pdp-content-left {
    width: 55%;
}

.pdp-content-left h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.pdp-content-left p {
    margin-bottom: 20px;
}

.pdp-button {
    background-color: #0073aa;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

.pdp-button:hover {
    background-color: #005f8d;
}

.pdp-content-right {
    width: 40%;
}

.pdp-content-right img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.pdp-close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}
