/*
 * DEVIS — Popup PDF (aperçu + impression)
 * ========================================
 * Styles de la popup d'aperçu PDF déclenchée par js/devis-popup.js.
 * Chargé sur is_account_page() (clic icône PDF du tableau Mes devis)
 * et is_cart() (auto-ouverture après "Générer un devis").
 *
 * Réutilise les classes .ps-popup-* du glossaire (cadre kraft, voile,
 * bouton fermer). Ajoute uniquement les règles spécifiques à l'iframe
 * PDF, le message de confirmation kraft et le bouton imprimer.
 */

/* ── POPUP APERÇU DEVIS PDF ──────────────────────────────── */

.ps-popup-wrap--devis .ps-popup {
    width: 800px;
    max-width: calc(100vw - 2rem);
}

.ps-popup-wrap--devis .ps-popup-cadre {
    max-height: 90vh;
}

.ps-popup-wrap--devis .ps-popup-inner {
    max-height: calc(90vh - 3.6rem);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ps-devis-iframe {
    width: 100%;
    flex: 1;
    min-height: 60vh;
    border: var(--ps-bordure-fine);
    background: #fff;
    border-radius: 4px;
}

.ps-devis-popup-actions {
    text-align: center;
    padding: 0.5rem 0 0;
}

/* ── MESSAGE KRAFT après génération de devis depuis le panier ── */
/* Affiché en haut de la popup uniquement quand ouverte via les
   paramètres URL devis_genere/devis_token. Voir js/devis-popup.js. */

.ps-devis-message-genere {
    background: rgba(220, 183, 143, 0.25);
    border: 2px solid #D4600A;
    padding: 1rem 1.4rem;
    margin: 0 0 1rem;
    text-align: center;
    border-radius: 4px;
}
.ps-devis-message-titre {
    font-family: Georgia, serif;
    font-size: 1.5rem;
    color: #7D2B0B;
    font-weight: bold;
    margin: 0 0 0.4rem;
}
.ps-devis-message-texte {
    font-size: 1.05rem;
    color: var(--ps-bordure-fonce);
    margin: 0;
    line-height: 1.5;
}
.ps-devis-message-lien {
    color: #6B4226;
    text-decoration: underline;
    font-weight: bold;
}
.ps-devis-message-lien:hover,
.ps-devis-message-lien:focus {
    color: #2C1810;
}

/* ── BOUTON Imprimer ou enregistrer en PDF ──────────────── */

.ps-devis-imprimer-btn {
    font-family: 'OldNewspaperTypesALM', Georgia, serif;
    color: #fff;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: #D4600A;
    border: 2px solid #7D2B0B;
    padding: 8px 24px 10px;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s;
}

.ps-devis-imprimer-btn:hover,
.ps-devis-imprimer-btn:focus {
    background: #7D2B0B;
    outline: none;
}

/* ── Surcharge mobile ─────────────────────────────────── */

@media (max-width: 768px) {
    .ps-popup-wrap--devis .ps-popup {
        max-width: calc(100vw - 1rem);
    }
    .ps-devis-iframe {
        min-height: 50vh;
    }
}
