#custom-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    position: relative;
    width: 680px;
    height: 448px;
    background-color: #1A1A1A;
    border: 1px solid #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    font-size: 12pt;
    font-weight: normal;
}

/* Media query para pantallas con ancho máximo de 768px (tablets y móviles) */
@media (max-width: 768px) {
    .popup-content {
        width: 90%;        /* Ajusta el ancho a un 90% del viewport */
        height: auto;      /* O usa min-height si quieres un mínimo */
        min-height: 80vh;  /* Asegura que tenga al menos el 80% de la altura de la pantalla */
        border-radius: 0;  /* Opcional, por si quieres eliminar bordes redondeados en móvil */
    }
    .mobile-hidden {
        display: none;
    }
}

.popup-content strong{
    color: #FEEA17;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 24px;
    height: 24px;
}

.header-section {
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
}

.columns-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    /* flex-wrap: wrap; si quisieras que en pantallas pequeñas se ajusten automáticamente */
}

.column {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
}

.qr-image {
    max-width: 200px;
    margin-bottom: 10px;
}

.store-badge {
    max-width: 150px;
    margin-top: 10px;
}

.private-collection-description {
    color: #fff;
    text-align: center;
    /* Resto de estilos que necesites */
}

.go-back {
    text-decoration: none;
    cursor: pointer;
}

.show-pc-description{
    cursor: pointer;
}