:root {
    --font-family: "Google Sans", sans-serif;
    --color-white: #fff;
    --color-black: #000;
    --color-black-light: #818181;
    --color-grey: #EFEFEF;
    --color-grey-light: #F6F6F6;
    --color-grey-dark: #818181;
    --color-background: #F1F1F1;
    --color-orange: #FFBE51;
    --color-red: #DD0B0B;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

*::-webkit-scrollbar {
    width: 4px;
    background: var(--color-orange);
}

*::-webkit-scrollbar-button {
    background: var(--color-red);
}

*::-webkit-scrollbar-track {
    border-radius: 5px;
    background: var(--color-red);
}

*::-webkit-scrollbar-track-piece {
    background-color: var(--color-orange);
    border: 1px solid var(--color-orange);
}

*::-webkit-scrollbar-thumb {
    border-radius: 2px;
    width: 100%;
    background: var(--color-red);
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--color-red) transparent;
}

html {
    font-size: calc(100vw / 192);
}

body {
    position: relative;
    font-family: var(--font-family);
    font-weight: normal;
    color: var(--color-black);
    overflow-x: hidden;
}

body._lock {
    overflow-y: hidden;
}

main {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    margin: 0;
}

a,
button,
p,
ul {
    margin: 0;
    padding: 0;
    text-decoration: none;
    border: none;
    list-style: none;
    background: transparent;
}

button {
    cursor: pointer;
}

svg {
    display: block;
    -webkit-transition: fill .3s, stroke .3s;
    -o-transition: fill .3s, stroke .3s;
    transition: fill .3s, stroke .3s;
}

.container {
    margin: 0 auto;
    width: 100%;
    max-width: 198rem;
}

.row {
    margin: 0 auto;
    padding: 0 2rem;
    max-width: 184rem;
    width: 100%;
}

.page-title {
    margin-bottom: 3rem;
    font: normal normal bold 4.6rem/5.7rem Google Sans;
}

/*header*/
.header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 2rem;
    padding: 3.3rem 3.8rem;
    background: var(--color-grey-light);
    border-radius: 35px;
    opacity: 1;
}

.header-logo {
    width: 27.4rem;
    height: 7rem;
}

.header-logo-link {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

.header-logo-image {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

.header-logo-image-mobile {
    display: none;
}

.header-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5.7rem;
    margin: 0 auto;
}

.header-info-phone {
    font: normal normal bold 3.4rem/4.3rem Google Sans;
    letter-spacing: -1.7px;
    color: var(--color-black);
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}

.header-info-open {
    font: normal normal 500 1.6rem/2rem Google Sans;
    letter-spacing: 0px;
    color: var(--color-black-light);
}

.header-address {
    display: block;
    margin-right: 6.5rem;
    font: normal normal bold 2.2rem/2.7rem Google Sans;
    letter-spacing: 0;
}

#cart .dropdown-menu {
    display: none;
}

.cart {
    position: relative;
}

.cart-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.7rem;
    padding: 1.3rem 2rem;
    background: #EFEFEF 0% 0% no-repeat padding-box;
    border-radius: 1.9rem;
    -webkit-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    transition: background-color 0.3s;
}

#cart.open .cart-button {
    background-color: var(--color-red);
}

.cart-button svg {
    display: block;
    width: 5rem;
    height: 5rem;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    -o-transition: transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}

.cart-button:hover svg,
.cart-button:focus svg,
.cart-button:active svg {
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
}

#cart-total {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

#cart-total small {
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}

#cart.open #cart-total small {
    color: var(--color-white);
}

#cart-total small:first-child {
    font: normal normal bold 2.4rem/3rem Google Sans;
    letter-spacing: -1.2px;
    color: var(--color-black);
}

#cart-total small:last-child {
    font: normal normal 2rem/2.5rem Google Sans;
    font-weight: 500;
    letter-spacing: -1px;
    color: var(--color-black-light);
}

.cart-products {
    position: absolute;
    top: calc(100% + 5.5rem);
    right: 0;
    z-index: 5;
    display: block;
    width: 62.8rem;
    min-height: 49.4rem;
    border-radius: 2.7rem;
    background: #F6F6F6;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: visibility 0.3s, opacity .3s;
    -o-transition: visibility 0.3s, opacity .3s;
    transition: visibility 0.3s, opacity .3s;
    -webkit-box-shadow: 0 0 5.5rem #00000036;
    box-shadow: 0 0 5.5rem #00000036;
    pointer-events: none;
}

#cart.open .cart-products {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.cart-empty {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 6.8rem 3.8rem 2.5rem 3.8rem;
}

.cart-empty-image {
    margin-bottom: 3.1rem;
    width: 14.4rem;
    height: 14.4rem;
}

.cart-empty-image img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.cart-empty-text {
    margin-bottom: 7.3rem;
    font: normal normal bold 3.4rem/4.3rem Google Sans;
    text-align: center;
}

.cart-empty-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 2.1rem;
    width: 100%;
    font: normal normal bold 2rem/2.5rem Google Sans;
    background: #EFEFEF 0% 0% no-repeat padding-box;
    border-radius: 17px;
    pointer-events: none;
}

.cart-full {
    padding: 4.3rem 3.8rem 2.5rem 3.8rem;
}

.cart-products-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.cart-products-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: .2rem;
}

.cart-products-label span {
    font: normal normal bold 2.2rem/5rem Google Sans;
}

.cart-products-delete {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: .7rem 1.9rem;
    font: normal normal 500 1.8rem/2.2rem Google Sans;
    color: var(--color-black);
    background: #DDDDDD 0% 0% no-repeat padding-box;
    border-radius: 1.1rem;
    -webkit-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    transition: background-color 0.3s;
}

.cart-products-delete:hover,
.cart-products-delete:focus,
.cart-products-delete:active {
    background-color: var(--color-red);
}

.cart-full-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    max-height: 28.2rem;
    overflow-y: auto;
    overflow-x: hidden;
}

.cart-product {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 1.5rem 3.2rem 1.5rem 2rem;
    border-radius: .8rem;
    background-color: var(--color-white);
}

.cart-product-image {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 2.2rem;
    width: 10.1rem;
    height: 10.1rem;
}

.cart-product-image img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.cart-product-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-right: 3.9rem;
}

.cart-product-info-name {
    font: normal normal 500 1.8rem/2rem Google Sans;
}

.cart-product-info-wight {
    margin-bottom: .7rem;
    font: normal normal normal 1.6rem/2rem Google Sans;
    color: #818181;
}

.cart-product-info-price {
    font: normal normal bold 2.2rem/2.7rem Google Sans;
}

.cart-product-info-price-mobile {
    display: none;
}

.cart-product-control {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 4.1rem;
    margin-left: auto;
    width: 10.4rem;
    height: 100%;
}

.cart-product-group button,
.cart-product-control-delete {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    -o-transition: transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}

.cart-product-group button:hover,
.cart-product-group button:focus,
.cart-product-group button:active,
.cart-product-control-delete:hover,
.cart-product-control-delete:focus,
.cart-product-control-delete:active {
    -webkit-transform: scale(1.06);
    -ms-transform: scale(1.06);
    transform: scale(1.06);
}

.cart-product-group button svg,
.cart-product-control-delete svg {
    display: block;
    width: 100%;
    height: 100%;
}

.cart-product-control-delete svg {
    stroke: var(--color-black);
}

.cart-product-control-delete:hover svg,
.cart-product-control-delete:focus svg,
.cart-product-control-delete:active svg {
    fill: var(--color-red);
}

.cart-product-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.cart-product-group-mobile {
    display: none;
}

.cart-product-group .input-number {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 3rem;
    font: normal normal 500 2rem/2.5rem Google Sans;
    text-align: center;
    outline: none !important;
    border: none !important;
}

.cart-full-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 2.2rem;
    width: 100%;
    font: normal normal bold 2rem/2.5rem Google Sans;
    color: var(--color-white);
    border-radius: 1.7rem;
    background-color: var(--color-red);
    -webkit-transition: color 0.3s, background-color 0.3s;
    -o-transition: color 0.3s, background-color 0.3s;
    transition: color 0.3s, background-color 0.3s;
}

.cart-full-link:hover,
.cart-full-link:focus,
.cart-full-link:active {
    background-color: var(--color-orange);
}

.header-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3.9rem;
    margin-bottom: 7.9rem;
}

.header-menu-item {
    position: relative;
    width: auto;
}

.header-menu-item:not(:last-child):before {
    content: '';
    position: absolute;
    top: 50%;
    right: -1rem;
    display: block;
    width: .4rem;
    height: .4rem;
    border-radius: 50%;
    background-color: var(--color-black);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.header-menu-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: .5rem 1rem;
    font-family: Google Sans;
    font-size: 2.2rem;
    font-weight: 500;
    letter-spacing: 0px;
    color: var(--color-black);
    border-radius: 10px;
    -webkit-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    transition: background-color 0.3s;
}

.header-menu-link:hover,
.header-menu-link:focus,
.header-menu-link:active {
    background: #FFBE51 0% 0% no-repeat padding-box;
}

.header-mobile-fixed {
    display: none;
}

.header-burger {
    display: none;
}

.header-fixed {
    position: fixed;
    top: 0;
    left: 50%;
    z-index: 10;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem 1.4rem;
    width: 100%;
    max-width: 180rem;
    background: rgba(246, 246, 246, .8);
    border-radius: 3.5rem;
    opacity: 0;
    visibility: hidden;
    -webkit-backdrop-filter: blur(2.2rem);
    backdrop-filter: blur(2.2rem);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: visibility .3s, opacity .3s;
    -o-transition: visibility .3s, opacity .3s;
    transition: visibility .3s, opacity .3s;
    pointer-events: none;
}

