/* Header layout & styles */
.site-header { border-bottom: 1px solid #eee; font-family: var(--cpc-font-primary, inherit); }
.header-top { background: #f8fafc; font-size: 14px; }
.header-main { padding: 12px 0; background: #fff;}
.header-main__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.header-search { 
    flex: 1;
    max-width: 300px;
    width: 300px;
    margin: 0 16px;
}
.site-title img { display: block; max-height: 48px; height:100%; width: 100%; }



/* Cart & mini cart */
.header-cart { position: relative; }
.header-cart .cpc-cart-btn { 
    border:0;
    padding:0;

}
.cpc-cart-btn { position: relative; }
.cpc-cart-count { 
    position: absolute;
    top: -6px;
    right: -9px;
    background: #ef4444;
    color: #fff;
    border-radius: 999px;
    padding: 2px 5px;
    font-size: 10px;
    line-height: 1;
}
.header-cart:hover .cpc-mini-cart { display: block; }

/* Header actions (cart + account) */
.header-actions { display:flex; align-items:center; gap: 12px; }
.header-actions .header-cart, .header-actions .header-account { position: relative; }

/* Header bottom nav */
.header-bottom {
    border-top: 1px solid #eee;
    background: #dddddd;
    height: 40px;
    line-height: 22px;
}
.primary-nav .menu-primary li a:first-child{
    padding-left:0;
}
.primary-nav .menu-primary { list-style: none; margin: 0; padding: 0; display: flex; gap: 16px; }
.primary-nav .menu-primary li a { 
    display: block;
    padding: 8px 10px;
    color: #000;
    font-weight: bold;
    text-transform: uppercase; }
.primary-nav .menu-primary li a:hover { text-decoration: underline; }


