/* Clean Header Styles */
.site-header {
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header {
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.logo img {
    height: 50px;
    display: block;
}

/* Main Navigation */
.main-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: #88131F;
}

/* Cart Icon */
.header-cart {
    margin-left: auto;
}

.cart-link {
    position: relative;
    color: #333;
    font-size: 22px;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

.cart-link:hover {
    color: #88131F;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #88131F;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 1024px) {
    .main-nav {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .header-content {
        gap: 15px;
    }
    
    .main-nav {
        display: none; /* Hide on mobile, show hamburger menu if needed */
    }
    
    .logo img {
        height: 40px;
    }
}