 


/* Bean-style header */
.bean-header {
    position: relative;
    z-index: 999;
}

.bean-header__top {
    background: #6d0201;
    color: #fff;

}

.bean-header__top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 36px;
}

.bean-header__welcome,
.bean-header__quick,
.bean-header__quick-link {
    display: flex;
    align-items: center;
}

.bean-header__welcome {
    min-width: 0;
    gap: 8px;
    font-weight: 500;
}

.bean-header__pulse {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fce26c;
    box-shadow: 0 0 0 0 rgba(252, 226, 108, .7);
    animation: beanPulse 1.6s infinite;
}

.bean-header__quick {
    gap: 18px;
}

.bean-header__quick-link {
    gap: 7px;
    color: rgba(255, 255, 255, .9);
    text-decoration: none;
    white-space: nowrap;
}

.bean-header__quick-link:hover {
    color: #fce26c;
}


.bean-header__body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    min-height: 112px;
    padding: 14px 0;
}

.bean-header__logo {
    display: inline-flex;
    align-items: center;
    width: 252px;
}

.bean-header__logo img {
    max-height: 101px;
    width: auto;
    object-fit: contain;
}

.bean-header__actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.bean-header__action {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

.bean-header__action:hover {
    color: #fce26c;
}

.bean-header__action-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: #6d0201;
    border-radius: 50%;
    color: #fff;
    background: #6d0201;
}

.bean-header__action-text {

    font-weight: 600;
}

.bean-header__cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    color: #6d0201;
    background: #fce26c;
    font-size: 11px;
    line-height: 18px;
    text-align: center;
}

.bean-header__member {
    position: relative;
    z-index: 13;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bean-header__member-current,
.bean-header__member-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 12px 0px 5px;
    border: 1px solid rgba(109, 2, 1, .16);
    border-radius: 999px;
    color: #2f2f2f;
    background: #fff;
    box-shadow: 0 8px 18px rgba(49, 15, 8, .08);
    cursor: pointer;
}

.bean-header__member-current {
    max-width: 210px;
}

.bean-header__member-current>span:not(.bean-header__action-icon),
.bean-header__member-link span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: 'Arsenal-B';
}

.bean-header__member-current .bean-header__action-icon {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
}

.bean-header__member-current>i {
    color: #6d0201;
    font-size: 10px;
    transition: transform .2s ease;
}

.bean-header__member-link i {
    color: #6d0201;
}

.bean-header__member-link:hover,
.bean-header__member-current:hover {
    color: #6d0201;
    border-color: rgba(109, 2, 1, .32);
}

.bean-header__member-link--primary {
    color: #6d0201;
    background: #fce26c;
    border-color: #fce26c;
}

.bean-header__member-list {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 210px;
    padding: 6px;
    border: 1px solid rgba(109, 2, 1, .12);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 16px 32px rgba(49, 15, 8, .16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.bean-header__member-list::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 8px;
}

.bean-header__member-list a {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 7px 9px;
    border-radius: 8px;
    color: #333;
}

.bean-header__member-list a:hover {
    color: #6d0201;
    background: #fff4d0;
}

.bean-header__member:hover .bean-header__member-list,
.bean-header__member:focus-within .bean-header__member-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.bean-header__member:hover .bean-header__member-current>i,
.bean-header__member:focus-within .bean-header__member-current>i {
    transform: rotate(180deg);
}

.bean-header__langs {
    position: relative;
    z-index: 12;
    min-width: 86px;
    font-family: 'Arsenal-B';
}

.bean-header__lang-current {
    display: flex;
    align-items: center;
    gap: 7px;
    min-height: 38px;
    padding: 0 10px;
    border: 1px solid rgba(109, 2, 1, .16);
    border-radius: 999px;
    color: #2f2f2f;
    background: #fff;
    box-shadow: 0 8px 18px rgba(49, 15, 8, .08);
    cursor: pointer;
}

.bean-header__lang-current img,
.bean-header__langs a img {
    flex: 0 0 auto;
    width: 24px;
    height: 16px;
    border-radius: 3px;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .08);
}

.bean-header__lang-current span,
.bean-header__langs a span {

    font-weight: 700;
    line-height: 1;
}

.bean-header__lang-current i {
    margin-left: auto;
    color: #6d0201;
    font-size: 10px;
    transition: transform .2s ease;
}

