﻿.header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: #ffffff;
    border-bottom: 1px solid rgba(148, 163, 184, 0.16);
    transition: box-shadow 0.2s ease, backdrop-filter 0.2s ease;
}

.header.scrolled {
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(10px);
}

.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 76px;
    flex-direction: column;
}

.header-logo {
    height: 36px;
    display: flex;
}

.header-logo-img {
    width: 140px;
    object-fit: contain;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.wallet {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eff6ff;
    color: #1a2558;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.95rem;
}

.wishlist-wrap {
    display: flex;
    align-items: center;
    gap: 8px;

}

.notif-wrap {
    position: relative;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    background: #f8fafc;
    border-radius: 14px;
    cursor: pointer;
}

.icon {
    font-size: 0.95rem;
    color: #334155;
}

.notif-dot {
    position: absolute;
    right: 8px;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #ef4444;
}

.profile {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.profile-text .name {
    margin: 0;
    font-weight: 700;
    color: #ffffff;
    font-size: 0.95rem;
}

.profile-text .role {
    margin: 0;
    color: #64748b;
    font-size: 0.78rem;
}

.user {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    object-fit: cover;
}