.header-fixed._active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.header-fixed .header-menu {
    gap: 2rem;
    margin: 0;
}

.header-fixed .header-menu-link {
    font-size: 1.8rem;
}

.header-fixed .header-menu-item:not(:last-child):before {
    right: -1rem;
}

.header-fixed-logo {
    width: 7rem;
    height: 7rem;
}

.header-fixed-logo-link {
    display: block;
    width: 100%;
    height: 100%;
}

.header-fixed-logo-image {
    display: block;
    width: 100%;
    height: 100%;
}

/*home*/
.home-slider-block {
    position: relative;
    margin-bottom: 10rem;
    padding: 0 3.8rem;
    width: 100%;
    overflow: hidden;
}

.home-slider {
    width: 100%;
    overflow: hidden;
}

.home-slider .swiper-slide {
    cursor: pointer;
}

.home-slider-pager {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.home-slider-button {
    position: static;
    margin-top: 0;
    width: 7.1rem;
    height: 7.1rem;
    border: .5rem solid var(--color-white);
    border-radius: 50%;
    background: none;
    pointer-events: all;
}

.home-slider-button svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: var(--color-red);
    -webkit-transition: fill 0.3s;
    -o-transition: fill 0.3s;
    transition: fill 0.3s;
}

.home-slider-button:hover svg,
.home-slider-button:focus svg,
.home-slider-button:active svg {
    fill: var(--color-orange);
}

.home-slider-button:before {
    display: none;
}

.home-slider .swiper-slide {
    border: .5rem solid transparent;
    border-radius: 2.9rem;
    -webkit-transition: border 0.3s;
    -o-transition: border 0.3s;
    transition: border 0.3s;
}

.home-slider .swiper-slide:hover,
.home-slider .swiper-slide:focus,
.home-slider .swiper-slide:active {
    border-color: var(--color-red);
}

.home-slider .swiper-slide img {
    display: block;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 2.5rem;
}

.product-module {
    position: relative;
    padding-bottom: 9rem;
    padding-top: 9.4rem;
    width: 100%;
}

.product-module:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 100vw;
    height: 100%;
    background-color: var(--color-background);
    border-radius: 3.5rem;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.product-module-top {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 1rem;
    width: 100%;
}

.product-module-title {
    font: normal normal bold 4.6rem/5.7rem Google Sans;
    letter-spacing: 0;
    white-space: nowrap;
}

.product-module-pager {
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.4rem;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    height: 6.5rem;
}

.product-module-button {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    position: static;
    margin-top: 0;
    width: 6.5rem;
    height: 6.5rem;
    border-radius: 50%;
    cursor: pointer;
}

.product-module-button svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: var(--color-red);
    -webkit-transition: fill 0.3s;
    -o-transition: fill 0.3s;
    transition: fill 0.3s;
}

.product-module-button:hover svg,
.product-module-button:focus svg,
.product-module-button:active svg {
    fill: var(--color-orange);
}

.product-module-button:before {
    display: none;
}

.product-layout {
    margin: 2rem 0;
    padding: 2rem 2.2rem 3rem 2.2rem;
    background-color: #FAFAFA;
    border-radius: 2.5rem;
    -webkit-box-shadow: 0 0 0 0 transparent;
    box-shadow: 0 0 0 0 transparent;
    -webkit-transition: background-color .3s, -webkit-box-shadow 0.3s;
    transition: background-color .3s, -webkit-box-shadow 0.3s;
    -o-transition: box-shadow 0.3s, background-color .3s;
    transition: box-shadow 0.3s, background-color .3s;
    transition: box-shadow 0.3s, background-color .3s, -webkit-box-shadow 0.3s;
}

.product-layout:hover,
.product-module .product-layout:focus,
.product-module .product-layout:active {
    -webkit-box-shadow: 0 0 2rem #0000002B;
    box-shadow: 0 0 2rem #0000002B;
    background-color: var(--color-white);
}

.product-layout .image {
    margin-bottom: 2.2rem;
    width: 100%;
    height: auto;
}

.product-layout .image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 1.5rem;
}

.product-layout .caption {
    width: 100%;
}

.product-layout .caption .name {
    font: normal normal bold 2rem/2.6rem Google Sans;
}

.product-layout .caption .weight {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: .2rem;
    margin-bottom: 1.3rem;
    font: normal normal 1.6rem/2rem Google Sans;
    font-weight: 500;
    color: var(--color-grey-dark);
}

.product-layout .caption .desc {
    display: block;
    margin-bottom: 2.7rem;
    font: normal normal normal 16px/22px Google Sans;
    color: #6E6E6E;
}

.button-cart-add {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 1.7rem;
    width: 100%;
    font: normal normal 2rem/2.5rem Google Sans;
    font-weight: 500;
    color: var(--color-black);
    background-color: #ECECEC;
    border-radius: 1.5rem;
    -webkit-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    transition: background-color 0.3s;
}

.button-cart-add:hover,
.button-cart-add:focus,
.button-cart-add:active {
    background-color: var(--color-orange);
}

.button-cart-add svg {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: block;
    margin-right: 3rem;
    width: 2.5rem;
    height: 2.5rem;
}

.button-cart-add .price {
    margin-left: .2rem;
}

.product-input-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.6rem 3rem;
    background: #ECECEC 0% 0% no-repeat padding-box;
    border-radius: 1.4rem;
}

.product-input-group button {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: block;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
}

.product-input-group button svg {
    display: block;
    width: 100%;
    height: 100%;
    stroke: var(--color-red)
}

.product-input-group button:hover svg,
.product-input-group button:focus svg,
.product-input-group button:active svg {
    stroke: var(--color-orange);
}

.product-input-group input {
    display: block;
    width: 15rem;
    font: normal normal 500 2rem/2.5rem Google Sans;
    text-align: center;
    background-color: transparent;
    border: none !important;
    outline: none !important;
}

.home-category-block {
    width: 100%;
}

.home-category {
    padding-top: 10rem;
    width: 100%;
}

.home-products-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 3rem;
    width: 100%;
}

.home-products-grid .product-layout {
    margin: 0;
    width: 18.6%;
}

.delivery {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
    margin-top: 25rem;
    margin-bottom: 9rem;
}

.delivery:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 100vw;
    height: 100%;
    background: #FAFAFA;
    border-radius: 3.5rem;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.delivery-image {
    position: relative;
    width: 52%;
}

.delivery-image img {
    position: absolute;
    right: 0;
    bottom: 0;
    display: block;
    width: calc(100% + 2rem);
}

.delivery-content {
    position: relative;
    padding: 9rem 1.9rem 9rem 0;
    width: 51.46%;
}

.delivery-content-title {
    margin-bottom: 3rem;
    font: normal normal bold 4.6rem/5rem Google Sans;
}

.delivery-content-subtitle {
    display: block;
    margin-bottom: 1.4rem;
    font: normal normal bold 3.4rem/5rem Google Sans;
}

.delivery-content-text {
    display: block;
    font: normal normal normal 2rem/3.6rem Google Sans;
}

.delivery-content-text:not(:last-child) {
    margin-bottom: 3rem;
}

.cafe {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 2rem;
    padding: 9rem 0;
}

.cafe:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 100vw;
    height: 100%;
    border: .2rem solid #DDDDDD;
    border-radius: 3.5rem;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    pointer-events: none;
}

.cafe-slider-block {
    position: relative;
    width: 82.4rem;
}

.cafe-pager {
    position: absolute;
    top: auto;
    left: 4rem;
    bottom: 4rem;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
}

.cafe-button {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    position: static;
    width: 7.5rem;
    height: 7.5rem;
    border-radius: 50%;
    border: .5rem solid var(--color-white);
    cursor: pointer;
}

.cafe-button:before {
    display: none;
}

.cafe-button svg {
    width: 100%;
    height: 100%;
    fill: var(--color-red);
}

.cafe-button:hover svg,
.cafe-button:focus svg,
.cafe-button:active svg {
    fill: var(--color-orange);
}

.cafe-slide img {
    display: block;
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 4.5rem;
}

.cafe-content {
    width: 85.4rem;
}

.cafe-content-title {
    margin-bottom: 4.2rem;
    font: normal normal bold 4.6rem/5rem Google Sans;
}

.cafe-content-text {
    display: block;
    font: normal normal normal 2.2rem/3.6rem Google Sans;
}

.cafe-content-text:not(:last-child) {
    margin-bottom: 3rem;
}

/*footer*/
footer {
    margin-top: 9rem;
    width: 100%;
    border-radius: 3.5rem;
    background-color: var(--color-orange);
}

.footer {
    padding: 9rem 0;
}

.footer-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-around;
}

.footer-logo {
    width: 46.1rem;
    height: 11.8rem;
}

.footer-logo-link {
    display: block;
    width: 100%;
    height: 100%;
}

.footer-logo-link img {
    display: block;
    width: 100%;
    max-height: 100%;
}

.footer-logo-link .footer-logo-image-mobile {
    display: none;
}

.footer-top-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: .3rem;
    font: normal normal bold 2.8rem/3.5rem Google Sans;
    color: var(--color-black);
}

.address-block .schedule {
    display: none;
}

.footer-text-link {
    position: relative;
    color: var(--color-black);
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}

.footer-text-link:before {
    content: '';
    position: absolute;
    bottom: -.2rem;
    left: 50%;
    display: block;
    width: 0;
    height: .2rem;
    background-color: var(--color-black);
    -webkit-transition: width 0.3s;
    -o-transition: width 0.3s;
    transition: width 0.3s;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.footer-text-link:hover:before,
.footer-text-link:focus:before,
.footer-text-link:active:before {
    width: 100%;
}

.footer-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-around;
    padding: 6.2rem 0;
}

