:root {
    --bg: #f7f9fc;
    --text: #333;
    --muted: #6b7280;
    --accent: #facc15;
    --card: #fff;
    --border: #e5e7eb;
}

#anlikSiparis {
    max-width: 960px;
    margin: 24px auto;
    padding: 0 16px;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text);
    box-sizing: border-box;
}

.anlik-banner {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px 20px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
    margin-bottom: 16px;
}

.anlik-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 2px solid var(--border);
}

.who {
    display: flex;
    gap: 14px;
    align-items: center;
}

.who h3 {
    margin: 0 0 6px 0;
    font-weight: 700;
    font-size: 18px;
}

.who .city {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
}

.what {
    margin-left: auto;
    text-align: right;
    min-width: 200px;
}

.what .desc {
    margin: 0 0 2px 0;
    font-size: 16px;
    color: #444;
}

.what .strong {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
}

.mapCard {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 12px;
    overflow: hidden;
}

.mapWrap {
    width: 100%;
    aspect-ratio: 16/8;
    position: relative;
}

.mapWrap svg {
    width: 100%;
    height: 100%;
}

.tr-map [data-name] {
    cursor: pointer;
    transition: fill .25s ease, opacity .25s ease;
    fill: #e5e7eb;
    opacity: 0.7;
}

.tr-map [data-name].highlight {
    fill: var(--accent) !important;
    opacity: 1 !important;
}

/* Mobilde düzenlemeler */
@media(max-width:600px) {
    #anlikSiparis {
        padding: -5px;
    }

    /* Banner tek kutu gibi, gölge ve border kaldırıldı */
    .anlik-banner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 8px 12px;
        gap: 8px;
        border-radius: 14px;
        border: none;
        box-shadow: none;
        flex-wrap: wrap;
    }

    /* Avatar küçültüldü */
       .anlik-avatar {
        width: 44px;
        height: 44px;
        border-width: 1.5px;
    }

    /* SVG’yi avatar kutusuna sığdır */
    .anlik-avatar svg {
        width: 100%;
        height: 100%;
        object-fit: cover; /* taşmayı engeller */
    }

    /* İsim taşmasını önleme ve yıldızlar sıkı */
    .who h3 {
        font-size: 14px;
        margin: 0 0 4px 0;
        letter-spacing: -3px;
        /* yıldızlar arası sıkışık */
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 120px;
        line-height: 1.1;
        /* ihtiyaca göre ayarlanabilir */
    }

    .who .city {
        font-size: 12px;
        line-height: 1.1;
    }

    .what {
        font-size: 14px;
        line-height: 1.1;
    }

    .what .desc {
        font-size: 12px;
        line-height: 1.1;
    }

    .what .strong {
        font-size: 18px;
        line-height: 1.1;
    }

    /* Harita banner’a yaklaştırıldı */
    .mapCard {
        padding: 8px 10px;
        border: none;
        box-shadow: none;
        border-radius: 0;
        margin-top: -16px; /* mevcut yukarı kaydırma */
        margin-bottom: -45px; /* alt boşluğu minimuma indir */
    }

    #anlikSiparis {
        padding-bottom: 4px; /* container alt boşluğu azaltıldı */
    }
}