/**
 * Univers Magique - Precautions produits
 * Charte : cuivre brule #a8542e, moka #4a3a2e, champagne #f5e9d6, or #d4af37
 */

.ump-precautions {
    background: linear-gradient(135deg, #fdf8f0 0%, #f5e9d6 100%);
    border-left: 4px solid #a8542e;
    border-radius: 6px;
    padding: 28px 32px;
    margin: 20px 0;
    color: #4a3a2e;
    font-family: inherit;
    line-height: 1.7;
    box-shadow: 0 2px 8px rgba(168, 84, 46, 0.08);
}

.ump-precautions-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(168, 84, 46, 0.2);
}

.ump-precautions-header .ump-icon {
    font-size: 32px;
    line-height: 1;
}

.ump-precautions-header h3 {
    margin: 0;
    color: #a8542e;
    font-size: 1.4em;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.ump-precautions .ump-subtitle {
    color: #a8542e;
    font-size: 1.05em;
    font-weight: 600;
    margin: 22px 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-bottom: 1px dotted rgba(168, 84, 46, 0.3);
    padding-bottom: 4px;
}

.ump-precautions .ump-subtitle:first-of-type {
    margin-top: 8px;
}

.ump-precautions .ump-list {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
}

.ump-precautions .ump-list li {
    position: relative;
    padding: 6px 0 6px 24px;
    margin: 0;
    color: #4a3a2e;
}

.ump-precautions .ump-list li::before {
    content: "\2022";
    position: absolute;
    left: 8px;
    top: 6px;
    color: #d4af37;
    font-size: 1.4em;
    line-height: 1;
    font-weight: bold;
}

.ump-precautions .ump-list li strong {
    color: #8b4520;
    font-weight: 600;
}

.ump-precautions .ump-warning {
    background: rgba(168, 84, 46, 0.08);
    border-radius: 4px;
    padding: 14px 18px;
    margin-top: 20px;
    font-size: 0.95em;
    color: #4a3a2e;
    border-left: 3px solid #d4af37;
}

.ump-precautions .ump-warning strong {
    color: #a8542e;
}

.ump-precautions .ump-info {
    background: rgba(212, 175, 55, 0.1);
    border-radius: 4px;
    padding: 14px 18px;
    margin-top: 20px;
    font-size: 0.95em;
    color: #4a3a2e;
    border-left: 3px solid #a8542e;
    font-style: italic;
}

.ump-precautions .ump-info strong {
    color: #a8542e;
    font-style: normal;
}

/* Responsive mobile */
@media (max-width: 768px) {
    .ump-precautions {
        padding: 20px 18px;
    }
    .ump-precautions-header h3 {
        font-size: 1.2em;
    }
    .ump-precautions-header .ump-icon {
        font-size: 26px;
    }
    .ump-precautions .ump-subtitle {
        font-size: 0.95em;
    }
}