.footer-center-text {
    font: normal normal bold 2.4rem/3rem Google Sans;
}
.footer-alert .footer-center-text {
    text-align: center;
    font: normal normal bold 1.9rem/3rem Google Sans;
} 

.footer-center-text br {
    display: none;
}

.footer-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 4.7rem;
    border-top: .2rem solid var(--color-black);
}

.footer-bottom-text {
    font: normal normal bold 1.8rem/6.5rem Google Sans;
}

a.footer-bottom-text {
    color: var(--color-black);
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}

a.footer-bottom-text span {
    position: relative;
}

a.footer-bottom-text span:before {
    content: '';
    position: absolute;
    bottom: -.2rem;
    left: 50%;
    display: block;
    width: 100%;
    height: .2rem;
    background-color: var(--color-black);
    -webkit-transition: width 0.3s;
    -o-transition: width 0.3s;
    transition: width 0.3s;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

a.footer-bottom-text:hover span:before,
a.footer-bottom-text:focus span:before,
a.footer-bottom-text:active span:before {
    width: 0;
}

.footer-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2.2rem;
}

.footer-menu .header-menu {
    margin-bottom: 2rem;
}

.footer-menu .header-menu-link {
    position: relative;
}

.footer-alert{
    padding-top: 2rem;
    padding-bottom: 1.5rem;
}

.footer-menu .header-menu-link:before {
    content: '';
    position: absolute;
    bottom: -.2rem;
    left: 50%;
    display: block;
    width: 0;
    height: .2rem;
    background-color: var(--color-black);
    -webkit-transition: width 0.3s;
    -o-transition: width 0.3s;
    transition: width 0.3s;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.footer-menu .header-menu-link:hover:before,
.footer-menu .header-menu-link:focus:before,
.footer-menu .header-menu-link:active:before {
    width: calc(100% - 2rem);
}

.alert.alert-success {
    position: fixed;
    top: 20%;
    right: 0;
    z-index: 5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 3rem;
    min-width: 40rem;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: 25rem;
    min-height: 20rem;
    font: normal normal bold 2.4rem / 3rem Google Sans;
    text-align: center;
    background-color: var(--color-white);
    border-radius: 1rem;
    -webkit-box-shadow: 0 0 1rem .2rem var(--color-grey-light);
    box-shadow: 0 0 1rem .2rem var(--color-grey-light);
    opacity: 0;
    -webkit-transition: right 0.6s, opacity 0.6s;
    -o-transition: right 0.6s, opacity 0.6s;
    transition: right 0.6s, opacity 0.6s;
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
    pointer-events: none;
}

.alert.alert-success._active {
    right: 50%;
    opacity: 1;
    -webkit-transition: right 0.6s, opacity 0.6s;
    -o-transition: right 0.6s, opacity 0.6s;
    transition: right 0.6s, opacity 0.6s;
    pointer-events: all;
}

.alert.alert-success span {
    color: var(--color-grey-dark);
}

.alert.alert-success a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 5rem;
    width: 100%;
    font: normal normal normal 2rem / 3rem Google Sans;
    color: var(--color-black);
    background-color: var(--color-orange);
    border-radius: 1rem;
    -webkit-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    transition: background-color 0.3s;
}

.alert.alert-success a:hover,
.alert.alert-success a:focus,
.alert.alert-success a:active {
    background-color: var(--color-red);
}

.slider-fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .9);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 1s, visibility 1s;
    -o-transition: opacity 1s, visibility 1s;
    transition: opacity 1s, visibility 1s;
    pointer-events: none;
}

.slider-fixed._open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.home-slider-fixed {
    width: 100%;
}

.home-slider-fixed-pager {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.slider-fixed-wrapper {
    position: relative;
    padding: 0 4rem;
    width: 58.6rem;
}

.home-slider-fixed-slide {
    position: relative;
}

.home-slider-fixed-slide img {
    display: block;
    width: 100%;
    border-radius: 2.5rem;
}

.home-slider-fixed-progress {
    position: absolute;
    top: 3rem;
    left: 50%;
    display: block;
    width: 90%;
    height: .5rem;
    background-color: var(--color-grey-light);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.home-slider-fixed-progress:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 0;
    height: 100%;
    background-color: var(--color-red);
    -webkit-transition: width 5s linear;
    -o-transition: width 5s linear;
    transition: width 5s linear;
}

.home-slider-fixed-progress._active:before {
    width: 100%;
}

.slider-fixed-close {
    position: absolute;
    top: -2rem;
    right: -2rem;
    display: block;
    padding-bottom: .4rem;
    width: 4.5rem;
    height: 4.5rem;
    color: var(--color-white);
    font-weight: 700;
    font-size: 3rem;
    line-height: 1;
    border-radius: 50%;
    background-color: var(--color-red);
    border: .4rem solid var(--color-white);
    -webkit-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    transition: background-color 0.3s;
}

.slider-fixed-close:hover,
.slider-fixed-close:focus,
.slider-fixed-close:active {
    background-color: var(--color-orange);
}

/*error*/
.error-page {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 50vh;
}

.error-page-title {
    margin-bottom: 2.3rem;
    font: normal normal bold 20.2rem/25.3rem Google Sans;
    color: var(--color-red);
}

.error-page-text {
    margin-bottom: 14.4rem;
    font: normal normal bold 4rem/7rem Google Sans;
    text-align: center;
}

.error-page-text a {
    color: var(--color-black);
    white-space: nowrap;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}

.error-page-text a:hover,
.error-page-text a:focus,
.error-page-text a:active {
    color: var(--color-red);
}

.error-page-continue {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 59rem;
    height: 8rem;
    font: normal normal bold 2.6rem/5rem Google Sans;
    color: var(--color-white);
    background-color: var(--color-red);
    border-radius: 2.1rem;
}

/*simplecheckout*/
.simplecheckout-row {
    padding: 4rem 2rem 6rem 2rem;
    background: #F6F6F6 0% 0% no-repeat padding-box;
    border-radius: 3.5rem;
}

.simplecheckout {
    margin: 0 auto;
    max-width: 59rem;
    width: 100%;
}

.simplecheckout-title {
    margin-bottom: 5.2rem;
    font: normal normal bold 4.6rem/5.7rem Google Sans;
    text-align: center;
}

.simple-content {
    margin: 0 !important;
    width: 100%;
}

#simplecheckout_form_0 {
    width: 100%;
}

.simplecheckout {
    width: 100%;
}

.simplecheckout-step {
    width: 100%;
}

.simplecheckout-left-column {
    margin-right: 0;
    width: 100%;
}

.simplecheckout-block {
    padding: 2rem 1.8rem;
    width: 100%;
    border-radius: 1.7rem;
    background: #EFEFEF 0% 0% no-repeat padding-box;
}

.simplecheckout-block .checkout-heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 0;
    font: normal normal bold 2.8rem/1 Google Sans;
    background-color: transparent;
}

.simplecheckout-block .checkout-heading:after {
    display: none;
}

.checkout-heading-button {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

.checkout-heading-button a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 14.4rem;
    height: 3.6rem;
    font: normal normal 500 1.8rem/2.2rem Google Sans;
    color: var(--color-black);
    background: #DDDDDD 0% 0% no-repeat padding-box;
    border-radius: 1.1rem;
    -webkit-transition: color .3s, background-color 0.3s;
    -o-transition: color .3s, background-color 0.3s;
    transition: color .3s, background-color 0.3s;
}

.checkout-heading-button a:hover,
.checkout-heading-button a:focus,
.checkout-heading-button a:active {
    color: var(--color-white);
    background-color: var(--color-red);
}

.simplecheckout .simplecheckout-cart {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.5rem;
    border: none;
}

.simplecheckout-product {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 1.5rem 2rem;
    width: 100%;
    background-color: var(--color-white);
    border-radius: 1.7rem;
}

.simplecheckout-product-image {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 1.5rem;
    width: 11.6rem;
    height: 11.6rem;
    border-radius: 1rem;
}

.simplecheckout-product-image img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 1rem;
}

.simplecheckout-product-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-right: auto;
}

.simplecheckout-product-name {
    display: block;
    margin-bottom: .4rem;
    font: normal normal 500 1.8rem/2rem Google Sans;
    color: var(--color-black);
}

.simplecheckout-product-weight {
    display: block;
    margin-bottom: 2rem;
    font: normal normal normal 1.6rem/2rem Google Sans;
    color: #818181;
}

.simplecheckout .simplecheckout-product-group {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 10.4rem;
    height: 3rem;
}

.simplecheckout-product-group .input-group-btn {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
}

.simplecheckout-product-group button {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    outline: none !important;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    -o-transition: transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}

