.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
}
.site-branding {
    display: flex;
    align-items: center;
}
.site-branding img {
    max-height: 48px;
    margin-right: 12px;
}
.site-links {
    display: flex;
    gap: 48px;
    justify-content: center;
    align-items: center;
}
.header-link {
    font-size: 1.5em;
    color: #222;
    text-decoration: none;
}
body.dark-theme .header-link {
    color: #e6e6e6;
}
.site-cart a {
    font-size: 2em;
    margin: 0 15px;
}
.site-cart {
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.site-cart .dashicons-cart {
    height: 100%;
    width: auto;
    display: flex;
    align-items: center;
}
.site-cart .cart-link {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none
}
.cart-count {
    background: #eee;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

.theme-toggle-btn {
    margin-left: 16px;
    padding: 6px 12px;
    font-size: 1.5em;
    background: #eee;
    color: #222;
    border: 1px solid #ccc;
    border-radius: 24px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.theme-toggle-btn:hover {
    color: #222;
}

/* Dark theme styles */
body.dark-theme .header-inner {
    color: #eee;
}
body.dark-theme .site-branding img {
    filter: brightness(0.8);
}
body.dark-theme .site-cart a {
    color: #fff;
    text-decoration: none;
}
body.dark-theme .cart-count {
    background: #444;
    color: #fff;
}
body.dark-theme .theme-toggle-btn {
    background: #333;
    color: #ffd700;
}
body.dark-theme .theme-toggle-btn:hover {
    color: #222;
}

.site-language a {
    display:inline-block;
    padding:4px 8px;
    margin-left:6px;
    border-radius:4px;
    text-decoration:none;
    color:#333;
    font-weight:600;
}
.site-language a.active {
    background:#333;
}
