.topbar {
    background: linear-gradient(135deg, #FFF5F7 0%, #FFE8EF 100%);
    height: var(--topbar-height);
    display: flex;
    align-items: center;
    color: var(--charcoal);
    font-size: var(--text-xs);
    position: relative;
    z-index: 1001;
    border-bottom: 1px solid rgba(194, 24, 91, 0.1);
}

.topbar-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-6);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar-left {
    display: flex;
    align-items: center;
}

.city-selector {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    color: var(--rani-pink);
    font-size: var(--text-xs);
    font-weight: 600;
    padding: 2px 6px;
    border-radius: var(--radius-sm);
    transition: background var(--duration-fast) ease;
    cursor: pointer;
    border: none;
    background: transparent;
}

.city-selector:hover {
    background: rgba(194, 24, 91, 0.08);
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.topbar-link {
    color: var(--charcoal-light);
    font-size: var(--text-xs);
    font-weight: 450;
    transition: color var(--duration-fast) ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    letter-spacing: 0.01em;
    text-decoration: none;
}

.topbar-link:hover {
    color: var(--rani-pink);
}

.topbar-divider {
    color: var(--gray-200);
    font-size: 10px;
}

@media (max-width: 768px) {
    .topbar {
        display: none;
    }
}

/* City dropdown styles added for topbar city selector */
.city-selector-wrap {
    position: relative;
    z-index: 99999; /* ensure wrapper sits above page elements */
}

.city-dropdown {
    position: absolute;
    top: calc(var(--topbar-height) + 6px);
    left: 0;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 12px 30px rgba(15,23,42,0.12);
    border-radius: 8px;
    min-width: 220px;
    max-width: 360px;
    max-height: 320px;
    overflow: auto;
    z-index: 999999; /* very high to avoid being overlapped by logos or other positioned elements */
    padding: 6px 0;
    background-clip: padding-box; /* avoid bleed through */
}

.city-dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.city-dropdown li a {
    display: block;
    padding: 8px 12px;
    color: var(--charcoal);
    text-decoration: none;
    font-size: 13px;
}

.city-dropdown li a:hover {
    background: rgba(194, 24, 91, 0.04);
    color: var(--rani-pink);
}

.city-dropdown-footer {
    padding: 8px 12px;
    border-top: 1px solid rgba(0,0,0,0.04);
    text-align: center;
    font-size: 13px;
}