/* ==========================================================================
   Profile Tabs — canonical caps-tracked tab nav za sve user-account stranice
   (profile/index, profile/password, my-ads/index, my-ads/new, my-ads/edit).

   Editorial pattern: small caps-tracked tipografija sa hairline underline-om
   ispod active tab-a (zamenjeno staro navy filled pill stilizovanje koje
   je vizualno gušilo strukturu). Single source of truth — ne duplikovati
   ove rules po pages CSS fajlovima.
   ========================================================================== */
.profile-nav {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(18px, 3vw, 32px);
    margin-bottom: clamp(28px, 4vw, 40px);
    border-bottom: 1px solid var(--hairline);
    padding-bottom: 0;
}

.profile-nav a {
    position: relative;
    padding: 8px 0 14px;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--taupe);
    text-decoration: none;
    transition: color 0.15s;
}

.profile-nav a:hover {
    color: var(--ink);
    background: transparent;
}

.profile-nav a.active {
    color: var(--ink);
    background: transparent;
    box-shadow: none;
}

.profile-nav a.active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background: var(--terracotta);
}

@media (max-width: 768px) {
    .profile-nav {
        gap: 14px;
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .profile-nav a {
        flex-shrink: 0;
    }
}
