header { padding: 12px 50px; border-bottom: 1px solid #eee; font-family: Arial, sans-serif; position: sticky; top: 0; z-index: 1000; background: #fff; }
.header-top { display: flex; align-items: center; justify-content: flex-start; gap: 0; }
.header-top > a { display: flex; align-items: center; flex-shrink: 0; }
.header-top > a img { height: 68px; }
nav { display: flex; align-items: center; gap: 15px; flex-wrap: wrap; margin-left: 50px; }
nav a { text-decoration: none; color: #555; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; white-space: nowrap; }
.nav-sep { color: #ccc; font-size: 14px; }
.header-icons { display: flex; align-items: center; gap: 22px; flex-shrink: 0; margin-left: auto; }
.header-icons a { position: relative; display: flex; align-items: center; color: #222; text-decoration: none; }
.header-icons svg { width: 22px; height: 22px; stroke: #222; }
.badge { position: absolute; top: -8px; right: -10px; background: #6b21a8; color: #fff; font-size: 10px; font-weight: bold; width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.badge.heart { background: #e11d48; }
@media (max-width: 768px) {
    header { padding: 12px 20px; }
    .header-top { flex-wrap: wrap; row-gap: 12px; }
    .header-top > a img { height: 45px; }
    nav { order: 3; width: 100%; justify-content: center; margin-left: 0; }
    nav a { font-size: 12px; }
    .header-icons { margin-left: auto; gap: 16px; }
    .header-icons svg { width: 20px; height: 20px; }
}
