/**
 * Primtee - SAV / Litiges modal (Mon compte)
 */
.primtee-sav-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}
.primtee-sav-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}
.primtee-sav-content {
    position: relative;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}
.primtee-sav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #e2e8f0;
}
.primtee-sav-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
}
.primtee-sav-close {
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    color: #64748b;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}
.primtee-sav-close:hover {
    color: #1e293b;
    background: #f1f5f9;
}
#primtee-sav-form {
    padding: 24px;
}
.primtee-sav-order-ref {
    margin: 0 0 16px;
    font-size: 14px;
    color: #475569;
}
.primtee-sav-order-ref strong {
    color: #1e293b;
}
.primtee-sav-field {
    margin-bottom: 18px;
}
.primtee-sav-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
}
.primtee-sav-field .required {
    color: #dc2626;
}
.primtee-sav-field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    resize: vertical;
    box-sizing: border-box;
}
.primtee-sav-field textarea:focus {
    outline: none;
    border-color: #004990;
    box-shadow: 0 0 0 2px rgba(0, 73, 144, 0.15);
}
.primtee-sav-field input[type="file"] {
    width: 100%;
    font-size: 14px;
}
.primtee-sav-items-list {
    padding: 12px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}
.primtee-sav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
}
.primtee-sav-item:last-child {
    margin-bottom: 0;
}
.primtee-sav-item input[type="checkbox"] {
    margin: 0;
}
.primtee-sav-item select {
    margin-left: 4px;
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    font-size: 13px;
}
.primtee-sav-radio {
    display: block;
    margin-bottom: 8px;
    font-weight: 400;
    cursor: pointer;
}
.primtee-sav-radio input {
    margin-right: 8px;
}
.primtee-sav-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}
.primtee-sav-message {
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 14px;
}
.primtee-sav-message.primtee-sav-success {
    background: #dcfce7;
    color: #166534;
}
.primtee-sav-message.primtee-sav-error {
    background: #fee2e2;
    color: #991b1b;
}
.primtee-sav-loading,
.primtee-sav-error {
    margin: 0;
    font-size: 14px;
}
.primtee-sav-error {
    color: #dc2626;
}
.primtee-sav-badge {
    background: #fef3c7 !important;
    color: #92400e !important;
    border-color: #fcd34d !important;
}
