/* Modern Premium Header */
.header {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.hamburger {
    display: none;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1400px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo h2 {
    color: white;
    font-size: 1.8rem;
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
   /* margin-left: -46px; */
       margin-left: -43px ;
}

.nav {
    display: flex;
    /* gap: 35px; */
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s;
    position: relative;
    /* padding: 8px 0; */
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: white;
    transition: width 0.3s;
    border-radius: 2px;
}

.nav a:hover {
    color: #fbbf24;
}

.nav a:hover::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-btn {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    min-width: 220px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    z-index: 1;
    top: 100%;
    border-radius: 12px;
    margin-top: 15px;
    padding: 10px 0;
    animation: dropdownFade 0.3s ease;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 12px 20px;
    color: #2d3748;
    font-size: 14px;
    transition: all 0.2s;
}

.dropdown-content a::after {
    display: none;
}

.dropdown-content a:hover {
    background: linear-gradient(90deg, #10b981, #059669);
    color: white;
    padding-left: 25px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 1.4rem;
    color: white;
    transition: all 0.3s;
    padding: 8px;
}

.cart-icon:hover {
    color: #fbbf24;
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #f5576c, #f093fb);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(245, 87, 108, 0.4);
}

.login-btn {
    background: white;
    color: #10b981;
    border: none;
    padding: 10px 28px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.5);
    background: #fbbf24;
    color: white;
}
