/* ═══════════════════════════════════════════════════════════════
   plante-tooltip.css — Popup descriptif d'une plante (ingrédient).
   Ouvert au clic sur une pastille .pot-ing dans vo-potions, vo-perso,
   vo-tpersos.
   ═══════════════════════════════════════════════════════════════ */

.plt-popup {
    position: absolute;
    z-index: 10500;
    background: #fff;
    border: 1px solid #c8b48a;
    border-radius: 8px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.18);
    padding: 12px 14px;
    max-width: 380px;
    font-size: 0.92em;
    color: #2a2a2a;
}
.plt-popup-entete {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid #eee;
}
.plt-popup-code {
    font-weight: bold;
    color: #6a4a14;
    background: #f7f2e3;
    padding: 1px 7px;
    border-radius: 6px;
    font-family: ui-monospace, monospace;
}
.plt-popup-nom {
    font-weight: 600;
    font-size: 1.08em;
    flex: 1 1 auto;
}
.plt-popup-rarete {
    font-size: 0.78em;
    padding: 1px 8px;
    border-radius: 10px;
    border: 1px solid;
    font-weight: 500;
}
.plt-popup-rarete[data-rarete="commune"]    { background: #ffebee; color: #b71c1c; border-color: #ef9a9a; }
.plt-popup-rarete[data-rarete="rare"]       { background: #e3f2fd; color: #0d47a1; border-color: #90caf9; }
.plt-popup-rarete[data-rarete="tres_rare"]  { background: #fffde7; color: #f57f17; border-color: #fff59d; }
.plt-popup-rarete[data-rarete="legendaire"] { background: #fafafa; color: #424242; border-color: #bdbdbd; }
.plt-popup-close {
    background: none;
    border: none;
    font-size: 1.4em;
    line-height: 1;
    color: #888;
    cursor: pointer;
    padding: 0 4px;
}
.plt-popup-close:hover { color: #b71c1c; }
.plt-popup-img {
    display: block;
    max-width: 100%;
    max-height: 300px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
    margin: 0 auto 10px;
    background: #f5f5f5;
}
.plt-popup-section { margin-bottom: 8px; }
.plt-popup-section:last-child { margin-bottom: 0; }
.plt-popup-label {
    font-weight: 600;
    color: #6a4a14;
    font-size: 0.86em;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 2px;
}
.plt-popup-texte {
    line-height: 1.4;
    color: #333;
}

/* Curseur sur les pastilles cliquables */
.pot-ing { cursor: pointer; }
.pot-ing:hover { filter: brightness(1.05); }
