/* ── GUT NaturForum — Anbieter Dashboard ─────────────────────────────────── */

.gut-dash-wrap {
    max-width: 680px;
    margin: 40px auto;
    padding: 0 16px 60px;
    font-family: 'DM Sans', sans-serif;
}

/* Status Banner */
.gut-dash-status {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font: normal 14px/1.5 'DM Sans', sans-serif !important;
}

.gut-dash-status span {
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}

.gut-dash-status strong {
    display: block;
    font-weight: 600;
    margin-bottom: 2px;
}

.gut-dash-status p {
    margin: 0;
    opacity: 0.85;
}

.gut-dash-status--warning {
    background: #fff8e6;
    border: 1px solid #f0d080;
    color: #7a5a00;
}

.gut-dash-status--info {
    background: #e8f0fe;
    border: 1px solid #a8c0f0;
    color: #1a3a7a;
}

.gut-dash-status--success {
    background: #eef7e8;
    border: 1px solid #a0c880;
    color: #2d4a1e;
}

/* Profil Header */
.gut-dash-header {
    display: flex;
    align-items: center;
    gap: 24px;
    background: #fff;
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    margin-bottom: 16px;
}

.gut-dash-avatar-wrap {
    position: relative;
    flex-shrink: 0;
}

.gut-dash-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #c0d4a0;
    background: #f0f7e8;
}

.gut-dash-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gut-dash-avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 600 32px/1 'Lora', serif !important;
    color: #5c7a3e;
}

.gut-dash-avatar-edit {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #5c7a3e;
    color: #fff;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
    border: 2px solid #fff;
    transition: background 0.18s;
}

.gut-dash-avatar-edit:hover {
    background: #2d4a1e;
}

.gut-dash-name {
    font: 600 22px/1.2 'Lora', serif !important;
    color: #2d4a1e;
    margin: 0 0 6px;
}

.gut-dash-location {
    font: normal 14px/1 'DM Sans', sans-serif !important;
    color: #6a7060;
    margin: 0;
}

/* Karte */
.gut-dash-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    margin-bottom: 16px;
}

.gut-dash-section-title {
    font: 600 18px/1.2 'Lora', serif !important;
    color: #2d4a1e;
    margin: 0 0 20px;
}

.gut-dash-section-subtitle {
    font: 600 13px/1 'DM Sans', sans-serif !important;
    color: #9aa090;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 14px;
}

/* Felder */
.gut-dash-field {
    margin-bottom: 14px;
}

.gut-dash-field label {
    display: block;
    font: 500 13px/1 'DM Sans', sans-serif !important;
    color: #6a7060;
    margin-bottom: 6px;
}

.gut-dash-field input,
.gut-dash-field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d0d5c8 !important;
    border-radius: 8px !important;
    font: normal 15px/1.5 'DM Sans', sans-serif !important;
    color: #2a2a2a !important;
    background: #fff !important;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.18s;
    box-shadow: none !important;
}

.gut-dash-field input:focus,
.gut-dash-field textarea:focus {
    border-color: #5c7a3e !important;
}

.gut-dash-field textarea {
    resize: vertical;
    min-height: 120px;
}

.gut-dash-row {
    display: flex;
    gap: 12px;
}

.gut-dash-row .gut-dash-field {
    flex: 1;
}

.gut-dash-field--plz {
    flex: 0 0 100px !important;
}

.gut-dash-field--grow {
    flex: 1 !important;
}

.gut-dash-divider {
    height: 1px;
    background: #e8ede0;
    margin: 20px 0 16px;
}

/* Speichern Meldung */
.gut-dash-save-success {
    background: #eef7e8;
    border: 1px solid #a0c880;
    color: #2d4a1e;
    padding: 11px 14px;
    border-radius: 8px;
    font: normal 14px/1 'DM Sans', sans-serif !important;
    margin-bottom: 16px;
}

.gut-dash-save-error {
    background: #fef0ef;
    border: 1px solid #f5c6c2;
    color: #b32d2e;
    padding: 11px 14px;
    border-radius: 8px;
    font: normal 14px/1 'DM Sans', sans-serif !important;
    margin-bottom: 16px;
}

/* Avatar Upload Spinner */
.gut-dash-avatar-loading {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* Responsive */
@media (max-width: 480px) {
    .gut-dash-header {
        flex-direction: column;
        text-align: center;
    }

    .gut-dash-row {
        flex-direction: column;
        gap: 0;
    }

    .gut-dash-field--plz {
        flex: none !important;
    }
}
