/*  Estilos del pago con PayPal */

:root {
    --omega-blue-deep: #121a77;
    --omega-blue-bright: #1e2dbf;
    --omega-orange: #f97316;
    --omega-orange-soft: #ffe2cc;
    --white: #ffffff;
}

/*  BOTÓN DE CIERRE DEL MODAL DE PAYPAL */
.close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: var(--omega-blue-deep);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 10;
}

.close-btn:hover {
    background-color: var(--omega-orange);
    transform: scale(1.08);
}

/* Evita que el icono bloquee el evento de clic */
.close-btn i {
    pointer-events: none;
}

/* DETALLES DEL PRODUCTO */
.product-info p {
    font-size: 16px;
    margin-bottom: 0.5rem;
}

.product-info strong {
    color: var(--omega-blue-deep);
    font-weight: 700;
}

.text-orange {
    color: var(--omega-orange);
    font-weight: 600;
}

/* IMAGEN DEL PRODUCTO */
.small-product-img {
    width: 120px;
    height: auto;
    border-radius: 8px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.small-product-img:hover {
    transform: scale(1.05);
}

/*  RESPONSIVIDAD */
@media (max-width: 768px) {
    .close-btn {
        width: 32px;
        height: 32px;
        font-size: 1rem;
        top: 10px;
        right: 10px;
    }
}