/* ── Vet Gate – Full-page verification screen ── */

/* ── Page ── */

.dp-vet-gate-body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #2489a0 0%, #176b83 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #0f2338;
}

/* ── Wrapper ── */

.dp-vet-gate {
    width: 100%;
    max-width: 520px;
    padding: 40px 20px;
    box-sizing: border-box;
}

/* ── Image animaux ──
   Position absolute DANS la carte, ancrée en top: 0,
   puis translateY(-70%) pour dépasser au-dessus.
   Le % de translateY se base sur la HAUTEUR PROPRE de l'image,
   donc le chevauchement est toujours proportionnel = 100 % fiable.
*/

.dp-vet-gate__animals {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -77%);
    line-height: 0;
    pointer-events: none;
    user-select: none;
    z-index: 2;
    width: 100%;
    text-align: center;
}

.dp-vet-gate__animals img {
    width: 85%;
    max-width: 420px;
    height: auto;
    display: inline-block;
}

/* ── Carte ── */

.dp-vet-gate__card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow:
        0 20px 56px rgba(12, 35, 51, 0.24),
        0 4px 14px rgba(12, 35, 51, 0.10);
    padding: 48px 40px 44px;
    text-align: center;
    position: relative;
    overflow: visible;
}

/* L'image absolute dépasse au-dessus : on ajoute du padding-top
   pour le contenu, et du margin-top sur le wrapper pour éviter
   que l'image soit coupée en haut de page. */
.dp-vet-gate__card--with-image {
    padding-top: 52px;
    margin-top: 120px;
}

/* ── Logo ── */

.dp-vet-gate__logo {
    margin-bottom: 20px;
}

.dp-vet-gate__logo img {
    max-height: 56px;
    width: auto;
}

/* ── Titre ── */

.dp-vet-gate__title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 12px;
    line-height: 1.3;
    color: #0f2338;
}

/* ── Message ── */

.dp-vet-gate__message {
    font-size: 15px;
    line-height: 1.65;
    color: #4a607a;
    margin: 0 0 32px;
    font-weight: 400;
}

/* ── Boutons ── */

.dp-vet-gate__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dp-vet-gate__btn {
    display: block;
    width: 100%;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: filter 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    line-height: 1.4;
    font-family: inherit;
}

.dp-vet-gate__btn:active {
    transform: translateY(1px);
}

.dp-vet-gate__btn--accept {
    background: linear-gradient(135deg, #1a86a2 0%, #0f6c8a 100%);
    color: #ffffff;
    box-shadow:
        0 10px 30px rgba(15, 108, 138, 0.28),
        0 6px 14px rgba(15, 108, 138, 0.16);
}

.dp-vet-gate__btn--accept:hover {
    filter: brightness(0.95);
    transform: translateY(-2px);
    box-shadow:
        0 14px 36px rgba(15, 108, 138, 0.32),
        0 8px 18px rgba(15, 108, 138, 0.20);
}

.dp-vet-gate__btn--accept:disabled {
    opacity: 0.6;
    cursor: wait;
    transform: none;
}

.dp-vet-gate__btn--decline {
    background: transparent;
    color: #6b7b95;
    border: 1px solid #e1e8ed;
}

.dp-vet-gate__btn--decline:hover {
    border-color: #cbd5e0;
    color: #4a607a;
}

/* ── Disclaimer ── */

.dp-vet-gate__disclaimer {
    margin: 24px 0 0;
    font-size: 12px;
    color: #6b7b95;
    line-height: 1.55;
}

/* ── Responsive ── */

@media (max-width: 480px) {
    .dp-vet-gate {
        padding: 24px 12px;
    }

    .dp-vet-gate__card {
        padding: 40px 22px 36px;
        border-radius: 14px;
    }

    .dp-vet-gate__title {
        font-size: 19px;
    }

    .dp-vet-gate__message {
        font-size: 14px;
    }

    .dp-vet-gate__btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}
