.contact-info {
    min-height: 34px;
    box-sizing: border-box;
    padding: 5px 0 3px;
    text-align: right;
}
.main-header {
    display: flex;
    align-items: center;
    gap: 20px;
}
.main-header .logo img {
    width: 170px;
    display: block;
}
.main-header .form-search {
    position: relative;
    flex-grow: 1;
}
.main-header .form-search i.btn {
    padding: 10px 15px;
    position: absolute;
    right: 2px;
    top: 3px;
}
.main-header i.fa-2x {
    cursor: pointer;
}
#search-input {
    width: 100%;
    height: 45px;
}

.header-cart {
    position: relative;
}

#shopping-cart-total {
    color: white;
    background: var(--main-background-color);
    border-radius: 50%;
    line-height: 20px;
    font-size: 12px;
    padding: 0 7px;
    font-weight: bold;
    position: absolute;
    top: -8px;
    right: -8px;
}
.head-utilities {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-direction: row-reverse;
}
.head-utilities .bg-text {
    margin: 0;
    margin-bottom: 15px;
}
.menu-btn {
    height: 50px;
    padding: 0 15px;
    border: 0;
    border-radius: 10px;
    background: #ea580c;
    color: white;
    font-size: 16px;
    box-shadow: 0 10px 30px rgb(234 88 12 / 25%);
    transition: .25s;
    z-index: 2;
}

.menu-btn:hover {
    transform: translateY(-2px);
    background: #c2410c;
}
.menu-btn .fa-bars {
    color: white;
}
#popup-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,.5);
    z-index: 1;
}
.menu-popup {
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translateX(-50%) translateY(10px) scale(.98);
    width: min(1400px,calc(100vw - 40px));
    box-sizing: border-box;
    background: white;
    border-radius: 32px;
    padding: 28px;
    box-shadow: 0 30px 80px rgba(15,23,42,.12);
    opacity:0;
    visibility:hidden;
    transition: opacity .25s ease, transform .25s ease;
    z-index:9999;
}

.menu-popup.active {
    opacity:1;
    visibility:visible;
    transform: translateX(-50%) translateY(0) scale(1);
}
.menu-popup::before {
    content:'';
    position:absolute;
    top:-10px;
    left: var(--arrow-left,50%);
    width:22px;
    height:22px;
    background:white;
    transform:rotate(45deg);
    border-radius:4px;
}
.menu-grid {
    display:grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap:20px;
}

.menu-item .main-cate-item {
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    display: block;
    margin-bottom: 10px;
}
.menu-item .main-cate-item:hover,.sub-menus a:hover {
    transform: scale(1.05);
}

.main-cate-img {
    width:100%;
    display: block;
}

.menu-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(19,114,80,.2);
    color: white;
    max-height: 56px;
    line-height: 22px;
    font-size: 20px;
    padding: 5px 0;
    font-weight: bold;
}

.sub-menus {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3,minmax(0,1fr));
    font-size: 14px;
    text-align: center;
}
.sub-menus a {
    padding: 5px;
    line-height: 18px;
    border-radius: 10px;
    background: rgba(19,114,80,.08);
    outline: 1px solid rgba(19,114,80,.15);
    box-shadow: 0 30px 80px rgb(15 23 42 / 12%);
}