/* ==========================================================
   KINGDOM MARKET — PANNEAU LIEN DÉMARCHEUR (ADDITIF)
   ========================================================== */

.dem-lien-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 10, 35, 0.6);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.dem-lien-modal {
    position: relative;
    background: #ffffff;
    width: 100%;
    max-width: 380px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    animation: demLienApparition 0.18s ease-out;
}

@keyframes demLienApparition {
    from { opacity: 0; transform: translateY(10px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.dem-lien-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #f2eefa;
    border: none;
    color: #3B1E63;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 15px;
}

.dem-lien-badge {
    display: inline-block;
    background: #3B1E63;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.dem-lien-chargement,
.dem-lien-erreur {
    padding: 30px 10px;
    text-align: center;
    color: #555;
}

.dem-lien-erreur {
    color: #b3261e;
    font-weight: 500;
}

.dem-lien-image {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 12px;
    background: #f2eefa;
    margin-bottom: 12px;
}

.dem-lien-nom {
    font-size: 17px;
    margin: 0 0 4px;
    color: #1e1e1e;
}

.dem-lien-prix {
    font-size: 15px;
    font-weight: 600;
    color: #3B1E63;
    margin: 0 0 14px;
}

.dem-lien-gain-box {
    background: linear-gradient(135deg, #f6f1ff, #eee6fb);
    border: 1px solid #e0d4f7;
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 16px;
}

.dem-lien-ligne {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #4a3a63;
    padding: 3px 0;
}

.dem-lien-gain-principal strong {
    color: #1e8e3e;
    font-size: 18px;
}

.dem-lien-note {
    font-size: 12px;
    color: #7a6a93;
    margin: 6px 0 0;
}

.dem-lien-label {
    display: block;
    font-size: 12px;
    color: #6b6b6b;
    margin-bottom: 6px;
    font-weight: 600;
}

.dem-lien-champ {
    display: flex;
    gap: 8px;
    margin-bottom: 6px;
}

.dem-lien-champ input {
    flex: 1;
    min-width: 0;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 12px;
    color: #333;
    background: #fafafa;
}

.dem-lien-copier-btn {
    background: #3B1E63;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
}

.dem-lien-copier-btn:active {
    opacity: 0.85;
}

.dem-lien-copie-confirmation {
    color: #1e8e3e;
    font-weight: 600;
    font-size: 13px;
    margin: 4px 0 0;
}
