.main-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(189, 62, 193, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 150px;
}

.logo img {
    width: 50%;
    height: auto;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.main-nav a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #F1A715;
    bottom: -5px;
    right: 0;
    transition: width 0.3s;
}

.main-nav a:hover:after {
    width: 100%;
}

.main-nav a:hover {
    color: #F1A715;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cart-icon {
    position: relative;
    color: #333;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.cart-icon:hover {
    color: #F1A715;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #F1A715;
    color: #fff;
    font-size: 0.8rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-menu {
    position: relative;
}

.user-icon {
    color: #333;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.user-icon:hover {
    color: #F1A715;
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
}

.user-menu:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown a {
    display: block;
    padding: 0.5rem 1.5rem;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
}

.user-dropdown a:hover {
    background: #f8f9fa;
    color: #F1A715;
}

.login-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.login-btn:hover {
    color: #F1A715;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .header-actions {
        margin-top: 1rem;
    }
} 