/* ── HEADER ─────────────────────────────────────────────── */
header {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 200;
}
.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.brand-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}
.brand-name {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 1.45rem;
    font-weight: 300;
    letter-spacing: 0.18em;
    color: var(--text-primary);
    text-transform: uppercase;
    line-height: 1.1;
}
.brand-name-ethiopic {
    font-family: Kefa, 'Noto Serif Ethiopic', Ebrima, serif;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--accent);
    line-height: 1.4;
    display: block;
}
.brand-tagline {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 0.03em;
    margin-top: 1px;
}
@media (max-width: 600px) {
    .brand { gap: 8px; }
    .brand-icon { width: 28px; height: 28px; }
    .brand-name { font-size: 1.1rem; letter-spacing: 0.14em; }
    .brand-tagline { display: none; }
}
.header-right {
    display: flex;
    align-items: center;
}
.header-island {
    display: flex;
    align-items: center;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    gap: 0;
}
.header-island > * {
    border: none;
    border-radius: 0;
    background: transparent;
}
.header-island > * + * {
    border-left: 1px solid var(--border);
}
.addis-clock {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 8px 10px;
    white-space: nowrap;
    color: var(--text-muted);
}
.agent-availability {
    font-size: 0.82rem;
    margin: 8px 0;
}
.avail-online { color: var(--sale-color); font-weight: 600; }
.avail-offline { color: var(--text-muted); }
.avail-time { color: var(--text-muted); font-size: 0.78rem; }
.island-nav-link {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 8px 10px;
    white-space: nowrap;
    transition: color 0.15s;
}
.island-nav-link:hover { color: var(--accent); }
.island-list-btn {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    padding: 8px 14px;
    transition: background 0.15s;
    white-space: nowrap;
}
.island-list-btn:hover { background: color-mix(in srgb, var(--accent) 10%, transparent); }
.lang-select {
    color: var(--text-secondary);
    padding: 8px 10px;
    font-size: 0.8rem;
    font-family: inherit;
    cursor: pointer;
    outline: none;
}
.lang-select:focus { outline: 2px solid var(--accent); outline-offset: -2px; }
.theme-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 11px;
    cursor: pointer;
    font-size: 0.78rem;
    color: var(--text-muted);
    transition: background 0.15s;
    user-select: none;
}
.theme-toggle:hover { background: var(--border); }
.toggle-pill {
    position: relative;
    width: 34px;
    height: 18px;
    background: var(--border);
    border-radius: 9px;
    transition: background 0.25s;
    flex-shrink: 0;
}
.toggle-pill::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent);
    transition: transform 0.25s;
}
.light .toggle-pill::after {
    transform: translateX(16px);
}

/* ── LAYOUT ──────────────────────────────────────────────── */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 28px 24px 60px;
}

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 28px 24px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.78rem;
}
footer a { color: var(--accent); text-decoration: none; }
footer a:hover { text-decoration: underline; }