.bean-header__lang-list {
   transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
   display: inline-flex;
   margin-left: 20px;
   /* justify-content: center; */
   gap: 10px;
   margin-top: 10px;
}
 

.bean-header__lang-list a {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 7px 9px; 
    color: #333;color: #FFF;
font-family: Mulish;
font-size: 15px;
font-style: normal;
font-weight: 700;
line-height: 15px; 
text-transform: uppercase; border:1px solid var(--color-2);
}

.bean-header__lang-list a.active,
.bean-header__lang-list a:hover {
    color: var(--color-2); 
}

.bean-header__lang-list:hover .bean-header__lang-list,
.bean-header__lang-list:focus-within .bean-header__lang-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.bean-header__lang-list:hover .bean-header__lang-current,
.bean-header__lang-list:focus-within .bean-header__lang-current {
    border-color: rgba(109, 2, 1, .32);
}

.bean-header__lang-list:hover .bean-header__lang-current i,
.bean-header__lang-list:focus-within .bean-header__lang-current i {
    transform: rotate(180deg);
}

.bean-nav {
    /* background: #fce26c; */
}

.bean-nav__inner {
    display: flex;
    align-items: stretch;
    gap: 22px;
    min-height: 52px;
}

.bean-nav__menu-wrap {
    flex: 1 1 auto;
    min-width: 0;
    display: inline-flex;
    align-items: start;
}

.bean-nav__list {
    height: 100%;
    justify-content: space-between;
    gap: 0;
}

.bean-nav__item {
    position: relative;
    flex: 0 0 auto;
}

 

.bean-nav__category {
    /* flex: 0 0 276px; */
    position: absolute;
    z-index: 3;
    background: #fff;
    padding: 10px; padding-bottom: 0;
    border-radius: 0.5rem 0.5rem 0 0;
    left: 0;
    top: 10px;
    width: 280px;
}
.menu_fix .bean-nav__category{ padding-bottom: 10px;}
.bean-nav__category.not-index .menu_lvl  { opacity:0; visibility:hidden }
.bean-nav__category-toggle {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: 100%;
    min-height: 46px;
    padding: 0 18px;
    color: #fff !important;
    background: var(--color-main);
    font-family: 'Arsenal-B';
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, .08);
    border-radius: 5px;
}

.bean-nav__category-toggle:hover,
.bean-nav__category-toggle.active,
.bean-nav__category:hover>.bean-nav__category-toggle {
    color: #fce26c !important;
    background: #7c0302;
}

.bean-nav__category-label {
    min-width: 0;
    flex: 1 1 auto;
   color: #FFF;
font-family: "SN Samsung Sharp Sans";
font-size: 15px;
font-style: normal;
font-weight: 700;
line-height: 30px; /* 200% */
text-transform: uppercase;
}

.bean-nav__category-caret {
    flex: 0 0 auto;
    font-size: 11px;
    transition: transform .2s ease;
}

.bean-nav__category:hover .bean-nav__category-caret {
    transform: rotate(180deg);
}

.bean-nav__hamburger {
    display: inline-flex;
    flex-direction: column;
    gap: 3px;
    width: 18px;
}

.bean-nav__hamburger i {
    display: block;
    height: 2px;
    border-radius: 2px;
    background: rgba(255, 214, 36, 1);
}
.bean-nav__hamburger i:nth-child(2){ width:14px}
.bean-nav__hamburger i:nth-child(3){ width:10px}

.bean-nav__category .menu_lvl {
    position: absolute;
    top: calc(100% + 8px);
    /* opacity: 0; */
    /* visibility: hidden; */
    width: 100%;
    /* padding: 3px; */
    /* border: 1px solid rgba(109, 2, 1, .12); */
    border-radius: 0px 0px 8px 8px;
    /* background: #fff; */
    /* box-shadow: 0 18px 38px rgba(49, 15, 8, .18); */
    transition: top .22s ease, opacity .22s ease, visibility .22s ease;
}

.bean-nav .bean-nav__dropdown--level2 {
    left: 0;
    top: 100%;
    transform: none;
}

.bean-nav__category:hover>.bean-nav__dropdown--level2 {
    top: 100%;
    opacity: 1;
    visibility: visible;
}

