/* Store multi-location fields */
.mv-locations {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px;
    border: 1px solid #eef0f3;
    border-radius: 14px;
    background: #fafafa;
}
.mv-locations__head { display: flex; flex-direction: column; gap: 2px; }
.mv-locations__title {
    font-size: 13px;
    font-weight: 800;
    color: #111827;
}
.mv-locations__hint {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
}
.mv-locations__list { display: flex; flex-direction: column; gap: 10px; }
.mv-locations__row {
    display: grid;
    grid-template-columns: minmax(120px, 1fr) minmax(120px, 1fr) minmax(180px, 1.4fr) 36px;
    gap: 8px;
    align-items: end;
    background: #fff;
    border: 1px solid #eef0f3;
    border-radius: 12px;
    padding: 10px;
}
.mv-locations__row label {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    color: #374151;
}
.mv-locations__row select,
.mv-locations__row input {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 9px 10px;
    font-size: 13px;
    font-weight: 600;
    color: #111827;
    background: #fff;
    width: 100%;
}
.mv-locations__rm {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 10px;
    background: #fee2e2;
    color: #991b1b;
    font-size: 18px;
    cursor: pointer;
    margin-bottom: 1px;
}
.mv-locations__add {
    align-self: flex-start;
    border: 1px dashed #d1d5db;
    background: #fff;
    border-radius: 10px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 800;
    color: #374151;
    cursor: pointer;
}
.mv-locations__add:hover { border-color: #e31e24; color: #e31e24; }
.mv-locations__error {
    color: #b91c1c;
    font-size: 12px;
    font-weight: 700;
}
@media (max-width: 720px) {
    .mv-locations__row {
        grid-template-columns: 1fr;
    }
    .mv-locations__rm { width: 100%; }
}
