header {
    background-color: #000;
    border-bottom: 2px solid #ffd700;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1000;
}

.logo img {
    height: 50px;
}

.user-info {
    position: relative;
    display: inline-block;
    cursor: pointer;
    color: #fff;
    font-size: 0.9rem;
}

.user-dropdown {
    padding: 8px;
    background-color: #222;
    border-radius: 4px;
}

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

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #1f1f1f;
    min-width: 160px;
    border: 1px solid #444;
    z-index: 1001;
    border-radius: 6px;
    overflow: hidden;
}

.dropdown-content a {
    color: #fff;
    padding: 10px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s;
}

.dropdown-content a:hover {
    background-color: #333;
}

.cart-icon {
    position: relative;
    display: inline-block;
    margin-left: 15px;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: red;
    color: white;
    font-size: 12px;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-menu {
    background-color: #111;
    border-bottom: 2px solid #ffd700;
    padding: 10px 0;
    display: flex;
    justify-content: center;
}

.top-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.top-menu ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.top-menu ul li a:hover {
    color: #ffd700;
}