.bean-nav .bean-nav__dropdown--level3,
.bean-nav .bean-nav__dropdown--level4 {
    top: -8px;
    left: 100%;
    border-radius: 8px; opacity: 0; visibility: hidden;
}
 

.bean-nav__dropdown-list {
    height: 566px;
    padding: 0 !important;
    margin: 0 !important;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 7px 10px !important;
    background: #fff;
    border-radius: 0 0 0.5rem 0.5rem;
}

.bean-nav__dropdown-list li {
    border-bottom: 1px solid #f1f1f1;
    list-style: none;
}
.bean-nav__dropdown-list li:last-child{border-bottom: 0;}

.bean-nav__dropdown-link {
    display: flex !important;
    align-items: center !important;
    justify-content: left !important;
    gap: 12px;
    min-height: 42px;
    padding: 15px 0px !important;
    border: 0 !important;
    border-radius: 6px;
    color: #2e2e2e !important;
    font-family: 'SN Samsung Sharp Sans';
    font-weight: 500;
    font-size: 14px !important;
    line-height: 1.35 !important;
    text-align: left;
    text-transform: none !important;
}

.bean-nav__dropdown-text {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bean-nav__dropdown-caret {
    flex: 0 0 auto;
    color: #9f0406;
    font-size: 10px !important;
}

.bean-nav__dropdown-item:hover>.bean-nav__dropdown-link {
    color: #9f0406 !important;

}

.bean-nav__dropdown-item:hover>.bean-nav__dropdown--level3,
.bean-nav__dropdown-item:hover>.bean-nav__dropdown--level4 {
    top: -8px;
    opacity: 1;
    visibility: visible;
}

@keyframes beanPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(252, 226, 108, .7);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(252, 226, 108, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(252, 226, 108, 0);
    }
}

.bean-header__logo-wrap {
    text-align: center;
    min-width: 252px;
    margin: 0 20px 0 30px;
}


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

.social li {
    display: inline-block
}

.social li:hover img {
    transform: rotateY(360deg);
    transition: all .5s linear
}

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

.header__top {
    background: var(--color-main);
    color: #fff;
    padding: 5px 0
}

.header__top-flex {
    display: flex;
    justify-content: space-between;
    gap: 15px
}

.header__top-info {
    display: flex;
    align-items: center;
    gap: 5px
}

.header__info-icon {
    width: 20px
}

.header__info-text {
    font-weight: 500
}

.header__bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #ffffff7d;
    padding: 10px 0px 15px;
}
 
.header-right {
    font-size: 15px;
    color: #fff;
    width: 60%;
}

.header-main {
    min-height: 102px;
    gap: 20px;
}

.header-main__brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.header-main__logo {
    display: inline-flex;
    flex-shrink: 0;
}

.header-main__brand-text h2 {
    margin: 0;
    color: #b10005;

    font-size: 56px;
    line-height: 1;
    text-transform: uppercase;
}

.header-main__brand-text p {
    margin: 2px 0 0;
    color: #06452f;

    font-size: 34px;
    line-height: 1;
    text-transform: uppercase;
}

.header-main__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: auto;
}

.header-main__btn {
    min-width: 168px;
    height: 42px;
    border-radius: 30px;
    font-size: 16px;
    line-height: 1;
    padding: 0 18px;
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

.header-main__btn--outline {
    border-color: #9f0406;
    color: #9f0406;
    background: transparent;
}

.header-main__btn--outline:hover {
    background: #9f0406;
    color: #ff0;
}

.header-main__btn--green {
    border-color: #fff;
    color: #fff;
    background: #104b32;
}

.header-main__btn--green:hover {
    color: #ff0;
}

.header-main__btn--red {
    border-color: #1c2a34;
    color: #fff;
    background: #b10005;
}

.header-main__btn--red:hover {
    color: #ff0;
}

.header-main__langs {
    position: relative;
    z-index: 12;
    min-width: 86px;
    font-family: 'Arsenal-B';
}

.header-main__lang-current {
    display: flex;
    align-items: center;
    gap: 7px;
    min-height: 38px;
    padding: 0 10px;
    border: 1px solid rgba(109, 2, 1, .16);
    border-radius: 999px;
    color: #2f2f2f;
    background: #fff;
    box-shadow: 0 8px 18px rgba(49, 15, 8, .08);
    cursor: pointer;
}

.header-main__lang-current img,
.header-main__langs a img {
    flex: 0 0 auto;
    width: 24px;
    height: 16px;
    border-radius: 3px;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .08);
}

