.header {
    width: 100%;
    background: rgba(253, 248, 242, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-border);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: 0 2px 20px rgba(139,100,40,0.08);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    height: 72px;
    gap: 0;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.header-logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #c6a15b, #8e6b2e);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(198,161,91,0.35);
    flex-shrink: 0;
}

.header-logo-icon svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.header-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.header-logo-main {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text-primary);
    letter-spacing: -0.01em;
}

.header-logo-sub {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-primary-text);
    margin-top: 2px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.header-nav a {
    color: var(--color-text-secondary);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: var(--radius-medium);
    transition: 0.22s;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.header-nav a:hover {
    color: var(--color-text-primary);
    background: var(--color-primary-light);
}

.header-nav a.active {
    background: var(--color-primary);
    color: #fff;
    font-weight: 600;
}

/* Cart button */
.header-cart-btn {
    position: relative;
    margin-left: 12px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-light);
    border: 1px solid var(--color-border-strong);
    border-radius: 12px;
    cursor: pointer;
    transition: 0.22s;
    flex-shrink: 0;
    text-decoration: none;
}

.header-cart-btn:hover {
    background: linear-gradient(135deg,#c6a15b,#8e6b2e);
    border-color: transparent;
}

.header-cart-btn:hover svg { fill: #fff; }

.header-cart-btn svg {
    width: 20px;
    height: 20px;
    fill: var(--color-primary-solid);
    transition: 0.22s;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: linear-gradient(135deg,#e05050,#c03030);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-bg);
    display: none;
}

.cart-badge.visible { display: flex; }

@media (max-width: 900px) {
    .header-inner { padding: 0 18px; gap: 0; }
    .header-nav { gap: 2px; }
    .header-nav a { padding: 7px 10px; font-size: 13px; }
    .header-logo-sub { display: none; }
}

@media (max-width: 680px) {
    .header-inner { height: 60px; }
    .header-nav a span { display: none; }
}
