/* ── Apéro Express – Bannières checkout ─────────────────────── */

/* Bandeau horaires — toujours visible (info permanente), badge "Fermé"
   affiché en plus seulement quand le service est fermé. */
#aez-horaires-banner {
    margin: 0 0 20px;
    padding: 20px;
    border-radius: 14px;
    background: var(--aez-blanc-casse, #FBF7F2);
    border: 1px solid rgba(61, 44, 34, 0.1);
    text-align: center;
}

.aez-horaires-badge-fermee {
    display: inline-block;
    margin: 0 0 12px;
    padding: 6px 18px;
    border-radius: 999px;
    background: var(--aez-brique, #C1502E);
    color: #fff;
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1em;
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* Discret volontairement : n'alarme pas, juste un rappel visuel que c'est
   un contournement réservé aux admins (jamais vu par un client). */
.aez-horaires-badge-test-admin {
    display: inline-block;
    margin: 0 0 12px;
    padding: 5px 16px;
    border-radius: 999px;
    background: rgba(122, 139, 111, 0.16);
    border: 1px solid rgba(122, 139, 111, 0.4);
    color: var(--aez-sauge, #7A8B6F);
    font-family: 'Work Sans', sans-serif;
    font-size: 0.78em;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.aez-horaires-titre {
    margin: 0 0 8px;
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.1em;
    font-weight: 700;
    color: var(--aez-brun-cafe, #3D2C22);
}

/* Les deux lignes d'horaires partagent la même typographie (Work Sans, même
   taille/graisse/couleur) — seul "Nos horaires d'ouverture" reste en Fraunces,
   réservé aux vrais titres de section. */
.aez-horaires-jours,
.aez-horaires-weekend {
    margin: 0 0 2px;
    /* line-height explicite : sans ça la valeur héritée (1.6, définie par le
       thème sur body) laissait un espacement vertical trop généreux entre
       deux lignes de texte pourtant courtes. */
    line-height: 1.3;
    font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.95em;
    font-weight: 600;
    color: var(--aez-brun-cafe, #3D2C22);
}

.aez-horaires-weekend {
    margin: 0;
}

/* Bandeau "RAPPEL" — dynamique selon la commune choisie à l'éligibilité */
#aez-zone-banner {
    margin: 16px 0 20px;
    border-radius: 14px;
    transition: opacity 0.2s ease;
    /* Évite que "10€" ou un nom de commune ne se coupe au milieu en fin de ligne */
    word-break: keep-all;
    overflow-wrap: normal;
}

#aez-zone-banner:empty {
    margin: 0;
}

#aez-zone-banner.aez-banniere--info {
    padding: 16px 18px;
    background: rgba(122, 139, 111, 0.1);
    border: 1px solid rgba(122, 139, 111, 0.3);
    color: var(--aez-brun-cafe, #3D2C22);
}

.aez-zone-rappel__label {
    margin: 0 0 6px;
    font-size: 0.78em;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--aez-sauge, #7A8B6F);
}

.aez-zone-rappel__detail {
    margin: 0 0 8px;
    font-size: 0.96em;
    line-height: 1.5;
}

.aez-zone-rappel__detail strong {
    color: var(--aez-brique, #C1502E);
}

.aez-zone-rappel__paiement {
    margin: 0;
    font-size: 0.88em;
    color: var(--aez-sauge, #7A8B6F);
}

/* Adresse hors zone */
#aez-zone-banner.aez-banniere--erreur {
    padding: 14px 18px;
    background: rgba(193, 80, 46, 0.1);
    border: 1px solid rgba(193, 80, 46, 0.3);
    color: var(--aez-brun-cafe, #3D2C22);
    font-size: 0.92em;
    line-height: 1.6;
}

/* Erreur technique / avertissement */
#aez-zone-banner.aez-banniere--warning {
    padding: 14px 18px;
    background: rgba(239, 168, 59, 0.16);
    border: 1px solid rgba(239, 168, 59, 0.4);
    color: var(--aez-brun-cafe, #3D2C22);
    font-size: 0.92em;
    line-height: 1.6;
}

/* Ligne d'alerte "minimum non atteint" dans la bannière RAPPEL */
.aez-banniere__min-alerte {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(61, 44, 34, 0.12);
    color: var(--aez-brun-cafe, #3D2C22);
    font-weight: 600;
}

.aez-icone {
    flex-shrink: 0;
}

/* Pastilles de moyens de paiement (bannière technique warning/erreur uniquement) */
.aez-badge {
    display: inline-block;
    background: #fff;
    border: 1px solid rgba(122, 139, 111, 0.4);
    border-radius: 4px;
    padding: 1px 8px;
    font-size: 0.88em;
    white-space: nowrap;
}

.aez-notice-info {
    padding: 14px 18px;
    background: rgba(122, 139, 111, 0.1);
    border: 1px solid rgba(122, 139, 111, 0.3);
    border-radius: 8px;
    color: var(--aez-brun-cafe, #3D2C22);
}

/* Repli Checkout Blocks/Classic natif (page checkout WC standard, hors shortcode
   [aez_checkout] utilisé sur la vraie page /checkout/) — mêmes couleurs de marque. */
#aez-ferme-banner,
.aez-banniere--ferme {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0 0 20px;
    padding: 16px 20px;
    border-radius: 8px;
    font-size: 1em;
    line-height: 1.5;
    background: var(--aez-brun-cafe, #3D2C22);
    border-left: 4px solid var(--aez-brique, #C1502E);
    color: #ffffff;
    font-weight: 500;
}

/* Conteneur principal */
.aez-checkout-wrap {
    max-width: 760px;
    margin: 0 auto;
    padding: 24px 18px 40px;
    font-size: 1em;
    box-sizing: border-box;
}

/* Titre de section */
.aez-section-title {
    margin: 0 0 14px;
    padding-bottom: 8px;
    font-size: 1.1em;
    font-weight: 700;
    border-bottom: 2px solid #e3ddd3;
    color: var(--aez-brun-cafe, #3D2C22);
}

/* ── Récapitulatif panier ── */
.aez-cart-recap {
    margin-bottom: 28px;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid rgba(193, 80, 46, 0.15);
    border-radius: 14px;
}

.aez-cart-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95em;
}

.aez-cart-table td {
    padding: 6px 4px;
    vertical-align: middle;
}

.aez-cart-table tbody tr + tr td {
    border-top: 1px solid #eeeeee;
}

.aez-cart-table tfoot td {
    padding-top: 10px;
    border-top: 2px solid #e3ddd3;
}

.aez-cart-name  { width: 60%; }
.aez-cart-qty   { width: 15%; color: var(--aez-sauge, #7A8B6F); text-align: center; }
.aez-cart-price { width: 25%; text-align: right; font-variant-numeric: tabular-nums; }

/* ── Formulaire ── */
#aez-checkout-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.aez-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.aez-full-row {
    grid-template-columns: 1fr;
}

.aez-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.aez-form-row label,
.aez-full-row > label {
    display: block;
    font-size: 0.9em;
    font-weight: 600;
    color: var(--aez-brun-cafe, #3D2C22);
    margin-bottom: 4px;
}

.aez-form-row input[type="text"],
.aez-form-row input[type="tel"],
.aez-form-row select,
.aez-full-row input[type="text"],
.aez-full-row textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd4c5;
    border-radius: 6px;
    font-size: 1em;
    line-height: 1.4;
    box-sizing: border-box;
    transition: border-color 0.15s ease;
    color: var(--aez-brun-cafe, #3D2C22);
}

.aez-form-row input:focus,
.aez-form-row select:focus,
.aez-full-row input:focus,
.aez-full-row textarea:focus {
    outline: none;
    border-color: var(--aez-brique, #C1502E);
    box-shadow: 0 0 0 2px rgba(193, 80, 46, 0.14);
}

.aez-form-row select[disabled] {
    background: #f5f5f5;
    color: #999;
    cursor: not-allowed;
}

/* ── Autocomplete rue ── */
.aez-autocomplete-wrap {
    position: relative;
}

.aez-suggestions {
    position: absolute;
    z-index: 999;
    top: 100%;
    left: 0;
    right: 0;
    margin: 2px 0 0;
    padding: 0;
    list-style: none;
    background: #fff;
    border: 1px solid #ddd4c5;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(61, 44, 34, 0.12);
    max-height: 220px;
    overflow-y: auto;
}

.aez-suggestions:empty {
    display: none;
}

.aez-suggestions li {
    padding: 9px 14px;
    cursor: pointer;
    font-size: 0.92em;
    color: var(--aez-brun-cafe, #3D2C22);
    border-bottom: 1px solid #f0f0f0;
}

.aez-suggestions li:last-child {
    border-bottom: none;
}

.aez-suggestions li:hover,
.aez-suggestions li[aria-selected="true"] {
    background: rgba(193, 80, 46, 0.08);
    color: var(--aez-brun-cafe, #3D2C22);
}

/* ── Erreurs de champ ── */
.aez-field-error {
    font-size: 0.82em;
    color: var(--aez-brique, #C1502E);
    min-height: 1.2em;
}

.aez-input-error {
    border-color: var(--aez-brique, #C1502E) !important;
    background-color: rgba(193, 80, 46, 0.04);
}

/* ── Indicateurs ── */
.aez-required {
    color: var(--aez-brique, #C1502E);
    margin-left: 2px;
}

.aez-optional {
    font-weight: 400;
    color: var(--aez-sauge, #7A8B6F);
    font-size: 0.88em;
    margin-left: 4px;
}

/* ── Options de paiement ── */
.aez-paiements {
    margin: 20px 0;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid rgba(193, 80, 46, 0.15);
    border-radius: 14px;
}

.aez-paiement-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.aez-paiement-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    border: 2px solid #e3ddd3;
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease;
    background: #fff;
}

.aez-paiement-option:has(input:checked) {
    border-color: var(--aez-brique, #C1502E);
    background: rgba(193, 80, 46, 0.06);
}

.aez-paiement-option input[type="radio"] {
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--aez-brique, #C1502E);
}

.aez-paiement-label {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 0.95em;
}

.aez-paiement-label strong {
    color: var(--aez-brun-cafe, #3D2C22);
}

.aez-paiement-label em {
    font-style: normal;
    color: var(--aez-sauge, #7A8B6F);
    font-size: 0.88em;
}

/* ── Erreur globale formulaire ── */
.aez-form-global-error {
    margin: 12px 0;
    padding: 12px 16px;
    background: rgba(193, 80, 46, 0.1);
    border-left: 4px solid var(--aez-brique, #C1502E);
    border-radius: 6px;
    color: var(--aez-brun-cafe, #3D2C22);
    font-size: 0.95em;
    line-height: 1.5;
}

/* ── Bouton de soumission ── */
.aez-submit-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 8px;
}

#aez-btn-commander {
    padding: 13px 32px;
    background: var(--aez-brique, #C1502E);
    color: #fff;
    border: none;
    border-radius: 999px;
    font-size: 1.05em;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, opacity 0.2s ease;
}

#aez-btn-commander:hover:not(:disabled) {
    background: #a8431f;
}

#aez-btn-commander:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ── Spinner ── */
.aez-spinner {
    display: inline-block;
    width: 22px;
    height: 22px;
    border: 3px solid rgba(193, 80, 46, 0.2);
    border-top-color: var(--aez-brique, #C1502E);
    border-radius: 50%;
    animation: aez-spin 0.7s linear infinite;
}

@keyframes aez-spin {
    to { transform: rotate(360deg); }
}

/* ── Responsive mobile ── */
@media (max-width: 600px) {
    .aez-form-row {
        grid-template-columns: 1fr;
    }

    .aez-cart-qty {
        display: none;
    }
}

/* ═══════════════════════════════════════════════════════════════
   AGE GATE — Modal bloquant (Loi Évin + vérification de zone)
   ═══════════════════════════════════════════════════════════════ */

/* Fond semi-transparent couvrant toute la page */
#aez-agegate-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    box-sizing: border-box;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* Boîte du modal */
#aez-agegate-modal {
    --aez-brique:      #C1502E;
    --aez-miel:        #EFA83B;
    --aez-sauge:       #7A8B6F;
    --aez-blanc-casse: #FBF7F2;
    --aez-brun-cafe:   #3D2C22;

    background: var(--aez-blanc-casse);
    border-radius: 14px;
    padding: 36px 32px 30px;
    max-width: 460px;
    width: 100%;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
    max-height: calc(100vh - 32px);
    max-height: calc(100dvh - 32px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
    margin: auto; /* garde le centrage vertical tant que ça tient, sinon laisse l'overlay scroller */
}

/* En-tête logo */
.aez-ag-header {
    text-align: center;
    margin-bottom: 22px;
}

.aez-ag-logo {
    font-size: 1.2em;
    font-weight: 700;
    color: var(--aez-brun-cafe);
    letter-spacing: 0.03em;
}

/* Pastille icône au-dessus du titre de chaque étape */
.aez-ag-icon-circle {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: rgba(239, 168, 59, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--aez-brique);
}

.aez-ag-icon-circle svg {
    width: 32px;
    height: 32px;
}

/* Icône crosshair/cible étape 2 — pas de pastille, juste le picto, façon
   bouton de géolocalisation (ex. sélecteur de magasin Leroy Merlin) :
   nettement plus petite que la pastille 72px de l'étape 1 (~3x). */
.aez-ag-icon-mini {
    display: block;
    width: 22px;
    height: 22px;
    margin: 0 auto 14px;
    color: var(--aez-brique);
}

/* Titre de chaque étape */
.aez-ag-title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.3em;
    font-weight: 700;
    color: var(--aez-brun-cafe);
    text-align: center;
    margin: 0 0 10px;
    line-height: 1.35;
}

/* Sous-titre étape 1 */
.aez-ag-subtitle {
    text-align: center;
    font-size: 1.02em;
    color: var(--aez-sauge);
    margin: 0 0 26px;
    line-height: 1.55;
}

/* Variantes compactes — étape 2 (popup plus petit, façon sélecteur de magasin) */
.aez-ag-title--compact {
    font-size: 1.15em;
    margin-bottom: 4px;
}

.aez-ag-subtitle--compact {
    font-size: 0.9em;
    margin-bottom: 18px;
}

.aez-ag-step2--compact .aez-ag-field {
    margin-bottom: 10px;
}

/* Mention légale bas de modale */
.aez-ag-legal {
    text-align: center;
    font-size: 0.76em;
    color: var(--aez-sauge);
    opacity: 0.8;
    margin: 20px 0 0;
    line-height: 1.4;
}

/* Confirmation d'inscription "M'avertir" */
.aez-ag-avertir-confirmation {
    margin: 12px 0 0;
    padding: 12px 14px;
    border-radius: 8px;
    background: rgba(122, 139, 111, 0.14);
    color: var(--aez-sauge);
    font-size: 0.92em;
    font-weight: 600;
    text-align: center;
}

/* Lien "Zone non desservie ? Voir ce cas" */
.aez-ag-lien-zones-wrap {
    text-align: center;
    font-size: 0.86em;
    color: var(--aez-sauge);
    margin: 14px 0 0;
}

.aez-ag-lien-zones-wrap a {
    color: var(--aez-brique);
    font-weight: 700;
    text-decoration: underline;
}

/* Zone d'actions (boutons) */
.aez-ag-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
}

/* Bouton générique — forme pill, comme sur les mockups */
.aez-ag-btn {
    display: block;
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: 999px;
    font-size: 1em;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.18s ease, opacity 0.18s ease, border-color 0.18s ease;
    text-align: center;
    line-height: 1.3;
    box-sizing: border-box;
}

/* Bouton principal — plein brique */
.aez-ag-btn--primary {
    background: var(--aez-brique);
    color: #ffffff;
}

.aez-ag-btn--primary:hover:not(:disabled) {
    background: #a8431f;
}

.aez-ag-btn--primary:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Bouton secondaire — contour clair sur fond blanc */
.aez-ag-btn--secondary {
    background: #ffffff;
    color: var(--aez-brun-cafe);
    border: 1px solid #e3ddd3;
}

.aez-ag-btn--secondary:hover {
    background: #f5f0e8;
}

/* Bouton succès — vert sauge (validation d'un état positif) */
.aez-ag-btn--success {
    background: var(--aez-sauge);
    color: #ffffff;
}

.aez-ag-btn--success:hover {
    background: #66765c;
}

/* Bouton fantôme — accès secondaire discret */
.aez-ag-btn--ghost {
    background: transparent;
    color: var(--aez-sauge);
    border: 1px solid #e3ddd3;
    font-size: 0.9em;
    padding: 11px 20px;
}

.aez-ag-btn--ghost:hover {
    background: #f5f0e8;
}

/* Champs de formulaire dans le modal */
.aez-ag-field {
    margin-bottom: 13px;
}

.aez-ag-field label {
    display: block;
    font-size: 0.88em;
    font-weight: 700;
    color: var(--aez-brun-cafe);
    margin-bottom: 5px;
}

.aez-ag-field input[type="text"],
.aez-ag-field input[type="tel"],
.aez-ag-field input[type="email"],
.aez-ag-field select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd4c5;
    border-radius: 10px;
    font-size: 0.95em;
    box-sizing: border-box;
    background: #fff;
    color: var(--aez-brun-cafe);
    transition: border-color 0.15s ease;
    line-height: 1.4;
}

.aez-ag-field input:focus,
.aez-ag-field select:focus {
    outline: none;
    border-color: var(--aez-brique);
    box-shadow: 0 0 0 2px rgba(193, 80, 46, 0.14);
}

.aez-ag-field select:disabled {
    background: #f5f5f5;
    color: #999;
    cursor: not-allowed;
}

/* Spinner pendant la vérification REST */
.aez-ag-spinner-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: #666;
    font-size: 0.9em;
}

/* Résultat de la vérification de zone */
#aez-ag-result {
    margin: 14px 0 2px;
    padding: 13px 15px;
    border-radius: 8px;
    font-size: 0.94em;
    line-height: 1.5;
    /* Évite que "Zone 1 (0–2 km)" ou "12,00 €" ne se coupent au milieu en fin de ligne */
    word-break: keep-all;
    overflow-wrap: normal;
}

/* Panneau automatique hors-zone (prénom + téléphone + lien zones) */
#aez-ag-horszone {
    margin-top: 6px;
}

#aez-ag-horszone-message {
    margin: 0 0 16px;
    padding: 13px 15px;
    border-radius: 8px;
    font-size: 0.94em;
    line-height: 1.5;
    background: rgba(193, 80, 46, 0.1);
    border-left: 4px solid var(--aez-brique, #C1502E);
    color: var(--aez-brun-cafe, #3D2C22);
    word-break: keep-all;
    overflow-wrap: normal;
}

/* Écran plein cadre "Accès non autorisé" — remplace le modal, pas de retour possible */
#aez-ag-refus {
    position: fixed;
    inset: 0;
    z-index: 1000000;
    background: #3D2C22;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 32px;
    box-sizing: border-box;
}

.aez-ag-refus-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 22px;
    border-radius: 50%;
    background: rgba(61, 44, 34, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #EFA83B;
}

.aez-ag-refus-icon svg {
    width: 30px;
    height: 30px;
}

.aez-ag-refus-title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.5em;
    font-weight: 700;
    color: #FBF7F2;
    margin: 0 0 14px;
}

.aez-ag-refus-subtitle {
    font-size: 1em;
    line-height: 1.6;
    color: rgba(251, 247, 242, 0.72);
    max-width: 320px;
    margin: 0;
}

/* Récapitulatif des conditions de livraison — étape 3 (adresse éligible) */
.aez-ag-recap {
    margin: 4px 0 22px;
    border: 1px solid #e3ddd3;
    border-radius: 10px;
    overflow: hidden;
}

.aez-ag-recap__ligne {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 15px;
    font-size: 0.95em;
    color: var(--aez-brun-cafe, #3D2C22);
}

.aez-ag-recap__ligne + .aez-ag-recap__ligne {
    border-top: 1px solid #eee;
}

.aez-ag-recap__ligne strong {
    color: var(--aez-brun-cafe, #3D2C22);
    font-size: 1.05em;
    white-space: nowrap;
}

#aez-ag-result.aez-ag-result--ok {
    background: rgba(122, 139, 111, 0.14);
    border-left: 4px solid var(--aez-sauge, #7A8B6F);
    color: var(--aez-brun-cafe, #3D2C22);
}

#aez-ag-result.aez-ag-result--ko {
    background: rgba(193, 80, 46, 0.1);
    border-left: 4px solid var(--aez-brique, #C1502E);
    color: var(--aez-brun-cafe, #3D2C22);
}

/* ── Responsive mobile ── */
@media (max-width: 480px) {
    #aez-agegate-overlay {
        align-items: flex-start;
        padding: 12px;
    }

    #aez-agegate-modal {
        padding: 24px 16px 20px;
        border-radius: 12px;
        max-height: calc(100vh - 24px);
        max-height: calc(100dvh - 24px);
    }

    .aez-ag-header {
        margin-bottom: 16px;
    }

    .aez-ag-title {
        font-size: 1.05em;
    }

    .aez-ag-subtitle {
        font-size: 0.97em;
        margin-bottom: 18px;
    }

    .aez-ag-legal {
        margin-top: 14px;
    }
}

/* Viewports très bas (mobile en paysage, clavier ouvert) : on compresse encore */
@media (max-height: 560px) {
    #aez-agegate-overlay {
        align-items: flex-start;
    }

    #aez-agegate-modal {
        padding: 18px 16px;
    }

    .aez-ag-header {
        margin-bottom: 10px;
    }

    .aez-ag-subtitle,
    .aez-ag-legal {
        margin-bottom: 10px;
        margin-top: 8px;
    }
}