.header-main__lang-current span,
.header-main__langs a span {

    font-weight: 700;
    line-height: 1;
}

.header-main__lang-current i {
    margin-left: auto;
    color: #6d0201;
    font-size: 10px;
    transition: transform .2s ease;
}

.header-main__lang-list {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 100%;
    padding: 6px;
    border: 1px solid rgba(109, 2, 1, .12);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 16px 32px rgba(49, 15, 8, .16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.header-main__lang-list::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 8px;
}

.header-main__langs a {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 7px 9px;
    border-radius: 8px;
    color: #333;
}

.header-main__langs a.active,
.header-main__langs a:hover {
    color: #6d0201;
    background: #fff4d0;
}

.header-main__langs:hover .header-main__lang-list,
.header-main__langs:focus-within .header-main__lang-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-main__langs:hover .header-main__lang-current,
.header-main__langs:focus-within .header-main__lang-current {
    border-color: rgba(109, 2, 1, .32);
}

.header-main__langs:hover .header-main__lang-current i,
.header-main__langs:focus-within .header-main__lang-current i {
    transform: rotate(180deg);
}

.notify-phone {
    animation: notifyPhone 1s infinite ease-in-out
}

.header-menu-mobile {
    justify-content: center;
    align-items: center;
    padding: 5px;
    border-top: 1px solid #ffffff57;
    margin-top: 5px;
    gap: 5px;
    display: none;
}

.header-menu-mobile .header-main__btn {
    border-radius: 30px;
    font-size: 12px;
    padding: 0px 5px;
    min-width: auto;
    height: 30px;
}

@keyframes notifyPhone {
    0% {
        transform: rotate(0) scale(1) skew(1deg)
    }

    10% {
        transform: rotate(-25deg) scale(1) skew(1deg)
    }

    20% {
        transform: rotate(25deg) scale(1) skew(1deg)
    }

    30% {
        transform: rotate(-25deg) scale(1) skew(1deg)
    }

    40% {
        transform: rotate(25deg) scale(1) skew(1deg)
    }

    50% {
        transform: rotate(0) scale(1) skew(1deg)
    }

    100% {
        transform: rotate(0) scale(1) skew(1deg)
    }
}

.search-inline {
    display: flex;
    align-items: center;
    gap: 5px;
    width: 500px;
    max-width: 50%;
    border-radius: 30px;
    border: 1px solid #E6E6E6;
    background: #F3F3F3;
}

.search-inline p {
    width: 30px;
    height: 30px;
    cursor: pointer;
    text-align: center;
    margin: 0;
    color: var(--color-main);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px
}

.search-inline input {
    width: calc(100% - 30px);
    height: 45px;
    outline: 0;
    padding: 0;
    border: 0;
    background: 0;
    text-indent: 12px;
    font-size: 14px
}

.search-inline input::-webkit-input-placeholder {
    color: #7d7d7d
}

.search-inline input:-moz-placeholder {
    color: #7d7d7d
}

.search-inline input::-moz-placeholder {
    color: #7d7d7d
}

.search-inline input:-ms-input-placeholder {
    color: #7d7d7d
}

.header__lang {
    position: relative;
    z-index: 101
}

.header__lang-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: clamp(12px, calc(120 / 1200 * 100vw), 120px);
    background: #dae1e7;
    backdrop-filter: blur(8px);
    padding: 10px
}

.header__lang-flag {
    max-width: 35px;
    border-radius: 3px;
    overflow: hidden
}

.header__lang-country {
    font-weight: 700;
    font-size: clamp(13px, calc(14 / 1200 * 100vw), 14px)
}

.header__lang-box {
    position: absolute;
    right: 0;
    margin-top: 10px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, .35) 0 5px 15px;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 150px
}

.header__lang-picker {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer
}

.header__lang-icon {
    display: inline-block;
    width: 25px
}

.header__lang-name {
    font-size: clamp(13px, calc(14 / 1200 * 100vw), 14px);
    font-weight: 500;
    flex: 1 1 0%
}

