.category-item {
    margin-top: 25px;
}
.category-products {    
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}
.menu-slide {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-box-direction: normal;
    -moz-box-orient: vertical;
    flex-direction: column;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}
.menu-slide-img {
    position: relative;
    height: 155px;
}
.menu-slide-img .fav-btn {
    position: absolute;
    top: 4px;
    left: 4px;
}
.menu-slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.menu-slide-info {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex: 1;
    flex-grow: 1;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-box-direction: normal;
    -moz-box-orient: vertical;
    flex-direction: column;
    background: #fff;
    padding: 10px;
}
.menu-slide-info h4 > a {
    text-decoration: none;
}
.menu-slide-desc {
    font-size: 12px;
    line-height: 1.3;
    margin-top: 5px;
    margin-bottom: 15px;
}
.menu-slide-actions {
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;    
    margin-top: auto;
}
.menu-slide-price {
    font-weight: 600;
    color: var(--theme-color);
}
.product-card {
    width: calc((100% - 15px) / 2);
}
.product-card .menu-slide-img {
    height: 125px;
}
.exc-search {
    gap: 15px;
    margin-bottom: 10px;
}
.search-field-wrap {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex: 1;
    flex-grow: 1;
    position: relative;
}
.search-field-wrap .field-item {
    padding-left: 38px;
}
.search-field-wrap .field-item:focus {
    border-color: #f3f3f3;
}
.search-btn {
    width: 18px;
    height: 18px;
    position: absolute;
    top: 15px;
    left: 10px;
    background: url(../images/icons/search.svg) no-repeat;
    background-size: contain;
    background-position: center;
    border: none;
    padding: 0;
    margin: 0;
}
.search-reset-btn {
    display: none;
    width: 18px;
    height: 18px;
    position: absolute;
    top: 15px;
    right: 10px;
    background: url(../images/icons/close-dark.svg) no-repeat;
    background-size: contain;
    background-position: center;
    border: none;
    outline: none;
    opacity: 0.6;
}
.exc-search.active .search-reset-btn {
    display: block;
}
.exc-nav {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    padding: 10px;
    overflow: hidden;
    background-color: var(--bg-color);
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.12);
    display: none;
    z-index: 3;
}
.exc-nav.cat-nav-wrap {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.exc-nav-slider {
    margin-left: 0;
    margin-right: 0;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    flex-grow: 1;
}
.exc-nav-item {
    width: auto;
    padding: 5px 10px;
    background: #f3f3f3;
    border-radius: 10px;
    transition: background 0.3s ease, color 0.3s ease;
}
.exc-nav-item.nav-active {
    background: var(--theme-color);
    color: #fff;
}
.category-cart-icon {
    position: relative;
    display: block;
    width: 20px;
    height: 20px;
    background: url(../images/icons/cart.svg) no-repeat;
    background-size: contain;
    background-position: center;
}
.category-cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 16px;
    height: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: var(--theme-color);
    border-radius: 50%;
    color: #fff;
    font-size: 8px;
    line-height: 1;
}
.incart-container {
    line-height: 1;
}
.incart-wrap {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
}
.incart-btn {
    width: 20px;
    height: 20px;
    background-color: var(--theme-color);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 16px;
    border-radius: 50%;
    border: none;
    padding: 0;
}
.incart-btn.btn-minus {
    background-image: url(../images/icons/minus.svg);
}
.incart-btn.btn-plus {
    background-image: url(../images/icons/plus.svg);
}
.incart-count {
    width: 30px;
    text-align: center;
    border: none;
    padding: 0;
}
.product-page {
    padding-top: 0;
    padding-bottom: 40px;
}
.product-top {
    position: relative;
}
.product-top-actions {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    z-index: 3;
}
.product-top-actions .back-btn {
    width: 28px;
    height: 28px;
    background-color: rgba(255,255,255,0.4);
    background-image: url(../images/icons/arrow-left-white.svg);
    background-size: 22px;
    border-radius: 50%;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.05);
}
.product-img {
    width: 100%;
    height: 270px;
}
.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-content {
    position: relative;
    margin-top: -20px;
    background: var(--bg-color);
    border-radius: 15px 15px 0 0;
    padding-top: 15px;
    z-index: 2;
}
.product-desc {
    line-height: 1.3;
    color: var(--alter-color);
}
.product-page-form {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
    margin-top: 35px;
}
.product-page-price {
    font-weight: 600;
    font-size: 18px;
}
.header-inner .category-cart-icon,
.product-top .category-cart-icon {
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--alter-color);
    border-radius: 50%;
    background-size: 22px;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.05);
}
.product-top .category-cart-icon {
    background: url(../images/icons/cart-white.svg) no-repeat;
    background-size: 22px;
    background-position: center;
    background-color: rgba(255,255,255,0.4);
    border: none;
    box-shadow: none;
}
.header-inner .category-cart-count,
.product-top .category-cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 16px;
    height: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: var(--theme-color);
    border-radius: 50%;
    color: #fff;
    font-size: 8px;
    line-height: 1;
}
.search-result-empty {
    padding: 10px;
    background: #dbdbdb;
    text-align: center;
    border-radius: 10px;
}