.simplecheckout-product-group button:hover,
.simplecheckout-product-group button:focus,
.simplecheckout-product-group button:active {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.simplecheckout-product-group button svg {
    display: block;
    width: 100%;
    height: 100%;
}

.simplecheckout-product-group input {
    display: block;
    padding: 0;
    width: 4.4rem;
    height: 3.5rem;
    min-width: unset !important;
    font: normal normal 500 2rem/2.5rem Google Sans;
    text-align: center;
    border: none;
    outline: none !important;
}

.simplecheckout-product-control {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.simplecheckout-product-delete {
    display: block;
    width: 3.5rem;
    height: 3.5rem;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    -o-transition: transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}

.simplecheckout-product-delete:hover,
.simplecheckout-product-delete:focus,
.simplecheckout-product-delete:active {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.simplecheckout-product-delete svg {
    display: block;
    width: 100%;
    height: 100%;
}

.simplecheckout-product-price {
    margin-top: auto;
    font: normal normal bold 2.2rem/2.7rem Google Sans;
}

.simplecheckout-cart-total {
    padding-top: 2rem;
    font: normal normal bold 2rem/2.5rem Google Sans;
    border: none;
}

.simplecheckout-cart-total input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1rem 1.5rem;
    height: 4.8rem;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border-radius: 1.7rem;
    border: .1rem solid var(--color-white);
    -webkit-transition: border .3s;
    -o-transition: border .3s;
    transition: border .3s;
}

.simplecheckout-cart-total input:hover,
.simplecheckout-cart-total input:focus {
    border: .1rem solid var(--color-orange);
    outline: none;
}

/*.simplecheckout-cart-total#total_shipping,*/
.simplecheckout-cart-total#total_sub_total {
    display: none;
}

#simplecheckout_form_0 .simplecheckout-cart-total-remove {
    display: none !important;
}

#simplecheckout_customer .simplecheckout-block-content {
    position: relative;
    margin-bottom: 1.5rem;
    padding: 0;
    border: none;
}

.simplecheckout fieldset {
    padding: 0;
    width: 100%;
    border: none;
}

#simplecheckout_customer label {
    display: none !important;
}

#simplecheckout_customer .col-sm-8 {
    position: relative;
    width: 100%;
}

#simplecheckout_customer .col-sm-8 input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 2.3rem 2rem;
    font: normal normal 500 1.8rem/2.2rem Google Sans;
    color: var(--color-black);
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border-radius: 1.7rem;
    border: .1rem solid var(--color-white);
    -webkit-transition: border .3s;
    -o-transition: border .3s;
    transition: border .3s;
}

#simplecheckout_customer .col-sm-8 input::-webkit-input-placeholder {
    font: normal normal 500 1.8rem/2.2rem Google Sans;
    color: var(--color-black);
}

#simplecheckout_customer .col-sm-8 input::-moz-placeholder {
    font: normal normal 500 1.8rem/2.2rem Google Sans;
    color: var(--color-black);
}

#simplecheckout_customer .col-sm-8 input:-ms-input-placeholder {
    font: normal normal 500 1.8rem/2.2rem Google Sans;
    color: var(--color-black);
}

#simplecheckout_customer .col-sm-8 input::-ms-input-placeholder {
    font: normal normal 500 1.8rem/2.2rem Google Sans;
    color: var(--color-black);
}

#simplecheckout_customer .col-sm-8 input::placeholder {
    font: normal normal 500 1.8rem/2.2rem Google Sans;
    color: var(--color-black);
}

#simplecheckout_customer .col-sm-8 input:hover,
#simplecheckout_customer .col-sm-8 input:focus {
    border-color: var(--color-red);
    outline: none;
}

.simplecheckout-rule-group {
    position: absolute;
    top: 50%;
    right: 2rem;
    font: normal normal 500 1.2rem/1.5rem Google Sans;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.form-grouprequired:not(:last-child) {
    margin-bottom: 1.5rem;
}

#simplecheckout_shipping {
    margin-bottom: 0;
    padding-bottom: 1.5rem;
    border-radius: 1.7rem 1.7rem;
}

.simplecheckout .simplecheckout-block-content {
    padding: 0;
    width: 100%;
}

#simplecheckout_shipping .simplecheckout-block-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 1.7rem;
    background-color: var(--color-white);
}

#simplecheckout_shipping .simplecheckout-block-content .radio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 50%;
    height: 4.8rem;
}

#simplecheckout_shipping .simplecheckout-block-content .radio label {
    display: block;
    width: 100%;
    height: 100%;
    font: normal normal 500 1.8rem/2.2rem Google Sans;
    cursor: pointer;
}

#simplecheckout_shipping .simplecheckout-block-content input {
    display: none;
}

#simplecheckout_shipping .simplecheckout-block-content .radio span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 1.3rem;
    width: 100%;
    height: 100%;
    border-radius: 1.5rem;
    -webkit-transition: background-color .3s;
    -o-transition: background-color .3s;
    transition: background-color .3s;
}

#simplecheckout_shipping .simplecheckout-block-content .radio label:hover span,
#simplecheckout_shipping .simplecheckout-block-content .radio label:focus span,
#simplecheckout_shipping .simplecheckout-block-content .radio label:active span,
#simplecheckout_shipping .simplecheckout-block-content input:checked+span {
    background-color: #ECECEC;
}

.simplecheckout_shipping_pickup_info {
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 1.5rem;
    padding: 2.3rem;
    width: 100%;
    font: normal normal 500 1.8rem/2.2rem Google Sans;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border-radius: 1.7rem;
}

#simplecheckout_shipping_address {
    position: relative;
    margin-bottom: 0;
    padding-top: 0;
    border-radius: 0 0 1.7rem 1.7rem;
}

#simplecheckout_shipping_address:before {
    content: '';
    position: absolute;
    top: -1.5rem;
    left: 0;
    display: block;
    width: 100%;
    height: 1.5rem;
    background-color: #ECECEC;
}

#simplecheckout_shipping_address label {
    display: none !important;
}

#simplecheckout_shipping_address .col-sm-8 {
    width: 100%;
}

#simplecheckout_shipping_address fieldset {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 2rem 1.5rem;
}

#simplecheckout_shipping_address fieldset input,
#shipping_field26,
#shipping_field25 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 2.3rem 2rem;
    font: normal normal 500 1.8rem / 2.2rem Google Sans;
    color: var(--color-black);
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border-radius: 1.7rem;
    border: .1rem solid var(--color-white);
    -webkit-transition: border .3s;
    -o-transition: border .3s;
    transition: border .3s;
}

#shipping_field25 {
    pointer-events: none;
}

#simplecheckout_shipping_address fieldset input:hover,
#simplecheckout_shipping_address fieldset input:focus,
#shipping_field26:hover,
#shipping_field26:focus,
#shipping_field25:hover,
#shipping_field25:focus {
    border-color: var(--color-red);
    outline: none;
}

#simplecheckout_shipping_address fieldset input::-webkit-input-placeholder,
#shipping_field26::-webkit-input-placeholder,
#shipping_field25::-webkit-input-placeholder {
    font: normal normal 500 1.8rem / 2.2rem Google Sans;
    color: var(--color-black);
}

#simplecheckout_shipping_address fieldset input::-moz-placeholder,
#shipping_field26::-moz-placeholder,
#shipping_field25::-moz-placeholder {
    font: normal normal 500 1.8rem / 2.2rem Google Sans;
    color: var(--color-black);
}

#simplecheckout_shipping_address fieldset input:-ms-input-placeholder,
#shipping_field26:-ms-input-placeholder,
#shipping_field25:-ms-input-placeholder {
    font: normal normal 500 1.8rem / 2.2rem Google Sans;
    color: var(--color-black);
}

#simplecheckout_shipping_address fieldset input::-ms-input-placeholder,
#shipping_field26::-ms-input-placeholder,
#shipping_field25::-ms-input-placeholder {
    font: normal normal 500 1.8rem / 2.2rem Google Sans;
    color: var(--color-black);
}

#simplecheckout_shipping_address fieldset input::placeholder,
#shipping_field26::placeholder,
#shipping_field25::placeholder {
    font: normal normal 500 1.8rem / 2.2rem Google Sans;
    color: var(--color-black);
}

.row-shipping_field26,
.row-shipping_field25 {
    margin-top: 1.5rem;
}

label[for="shipping_field26"],
label[for="shipping_field25"] {
    display: none !important;
}

#simplecheckout_shipping_address .form-group {
    width: 100%;
}

#simplecheckout_shipping_address .row-shipping_address_field20 {
    width: 48%;
}

#simplecheckout_shipping_address .row-shipping_address_field21 {
    width: 48%;
}

#simplecheckout_shipping_address .row-shipping_address_field22 {
    width: 48%;
}

#simplecheckout_shipping_address .row-shipping_address_field23 {
    width: 48%;
}

#simplecheckout_payment .simplecheckout-block-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

#simplecheckout_payment {
    margin-top: 1.5rem;
}

#simplecheckout_payment label {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.8rem;
    width: 100%;
    font: normal normal 500 1.8rem/2.2rem Google Sans;
    cursor: pointer;
}

input[name="payment_method"] {
    display: none;
}

.payment_method_decor {
    position: relative;
    display: block;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: .7rem;
    background-color: var(--color-white);
}

.payment_method_decor:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background-color: var(--color-red);
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
}

input:checked+.payment_method_decor:before {
    opacity: 1;
}

#simplecheckout_button_confirm,
#button-confirm,
#continue-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 2rem 2.4rem 2rem 7.4rem;
    width: 100%;
    height: 8rem;
    font: normal normal bold 2.6rem/1 Google Sans;
    color: var(--color-white);
    border-radius: 2.1rem;
    background-color: var(--color-red);
    -webkit-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

#simplecheckout_button_confirm:hover,
#button-confirm:hover,
#simplecheckout_button_confirm:focus,
#button-confirm:focus,
#simplecheckout_button_confirm:active,
#button-confirm:active,
#continue-button:hover,
#continue-button:focus,
#continue-button:active {
    background-color: var(--color-orange);
}

#simplecheckout_button_confirm svg,
#button-confirm svg,
#continue-button svg {
    margin-right: 2.4rem;
    width: 2.7rem;
    height: 3.2rem;
}

#buttons {
    position: relative;
    padding: 0;
    width: 100%;
    background-color: transparent;
}