.header__lang-picker:hover .header__lang-name {
    color: orange
}

#google_translate_element {
    clear: both;
    width: auto !important;
    text-align: right;
    display: none
}

.skiptranslate {
    display: none !important
}

.flex-menu {
    display: flex;
    justify-content: space-between;
}

.menu-res {
    display: none
}

.header-wrap-in {
    position: relative;
}

.menu-main {
    /* position: absolute; */
    z-index: 99;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
}
.menu-main.not-index{ position:relative; background:var(--color-main)}
.menu ul {
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none
} 
.menu_desktop {
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
}

.title-menu {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    line-height: 50px;
    background: url(../images/menu.png) no-repeat left center;
    padding-left: 40px;
    padding-right: 30px;
}

.title-menu:after {
    content: '';
    position: absolute;
    width: 1px;
    height: 15px;
    right: 0px;
    background: #ffffff8a;

}

.title-menu h4 {
    font-size: 15px;
    text-transform: uppercase;
    margin: 0px;
    line-height: 50px;
    font-family: Arsenal-B;
    padding-right: 30px;
    cursor: pointer;
}

.menu ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: .2s;
    min-height: 50px;
    padding: 0;
    color: #FFF;
    font-family: "SN Samsung Sharp Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    text-transform: uppercase;
    white-space: nowrap;
    padding: 0 10px;
    gap: 5px;
}
.menu ul li a img{ position:relative; top:-2px;}
.menu ul li.icon-menu span {
    color: #fff;
    font-size: 30px;
}

.menu ul li span.dots-menu {
    font-size: 20px;
    line-height: 20px;
}

.menu ul li a i {}

.menu ul li a.active,
.menu ul li:hover>a {
    /* color: #ea9a41 !important; */
}
.menu ul.menu_desktop > li > a:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 100%;
    height: 5px;
    background: url(../images/line.png) repeat-x center / contain;
    opacity: 0;
    transform: translateX(-50%) scaleX(0);
    transform-origin: left center;
    transition: transform .45s ease, opacity .25s ease;
}

.menu ul.menu_desktop > li > a.active:after,
.menu ul.menu_desktop > li:hover > a:after {
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
}


.menu .menu_lvl {
    position: absolute;
    top: calc(100% + 8px);
    opacity: 0;
    visibility: hidden;
    width: 250px;
    padding: 3px;
    border: 1px solid rgba(109, 2, 1, .12);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 18px 38px rgba(49, 15, 8, .18);
    transition: top .22s ease, opacity .22s ease, visibility .22s ease;
}

.menu .menu_lvl .menu_lvl {
    border-radius: 8px;
}

.slideshow_left .menu_lvl2 {
    -webkit-transform: perspective(600px) rotateX(0);
    transform: perspective(600px) rotateX(0);
    transform-origin: 0 0 0;
    -webkit-transform-origin: 0 0 0;
    opacity: 1;
    visibility: visible;
    margin-top: 0
}

.menu_vlist_pic {
    max-width: 24px
}

.menu ul li ul li a:after {
    display: none !important
}

.menu_dmsp>a {
    gap: 7px;
}
.menu_dmsp .menu_lvl::before {
    content: "";
    position: absolute;
    inset: auto 0 100% 0;
    height: 12px;
}

.menu_dmsp .menu_lvl ul {
    max-height: 420px;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    list-style: none;
}

.menu_dmsp .menu_lvl ul::-webkit-scrollbar {
    width: 5px;
}

.menu_dmsp .menu_lvl ul::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(109, 2, 1, .28);
}

.menu_dmsp .menu_lvl li>a {
    justify-content: space-between;
    gap: 12px;
    min-height: 42px;
    padding: 10px 12px !important;
    border-radius: 8px;
    color: #000 !important;
    font-size: 14px !important;
    line-height: 1.35;
    text-align: left;
    text-transform: none !important;
}

.menu_dmsp .menu_lvl li:has(> .menu_lvl)>a::after {
    content: "\f105" !important;
    font-family: "Font Awesome 6 Pro";
    font-size: 11px;
    font-weight: 900;
    font-style: normal;
    line-height: 1;
    display: inline-block !important;
    flex: 0 0 auto;
    color: var(--color-main);
    opacity: .8;
}

