.new-menu-container {
       height: 82px;
    background: transparent;
    width: 100%;
    position: absolute;
    z-index: 3; 
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 82px;
    background-color: transparent;
    color: #0f0f0f;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: auto;
    width: 180px;
    margin: 5px 20px 0 0;
}

.menu {
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: center;
    flex: 1;

}

.menu a {
    color: #fff;
    text-decoration: none;
    line-height: 57px;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 2px;
}

.menu a:hover {
    color: #E2C25E ;
}
.menu a svg{
    margin-bottom: -7px;
}

.menu .dropdown {
    position: relative;
}


.menu .dropdown-menu {
  display: none;
  position: absolute;
  top: 69px;
  left: 0;
  background: white;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 2;
  min-width: 150px;
}

.menu .dropdown-menu a {
  display: block;
  padding: 5px 10px;
  text-decoration: none;
  color: #0f0f0f;
}

.menu .dropdown-menu a:hover {
  color:#E2C25E ;
}


.menu .dropdown-menu.active {
  display: block;
}

.hamburger,
.search-icon,
.upload-icon {
    display: none;
    font-size: 28px;
    cursor: pointer;
}




.toggle-text {
    padding: 20px 0;
}





.desktop-search-container {
    display: flex;
    align-items: center;
    width: auto;
}

.desktop-search {
    height: 35.5px;
    font-size: 16px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    border: 1px solid #ccc;
    padding-left: 15px;
    width: auto;
    float: left;
}

.desktop-search:focus {
    outline: 0;
    border: 1px solid #ccc;
}

.desktop-search:focus::-webkit-input-placeholder,
.search-container input:focus::-webkit-input-placeholder {
    transition: opacity .45s ease;
    opacity: 0
}

.desktop-search:focus::-moz-placeholder,
.search-container input:focus::-moz-placeholder {
    transition: opacity .45s ease;
    opacity: 0
}

.desktop-search-btn {
    height: 35.5px;
    background: #E2C25E ;
    width: 45px;
    text-align: center;
    border: 1px solid #E2C25E ;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.desktop-search-btn:hover {
    cursor: pointer;
}

.desktop-search-btn svg {
    margin-bottom: -3px;
}



.ecom-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
   
}

.ecom-actions .menu-icons {
    margin-right: 5px;
}
@media (max-width:768px){
   .dropdown .menu-quick-icons
    {
        display: none;
    }
    .account-dropdown{
        display: none;
    }
    .logo img {
    height: auto;
    width: 160px;
    margin: 5px 20px 0 0;
}
}

.ecom-actions a,
.ecom-actions button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: left;
     padding: 9px 7px 9px 10px;
    letter-spacing: 2px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 10px;
    z-index: 1000;
    width: 220px;
}
#account-menu a:hover{
    color:#E2C25E  !important;
}
.cart-items-dropdown{
    width: 280px !important;
    padding: 20px 10px;
}
.dropdown-menu a,
.cart-items-dropdown .cart-item {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 5px 10px;
    text-decoration: none;
    color: #0f0f0f;
    font-weight: 400;
    line-height: 22px;
}
.cart-items-dropdown .cart-item p a {
    font-size: 14px;
    font-weight: 500;
    color: #0f0f0f;
    text-decoration: none;
    padding: 0;
}
.cart-items-dropdown .cart-item p a:hover{
  color:#C18F2C;
}
.cart-items-dropdown .cart-item span{
    color: #2b2b2b;
    font-weight: 700 !important;
    font-size: 15px;
    
}
.cart-items-dropdown .cart-item img {
    width: 40px;
    height: 50px;
    object-fit: cover;
    border: 1px solid #eee;
    border-radius: 5px;
}
.cart-items-dropdown .cart-total{
    padding: 15px 10px;
    margin-top: 10px;
    border-top: 1px solid #eee;
}
.cart-items-dropdown .cart-total p span{
    float:right;
    font-weight: bold;
    font-size: 16px;
    color: #2b2b2b;
}
.cart-count {
    background: red;
    color: white;
    font-size: 10px;
    border-radius: 50%;
    padding: 2px 5px;
    position: absolute;
    top: -5px;
    right: -0px;
}