#buttons svg {
    position: absolute;
    top: 50%;
    left: 2rem;
    width: 2.7rem;
    height: 3.2rem;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    pointer-events: none;
}

.simplecheckout_button_confirm_price {
    position: absolute;
    top: 50%;
    right: 2rem;
    display: block;
    font: normal normal bold 2.6rem/5rem Google Sans;
    color: var(--color-white);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    pointer-events: none;
}

#button-confirm {
    padding-left: 7.1rem;
    text-align: start;
}

#agreement_checkbox {
    margin: 2.8rem 0 0 0;
    width: 100%;
    text-align: center;
    font: normal normal normal 1.4rem/2rem Google Sans;
    color: var(--color-black);
}

#agreement_checkbox a {
    color: var(--color-black);
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}

#agreement_checkbox a:hover,
#agreement_checkbox a:focus,
#agreement_checkbox a:active {
    color: var(--color-red);
}

.simplecheckout-total-info {
    margin-bottom: 3rem;
    padding: 2.3rem 2rem;
    background: #EFEFEF 0% 0% no-repeat padding-box;
    border-radius: 1.7rem;
}

.simplecheckout-total-info .checkout-heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 0;
    font: normal normal bold 2.8rem / 1 Google Sans;
    background-color: transparent;
}

.simplecheckout-total-info-text {
    width: 100%;
    font: normal normal 500 2rem/3.2rem Google Sans;
}

.simplecheckout-total-info-totals {
    margin-top: 2rem;
    width: 100%;
}

.simplecheckout-total-info-totals .simplecheckout-total-info-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 2rem;
}

/*#total_shipping {*/
/*    display: none;*/
/*}*/

#total_sub_total {
    display: none;
}

.simplecheckout-total-info-totals #total_total {
    font-weight: bold;
    font-size: 2.4rem;
    line-height: 1.4;
}

#simplecheckout_payment_form {
    display: none !important;
}

#content .button-empty {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 5rem !important;
    padding: 2.4rem 2.7rem;
    height: 5rem;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    font: normal normal bold 2.6rem/1 Google Sans;
    color: var(--color-white);
    background: #DD0B0B 0% 0% no-repeat padding-box;
    border-radius: 2.1rem;
    -webkit-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    transition: background-color 0.3s;
}

.button-empty:hover,
.button-empty:focus,
.button-empty:active {
    background-color: var(--color-orange);
}

.simplecheckout .content,
#common-success .content {
    font: normal normal 500 2rem/3.2rem Google Sans;
}

.success {
    margin: 0 auto;
    width: 100%;
}

.success-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-line-pack: center;
    align-content: center;
}

.success-icon {
    margin: 0 auto 5.2rem auto;
    width: 18.8rem;
    height: 18.8rem;
}

.success-icon img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.success-text {
    margin-bottom: 14.4rem;
    font: normal normal bold 4rem/7rem Google Sans;
    text-align: center;
}

.success-text span {
    font: normal normal bold 4.6rem/5.7rem Google Sans;
}

#content .success-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto;
    width: 59rem;
    height: 8rem;
    font: normal normal bold 2.6rem/5rem Google Sans;
    border-radius: 2.1rem;
    -webkit-transition: background-color .3s;
    -o-transition: background-color .3s;
    transition: background-color .3s;
}

#content .success-button:hover,
#content .success-button:focus,
#content .success-button:active {
    background-color: var(--color-orange);
}

.row-customer_firstname {
    margin-bottom: 1.5rem;
}

.information {
    font: normal normal normal 1.6rem/2.2rem Google Sans;
}

#simplecheckout_alert {
    margin-top: 20px;
    background-color: #FFC672;
    padding: 29px 34px;
}

#simplecheckout_alert span {
    font: normal normal 500 2.1rem / 2.8rem Google Sans;
    letter-spacing: 0px;
}

@media (max-width: 1600px) {
    html {
        font-size: calc(100vw / 160);
    }

    /*header*/
    .header-info-phone {
        font: normal normal bold 2.8rem/4.3rem Google Sans;
    }

    .header-logo {
        width: 22.4rem;
        height: auto;
    }

    .header-address {
        margin-right: 5rem;
        font: normal normal bold 1.8rem/2.7rem Google Sans;
    }

    .header-menu {
        gap: 2rem;
    }

    .header-menu-item:not(:last-child):before {
        right: -1rem;
    }

    .header-menu-link {
        font-size: 2rem;
    }

    .header-fixed .header-menu-link {
        font-size: 1.6rem;
    }

    /*home*/
    .home-products-grid .product-layout {
        margin-bottom: 0;
        width: 18.3%;
    }

    .cafe-content-title {
        margin-bottom: 3rem;
        font: normal normal bold 4rem/5rem Google Sans;
    }

    .cafe-content-text {
        font: normal normal normal 1.8rem/3.6rem Google Sans;
    }

    .cafe-content-text:not(:last-child) {
        margin-bottom: 2rem;
    }

    .delivery-image {
        width: 44%;
    }

    .delivery {
        margin-top: 10rem;
    }

    .delivery-content-text {
        font: normal normal normal 1.8rem/3.6rem Google Sans;
    }

    /*footer*/
    .footer {
        padding: 4rem 0;
    }

    .footer-logo {
        width: 33rem;
        height: auto;
    }

    .footer-top-text {
        font: normal normal bold 2.2rem/3.5rem Google Sans;
    }

    .footer-center {
        padding: 3rem 0;
    }


    .footer-center-text {
        font: normal normal bold 2rem/3rem Google Sans;
    }
   .footer-alert .footer-center-text {
        font: normal normal bold 1.6rem/3rem Google Sans;
    } 

    .footer-menu .header-menu {
        margin-bottom: 4rem;
        margin-top: 1rem;
    }

    .footer-bottom {
        padding-top: 2rem;
    }
}