.menu_dmsp .menu_lvl li:hover>a {
    color: var(--color-main) !important;
    background: #fff4d0;
}

.menu_dmsp .menu_lvl3,
.menu_dmsp .menu_lvl4 {
    top: -6px;
    left: calc(100% + 2px);
}

.menu_dmsp .menu_lvl3::before,
.menu_dmsp .menu_lvl4::before {
    inset: 0 100% 0 auto;
    width: 8px;
    height: auto;
}

.menu_dmsp .menu_lvl2 .menu_lvl3 ul li:hover .menu_lvl4,
.menu_dmsp .menu_lvl2 ul li:hover .menu_lvl3 {
    top: -6px;
    opacity: 1;
    visibility: visible;
}

.menu_dmsp:not(.block_hover):hover .menu_lvl2 {
    top: 100%;
    opacity: 1;
    visibility: visible;
}


@media (min-width: 1024px) {
.menu_dmsp{ position:relative}
/* .menu ul.menu_desktop:first-child{width: 34%;margin-top: 10px;align-items: start;}
.menu ul.menu_desktop:nth-child(3){width: 32%;margin-top: 10px;padding-left: 30px;align-items: start;} */
}


.item-header {min-height:58px;/* display: inline-flex; */}
.hotline{ background: url(../images/icon_hl.png) no-repeat; padding-left: 65px;}
.hotline p{ margin-bottom:0}
.giolv {
    background: url(../images/icon_glv.png) no-repeat;
    padding-left: 65px;
}
/* Figma header/menu - node 61:505 */
.header-wrap {
    position: relative;
    z-index: 100;
    background: #fff;
    /* border-bottom: 1px solid #d9d9d9; */
}

.header-bottom {
    min-height: 100px;
    gap: 28px;
    flex-wrap: nowrap !important;
}

.header__logo {
    /* flex: 0 0 360px; */
    max-width: 360px;
    display: inline-flex;
    gap: 10px;
}

.header__logo a,
.header_banner {
    display: flex;
    align-items: center;
}

.header__logo img {
    max-width: 130px;
    max-height: 95px;
    object-fit: contain;
}

.header_banner {  

}

.header_banner img {  

    object-fit: contain;
}

.bean-header__search {
    flex: 1 1 418px;
    width: 615px;
    max-width: 615px;
    height: 56px;
    border: 1px solid #3f4040;
    border-radius: 50px;
    background: transparent;
    display: flex;
    align-items: center;
    min-width: 0;
    overflow: hidden; 
    border-radius: 5px;
    border: 1px solid #E5E5E5;
    background: #FFF;
}

.bean-header__search .icon-search{ position:relative; padding:0 15px}

