:root {
    --dark: 31, 31, 31;
    --white: 255, 255, 255;
    --gray: 222, 222, 222;
    --gray-text: 143, 143, 143;
    --light: 247, 247, 247;
    --primary: 20, 211, 237;
    --acsent: 255, 204, 0;
    --linear-primary: linear-gradient(85.66deg, #83F0FF 0%, #14D3ED 97.87%);
    --font-family: "Manrope", sans-serif;
    --anim: 0.4s ease-in-out;
}

body {
    font-family: var(--font-family);
    color: rgb(var(--dark));
    font-size: 16px;
}

img, svg {
    max-width: 100%;
    height: auto;
}

svg {
    fill: currentColor;
    color: inherit;
}

a, button {
    color: inherit;
}

*:disabled {
    background-color: transparent;
}

input:focus {
    outline: none !important;
    box-shadow: none !important;
}

.header-address__input::placeholder {
    color: rgb(var(--white));
}

.header-address__input:focus {
    outline: none;
    box-shadow: none;
}

.loader {
    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-bottom-color: #FF3D00;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.swiper-button-lock {
    display: none !important;
}

.scroll-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    border: none;
    border-radius: 4px;
    background: rgb(var(--primary));
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.primary-light-bg {
    background-color: rgb(var(--primary), 0.1);
}

.light-bg {
    background-color: rgb(var(--light));
}

.back-link {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 22px 30px;
    border-radius: 20px;
    overflow: hidden;
    font-weight: 700;
}

.burger {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    width: 37px;
    background-color: transparent;
    border: 0;
    padding: 0;
}

.burger::before, .burger::after {
    content: '';
}

.burger::before, .burger::after, .burger__line {
    width: 100%;
    height: 3px;
    background: linear-gradient(85.66deg, #83F0FF 0%, #14D3ED 97.87%);
}

.mobmenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(var(--white));
    z-index: 999;
}

.mobmenu-wrapper {
    height: 100%;
    overflow-y: auto;
}

.mobmenu-close {
    background-color: transparent;
    border: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobmenu-cities__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
}

.mobmenu-cities {
    margin-bottom: 24px;
}

.mobmenu-cities__handler {
    padding: 0;
    background-color: transparent;
    border: 0;
    padding-bottom: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 200px;
    border-bottom: 1px solid;
    color: rgb(var(--dark), 0.5);
    font-weight: 500;
}

.mobmenu-cities__item {
    text-decoration: none;
    color: rgb(var(--dark), 0.5);
    font-weight: 500;
}

.mobmenu-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobmenu-link {
    text-decoration: none;
    font-weight: 500;
}

.accordion {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.accordion__item {
    background-color: rgb(var(--light));
    width: 100%;
    padding: 20px;
    border-radius: 10px;
}

.accordion__button {
    background-color: transparent;
    border: none;
    width: 100%;
    text-align: start;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0;
    font-size: 20px;
    font-weight: 500;
}

.accordion__descr {
    display: none;
}

.accordion__icon {
    flex: 0 0 auto;
    color: rgb(var(--primary));
    transition: rotate var(--anim);
}

.accordion__button--active .accordion__icon {
    rotate: -45deg;
}

.accordion__descr--active {
    display: block;
    margin-top: 16px;
    opacity: 0.6;
}

.accordion__descr > *:last-child {
    margin-bottom: 0;
}

.picture-bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}

.picture-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.title {
    font-size: 40px;
    font-weight: 700;
    line-height: 145%;
}

.title--fs-24 {
    font-size: 24px;
}

.title--fs-20 {
    font-size: 20px;
}

.content {
    font-size: 20px;
}

.content > *:last-child {
    margin-bottom: 0;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 24px 64px;
    gap: 8px;
    background-color: rgb(var(--primary));
    border: none;
    border-radius: 16px;
    font-weight: 600;
    color: rgb(var(--white));
}

.header-links {
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 32px;
}

.header-links a {
    text-decoration: none;
}

.search-form {
    border: 1px solid rgb(var(--gray));
    display: flex;
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    margin-bottom: 0;
}

.search-form--header {
    max-width: 580px;
}

.search-form__input {
    height: auto;
    padding: 0 16px;
    flex: 1 0 auto;
    font-size: 16px;
}

.search-form__submit {
    background: transparent;
    border: none;
    padding: 20px 8px 20px 20px;
    flex: 0 0 auto;
    color: rgb(var(--gray));
}

.search-form__input:focus {
    outline: none;
}

.search-form__input::placeholder {
    color: rgb(var(--gray));
}

.header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: rgb(var(--white));
}