@media (max-width: 1400px) {
    html {
        font-size: calc(100vw / 140);
    }

    .page-title {
        font: normal normal bold 4rem/5.7rem Google Sans;
    }

    /*header*/
    .header-menu {
        gap: 1rem;
    }

    .header-menu-item:not(:last-child):before {
        right: -.8rem;
    }

    .header-fixed .header-menu {
        gap: .5rem;
    }

    .header-fixed .header-menu-item:not(:last-child):before {
        right: -.5rem;
    }

    .header-info-phone {
        font: normal normal bold 2.2rem/4.3rem Google Sans;
    }

    .header-logo {
        width: 19rem;
        height: auto;
    }

    #cart-total small:first-child {
        font: normal normal bold 1.8rem/3rem Google Sans;
    }

    #cart-total small:last-child {
        font: normal normal 1.6rem/2.5rem Google Sans;
    }

    .cart-button svg {
        width: 4rem;
        height: 4rem;
    }

    .cart-button {
        gap: 1rem;
        padding: 1rem;
    }

    .header-address {
        max-width: 17rem;
    }

    .header-menu-link {
        font-size: 1.8rem;
    }

    .header-menu-item:not(:last-child):before {
        right: -.8rem;
    }

    .header-fixed .header-menu-link {
        font-size: 1.6rem;
    }

    .header-fixed-logo {
        width: 5rem;
        height: 5rem;
    }

    /*home*/
    .home-products-grid .product-layout {
        width: 23.2%;
    }

    .delivery-content {
        padding: 5rem 0;
    }

    .cafe-slider-block {
        width: 50%;
    }

    .cafe-content {
        width: 50%;
    }

    .cafe-content-text {
        font: normal normal normal 1.8rem/3rem Google Sans;
    }

    .delivery-content-title {
        font: normal normal bold 4rem/5rem Google Sans;
    }

    .delivery-content-subtitle {
        font: normal normal bold 3rem/5rem Google Sans;
    }

    .delivery-content-text {
        font: normal normal normal 1.8rem/3rem Google Sans;
    }

    /*footer*/
    .footer-top {
        display: -ms-grid;
        /*display: grid;*/
        -ms-grid-columns: auto 0px auto;
        grid-template-columns: repeat(2, auto);
        -ms-grid-rows: auto 0px auto;
        grid-template-rows: repeat(2, auto);
        grid-column-gap: 0px;
        grid-row-gap: 0px;
    }

    .footer-top>*:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }

    .footer-top>*:nth-child(2) {
        -ms-grid-row: 1;
        -ms-grid-column: 3;
    }

    .footer-top>*:nth-child(3) {
        -ms-grid-row: 3;
        -ms-grid-column: 1;
    }

    .footer-top>*:nth-child(4) {
        -ms-grid-row: 3;
        -ms-grid-column: 3;
    }

    .footer-logo {
        -ms-grid-row: 1;
        -ms-grid-row-span: 2;
        -ms-grid-column: 1;
        -ms-grid-column-span: 1;
        grid-area: 1 / 1 / 3 / 2;
    }

    .footer-top-text:nth-child(2) {
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
        -ms-grid-column: 2;
        -ms-grid-column-span: 1;
        grid-area: 1 / 2 / 2 / 3;
    }

    .footer-top-text:nth-child(3) {
        -ms-grid-row: 2;
        -ms-grid-row-span: 1;
        -ms-grid-column: 2;
        -ms-grid-column-span: 1;
        grid-area: 2 / 2 / 3 / 3;
    }

    .footer-top-text {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: end;
        font: normal normal bold 1.8rem/3.5rem Google Sans;
    }

    .footer-center {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-around;
        padding: 4rem 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .footer-bottom {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: auto 2rem auto;
        grid-template-columns: repeat(2, auto);
        -ms-grid-rows: auto 0 auto;
        grid-template-rows: repeat(2, auto);
        grid-column-gap: 2rem;
        grid-row-gap: 0;
    }

    .footer-bottom>*:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }

    .footer-bottom>*:nth-child(2) {
        -ms-grid-row: 1;
        -ms-grid-column: 3;
    }

    .footer-bottom>*:nth-child(3) {
        -ms-grid-row: 3;
        -ms-grid-column: 1;
    }

    .footer-bottom>*:nth-child(4) {
        -ms-grid-row: 3;
        -ms-grid-column: 3;
    }

    .footer-links {
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
        -ms-grid-column: 1;
        -ms-grid-column-span: 2;
        grid-area: 1 / 1 / 2 / 3;
    }

    .footer-bottom-text-powered {
        -ms-grid-row: 2;
        -ms-grid-row-span: 1;
        -ms-grid-column: 1;
        -ms-grid-column-span: 1;
        grid-area: 2 / 1 / 3 / 2;
    }

    .footer-bottom-text-develop {
        -ms-grid-row: 2;
        -ms-grid-row-span: 1;
        -ms-grid-column: 2;
        -ms-grid-column-span: 1;
        grid-area: 2 / 2 / 3 / 3;
    }

    .footer-links {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

@media (max-width: 1200px) {
    html {
        font-size: calc(100vw / 120);
    }

    /*header*/
    .header-row {
        padding: 9.7rem 0 0 0;
    }

    .header {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 10;
        margin-top: 0;
        padding: 1.4rem 2.1rem;
        width: 100%;
        border-radius: 0;
    }

    .header-address {
        display: none;
    }

    .header-logo {
        width: auto;
        height: 4.6rem;
    }

    .header-logo-link {
        height: 100%;
    }

    .header-cart {
        margin: 0 0 0 auto;
    }

    .cart-products {
        top: calc(100% + 1.5rem);
        width: 34rem;
        min-height: 24.3rem;
        border-radius: 1rem;
    }

    .cart-empty-image {
        margin-bottom: 1rem;
        width: 8rem;
        height: 8rem;
    }

    .cart-empty-text {
        margin-bottom: 2.5rem;
        font: normal normal bold 1.8rem/2rem Google Sans;
    }

    .cart-empty-button {
        padding: 1.5rem;
        font: normal normal bold 1.4rem/1.7rem Google Sans;
        border-radius: 1rem;
    }

    .cart-full {
        padding: 2rem 1.1rem;
    }

    .cart-products-top {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 1.9rem;
        margin-bottom: 2rem;
    }

    .cart-products-delete {
        padding: .7rem 1.4rem;
        font: normal normal 500 1.4rem/1.7rem Google Sans;
        border-radius: 1rem;
    }

    .cart-products-label span {
        font: normal normal bold 1.6rem/2rem Google Sans;
    }

    .cart-full-grid {
        max-height: 25.4rem;
    }

    .cart-product {
        padding: 1rem;
    }

    .cart-product-image {
        margin-right: 1rem;
        width: 8rem;
        height: 8rem;
    }

    .cart-product-info-name {
        font: normal normal 500 1.4rem/1.6rem Google Sans;
    }

    .cart-product-info-wight {
        font: normal normal normal 1.3rem/1.7rem Google Sans;
    }

    .cart-product-group button,
    .cart-product-control-delete {
        width: 2.5rem;
        height: 2.6rem;
    }

    .cart-product-group .input-number {
        height: 2.5rem;
        font: normal normal 500 1.5rem/1.8rem Google Sans;
    }

    .cart-product-info-price {
        font: normal normal bold 2rem/2.7rem Google Sans;
    }

    .cart-product-info-price-mobile {
        display: block;
    }

    .cart-product-info-price-desk {
        display: none;
    }

    .cart-product-group-desk {
        display: none;
    }

    .cart-product-group-mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-top: auto;
    }

    .cart-full-link {
        padding: 1.4rem 1.7rem;
        font: normal normal bold 1.4rem/1.7rem Google Sans;
        border-radius: 1rem;
    }

    .cart-button {
        gap: 1rem;
        padding: .6rem .9rem;
        border-radius: 1rem;
    }

    .cart-button svg {
        width: 3.4rem;
        height: 3.4rem;
    }

    #cart-total small:first-child {
        font: normal normal bold 1.6rem/2rem Google Sans;
    }

    #cart-total small:last-child {
        font: normal normal 1.4rem/1.7rem Google Sans;
    }

    .header-fixed {
        display: none;
    }

    .header-menu {
        gap: .5rem;
        margin-bottom: 3.9rem;
    }

    .header-menu-link {
        padding: .5rem .8rem;
        font-size: 1.6rem;
    }

    .header-menu-item:not(:last-child):before {
        right: -0.5rem;
    }

    .header-fixed-logo {
        width: 5rem;
        height: 5rem;
    }

    .header-fixed .header-menu {
        gap: 1rem;
    }

    .header-fixed .header-menu-link {
        padding: 0 .5rem;
        font-size: 1.4rem;
    }

    .header-fixed .header-menu-item:not(:last-child):before {
        right: -0.8rem;
    }

    .header-address {
        display: none;
    }

    .header-burger {
        display: block;
        width: 4.6rem;
        height: 4.6rem;
        margin-left: 6.3rem;
        -webkit-transition: -webkit-transform 0.3s;
        transition: -webkit-transform 0.3s;
        -o-transition: transform 0.3s;
        transition: transform 0.3s;
        transition: transform 0.3s, -webkit-transform 0.3s;
    }

    .header-burger svg {
        width: 100%;
        height: 100%;
    }

    .header-burger:hover,
    .header-burger:focus,
    .header-burger:active {
        -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
        transform: scale(1.05);
    }

    .header-menu {
        display: none;
    }

    .header-mobile-fixed {
        position: fixed;
        top: 7.6rem;
        left: -110%;
        z-index: 10;
        display: block;
        padding: 3rem 0 2.4rem 0;
        width: 100%;
        max-width: 48rem;
        height: calc(100% - 7.6rem);
        background: #F6F6F6 0% 0% no-repeat padding-box;
        -webkit-transition: left 0.6s;
        -o-transition: left 0.6s;
        transition: left 0.6s;
    }

    .header-mobile-fixed._open {
        left: 0;
    }

    .header-mobile-fixed:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        display: block;
        width: 100%;
        height: 3rem;
        background: #EFEFEF 0% 0% no-repeat padding-box;
    }

    .header-mobile {
        height: 100%;
        width: 100%;
        overflow-y: auto;
    }

    .header-mobile-fixed .header-menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin: 0;
        padding-bottom: 3rem;
        background: #EFEFEF 0% 0% no-repeat padding-box;
    }

    .header-menu {
        gap: 0;
    }

    .header-menu-item:not(:last-child):before {
        display: none;
    }

    .header-menu-item {
        width: 100%;
    }

    .header-menu-link {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        padding: 1.3rem 2rem;
        width: 100%;
        border-radius: 0;
        -webkit-transition: background-color 0.3s;
        -o-transition: background-color 0.3s;
        transition: background-color 0.3s;
    }

    .header-menu-link:hover,
    .header-menu-link:focus,
    .header-menu-link:active {
        background-color: var(--color-orange);
    }

    .header-mobile-fixed .header-info {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        gap: 1.2rem;
        padding: 2.4rem 2.1rem;
    }

    .header-info-phone {
        font: normal normal bold 2.6rem/3.2rem Google Sans;
    }

    .header-mobile-fixed .header-info-phone {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 20.3rem;
        height: 5rem;
        font: normal normal bold 2.2rem / 4.3rem Google Sans;
        background: #ECECEC 0% 0% no-repeat padding-box;
        border-radius: 1.2rem;
    }

    .header-info-open {
        font: normal normal 500 1.4rem/2rem Google Sans;
    }

    .header-mobile-fixed .header-address {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin: 0 2rem;
        width: 100%;
        max-width: -webkit-max-content;
        max-width: -moz-max-content;
        max-width: max-content;
        font: normal normal bold 1.6rem / 2rem Google Sans;
    }

    /*home*/
    #common-home {
        margin-top: 1.57rem;
    }

    .home-slider-pager {
        position: static;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 3rem;
        margin: 3rem auto 0 auto;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }

    .home-slider-button {
        width: 6.5rem;
        height: 6.5rem;
        border: none;
    }

    .product-module {
        padding-bottom: 7rem;
        padding-top: 6.5rem;
    }

    .product-module-top {
        margin-bottom: 2rem;
    }

    .home-products-grid .product-layout {
        width: 31.5%;
    }

    .delivery {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .delivery-image {
        width: 40%;
        margin-top: auto;
    }

    .delivery-image img {
        position: static;
        width: 100%;
    }

    .delivery-content {
        padding: 5rem 0;
        width: 100%;
        max-width: 63rem;
    }

    .cafe-content {
        width: 59%;
    }

    .cafe-slider-block {
        padding-top: 9rem;
        width: 39%;
    }

    .cafe-button {
        width: 6.5rem;
        height: 6.5rem;
        border: none;
    }

    .cafe-pager {
        position: static;
        gap: 3rem;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-top: 3rem;
        width: 100%;
    }

    .cafe {
        gap: 3rem;
        padding: 6rem 0;
    }

    /*footer*/
    .footer-center-text {
        font: normal normal bold 1.8rem/3rem Google Sans;
    }
   .footer-alert .footer-center-text {
        font: normal normal bold 1.4rem/3rem Google Sans;
    } 
}

