/* === STYLES POUR TYPES MULTIPLES === */

.potion-types {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.potion-type {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: var(--bg-light);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid var(--border);
}

/* Couleurs différentes par type */
.potion-type:nth-child(1) {
    background: rgba(44, 95, 45, 0.1);
    color: #2c5f2d;
    border-color: rgba(44, 95, 45, 0.3);
}

.potion-type:nth-child(2) {
    background: rgba(139, 111, 71, 0.1);
    color: #8b6f47;
    border-color: rgba(139, 111, 71, 0.3);
}

.potion-type:nth-child(3) {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    border-color: rgba(212, 175, 55, 0.3);
}