.header-phone {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: 12px;
    margin-left: auto;
}

.header-phone__icon {
    width: 100%;
    height: 100%;
}

.header-cities {
    height: auto;
    position: relative;
    max-width: 200px;
    width: 100%;
}

.header-cities__list {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px 24px 24px;
    background-color: rgb(var(--white));
    border: 1px solid rgb(var(--gray));
    z-index: 10;
    top: calc(100% - 14px);
    width: 100%;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.header-cities__handler {
    background-color: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    border: 1px solid rgb(var(--gray));
    padding: 0 24px;
    border-radius: 16px;
    font-weight: 500;
    height: 100%;
    color: rgb(var(--dark), 0.5);
    width: 100%;
}

.header-cities__item {
    text-decoration: none;
    font-weight: 600;
    color: rgb(var(--dark), 0.5);
    transition: color var(--anim);
}

.header-cities__item:hover {
    color: rgb(var(--primary));
}

.hero {
    color: rgb(var(--white));
}

.hero-slide {
    position: relative;
    border-radius: 32px;
    padding: 64px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-caption {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 32px;
}

.hero-title {
    font-size: 70px;
    line-height: 140%;
    font-weight: 700;
    margin-bottom: 64px;
}

.hero-advantages {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-advantage {
    display: flex;
    align-items: center;
    padding: 16px 32px;
    background-color: rgb(var(--acsent));
    color: rgb(var(--dark));
    border-radius: 16px;
    font-weight: 600;
    gap: 8px;
}

.store-item {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    align-items: flex-start;
    background-color: rgb(var(--white));
    border-radius: 16px;
    overflow: hidden;
}

.store-item__content {
    padding: 0 24px 24px;
}

.store-item__picture {
    position: relative;
    padding-bottom: 60%;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
    width: 100%;
}

.store-item__picture img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-item__address {
    margin-bottom: 16px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.store-item__name {
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.store-item__address-value {
    color: rgb(var(--dark), 0.7);
}

.store-item__address-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(var(--acsent));
}

.store-item__rating {
    font-size: 14px;
    color: rgb(var(--primary));
    display: flex;
    align-items: center;
    gap: 8px;
}

.store-item__label {
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
}

.store-item__label--discount {
    background-color: rgba(255, 225, 0, 1);
}

.stores-slider__arrow {
    --x-position: -32px;
    position: absolute;
    top: 33%;
    transform: translateY(-50%);
    background-color: rgb(var(--white));
    z-index: 1;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 9.2px 0px rgba(var(--dark), 0.15);
}

.stores-slider__arrow--prev {
    left: var(--x-position);
}

.stores-slider__arrow--next {
    right: var(--x-position);
}

.product-item {
    padding: 16px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgb(var(--gray));
    border-radius: 16px;
    height: 100%;
    position: relative;
}

.product-item__loader {
    position: absolute;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgb(var(--white), 0.7);
}

.product-item__loader--active {
    display: flex;
}

.product-item__name {
    font-weight: 700;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow: hidden;
    -webkit-box-orient: vertical;
    height: 48px;
}

.product-item__image {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.product-item__picture {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-item__picture img {
    height: 100%;
    object-fit: contain;
}

.product-item__price {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.product-item__weight {
    font-size: 14px;
    opacity: 0.3;
}

.product-item__button {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border-radius: 50%;
    background-color: rgb(var(--primary));
    color: rgb(var(--white));
    border: none;
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0px 2.81px 7.02px 0px rgba(var(--dark), 0.1);
    transition: background-color var(--anim);
}

.product-item__button:hover {
    background-color: rgb(var(--dark));
}

.app-block__text {
    font-size: 24px;
    line-height: 165%;
}

.app-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 16px 32px;
    background: var(--linear-primary);
    border-radius: 50px;
    color: rgb(var(--white));
}

.app-block__image {
    background: var(--linear-primary);
    border-radius: 16px;
    text-align: center;
}

.app-block__image img {
    position: relative;
    top: -54px;
}

.information {
    color: rgb(var(--white));
    min-height: 600px;
    display: flex;
    align-items: center;
}

.information__text {
    font-size: 24px;
    line-height: 165%;
}

.questions-feedback {
    font-size: 20px;
    background: transparent;
    border: none;
    padding: 0;
    font-weight: 600;
    border-bottom: 1px solid;
    color: rgb(var(--primary));
}

.footer {
    color: rgb(var(--white));
    background-color: rgb(var(--dark));
    border-radius: 24px 24px 0 0;
}

.footer-title {
    font-size: 24px;
    margin-bottom: 24px;
    font-weight: 500;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-menu__item-link {
    font-weight: 500;
    text-decoration: none;
    opacity: 0.5;
    transition: opacity var(--anim);
}

.footer-menu__item-link:hover {
    opacity: 1;
}

.footer-email {
    font-size: 18px;
    font-weight: 700;
}

.footer-payments {
    font-size: 12px;
    line-height: 165%;
    opacity: 0.5;
}

.product-slider__pagination {
    display: flex;
    background-color: rgb(var(--light));
    border-radius: 50px;
    margin-top: 16px;
}

.product-slider__pagination-bullet {
    flex: 1 0 auto;
    height: 4px;
    border-radius: 24px;
}

.product-slider__pagination-bullet.swiper-pagination-bullet-active {
    background: var(--linear-primary);
}

.product-slider .swiper-slide {
    height: auto;
}

.product-item__price--old {
    margin-bottom: 0;
    text-decoration: line-through;
    font-weight: 400;
    opacity: 0.5;
    font-size: 16px;
}

.product-item__price--new {
    margin-bottom: 0;
    color: red;
}

.product-categories,
.category-tabs {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

.product-categories .swiper-wrapper,
.category-tabs .swiper-wrapper {
    align-items: stretch;
}

.product-categories .swiper-slide,
.category-tabs .swiper-slide {
    height: auto;
}

.category-tabs--fixed {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    z-index: 10;
    background-color: rgb(var(--white));
    padding: 0 12px;
    opacity: 0;
    visibility: hidden;
}

.category-tabs--fixed-active {
    opacity: 1;
    visibility: visible;
}

.product-category, .category-tab {
    padding: 30px;
    border-radius: 16px;
    background-color: rgb(var(--white));
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
    border: none;
    font-size: 22px;
    font-weight: 600;
    color: rgb(var(--dark), 0.5);
    width: 100%;
    height: 100%;
    display: inline-flex;
    text-align: center;
    text-decoration: none;
    align-items: center;
    justify-content: center;
}

.product-categories .swiper-button-arrow,
.category-tabs .swiper-button-arrow {
    flex: 0 0 auto;
    position: static;
    top: 0;
    margin: 0;
    width: 64px;
    height: 64px;
    background-color: rgb(var(--white));
    border-radius: 50%;
    box-shadow: 0px 2.69px 6.18px 0px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-categories .swiper-button-arrow::after,
.category-tabs .swiper-button-arrow::after {
    font-size: 24px;
    font-weight: 700;
    color: rgb(var(--primary));
}

.product-category--active,
.category-tab--active {
    color: rgb(var(--white));
    background-color: rgb(var(--primary));
    pointer-events: none;
}

.swiper-pagination-lock {
    display: none;
}

.stock-stores {
    border-radius: 16px;
}

.category-tags {
    margin: 24px 0;
}

.category-tags__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.category-tags__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 2px solid rgb(var(--dark));
    border-radius: 50px;
    text-decoration: none;
    padding: 13px 8px;
}

.hide-text {
    height: 400px;
    overflow: hidden;
    position: relative;
}

.hide-text::after {
    content: '';
    width: 100%;
    height: 50%;
    background: linear-gradient(0deg, rgb(var(--white)), transparent);
    position: absolute;
    bottom: 0;
    pointer-events: none;
}

.hide-text--active {
    height: auto;
}

.hide-text--active::after {
    content: unset;
}

.store-item__happy-caption {
    font-size: 14px;
    padding-right: 16px;
}

.store-item__happy {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgb(var(--light));
    width: fit-content;
    border-radius: 50px;
    margin-top: 8px;
}

.store-item__happy-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background-color: rgba(255, 225, 0, 1);
    border-radius: 50%;
}

.store-categories {
    padding: 32px 0;
    border-radius: 16px;
}

.store-categories__caption {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 32px;
    padding: 0 32px;
}

.store-categories__list {
    display: flex;
    flex-direction: column;
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
    margin-right: 10px;
}

.store-categories__button {
    display: flex;
    border: none;
    background: none;
    padding: 15px 32px;
    font-weight: 500;
    position: relative;
    margin-right: 16px;
    text-decoration: none;
}

.store-categories__button--active::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: -3%;
    transform: translateX(5%);
    background-color: rgb(var(--white));
    z-index: 0;
    border-radius: 50px;
}

.store-categories__button-caption {
    position: relative;
    z-index: 1;
    text-transform: uppercase;
}

.store-categories__list::-webkit-scrollbar {
    width: 5px;
}

.store-categories__list::-webkit-scrollbar-track {
    background: rgb(var(--white));
    border-radius: 20px;
}

.store-categories__list::-webkit-scrollbar-thumb {
    background: linear-gradient(85.66deg, #83F0FF 0%, #14D3ED 97.87%);
    border-radius: 20px;
}

.store-hero {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    padding: 24px;
    color: rgb(var(--white));
    min-height: 350px;
    display: flex;
    align-items: end;
}

.store-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.store-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-hero::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(0deg, rgb(0, 0, 0, 0.7), transparent);
}

.store-hero__advantages {
    display: flex;
    gap: 8px;
    overflow-x: auto;
}

.store-hero__advantage {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: rgb(var(--white));
    border-radius: 42px;
    color: rgb(var(--dark));
    flex: 0 0 auto;
}

.store-hero__advantage-logo {
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background-color: rgb(var(--acsent));
    border-radius: 50%;
    color: rgb(var(--primary));
}

.store-hero__advantage-caption {
    padding-right: 16px;
    font-weight: 600;
    font-size: 14px;
}

.store-hero__advantage-logo svg {
    width: 24px;
    height: 24px;
}

.store-hero__caption {
    font-size: 12px;
    font-weight: 500;
}

.store-hero__address {
    font-size: 14px;
    display: flex;
    align-items: start;
    gap: 8px;
}

.store-hero__address svg {
    position: relative;
    top: 4px;
}

.store-about {
    font-size: 14px;
}

.store-cart {
    position: sticky;
    top: 130px;
    padding: 32px 20px;
    border-radius: 16px;
}

.cart-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgb(var(--white), 0.5);
}

.cart-loader--active {
    display: flex;
}

.store-cart__caption {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 32px;
}

.store-cart__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
    max-height: 230px;
    overflow-y: auto;
}

.store-cart__list::-webkit-scrollbar {
    width: 5px;
}

.store-cart__list::-webkit-scrollbar-track {
    background: rgb(var(--white));
    border-radius: 20px;
}

.store-cart__list::-webkit-scrollbar-thumb {
    background: linear-gradient(85.66deg, #83F0FF 0%, #14D3ED 97.87%);
    border-radius: 20px;
}

.store-cart__item {
    margin-right: 12px;
}

.store-cart__item-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 8px;
}

.store-cart__item-name {
    font-weight: 700;
}

.store-cart__item-price {
    font-size: 14px;
    font-weight: 700;
    flex: 0 0 auto;
}

.store-cart__item-button {
    flex: 0 0 auto;
    padding: 0;
    background-color: rgb(var(--primary));
    color: rgb(var(--white));
    font-weight: 700;
    font-size: 24px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 50%;
    border: none;
    box-shadow: 0px 2.81px 7.02px 0px rgba(0, 0, 0, 0.1);
}

.store-cart__item-count {
    font-size: 12px;
    color: rgba(143, 143, 143, 1);
    font-weight: 500;
}

.store-cart__total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.store-cart__total-caption {
    font-weight: 700;
}

.store-cart__total-value {
    font-size: 18px;
    font-weight: 700;
}

.store-cart__submit {
    border-radius: 100px;
    padding: 18px;
}

.store-cart__informations {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.store-cart__information {
    display: flex;
    align-items: center;
    gap: 8px;
}

.store-cart__information-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(var(--white));
    border-radius: 4px;
}

.store-cart__information-name {
    font-size: 12px;
    font-weight: 500;
}

.store-cart__options {
    margin-bottom: 12px;
}

.store-cart__option {
    display: flex;
    gap: 12px;
    font-size: 12px;
    opacity: 0.7;
}

.store-cart__option-info {
    margin-left: auto;
}

.page-link {
    font-size: 14px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(var(--primary));
}

.active > .page-link, .page-link.active {
    background-color: rgb(var(--primary));
    border-color: rgb(var(--primary));
}

.store-fixed-button {
    display: none;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 100%;
    z-index: 1;
    background-color: rgb(var(--white), 0.3);
    backdrop-filter: blur(2px);
}

.store-fixed-button .button {
    border-radius: 50px;
}

#addressModalMap {
    padding-bottom: 80%;
    border-radius: 12px;
    overflow: hidden;
}

.header-address__caption {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    max-width: 230px;
    width: 100%;
    flex: 0 0 auto;
}

.header-address__form svg {
    flex: 0 0 auto;
}

.pac-container.pac-logo {
    z-index: 10000 !important;
}

.order-deliveries {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    overflow: hidden;
}

.order-delivery {
    flex: 1 0 auto;
    width: 200px;
    display: flex;
    cursor: pointer;
}

.order-delivery input {
    display: none;
}

.order-delivery__name {
    width: 100%;
    display: block;
    text-align: center;
    padding: 16px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    color: rgb(var(--gray-text));
}

.order-delivery > input:checked ~ .order-delivery__name {
    background-color: rgb(var(--primary));
    color: rgb(var(--white));
}

.order-products {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.order-product {
    display: flex;
    align-items: center;
    gap: 24px;
}

.order-product__image {
    flex: 0 0 auto;
    width: 80px;
}

.order-product__picture {
    flex: 0 0 auto;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    padding-bottom: 100%;
    width: 100%;
}

.order-product__picture img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.order-product__name {
    font-size: 14px;
    font-weight: 700;
}

.order-product__prices {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.order-product__price {
    font-size: 20px;
    font-weight: 700;
}

.order-product__price--old {
    font-size: 12px;
    color: rgb(var(--gray-text));
    text-decoration: line-through;
    font-weight: 500;
}

.order-product__count {
    flex: 0 0 auto;
    width: 80px;
    display: flex;
    align-items: center;
}

.order-product__info {
    flex: 0 0 auto;
    width: 220px;
}

.order-product__count-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    font-size: 24px;
    flex: 0 0 auto;
    border-radius: 50%;
    border: none;
    background-color: rgb(var(--primary));
    color: rgb(var(--white));
    font-weight: 600;
}

.order_product__count-value {
    flex: 1 0 auto;
    width: 100px;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: rgb(var(--gray-text));
}

.order_product__count-value:focus {
    outline: none;
}

.form-checkbox__icon {
    background-color: rgb(var(--light));
    width: 36px;
    display: block;
    padding-bottom: 16px;
    border-radius: 50px;
    position: relative;
}

.form-checkbox__icon::before {
    content: '';
    width: 16px;
    height: 16px;
    position: absolute;
    top: 0;
    border-radius: 50%;
    left: 0;
    background-color: rgb(var(--gray));
    transition: left var(--anim), background-color var(--anim);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.form-checkbox > input:checked ~ .form-checkbox__icon::before {
    left: calc(100% - 16px);
    background-color: rgb(var(--primary));
}

.form-checkbox > input:checked ~ .form-checkbox__icon {
    background-color: rgb(var(--primary), 0.1);
}

.order-info__detail {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.order-info__detail-value {
    font-weight: 700;
}

.order-promocode {
    display: flex;
    align-items: center;
    gap: 8px;
}

.order-promocode__icon {
    color: rgb(var(--gray-text));
}

.order-promocode__input input {
    font-size: 12px;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.order-total {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.order-time {
    display: flex;
    align-items: center;
    gap: 8px;
}

.order-time__select {
    position: relative;
}

.order-time__select-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: max-content;
    display: none;
    flex-direction: column;
    gap: 4px;
    background-color: white;
    border: 1px solid rgb(var(--gray));
    padding: 8px;
    border-radius: 8px;
}

.order-time__now {
    background-color: transparent;
    border: none;
    padding: 0;
    font-size: 14px;
    font-weight: 600;
}

.order-time__select-current {
    border: 0;
    background-color: transparent;
    padding: 0;
    font-size: 14px;
    font-weight: 600;
}

.order-time__select-item {
    font-size: 14px;
    background-color: transparent;
    border: none;
    text-align: start;
    padding: 0;
}

.promocode-message {
    font-size: 14px;
}

.product-modal__title {
    font-weight: 600;
    margin-bottom: 15px;
}

.product-modal__option {
    display: flex;
    align-items: flex-start;
    gap: 4px 24px;
    border-radius: 6px;
    font-size: 14px;
}

.product-modal__option-counter {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-modal__option-button {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 600;
    font-size: 18px;
    background-color: rgb(var(--primary), 0.1);
    color: rgb(var(--primary));
    cursor: pointer;
}

.product-modal__options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-modal__option-name {
    font-weight: 600;
    flex: 0 0 auto;
    width: 200px;
}

#productOptions .modal-dialog {
}

.product-item__options-modal {
    background-color: transparent;
    border: none;
    padding: 0;
    margin: 12px 0;
    text-align: start;
    color: rgb(var(--primary));
    border-bottom: 1px dashed rgb(var(--primary));
    width: fit-content;
    font-size: 14px;
}

.product-modal__info {
    display: flex;
    margin-bottom: 24px;
    gap: 24px;
}

.product-modal__image {
    flex: 0 0 auto;
    width: 145px;
    height: 145px;
    border: 1px solid rgb(var(--dark), 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.product-modal__composition {
    margin-bottom: 8px;
}

.product-modal__composition span {
    font-weight: 600;
}

.product-modal__price {
    font-weight: 700;
    font-size: 18px;
}

.product-modal__info {
    display: flex;
    margin-bottom: 24px;
    gap: 24px;
}

.product-modal__image {
    flex: 0 0 auto;
    width: 145px;
    height: 145px;
    border: 1px solid rgb(var(--dark), 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.product-modal__composition {
    margin-bottom: 8px;
}

.product-modal__composition span {
    font-weight: 600;
}

.product-modal__price {
    font-weight: 700;
    font-size: 18px;
}

.product-modal__option-count {
    flex:  0 0 auto;
    width: 24px;
    text-align: center;
}

.product-modal__option-price {
    margin-left: auto;
}

.modal-close {
    position: absolute;
    top: 8px;
    z-index: 1;
    right: 8px;
    width: 40px;
    height: 40px;
    background-color: rgb(var(--primary), 0.1);
    border-radius: 50%;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(var(--primary));
}

.product-modal__content .product-modal__title {
    max-width: 260px;
}

@media (min-width: 1200px) {
    .border-xl {
        border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important;
    }

    .rounded-xl-4 {
        border-radius: var(--bs-border-radius-xl)!important;
    }
}

@media (min-width: 1640px) {
    .container {
        max-width: 1600px;
    }
}

@media (max-width: 1639px) {
    .order-product {
        display: grid;
        gap: 8px 16px;
        grid-template-areas:
                'image info prices'
                'count count count';
        align-items: center;
    }

    .order-product__image {
        grid-area: image;
    }

    .order-product__info {
        grid-area: info;
        width: auto;
    }

    .order-product__prices {
        grid-area: prices;
    }

    .order-product__count {
        grid-area: count;
        width: auto;
    }
}

@media (max-width: 1399px) {
    .button {
        padding: 14px 38px;
        border-radius: 8px;
        font-size: 12px;
    }

    .title {
        font-size: 24px;
    }

    .content {
        font-size: 16px;
    }

    .hero-title {
        font-size: 56px;
        margin-bottom: 48px;
    }

    .hero-slide {
        padding: 32px 32px 56px;
    }

    .accordion__button {
        font-size: 16px;
    }

    .app-block__text {
        font-size: 16px;
    }

    .questions-feedback {
        font-size: 16px;
    }

    .information {
        min-height: 380px;
    }

    .information__text {
        font-size: 14px;
    }

    .product-category, .category-tab {
        font-size: 16px;
    }

    .category-tabs--fixed {
        top: 116px;
    }

    .product-category, .category-tab {
        padding: 12px;
    }

    .category-tabs--fixed-active ~ .container .store-cart {
        top: 220px;
    }

    .store-cart__list {
        max-height: 130px;
    }
}

@media (max-width: 1199px) {
    .stores-slider__arrow {
        --x-position: -20px;
        width: 40px;
        height: 40px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-advantage {
        font-size: 12px;
    }

    .hero-advantage__icon {
        width: 20px;
        height: 20px;
    }

    .app-block__image {
        width: 300px;
    }

    .app-block__image img {
        width: 180px;
    }

    .app-block__text {
        font-size: 14px;
    }

    .order-deliveries {
        border-radius: 24px;
    }
}

@media (max-width: 991px) {
    .form-control {
        font-size: 12px;
    }

    .order-title {
        font-size: 18px;
    }

    .order-product {
        gap: 8px;
    }

    .hero-slide {
        min-height: 100px;
        padding: 24px;
        border-radius: 10px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-advantages {
        gap: 8px 16px;
    }

    .hero-advantage {
        flex: 1 0 auto;
        width: 150px;
        border-radius: 10px;
        justify-content: center;
        padding: 12px;
        gap: 8px;
    }

    .search-form__submit {
        padding: 18px 8px 18px 18px;
    }

    .search-form__input {
        font-size: 14px;
    }

    .store-fixed-button {
        display: flex;
    }

    .order-fixed-button {
        background-color: rgb(var(--white));
        box-shadow: 0px -3px 22px 0px #00000026;
        border-top-right-radius: 30px;
        border-top-left-radius: 30px;
        align-items: center;
        gap: 16px;
    }

    .order-fixed-button__price {
        flex: 0 0 auto;
        font-size: 24px;
        font-weight: 700;
    }

    .category-tabs--fixed {
        top: 80px;
    }

    .product-modal__image {
        width: 100%;
        height: 270px;
        border-radius: 0;
        overflow: hidden;
        position: relative;
    }

    .product-modal__image img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

@media (max-width: 767px) {
    .stores-slider__arrows {
        display: none;
    }

    .store-item__name {
        font-size: 16px;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .store-item__address {
        font-size: 12px;
    }

    .store-item__address-icon {
        width: 16px;
        flex: 0 0 auto;
    }

    .store-item__rating {
        font-size: 12px;
    }

    .store-item__rating-icon {
        width: 16px;
    }

    .app-block__image {
        width: 100%;
    }

    .app-block__image img {
        top: -24px;
    }

    .footer {
        border-radius: 8px 8px 0 0;
    }

    .product-category {
        padding: 24px;
        font-size: 14px;
    }

    .product-category, .category-tab {
        padding: 14px 24px;
        font-size: 12px;
        border-radius: 8px;
    }

    .product-categories .swiper-button-arrow, .category-tabs .swiper-button-arrow {
        width: 40px;
        height: 40px;
    }

    .product-categories .swiper-button-arrow::after, .category-tabs .swiper-button-arrow::after {
        font-size: 16px;
    }

    .store-item__content {
        padding: 0 16px 16px;
    }

    .product-categories .swiper-button-arrow, .category-tabs .swiper-button-arrow {
        display: none;
    }

    .hero-caption {
        font-size: 12px;
    }

    .scroll-btn {
        bottom: 90px;
    }

    .product-categories .swiper-slide, .category-tabs .swiper-slide {
        width: auto;
    }

    .header-address__input {
        font-size: 14px;
    }

    .header-address__form svg {
        width: 18px;
        height: 18px;
    }

    #productOptions {
        z-index: 10000;
    }

    #productOptions .modal-dialog {
        margin: 0 auto 0;
        border-top-left-radius: 24px;
        border-top-right-radius: 24px;
        overflow: hidden;
        position: absolute;
        bottom: 0;
        width: 100%;
        max-width: 100%;
    }

    .product-modal__options {
        max-height: 96px;
        overflow-y: auto;
    }
}

@media (max-width: 575px) {
    .more-button {
        width: 100%;
    }

    .stock-stores {
        border-radius: 0;
    }

    .product-modal__info {
        gap: 12px;
        flex-direction: column;
    }
}

@media (max-width: 400px) {
    .product-modal__option-name {
        width: 90px;
    }
}