/* PMI HomeV2 — topbar.css */
/* Measurements: height ~36px, font 11px 400, bg #0d1530, gap 20px, social icons 13px */

.v2-topbar, .v2-topbar *, .v2-topbar *::before, .v2-topbar *::after { box-sizing: border-box; margin: 0; padding: 0; }

.elementor-widget-pmiv2_topbar .elementor-widget-container { padding: 0 !important; margin: 0 !important; }
.elementor-section:has(.v2-topbar), .e-con:has(.v2-topbar) {
    padding: 0 !important;
    --padding-top: 0 !important; --padding-bottom: 0 !important;
    --padding-left: 0 !important; --padding-right: 0 !important;
}

.v2-topbar {
    background: #0d1530;
    width: 100%;
    z-index: 1000;
    font-family: 'DM Sans', sans-serif;
}

.v2-topbar__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.v2-topbar__left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.v2-topbar__item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 400;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color 0.2s ease;
}

.v2-topbar__item:hover { color: #f97316; }
.v2-topbar__item svg { flex-shrink: 0; opacity: 0.7; }

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

.v2-topbar__tag {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.03em;
}

.v2-topbar__socials { display: flex; align-items: center; gap: 8px; }

.v2-topbar__social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease;
}

.v2-topbar__social:hover { color: #fff; background: rgba(255,255,255,0.1); }
.v2-topbar__social:focus-visible { outline: 2px solid #f97316; outline-offset: 2px; }

@media (max-width: 900px) {
    .v2-topbar__tag { display: none; }
}

@media (max-width: 640px) {
    .v2-topbar__left { gap: 12px; }
    .v2-topbar__item:last-child { display: none; }
}

@media (max-width: 420px) {
    .v2-topbar__inner { padding: 0 16px; }
    .v2-topbar__left .v2-topbar__item:first-child span { display: none; }
}

@media (prefers-reduced-motion: reduce) { * { transition: none !important; } }
