
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    position: relative;
    padding-top: unset !important;
    padding-bottom: unset !important;
}

.navbar-container {
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 125px;
}

.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

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

.nav-center a {
    text-decoration: none;
    color: #666666;
    font-size: 15px;
    position: relative;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    top: 100%;
    left: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 999;
    min-width: 200px;
}

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

.dropdown-content a {
    display: block;
    padding: 10px 15px;
    color: #222;
    text-decoration: none;
    white-space: nowrap;
}

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

.nav-right {
    padding-right: 10px;
}


.icon {
    width: 20px;
    height: 20px;
}

.cart {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cart-badge {
    position: absolute;
    top: -8px;
    left: 12px;
    background: #f6475f;
    color: #fff;
    font-size: 10px;
    padding: 1px 6px;
    border-radius: 50%;
}

.cart-text {
    font-size: 11px;
    line-height: 1.2;
}

.cart-total {
    color: #f6475f;
}

.side-menu {
    width: 280px;
    background: white;
    position: fixed;
    top: 0;
    left: -100%;
    height: 100%;
    z-index: 999;
    padding: 20px;
    box-shadow: 2px 0 5px rgba(0,0,0,0.2);
    transition: left 0.3s ease;
}

.side-menu.active {
    left: 0;
}

.side-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.side-logo {
    width: 100%;
}

.close-btn {
    font-size: 30px;
    cursor: pointer;
}

.side-menu a {
    display: block;
    padding: 15px 0;
    font-size: 15px;
    color: #666666;
    text-decoration: none;
    border-bottom: 1px solid #eee;
}

.submenu-toggle {
    cursor: pointer;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    color: #666666;
}

.submenu-items {
    display: none;
    flex-direction: column;
    padding-left: 15px;
}

.submenu-items a {
    padding: 10px 0;
    font-size: 14px;
}

.submenu-items.show {
    display: flex;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-center {
        display: none;
    }

    .navbar {
        justify-content: space-between;
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .logo {
        margin-left: auto;
        margin-right: auto;
        position: absolute;
        left: 35%;
        transform: translateX(-50%);
        height: 80px !important;
    }
}
