/* Header and navigation (brand colors, hamburger for mobile) */
.header-div{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 60;
    background-color: #0b3d91; /* dark blue primary */
    color: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

.header-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 16px;
}

.logo-name-img-div{
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-name-img{
    max-width: 220px;
    height: 44px;
    object-fit: contain;
}

.search-div{
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 150px;
    max-width: 700px;
}

.search-icon{
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

.search-text{
    height: 36px;
    width: 100%;
    padding: 0 8px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 4px;
    background: #fff;
    color: #000;
}

.search-button{
    width: 40px;
    height: 36px;
    cursor: pointer;
    flex-shrink: 0;
    background: none;
    border: none;
    padding: 0;
}

.right-section{
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.text-div{
    font-size: clamp(12px, 2vw, 14px);
    cursor: pointer;
    line-height: 1.4;
    color: #fff;
    text-decoration: none;
}

.login-link{
    color:#fff;
    text-decoration:none;
    font-weight:600;
    padding:6px 8px;
    border-radius:6px;
    background:rgba(255,255,255,0.12);
}

.cart-img-div{
    position: relative;
    display: flex;
    align-items: center;
}

.cart-img{
    width: 28px;
    height: 28px;
}

.cart-count{
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 20px;
    height: 20px;
    font-size: 12px;
    background-color: #ff9900;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hamburger */
.hamburger{
    display: none;
    background: transparent;
    border: none;
    gap: 4px;
    padding: 8px;
    cursor: pointer;
}
.hamburger-bar{
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    margin: 3px 0;
}

.mobile-nav{
    display: none;
    flex-direction: column;
    gap: 8px;
    padding: 8px 16px 16px;
    background: #0b3d91;
}
.mobile-nav a{
    color: #fff;
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-nav.open{display:flex}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .hamburger{display:block}
    .logo-name-img{max-width:160px}
    .search-div{display:none}
    .right-section{order:2}
    .header-top{padding:10px}
}

@media (max-width: 480px) {
    .header-top{padding:8px}
    .logo-name-img{max-width:120px;height:36px}
    .search-text{height:32px;font-size:14px}
    .search-button{width:36px;height:32px}
    .text-div{font-size:11px}
    .cart-img{width:24px;height:24px}
    .right-section{gap:12px}
}