@media (max-width: 1024px) {
    html {
        font-size: calc(100vw / 102.4);
    }

    /*home*/
    .home-products-grid .product-layout {
        width: 31.2%;
    }

    /*footer*/
    .footer-logo {
        margin-bottom: 1.2rem;
        width: auto;
        height: 6.2rem;
    }

    .footer-top {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-top-text {
        font: normal normal bold 1.6rem/2.4rem Google Sans;
    }

    .footer-center {
        padding: 1.5rem 0 2rem 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        align-items: center;
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-center-text {
        font: normal normal bold 1.6rem/2.4rem Google Sans;
    }
  
   .footer-alert .footer-center-text {
        font: normal normal bold 1.2rem/2.4rem Google Sans;
    } 

    .footer-bottom-text {
        font: normal normal bold 1.4rem/2.2rem Google Sans;
    }

    .footer-bottom-text-powered {
        margin-bottom: 1.5rem;
        max-width: 23rem;
    }

    .footer-bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 2rem;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    /*error*/
    .error-page-title {
        font: normal normal bold 9.2rem/12.2rem Google Sans;
    }

    .error-page-text {
        margin-bottom: 3.4rem;
        font: normal normal bold 1.6rem/2.4rem Google Sans;
    }

    .error-page-continue {
        width: 32rem;
        height: 4.2rem;
        font: normal normal bold 1.6rem/1.7rem Google Sans;
        border-radius: 1rem;
    }

    #content .button-empty {
        padding: 2.4rem 2.7rem;
        height: 4.6rem;
        font: normal normal bold 1.6rem/1 Google Sans;
        border-radius: 1rem;
        -webkit-transition: background-color 0.3s;
        -o-transition: background-color 0.3s;
        transition: background-color 0.3s;
    }
}

@media (max-width: 992px) {
    html {
        font-size: calc(100vw / 99.2);
    }
}

@media (max-width: 850px) {
    html {
        font-size: calc(100vw / 85);
    }

    .page-title {
        margin-bottom: 2rem;
        font: normal normal bold 2.4rem/3rem Google Sans;
    }

    /*header*/
    .header-info-phone {
        font: normal normal bold 2rem/2.5rem Google Sans;
    }

    .header-mobile-fixed .header-info-phone {
        font: normal normal bold 2.2rem / 4.3rem Google Sans;
    }


    /*home*/
    .home-slider-block {
        padding: 0;
    }

    .home-slider-pager {
        position: static;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 1rem;
        margin-top: 1rem;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }

    .home-slider-button {
        width: 4.5rem;
        height: 4.5rem;
        border: none;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    .home-slider-block {
        position: relative;
        margin-bottom: 3rem;
        padding: 0 2.8rem;
    }

    .home-slider .swiper-slide {
        border-radius: 1rem;
    }

    .home-slider .swiper-slide img {
        border-radius: .5rem;
    }

    .home-slider-fixed-slide img {
        border-radius: 1rem;
    }

    .product-module {
        padding-bottom: 2.5rem;
        padding-top: 2.5rem;
    }

    .product-module:before {
        border-radius: 0;
    }

    .product-module-top {
        margin-bottom: 0;
    }

    .product-module-title {
        font: normal normal bold 2.4rem/3rem Google Sans;
    }

    .product-module-pager {
        gap: 1rem;
        height: 4.6rem;
    }

    .product-module-button {
        width: 4.7rem;
        height: 4.5rem;
    }

    .product-layout {
        margin: 2rem 0;
        padding: 0 0 1rem 0;
        border-radius: 1rem;
    }

    .product-module .product-layout {
        margin: 2rem 0;
    }

    .product-layout .image {
        margin-bottom: .7rem;
    }

    .product-layout .image img {
        border-radius: 1rem;
    }

    .product-layout .caption {
        padding: 0 1rem;
    }

    .product-layout .caption .name {
        margin-bottom: .5rem;
        font: normal normal 500 1.4rem/1.6rem Google Sans;
    }

    .product-layout .caption .weight {
        margin-bottom: 2rem;
        font: normal normal 1.3rem/1.7rem Google Sans;
    }

    .product-layout .caption .desc {
        display: none;
    }

    .button-cart-add {
        margin: 0 1rem;
        width: calc(100% - 2rem);
        font: normal normal 500 1.4rem/1.7rem Google Sans;
        border-radius: 1rem;
    }

    .button-cart-add svg {
        display: none;
    }

    .product-input-group {
        margin: 0 1rem;
        padding: 1.1rem;
        width: calc(100% - 2rem);
        border-radius: 1rem;
    }

    .product-input-group button {
        width: 2.4rem;
        height: 2.6rem;
    }

    .product-input-group input {
        width: 6rem;
        font: normal normal 500 1.4rem/1.7rem Google Sans;
    }

    .home-category {
        padding-top: 3rem;
    }

    .home-products-grid {
        gap: 2rem;
    }

    .home-products-grid .product-layout {
        width: 31.5%;
    }

    .delivery {
        margin-top: 3rem;
        margin-bottom: 3rem;
        padding-top: 3rem;
    }

    .delivery:before {
        border-radius: 0;
    }

    .delivery-content {
        padding: 2rem 0;
        width: 100%;
        max-width: 45.8rem;
    }

    .delivery-content-title {
        margin-bottom: 2rem;
        font: normal normal bold 2.4rem/3rem Google Sans;
    }

    .delivery-content-subtitle {
        margin-bottom: 0;
        font: normal normal bold 1.8rem/5rem Google Sans;
    }

    .delivery-content-text {
        font: normal normal normal 1.4rem/2.2rem Google Sans;
    }

    .cafe {
        padding: 2.5rem 0;
    }

    .cafe:before {
        width: 99vw;
        border-radius: 0;
    }

    .cafe-content-title {
        margin-bottom: 1rem;
        font: normal normal bold 2.4rem/3rem Google Sans;
    }

    .cafe-content-text {
        font: normal normal normal 1.4rem/2.2rem Google Sans;
    }

    .cafe-pager {
        position: static;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 1rem;
        margin-top: 2rem;
        width: 100%;
        height: -webkit-max-content;
        height: -moz-max-content;
        height: max-content;
    }

    .cafe-button {
        width: 4.5rem;
        height: 4.5rem;
        border: none;
    }

    .cafe-slide img {
        border-radius: 1.5rem;
    }

    /*footer*/
    footer {
        margin-top: 3rem;
        border-radius: 0;
    }

    /*success*/
    .success-icon {
        margin: 0 auto 2rem auto;
        width: 8.4rem;
        height: 8.4rem;
    }

    .success-text {
        margin-bottom: 3.4rem;
        font: normal normal bold 1.6rem/2.4rem Google Sans;
        text-align: center;
    }

    .success-text span {
        font: normal normal bold 2rem/2.4rem Google Sans;
    }

    #content .success-button {
        margin: 0 auto;
        width: 32rem;
        height: 4.6rem;
        font: normal normal bold 1.4rem/1.7rem Google Sans;
        border-radius: 1rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: calc(100vw / 76.8);
    }

    /*header*/
    .header-burger {
        margin-left: 2.5rem;
    }

    /*home*/
    .slider-fixed-wrapper {
        padding: 0 2rem;
        width: 45rem;
        max-width: 96%;
    }

    .home-products-grid .product-layout {
        width: 31.2%;
    }

    .delivery {
        padding-top: 3rem;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .delivery-content {
        max-width: 100%;
    }

    .delivery-image {
        margin-top: auto;
        max-width: 100%;
        width: 51rem;
    }

    .cafe {
        gap: 5rem;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .cafe-content {
        width: 100%;
    }

    .cafe-slider-block {
        padding-top: 0;
        width: 46.5rem;
        max-width: 100%;
    }

    /*footer*/
    .footer-top {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 0;
        border: none;
    }

    .footer-center {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .footer-bottom {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .footer-bottom-text-powered {
        margin: 3rem 0;
        max-width: 100%;
    }

    #simplecheckout_alert {
        margin-top: 20px;
        background-color: #FFC672;
        padding: 29px 34px;
    }

    #simplecheckout_alert span {
        font: normal normal 500 1.8rem / 2.4rem Google Sans;
        letter-spacing: 0px;
    }
}

@media (max-width: 650px) {
    html {
        font-size: calc(100vw / 65);
    }

    /*header*/
    .header-info {
        display: none;
    }

    /*home*/
    .home-products-grid .product-layout {
        width: 31%;
    }
}

@media (max-width: 590px) {
    html {
        font-size: calc(100vw / 59);
    }

    /*footer*/
    .footer-bottom-text-powered {
        max-width: 23rem;
        text-align: center;
    }

    /*simplecheckout*/
    .simplecheckout-row {
        padding: 0;
        background: transparent;
        border-radius: 0;
    }

    .simplecheckout {
        margin: 0 auto;
        max-width: 33.9rem;
        width: 100%;
    }

    .simplecheckout-title {
        margin-bottom: 2rem;
        font: normal normal bold 2.4rem/3rem Google Sans;
        text-align: start;
    }

    .simplecheckout-block {
        padding: 2rem 1rem;
        border-radius: 1rem;
    }

    .simplecheckout-block .checkout-heading {
        font: normal normal bold 2.4rem/1 Google Sans;
    }

    .checkout-heading-button a {
        width: 13rem;
        height: 3rem;
        font: normal normal 500 1.4rem/1.7rem Google Sans;
        border-radius: 1rem;
    }

    .simplecheckout-product {
        padding: 1rem;
        border-radius: 1rem;
    }

    .simplecheckout-product-image {
        margin-right: 1rem;
        width: 8.3rem;
        height: 8.3rem;
        border-radius: 1rem;
    }

    .simplecheckout-product-name {
        font: normal normal 500 1.4rem/1.6rem Google Sans;
    }

    .simplecheckout-product-weight {
        font: normal normal normal 1.3rem/1.7rem Google Sans;
    }

    .simplecheckout-product-group button {
        width: 2.5rem;
        height: 2.5rem;
    }

    .simplecheckout-product-group input {
        display: block;
        padding: 0;
        width: 4.4rem;
        height: 2.5rem;
        font: normal normal 500 1.5rem/2.5rem Google Sans;
        min-width: unset !important;
    }

    .simplecheckout-product-delete {
        display: block;
        width: 2.5rem;
        height: 2.5rem;
        -webkit-transition: -webkit-transform 0.3s;
        transition: -webkit-transform 0.3s;
        -o-transition: transform 0.3s;
        transition: transform 0.3s;
        transition: transform 0.3s, -webkit-transform 0.3s;
    }

    .simplecheckout-product-price {
        font: normal normal bold 1.5rem/1.8rem Google Sans;
    }

    #simplecheckout_customer .col-sm-8 input,
    #simplecheckout_shipping_address fieldset input,
    #shipping_field26,
    #shipping_field25 {
        padding: 1.1rem 2rem;
        height: 4.6rem;
        font: normal normal 500 1.4rem/1.6rem Google Sans;
        border-radius: 1rem;
    }

    #shipping_field26::-webkit-input-placeholder,
    #shipping_field25::-webkit-input-placeholder {
        font: normal normal 500 1.4rem/1.6rem Google Sans;
    }

    #shipping_field26::-moz-placeholder,
    #shipping_field25::-moz-placeholder {
        font: normal normal 500 1.4rem/1.6rem Google Sans;
    }

    #shipping_field26:-ms-input-placeholder,
    #shipping_field25:-ms-input-placeholder {
        font: normal normal 500 1.4rem/1.6rem Google Sans;
    }

    #shipping_field26::-ms-input-placeholder,
    #shipping_field25::-ms-input-placeholder {
        font: normal normal 500 1.4rem/1.6rem Google Sans;
    }

    #shipping_field26::placeholder,
    #shipping_field25::placeholder {
        font: normal normal 500 1.4rem/1.6rem Google Sans;
    }

    #simplecheckout_shipping .simplecheckout-block-content .radio span {
        padding: .8rem;
        font: normal normal 500 1.4rem/1.7rem Google Sans;
        border-radius: .8rem;
    }

    #simplecheckout_payment label {
        gap: 1.2rem;
        font: normal normal 500 1.4rem/1.7rem Google Sans;
    }

    .simplecheckout-total-info-text {
        font: normal normal 500 1.4rem/2.2rem Google Sans;
    }

    #buttons {
        max-width: 100%;
        margin: 0 auto;
    }

    #simplecheckout_button_confirm,
    #button-confirm {
        margin: 0 auto;
        padding: 1.2rem 2.4rem 1.2rem 6.4rem;
        height: 5rem;
        max-width: 100%;
        width: 100%;
        font: normal normal bold 1.6rem/1 Google Sans;
        border-radius: 1rem;
    }

    .simplecheckout_button_confirm_price {
        font: normal normal bold 1.6rem/5rem Google Sans;
    }

    .simplecheckout_shipping_pickup_info {
        padding: 1.5rem;
        font: normal normal 500 1.4rem/1.6rem Google Sans;
        border-radius: 1rem;
    }

    #simplecheckout_shipping_address .row-shipping_address_field20,
    #simplecheckout_shipping_address .row-shipping_address_field21,
    #simplecheckout_shipping_address .row-shipping_address_field22,
    #simplecheckout_shipping_address .row-shipping_address_field23 {
        width: 47.5%;
    }

    #simplecheckout_shipping_address fieldset input::-webkit-input-placeholder,
    #simplecheckout_customer .col-sm-8 input::-webkit-input-placeholder,
    #simplecheckout_shipping_address fieldset input::-webkit-input-placeholder {
        font: normal normal 500 1.4rem/1.6rem Google Sans;
    }

    #simplecheckout_shipping_address fieldset input::-moz-placeholder,
    #simplecheckout_customer .col-sm-8 input::-moz-placeholder,
    #simplecheckout_shipping_address fieldset input::-moz-placeholder {
        font: normal normal 500 1.4rem/1.6rem Google Sans;
    }

    #simplecheckout_shipping_address fieldset input:-ms-input-placeholder,
    #simplecheckout_customer .col-sm-8 input:-ms-input-placeholder,
    #simplecheckout_shipping_address fieldset input:-ms-input-placeholder {
        font: normal normal 500 1.4rem/1.6rem Google Sans;
    }

    #simplecheckout_shipping_address fieldset input::-ms-input-placeholder,
    #simplecheckout_customer .col-sm-8 input::-ms-input-placeholder,
    #simplecheckout_shipping_address fieldset input::-ms-input-placeholder {
        font: normal normal 500 1.4rem/1.6rem Google Sans;
    }

    #simplecheckout_shipping_address fieldset input::placeholder,
    #simplecheckout_customer .col-sm-8 input::placeholder,
    #simplecheckout_shipping_address fieldset input::placeholder {
        font: normal normal 500 1.4rem/1.6rem Google Sans;
    }

    #buttons svg {
        width: 2rem;
        height: 2.7rem;
    }

    #simplecheckout_button_confirm,
    #button-confirm {
        padding: 1.2rem 2.4rem 1.2rem 5.4rem;
    }

    #simplecheckout_shipping .simplecheckout-block-content {
        border-radius: 1rem;
        height: 4.6rem;
    }

    #simplecheckout_shipping .simplecheckout-block-content .radio {
        height: 3.4rem;
    }
}