.cart-buttons .view-cart-btn {
    display: block;
    text-align: center;
    margin-top: 10px;
    background: #C18F2C;
    width: 48%;
    color: white;
    font-weight: 600;
    padding: 5px;
    border-radius: 3px;
    text-decoration: none;
    float: left;
    font-size: 14px;
    
}
.cart-buttons .view-cart-btn:nth-child(2){
    margin-left: 2%;
}
/* Show dropdown when active */
.dropdown-menu.active {
    display: block;
}


.right-buttons {
    display: flex;
    align-items: center;
    margin-left: auto;
}



/*mobile begins*/

.mobile-icons {
    display: flex;
    gap: 0;
    align-items: center;
}

.mobile-icons svg {
    margin-bottom: -4px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 4;
    transition: opacity 0.5s;
    opacity: 0;
    visibility: hidden;
}

/* Side Nav */
.side-nav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 5;
    top: 0;
    right: 0;
    background-color: #fff;
    overflow-x: hidden;
    overflow-y: auto;
    transition: all .2s ease-out 0s;
    padding-top: 60px;
}

/* Show overlay when side-nav is open */
.side-nav.open + .overlay {
    opacity: 1;
    visibility: visible;
}

/* Show overlay when the show class is added */
.overlay.show {
    opacity: 1;
    visibility: visible;
}

.side-nav a {
    padding: 10px 15px 10px 10%;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    color: #0f0f0f;
    display: block;
}

.side-nav a svg {
    float: right;
    transition: 0.1s;
}

.side-nav-upper {
    min-height: 80px;
    height: auto;
    border-bottom: 0.5px solid #ccc;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 0px;
}

.side-nav-logo {
    position: absolute;
    top: 22px;
    left: 20px;
}

.side-nav-login a {
    padding: 5px 14px;
    margin: 20px 0 10px 20px;
    float: left;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.side-nav-login a:nth-child(2) {
    background: #C18F2C;
    color: white;
    border: 1px solid #C18F2C;
}


.search-container {
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    background-color: #fff;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 4;
}

.search-input-container {
    display: flex;
    width: 72%;
    background-color: #fff;
    align-items: center;
}

.search-input-container form {
    width: 100%;
}

.search-container .back-icon {
    cursor: pointer;
    margin-right: 20px;
    display: flex;
    padding: 6px 0;
}

.search-container input {
    flex-grow: 1;
    padding-left: 15px;
    border: 1px solid #2b2b2b;
    border-right: 0 !important;
    
    width: 85%;
    height: 40px;
    font-size: 16px;
    float: left;
        border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.search-container input:focus {
    outline: 0;
    border: 1px solid #2b2b2b;
}

.mobile-search-btn {
    height: 40px;
    width: 45px;
    text-align: center;
    float: left;
    background:none;
    border-left:0 !important;
    border: 1px solid #2b2b2b;
    
 border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}



@media screen and (max-width: 900px) {


    .navbar {
        width: 100%;
    
        z-index: 3;
        background: transparent;
        box-shadow: 0;
    }

    .new-menu-container {
        box-shadow: none;
    }

    .menu {
        display: none;
    }

    .logo {
        padding-left: 15px;
    }

    .search-icon {
        display: block;
        padding: 9px 7px 9px 10px;
    }

    .hamburger {
        display: block;
        padding: 9px 15px 9px 10px;
    }

    .desktop-search,
    .desktop-search-btn,
    .login-btn,
    .add-listing-btn,
    .more-dropdown {
        display: none;
    }

    .call-button {
        display: none;
    }


}

@media screen and (min-width: 769px) {
    .menu {
        justify-content: center;
    }

    .login-btn {
        margin-left: auto;
    }
}
