 
   .header-navbar {
    background-color: #ffffff;
    width: 100%;
    padding: 15px 0;
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.navbar-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}
 
.navbar-left {
    display: flex;
    align-items: center;
    margin-right: auto;
    margin-left: 0;
    gap: 10px;
}

.navbar-logo .ammenu-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-logo .logo-image {
    width:160px
}

.navbar-hamburger {
    display: none;
    align-items: center;
}

.navbar-hamburger .ammenu-button.-hamburger.-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    margin: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #9B6A00;
}

.navbar-hamburger .ammenu-button.-hamburger.-trigger:before {
    border-top: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    content: '';
    width: 20px;
    height: 2px;
    position: relative;
    box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
}

.navbar-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 0;
}

.nav-link {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    color: #333333;
    text-decoration: none;
    padding: 0 !important;
    border-radius: 4px;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: #9B6A00;
}
 
.navbar-right {
    display: flex;
    align-items: center;
    gap: 5px;  
    flex-shrink: 0;
    height: 100%;
}
 
.navbar-search {
    position: relative !important;
    display: flex;
    align-items: center;
}

.navbar-search .input-text {
    height:30px;
    width: 120px;
    line-height: 30px  ;  
    padding: 0 15px 0 40px  ;  
    border: 1px solid #9B6A00  ;
    border-radius: 30px  ;
    font-size: 1.3rem;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
    transition: width 0.4s ease-in-out, border-color 0.3s ease, background-color 0.3s ease !important;
}

.navbar-search .input-text::placeholder{
    color: transparent !important;
    opacity: 0 !important;
}

.navbar-search .input-text:focus {
    width: 250px  ;
    border-color: #9B6A00  ;
    background-color: #ffffff  ;
}

.navbar-search .input-text:focus::placeholder {
    color: #999999 !important;
    opacity: 1 !important;
}

.navbar-search .actions {
    top: -3px;
}
 
 
.navbar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9B6A00;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.navbar-icon svg {
    width: 24px;
    height: 24px;
}

.navbar-icon:hover svg{
    stroke: #9B6A00;
    transition: stroke 0.3s ease;
}

.cart-icon-wrapper .minicart-wrapper {
    margin: 0;
    padding: 0;
    float: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.cart-icon-wrapper .action.showcart {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #9B6A00;
    text-decoration: none;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    position: relative;
    box-sizing: border-box;
}

.cart-icon-wrapper .action.showcart::before,
.cart-icon-wrapper .action.showcart .text,
.cart-icon-wrapper .counter-label {
    display: none !important;
    content: '' !important;
}

.cart-icon-wrapper .action.showcart .counter {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #9B6A00;
    color: #ffffff;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    line-height: 18px;
    padding: 0 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    z-index: 2;
    box-sizing: border-box;
}

.cart-icon-wrapper .counter-number {
    display: block;
    line-height: normal;
}

.cart-icon-wrapper .action.showcart .counter.empty {
    display: none;
}

.page-header .block-search {
    margin:0;
    height:30px;
}

.page-header .logo{
    max-width:none;
}
 

@media (max-width: 948px) {

    .header-navbar {
        padding: 12px 0;
    }

    .navbar a {
        max-width: none;
    }

    .navbar-hamburger {
        display: flex;
    }

    .navbar-nav {
        display: none !important;
    }

}