@media (max-width: 576px) {
    html {
        font-size: calc(100vw / 57.6);
    }

    /*home*/
    .home-slider-block {
        padding: 0;
    }

    .home-products-grid {
        gap: 1rem;
    }

    .home-products-grid .product-layout {
        width: 48.9%;
    }

    .delivery-image {
        width: 100%;
        max-width: 31.8rem;
    }

    .cafe {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .cafe-slider-block,
    .cafe-content,
    .delivery-content {
        width: 100%;
        max-width: 100%;
    }

    .alert.alert-success {
        right: auto;
        left: 50%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 2rem;
        min-width: 33rem;
        max-width: 90vw;
        font: normal normal bold 2rem / 3rem Google Sans;
        border-radius: 1rem;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    html {
        font-size: calc(100vw / 48);
    }

    /*home*/
    .slider-fixed-close {
        top: -5rem;
        right: 1rem;
    }

    .home-slider-fixed-pager {
        display: none;
    }

    .home-slider-fixed {
        width: 29rem;
    }

    .product-module {
        position: relative;
        padding-bottom: 7.5rem;
    }

    .product-module-top {
        position: static;
    }

    .product-module-title {
        position: relative;
    }

    .product-module-pager {
        position: absolute;
        bottom: 3rem;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    .home-products-grid .product-layout {
        width: 48.8%;
    }

    .footer-top-text {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        align-items: center;
    }

    .schedule-block {
        display: none;
    }

    .address-block {
        flex-direction: column-reverse;
        gap: 15px;
    }
    .address-block .address, .address-block .telephone {
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        align-items: center;
    }
     .address-block .schedule {
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        align-items: center;
    }

    .footer-center-text {
        text-align: center;
    }

    .footer-center-text br {
        display: block;
    }
}

@media (max-width: 400px) {
    html {
        font-size: calc(100vw / 40);
    }

    /*header*/
    .header-logo-image-desktop {
        display: none;
    }

    .header-logo-image-mobile {
        display: block;
    }

    .header-cart {
        margin: 0 auto;
    }

    .cart-products {
        right: auto;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    /*home*/
    .home-products-grid .product-layout {
        width: 48.5%;
    }
}

@media (max-width: 360px) {
    html {
        font-size: calc(100vw / 36);
    }

    /*home*/
    .home-products-grid .product-layout {
        width: 48.3%;
    }
    
    #simplecheckout_alert {
        margin-top: 20px;
        background-color: #FFC672;
        padding: 20px 10px;
    }

    #simplecheckout_alert span {
        font: normal normal 500 1.4rem / 2rem Google Sans;
        letter-spacing: 0px;
    }
}

.product-thumb {
    position: relative;
    transition: all 0.3s ease;
    z-index: 1;
}
.popup-active {
    overflow: hidden;   
}
.popup-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    z-index: 9;
    overflow-y: auto;
    padding: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.popup-content .product-layout {
    margin: 0;
    background-color: #fff;
}

.popup-content .product-layout:hover {
    box-shadow: unset;
}

#popupProductContent .product-layout .caption .desc {
    display: block;
    height: 100% !important;
}
#popupProductContent .button-cart-add {
    font: normal normal 500 1.85rem / 2.25rem Google Sans;
}
#popupProductContent .button-cart-add svg {
    display: block;
}
.popup-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 8;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.popup-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}
#popupProductContent .product-layout .caption .name {
    height: 100%!important;
    font: normal normal 500 1.85rem / 2.05rem Google Sans;
}
#popupProductContent .product-layout .caption .weight {
    height: 100%!important;
    font: normal normal 500 1.45rem / 1.7rem Google Sans;
}
#popupProductContent .product-input-group input {
        font: normal normal 500 1.85rem / 2.25rem Google Sans;
}
.product-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    display: none;
}
.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.popup-content-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 500px;
    max-height: 90vh; 
    z-index: 10001;
}
.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 23px;
    height: 23px;
    background: #fff;
    color: #DD0B0B;
    border: 1px solid #DD0B0B;
    font-weight: 700;
    border-radius: 50%;
    font-size: 18px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .popup-content-wrapper {
        width: 95%;
    }
}