.bean-header__search .icon-search:after{content:'';position:absolute;right:0px;top: 50%; transform:translateY(-50%); border-right:1px solid #ccc;height:30px;}
.bean-header__search-input {
    height: 54px;
    padding: 0 20px 0 22px;
    color: #3f4040;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 400;
    flex: 1 1 auto;
    min-width: 0;
    

    border: 0;
    outline: none;
}

.bean-header__search-input::placeholder {
    color: #828282;
} 
 
.bean-header__search-button {
    text-transform: capitalize;
    width: 126px;
    height: 43px;
    margin-right: 6px;
    border-radius: 5px;
    color: #fff;
    background: linear-gradient(90deg, #C91F2A 51.41%, #EE771B 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0; 
    font-size: 13px;
    font-weight: 700;
}

.bean-header__search-button:hover {
    background: #C91F2A;
}

.item-header {
    position: relative;
    flex: 0 0 auto;
    min-height: 58px;
    padding-left: 68px;
    color: #3f4040;
    font-family: 'Roboto', sans-serif;
    white-space: nowrap;
}
 
.item-header::after {
    content: "";
    position: absolute;
    left: 0px;
    top: 50%;
    width: 58px;
    height: 58px;  

    background-position: center;
    background-repeat: no-repeat;  
    transform: translateY(-50%);
}

.hotline,
.giolv {
    background: none;
}

.hotline::after {
    background-image: url(../images/icon_hl.png);
}

.giolv::after {
    background-image: url(../images/icon_glv.png);
}

.item-header span {
    display: block;
    margin: 0;
    color: #373737;
    font-family: "SN Samsung Sharp Sans";
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
}

.item-header p {
  color: #C91F2A;
font-family: "SN Samsung Sharp Sans";
font-size: 18px;
font-style: normal;
font-weight: 700;
line-height: 30px;
}

.giolv p {
    font-size: 18px;
}

.menu-main,
.menu-main.not-index {
    position: relative;
    z-index: 99;
    background: var(--color-3);
    /* border-bottom: 1px solid #d9d9d9; */
}

.figma-menu__inner {
    min-height: 60px;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-left: 280px !important;
}

.bean-nav__menu-wrap {
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.bean-nav__list {
    align-items: center;
    justify-content: space-between;
    /* gap: clamp(34px, 5.7vw, 110px); */
}

.bean-nav__item,
.menu_dmsp {
    position: relative;
    flex: 0 0 auto;
}


.menu_dmsp .menu_lvl {
    top: calc(100% + 1px);
}

.menu_dmsp:not(.block_hover):hover .menu_lvl2 {
    top: 100%;
}

@media (max-width: 1299px) {
    .header-bottom {
        gap: 18px;
    }

    .bean-header__search {
        flex-basis: 330px;
        max-width: 330px;
    }

    .bean-nav__list {
        gap: clamp(24px, 4.2vw, 70px);
    }
}

@media (max-width: 1099px) {
    .header_banner {
        display: none;
    }

    .item-header {
        padding-left: 58px;
    }

    .item-header::before {
        width: 50px;
        height: 50px;
    }

    .item-header::after {
        left: 5px;
        width: 42px;
        height: 42px;
        background-size: 18px 18px;
    }

    .item-header span {
        font-size: 13px;
    }

    .item-header p {
        font-size: 16px;
    }
}
.floating-actions{}
.floating-actions a{
 gap: 10px;
 border-radius: 5px;
 border: 2px solid #C91F2A;
 padding: 2px;
 background: #FFF;
 color: #000;
 font-family: "SN Samsung Sharp Sans";
 font-size: 14px;
 font-style: normal;
 font-weight:500;
 line-height: normal;
 min-height: 55px;
 display: inline-flex;
 /* align-items: center; */
 /* justify-content: center; */
 }
.floating-actions span{color: #FFF;/* font-family: Roboto; */font-size: 15px;font-style: normal;font-weight: 400;line-height: normal;border-radius: 5px;background: linear-gradient(155deg, #C91F2A 51.5%, #EE771B 100%);padding: 5px 10px;height: 47px;line-height: 37px;}


.show-search {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    max-height: 400px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid rgba(159, 4, 6, 0.15);
    border-radius: 12px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    padding: 8px 0;
    display: none;
}
.box-search {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 16px;
    border-bottom: 1px solid #f5f5f5;
    transition: background-color 0.25s ease;
}
.box-search:last-child {
    border-bottom: none;
}
.box-search:hover {
    background-color: #fff8f8;
}
.pic-search {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid #eee;
}
.pic-search img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ds-item-search {
    flex: 1 1 auto;
    min-width: 0;
}
.ds-item-search .name-product {
    margin: 0 0 4px;
    font-size: 14px;
    font-family: 'Arsenal-B';
    font-weight: 700;
    line-height: 1.35;
}
.ds-item-search .name-product a {
    color: #333;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ds-item-search .name-product a:hover {
    color: #9F0406;
}
.price-product {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}
.price-product .price-new {
    color: #9F0406;
    font-weight: 700;
}
.price-product .price-old {
    color: #888;
    text-decoration: line-through;
}
.price-product .price-per {
    color: #069E34;
    font-weight: 700;
}
.menu_fix {
    position: fixed !important;
    left: 0px;
    top: 0px;
    width: 100%;
    box-shadow: 0 0 5px #000;
    background-color: #ffffff88;
    z-index: 999;
    backdrop-filter: blur(10px);
    animation: slideInDown1 1s 0s;
}

@-webkit-keyframes slideInDown1 {
    0% {
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
        visibility: visible
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes slideInDown1 {
    0% {
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
        visibility: visible
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.slideInDown1 {
    -webkit-animation-name: slideInDown1;
    animation-name: slideInDown1
}

.menu_fix .menu_lvl{ opacity: 0; visibility: hidden; }