@font-face {
  font-family: "Century Gothic";
  src:
    url("../font/CenturyGothic.woff") format("woff"),
    url("../font/CenturyGothic.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Century Gothic";
  src:
    url("../font/CenturyGothic-Bold.woff") format("woff"),
    url("../font/CenturyGothic-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --header-color: #690802;
}

body {
  background-color: #ffffff;
  font-family: "Century Gothic", Arial, sans-serif;
}

.site-header {
  margin-top: 38px;
}

.site-header__bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 50px;
  border-radius: 100px;
  background-color: var(--header-color);
  padding: 0 16px;
}

.site-header__right-actions {
  position: absolute;
  right: 12px;
  top: 50%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  transform: translateY(-50%);
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  padding: 0;
}

.icon-btn img {
  display: block;
}

.site-header__logo-link {
  position: absolute;
  left: 50%;
  top: 12px;
  transform: translate(-50%, -38%);
  z-index: 2;
}

.site-header__logo {
  display: block;
  width: min(242px, 62vw);
  height: auto;
}

.site-header__cart-overlay {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  padding: 0;
}

.site-header__cart-overlay img {
  display: block;
  width: 60px;
  height: 60px;
}

.site-header__cart-count {
  position: absolute;
  right: 4px;
  top: 3px;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  padding: 0 6px;
  background-color: #f7aa06;
  color: #690802;
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}

.floating-cart-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1030;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 72px;
  border: 0;
  border-radius: 999px;
  padding: 7px 8px 7px 22px;
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
}

.floating-cart-btn__price {
  color: #e4a100;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.floating-cart-btn__icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #f0ad00;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.floating-cart-btn__icon img {
  display: block;
  width: 33px;
  height: 28px;
}

.burger-btn {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  padding: 0;
}

.burger-btn span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 2px;
  background-color: #ffffff;
}

.menu-offcanvas {
  --bs-offcanvas-width: 420px;
  top: 12px;
  left: 12px;
  bottom: 12px;
  height: auto;
  max-width: calc(100vw - 24px);
  border: 0;
  border-radius: 22px;
  background-color: #f3f3f3;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}

.cart-offcanvas {
  --bs-offcanvas-width: min(510px, 100vw);
  display: flex;
  flex-direction: column;
  background-color: #f3f3f3;
}

.cart-offcanvas__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px 10px;
}

.cart-offcanvas__title {
  margin: 0;
  color: #171717;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
}

.cart-offcanvas__close {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #efefef;
  color: #1f1f1f;
  font-size: 42px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.14);
}

.cart-offcanvas__body {
  flex: 1 1 auto;
  overflow: auto;
  padding: 0 16px 12px;
}

.cart-offcanvas__delivery {
  margin-bottom: 12px;
}

.segment-toggle__track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background-color: #f2f2f2;
}

.segment-toggle__option {
  min-height: 38px;
  flex: 1 1 50%;
  border: 0;
  border-radius: 999px;
  background-color: transparent;
  color: #353535;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.1;
  padding: 6px 10px;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.segment-toggle__option.is-active {
  background-color: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.cart-offcanvas__headline {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
  color: #333333;
  line-height: 1.2;
}

.cart-offcanvas__headline-items {
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 700;
}

.cart-offcanvas__headline-separator {
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 700;
}

.cart-offcanvas__headline-total {
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 700;
}

.cart-offcanvas__list {
  list-style: none;
  margin: 0;
  padding: 0 0 8px;
  display: grid;
  gap: 14px;
}

.cart-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.cart-item--clickable {
  cursor: pointer;
}

.cart-item--clickable:focus-visible {
  outline: 2px solid #f7aa06;
  outline-offset: 1px;
}

.cart-item__image {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 10px;
  flex: 0 0 60px;
}

.cart-item__main {
  min-width: 0;
  flex: 1 1 auto;
}

.cart-item__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.cart-item__info {
  min-width: 0;
  flex: 1 1 auto;
}

.cart-item__name {
  margin: 0;
  color: #1f1f1f;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.05;
}

.cart-item__meta {
  margin: 0 0 4px;
  color: #6a6a6a;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
}

.cart-item__weight {
  margin: 0;
  color: #505050;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.cart-item__bottom {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cart-item__price-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cart-item__price {
  margin: 0;
  color: #1f1f1f;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.cart-item__unit-price {
  margin: 0;
  color: #707070;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
}

.cart-item__controls {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background-color: #f7aa06;
  overflow: hidden;
}

.cart-item__control {
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  padding: 0;
}

.cart-item__qty {
  min-width: 28px;
  text-align: center;
  color: #ffffff;
  font-size: 19px;
  font-weight: 700;
}

.cart-item__remove {
  border: 0;
  background: transparent;
  color: #8f8f8f;
  font-size: 13px;
  font-weight: 400;
  text-decoration: underline;
  padding: 0;
}

.cart-offcanvas__empty {
  margin: 12px 0 0;
  color: #6b6b6b;
  font-size: 16px;
  font-weight: 400;
}

.cart-offcanvas__promo {
  margin-top: 8px;
  position: relative;
  display: block;
}

.cart-offcanvas__promo-input {
  width: 100%;
  height: 50px;
  border: 2px solid #f7aa06;
  border-radius: 999px;
  padding: 0 64px 0 18px;
  color: #1f1f1f;
  font-size: 18px;
  font-weight: 400;
}

.cart-offcanvas__promo-submit {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background-color: #f7aa06;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.cart-offcanvas__promo-submit img {
  width: 16px;
  height: 16px;
}

.cart-extras {
  margin-top: 14px;
}

.cart-extras__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cart-extras__title {
  margin: 0;
  color: #333333;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.cart-extras__nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-extras__arrow {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background-color: #efefef;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.cart-extras__arrow img {
  width: 12px;
  height: 12px;
}

.cart-extras__list-wrap {
  margin-top: 10px;
  overflow: hidden;
}

.cart-extras__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 10px) / 2);
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.cart-extras__list::-webkit-scrollbar {
  display: none;
}

.cart-extra-item {
  display: grid;
  grid-template-columns: 77px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 8px;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: inset 0 0 0 1px #e8e8e8;
  scroll-snap-align: start;
}

.cart-extra-item__image {
  width: 77px;
  height: 77px;
  border-radius: 10px;
  object-fit: cover;
}

.cart-extra-item__image--clickable {
  cursor: pointer;
}

.cart-extra-item__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.cart-extra-item__meta {
  margin: 0;
  color: #747474;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-extra-item__name {
  margin: 0;
  color: #333333;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: anywhere;
}

.cart-extra-item__price {
  margin-top: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  border: 0;
  border-radius: 999px;
  background-color: #f7aa06;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  padding: 4px 12px;
  cursor: pointer;
}

.cart-offcanvas__footer {
  border-top: 1px solid #dddddd;
  padding: 10px 16px 16px;
}

.cart-offcanvas__totals {
  display: grid;
  gap: 4px;
}

.cart-offcanvas__totals-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  color: #343434;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.15;
}

.cart-offcanvas__totals-row--payable {
  color: #171717;
  font-size: 17px;
  font-weight: 700;
}

.cart-offcanvas__checkout {
  margin-top: 12px;
  width: 100%;
  min-height: 56px;
  border: 0;
  border-radius: 999px;
  background-color: #f7aa06;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  padding: 10px 14px;
}

.menu-offcanvas__header {
  justify-content: flex-end;
  padding: 12px 12px 0 37px;
}

.menu-offcanvas__title {
  display: none;
}

.menu-offcanvas .btn-close.menu-offcanvas__close {
  box-sizing: border-box;
  width: 40px !important;
  height: 40px !important;
  min-width: 40px;
  min-height: 40px;
  padding: 0 !important;
  margin: 0;
  border-radius: 50%;
  background-color: #efefef;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.14);
  opacity: 1;
  background-size: 16px 16px;
  background-position: center;
  flex: 0 0 40px;
}

.menu-offcanvas__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 8px 24px 22px 37px;
}

.menu-offcanvas__center {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 0;
}

.menu-offcanvas__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.menu-offcanvas__nav a {
  color: #3a3a3a;
  text-decoration: none;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.2;
}

.menu-offcanvas__nav a:first-child {
  color: #efa100;
}

.menu-offcanvas__nav a:hover {
  color: #222222;
  text-decoration: none;
}

.menu-offcanvas__bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding-top: 24px;
}

.menu-offcanvas__socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-offcanvas__socials a {
  display: inline-flex;
}

.menu-offcanvas__socials img {
  width: 40px;
  height: 40px;
}

.menu-offcanvas__copyright {
  margin: 0;
  text-align: left;
  color: #a7a7a7;
  font-size: 14px;
  line-height: 1.25;
}

.categories-nav {
  background-color: #ffffff;
  margin-top: 12px;
  position: relative;
  z-index: 30;
}

.categories-nav.is-fixed {
  padding-top: var(--categories-nav-scroll-height, 0px);
}

.categories-nav.is-fixed::after {
  content: "";
  position: fixed;
  top: 0;
  left: var(--categories-nav-fixed-left, 0px);
  width: var(--categories-nav-fixed-width, 100%);
  height: var(--categories-nav-scroll-height, 0px);
  border-radius: 0 0 14px 14px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
  pointer-events: none;
  z-index: 1099;
}

.categories-nav__scroll {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  scrollbar-gutter: stable;
  padding: 8px 4px 0px;
  justify-content: flex-start;
  scroll-padding-inline: 4px;
  -webkit-overflow-scrolling: touch;
  transition: box-shadow 0.25s ease, transform 0.25s ease, padding 0.25s ease;
  scrollbar-width: thin;
  scrollbar-color: rgba(105, 8, 2, 0.65) #f3e7e6;
}

.categories-nav__scroll::-webkit-scrollbar {
  height: 8px;
}

.categories-nav__scroll::-webkit-scrollbar-track {
  background: #f3e7e6;
  border-radius: 999px;
}

.categories-nav__scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #8a1a12, #690802);
  border-radius: 999px;
}

.categories-nav__scroll::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(90deg, #9f2218, #7b0a04);
}

.categories-nav.is-fixed .categories-nav__scroll {
  position: fixed;
  top: 0;
  left: var(--categories-nav-fixed-left, 0px);
  width: var(--categories-nav-fixed-width, 100%);
  z-index: 1100;
  background-color: #ffffff;
  border-radius: 0 0 14px 14px;
  clip-path: inset(0 round 0 0 14px 14px);
  box-shadow: none;
  padding: 10px 12px;
}

.categories-nav__bublik {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  opacity: 0;
  transform: translateX(-54px);
  margin-right: -34px;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, margin-right 0.3s ease;
}

.categories-nav.is-fixed .categories-nav__bublik {
  opacity: 1;
  transform: translateX(0);
  margin-right: 0;
}

.categories-nav__scroll a {
  flex: 0 0 auto;
  color: var(--header-color);
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
}

.categories-nav__scroll a:hover {
  text-decoration: underline;
}

@media (min-width: 992px) {
  .categories-nav__scroll {
    width: 100%;
    overflow-x: hidden;
    white-space: nowrap;
    justify-content: space-between;
  }

  .categories-nav__scroll a {
    flex: 0 1 auto;
    white-space: nowrap;
    text-align: center;
  }
}

.site-search {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
  z-index: 2000;
}

.site-search.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-search__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 20, 20, 0.32);
  backdrop-filter: blur(4px);
}

.site-search__panel {
  position: relative;
  width: min(864px, calc(100vw - 34px));
  min-height: 380px;
  height: min(560px, calc(100vh - 32px));
  max-height: calc(100vh - 32px);
  background-color: #f3f3f3;
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
  padding: 26px 28px 30px;
  transform: translateY(16px) scale(0.98);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  display: flex;
  flex-direction: column;
}

.site-search__content {
  width: 100%;
  max-width: 599px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.site-search.is-open .site-search__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.site-search__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background-color: #ececec;
  color: #383838;
  font-size: 40px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-search__title {
  margin: 38px 0 0;
  color: #efa100;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
}

.site-search__subtitle {
  margin: 12px 0 0;
  color: #1f1f1f;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
}

.site-search__form {
  margin-top: 28px;
}

.site-search__input-wrap {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 64px;
  border: 2px solid #efa100;
  border-radius: 34px;
  background-color: #ffffff;
  padding: 0 20px 0 8px;
}

.site-search__input-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #efa100;
}

.site-search__input-icon img {
  display: block;
  width: 24px;
  height: 24px;
}

.site-search__input {
  width: 100%;
  height: 56px;
  border: 0;
  margin-left: 10px;
  padding: 0 0 0 14px;
  background: transparent;
  color: #212121;
  font-size: 36px;
  font-weight: 400;
  outline: none;
  transition: color 0.2s ease;
}

.site-search__input:focus {
  box-shadow: none;
}

.site-search__input::placeholder {
  color: #efa100;
}

.site-search__input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}

.site-search__results {
  margin-top: 10px;
  min-height: 110px;
  max-height: none;
  flex: 1 1 auto;
  overflow: auto;
  padding: 0 2px 2px;
}

.site-search__hint {
  margin: 0;
  padding: 10px 12px;
  border-radius: 12px;
  background-color: #ffffff;
  color: #6c6c6c;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
}

.site-search__results-meta {
  margin: 0;
  color: #7b7b7b;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.3;
}

.site-search__result-list {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-search__result-item {
  margin: 0;
}

.site-search__result-btn {
  width: 100%;
  border: 1px solid #f1deb2;
  border-radius: 14px;
  background-color: #ffffff;
  color: #690802;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 11px 14px;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.site-search__result-title {
  color: #5f0a04;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.2;
}

.site-search__result-type {
  color: #9a9a9a;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-search__result-btn:hover {
  border-color: #efc469;
  background-color: #fff9eb;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(239, 170, 6, 0.16);
}

.site-search__result-btn:focus-visible {
  outline: 0;
  border-color: #efa100;
  box-shadow: 0 0 0 3px rgba(239, 161, 0, 0.22);
}

.site-search__empty {
  margin: 0;
  padding: 10px 12px;
  border-radius: 12px;
  background-color: #ffffff;
  color: #6a6a6a;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
}

.callback-modal .modal-dialog {
  max-width: 584px;
}

.callback-modal .modal-content {
  position: relative;
  width: 100%;
  min-height: 541px;
  border: 0;
  border-radius: 14px;
  background-color: #f7f7f7;
  padding: 34px 30px 30px;
}

.callback-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: #f0f0f0;
}

.callback-modal__body {
  width: 100%;
  max-width: 345px;
  margin: 0 auto;
  text-align: center;
}

.callback-modal__title {
  margin: 24px 0 0;
  color: #efa100;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.05;
}

.callback-modal__subtitle {
  margin: 8px 0 0;
  color: #1f1f1f;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.2;
}

.callback-modal__form {
  margin-top: 26px;
}

.callback-modal__field {
  display: block;
}

.callback-modal__field + .callback-modal__field {
  margin-top: 30px;
}

.callback-modal__input {
  width: 100%;
  height: 66px;
  border: 2px solid #efa100;
  border-radius: 34px;
  background-color: #ffffff;
  padding: 0 26px;
  color: #1f1f1f;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}

.callback-modal__input::placeholder {
  color: #efa100;
  font-size: 16px;
}

.callback-modal__input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(239, 161, 0, 0.18);
}

.callback-modal__input--phone {
  font-weight: 700;
}

.callback-modal__legal {
  margin: 18px 0 0;
  color: #2e2e2e;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
}

.callback-modal__submit {
  margin-top: 15px;
  width: 347px;
  height: 60px;
  border: 0;
  border-radius: 36px;
  background-color: #efa100;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: lowercase;
}

.promotions-container {
  --promo-mask-width: clamp(20px, 3vw, 64px);
  --promo-mask-left-opacity: 0.18;
  --promo-mask-right-opacity: 0.18;
  margin-top: 14px;
  overflow: hidden;
  position: relative;
}

.promotions-container::before,
.promotions-container::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: calc((100vw - min(calc(100vw - 16px), 1592px)) / 2 + var(--promo-mask-width));
  pointer-events: none;
  z-index: 5;
}

.promotions-container::before {
  left: -100px;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.98) 52%,
    rgba(255, 255, 255, 0.78) 72%,
    rgba(255, 255, 255, var(--promo-mask-left-opacity)) 88%,
    rgba(255, 255, 255, 0) 100%
  );
}

.promotions-container::after {
  right: -100px;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.98) 52%,
    rgba(255, 255, 255, 0.78) 72%,
    rgba(255, 255, 255, var(--promo-mask-right-opacity)) 88%,
    rgba(255, 255, 255, 0) 100%
  );
}

.promotions-container .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.promotions-swiper {
  position: relative;
  width: min(calc(100vw - 16px), 1592px);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(6px, 1.6vw, 16px);
  padding-right: clamp(6px, 1.6vw, 16px);
  border-radius: 22px;
  overflow: visible;
  box-sizing: border-box;
}

.promotions-swiper .swiper-wrapper {
  height: 100%;
}

.promotions-swiper .swiper-slide {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.54;
  transform: scale(0.95);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.promotions-swiper .swiper-slide.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}

.promotions-swiper .promotion-image {
  display: block;
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
}

.promotions-swiper .swiper-slide img,
.promotions-swiper .swiper-slide video {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

.promotions-swiper .promotion-image--video {
  position: relative;
}

.promotions-swiper .promotion-image--video .promotion-video-placeholder,
.promotions-swiper .promotion-image--video video {
  width: 100%;
  height: auto;
}

.promotions-swiper .promotion-image--video .promotion-video-placeholder {
  display: none;
}

.promotions-swiper .swiper-slide:not(.swiper-slide-active) .promotion-image--video .promotion-video-placeholder {
  display: block;
}

.promotions-swiper .swiper-slide:not(.swiper-slide-active) .promotion-image--video video {
  display: none;
}

.promotions-swiper .swiper-button-prev,
.promotions-swiper .swiper-button-next {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.94);
  color: #2f2f2f;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 6;
}

.promotions-swiper .swiper-button-prev::after,
.promotions-swiper .swiper-button-next::after {
  font-size: 16px;
  font-weight: 700;
}

.promotions-swiper .swiper-button-prev {
  left: 12px;
}

.promotions-swiper .swiper-button-next {
  right: 12px;
}

.promotions-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #ffffff;
  opacity: 0.6;
}

.promotions-swiper .swiper-pagination-bullet-active {
  background: #ffffff;
  opacity: 1;
}

.double-banners-section {
  margin-top: 20px;
}

.double-banners {
  --double-banners-gap: 11px;
  --double-banners-visible: 3;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: var(--double-banners-gap);
  overflow: hidden;
}

.double-banners a {
  display: block;
  flex: 0 0 calc((100% - (var(--double-banners-visible) - 1) * var(--double-banners-gap)) / var(--double-banners-visible));
  text-decoration: none;
}

.double-banners img {
  display: block;
  width: 100%;
  height: auto;
}

.promo-offer-section {
  margin-top: 20px;
}

.promo-offer-section__inner {
  position: relative;
}

.promo-offer-hero {
  position: relative;
  height: 300px;
  background-color: #F7AA06;
  border-radius: 16px;
  padding: 60px 40px 40px;
  overflow: hidden;
}

/*.promo-offer-hero::after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  right: 16px;*/
/*  top: 47%;*/
/*  width: 220px;*/
/*  height: 144px;*/
/*  transform: translateY(-50%);*/
/*  background-image: url("../img/promoback.png");*/
/*  background-repeat: no-repeat;*/
/*  background-size: contain;*/
/*  background-position: right center;*/
/*  pointer-events: none;*/
/*}*/

.promo-offer-hero__title {
  position: relative;
  z-index: 1;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
}

.promo-offer-hero__arrow {
  display: block;
  width: clamp(18px, 0.2vw, 27px);
  height: auto;
  flex-shrink: 0;
}

.promo-offer-hero__subtitle {
  position: relative;
  z-index: 1;
  margin: 14px 0 0;
  color: #ffffff;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.1;
}

@media (max-width: 1199.98px) {
  .promo-offer-hero__title {
    font-size: clamp(40px, 6vw, 72px);
  }

  .promo-offer-hero__subtitle {
    font-size: clamp(22px, 3vw, 36px);
  }
}

.promo-offer-cards {
  position: relative;
  z-index: 2;
  margin-top: -96px;
  overflow: hidden;
  padding: 0 38px 8px;
}

.promo-offer-cards .swiper-wrapper {
  align-items: stretch;
}

.promo-offer-cards .swiper-slide {
  height: auto;
}

.combo-swiper-next {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 50%;
  background-color: #f7aa06;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.combo-swiper-next img {
  display: block;
  width: 11px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.promo-item-card {
  position: relative;
  width: 100%;
  min-height: 282px;
  aspect-ratio: 195 / 235;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.promo-item-card--special {
  padding: 0;
  overflow: hidden;
  background: linear-gradient(to bottom, #ffffff 0%, #ffffff 54%, #f7aa06 54%, #f7aa06 100%);
}

.promo-item-card--special .promo-item-card__image {
  height: 54%;
  border-radius: 0;
}

.promo-item-card--special::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 54%;
  background: linear-gradient(to top, rgba(247, 170, 6, 0.88) 0%, rgba(247, 170, 6, 0) 58%);
  pointer-events: none;
  z-index: 2;
}

.promo-item-card__image {
  display: block;
  width: 100%;
  height: 52%;
  border-radius: 8px;
  transition: filter 0.25s ease;
}

.promo-item-card.is-in-cart .promo-item-card__image {
  filter: brightness(0.72);
}

.promo-item-card--special .promo-item-card__qty-overlay {
  top: 0;
  left: 0;
  right: 0;
  height: 54%;
  border-radius: 0;
}

.promo-item-card__qty-overlay {
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  height: calc(52% - 8px);
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.26);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 2;
}

.promo-item-card__qty-stack {
  position: relative;
  display: inline-grid;
  place-items: center;
  min-width: 68px;
  height: 64px;
  overflow: hidden;
}

.promo-item-card__qty-digit {
  grid-area: 1 / 1;
  color: #ffffff;
  font-size: clamp(34px, 2.4vw, 46px);
  font-weight: 700;
  line-height: 1.05;
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.promo-item-card__qty-digit.is-next {
  opacity: 0;
}

.promo-item-card__qty-digit.is-next.from-bottom {
  transform: translateY(110%);
}

.promo-item-card__qty-digit.is-next.from-top {
  transform: translateY(-110%);
}

.promo-item-card__qty-stack.is-up.is-animating .promo-item-card__qty-digit.is-current {
  transform: translateY(-110%);
  opacity: 0;
}

.promo-item-card__qty-stack.is-up.is-animating .promo-item-card__qty-digit.is-next {
  transform: translateY(0);
  opacity: 1;
}

.promo-item-card__qty-stack.is-down.is-animating .promo-item-card__qty-digit.is-current {
  transform: translateY(110%);
  opacity: 0;
}

.promo-item-card__qty-stack.is-down.is-animating .promo-item-card__qty-digit.is-next {
  transform: translateY(0);
  opacity: 1;
}

.promo-item-card__fav {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background-color: #f7aa06;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.promo-item-card__fav-icon {
  display: block;
  width: 24px;
  height: 21px;
}

.promo-item-card__fav-icon path {
  fill: transparent;
  stroke: #ffffff;
  stroke-width: 1.91045;
}

.promo-item-card__fav.is-active .promo-item-card__fav-icon path {
  fill: #ffffff;
}

.promo-item-card__badge {
  display: block;
  margin: 10px 0 6px;
  width: fit-content;
  max-width: 100%;
  height: auto;
}

.promo-item-card--special .promo-item-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  margin: 0;
  z-index: 3;
}

.promo-item-card__category {

  margin: 0 0 4px;
  color: #7a7a7a;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.2;
}

.promo-item-card__name {
  margin: 0px 0;
  color: #212121;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.promo-item-card--special .promo-item-card__category,
.promo-item-card--special .promo-item-card__name {
  color: #ffffff;
  padding-left: 10px;
  padding-right: 10px;
}

.promo-item-card__footer {
  margin-top: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.promo-item-card--special .promo-item-card__footer {
  padding: 4px 10px 10px;
}

.promo-item-card__purchase {
  width: fit-content;
  max-width: 100%;
}

.promo-item-card__price-btn {
  width: auto;
  min-height: 34px;
  border: 0;
  border-radius: 100px;
  background-color: #f7aa06;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 4px 16px;
  text-align: center;
}

.promo-item-card__price-btn:hover {
  background-color: #ffd06d;
}

.promo-item-card--special .promo-item-card__price-btn {
  background-color: #ffffff;
  color: #f7aa06;
}

.promo-item-card--special .promo-item-card__price-btn:hover {
  background-color: #ffffff;
}

.promo-item-card--special .promo-item-card__stepper {
  background-color: #ffffff;
  color: #f7aa06;
}

.promo-item-card--special .promo-item-card__stepper-price {
  color: #f7aa06;
}

.promo-item-card--special .promo-item-card__stepper-btn {
  color: #f7aa06;
}

.promo-item-card__price-old {
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  opacity: 0.92;
}

.promo-item-card__price-current {
  font-size: clamp(18px, 1.2vw, 24px);
  font-weight: 700;
  line-height: 1;
}

.promo-item-card__price {
  color: #212121;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.promo-item-card__cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border: 0;
  background: transparent;
  padding: 0;
}

.promo-item-card__cart img {
  display: block;
}

.promo-item-card__stepper {
  width: auto;
  min-height: 34px;
  border-radius: 100px;
  background-color: #f7aa06;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 2px 10px;
}

.promo-item-card__stepper-btn {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background-color: transparent;
  color: #ffd578;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.promo-item-card__stepper-price {
  font-size: clamp(18px, 1.2vw, 24px);
  font-weight: 700;
  line-height: 1;
}

.promo-item-card__image--clickable {
  cursor: pointer;
}

.product-modal .modal-dialog {
  max-width: 944px;
}

.product-modal .modal-content {
  position: relative;
  width: 100%;
  min-height: 644px;
  background-color: #f3f3f3;
  border: 0;
  border-radius: 28px;
  padding: 16px;
}

.product-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
}

.product-modal__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.46fr) minmax(0, 1fr);
  gap: 18px;
  min-height: 610px;
}

.product-modal__media {
  display: flex;
  flex-direction: column;
}

.product-modal__carousel .carousel-inner {
  border-radius: 14px;
  overflow: hidden;
  background-color: #ececec;
}

.product-modal__main-image {
  display: block;
  width: 100%;
  height: 484px;
  object-fit: cover;
}

.product-modal__nav {
  top: 50%;
  width: 40px;
  height: 40px;
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: #ffffff;
  opacity: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
}

.product-modal__nav img {
  display: block;
  width: 11px;
  height: 18px;
}

.product-modal__nav--prev {
  left: -20px;
}

.product-modal__nav--next {
  right: -20px;
}

.product-modal__thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.product-modal__thumb {
  border: 0;
  border-radius: 14px;
  background: transparent;
  padding: 0;
  overflow: hidden;
  opacity: 1;
}

.product-modal__thumb.is-active {
  box-shadow: 0 0 0 2px #f7aa06 inset;
}

.product-modal__thumb img {
  display: block;
  width: 100%;
  height: 104px;
  object-fit: cover;
}

.product-modal__info {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 30px 12px 10px 10px;
}

.product-modal__title {
  margin: 0;
  color: #333333;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.02;
}

.product-modal__actions {
  position: relative;
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-modal__action-btn {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 0;
}

.product-modal__action-btn img {
  display: block;
  width: auto;
  height: auto;
  max-width: 16px;
  max-height: 14px;
}

.product-info-popover-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: min(308px, calc(100vw - 48px));
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  background-color: #f0f0f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
  padding: 10px 12px;
  z-index: 30;
  color: #5d5d5d;
}

.product-info-popover__content {
  font-size: 10px;
  font-weight: 400;
  line-height: 1.15;
}

.product-info-popover__title {
  margin: 0;
}

.product-info-popover__rows {
  margin-top: 6px;
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 10px;
  row-gap: 2px;
}

.product-info-popover__text {
  margin: 8px 0 0;
}

.product-modal__description {
  margin: 10px 0 0;
  color: #3a3a3a;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
}

.product-modal__weights {
  margin-top: 14px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  width: fit-content;
  padding: 4px;
  border-radius: 999px;
  background-color: #e8e8e8;
}

.product-modal__weight {
  min-width: 88px;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background-color: transparent;
  color: #343434;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  padding: 7px 16px;
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.product-modal__weight.is-active {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.product-modal__cart-btn {
  margin-top: auto;
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 24px;
  background-color: #F7AA06;
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
}

.menu-categories-section {
  margin-top: 44px;
}

.menu-categories-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.menu-categories-first-block {
  display: grid;
  grid-template-columns: repeat(2, 305px);
  gap: 12px;
  justify-content: center;
  height: 100%;
  align-content: start;
}

.menu-category-tile {
  position: relative;
  width: 305px;
  height: 305px;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  text-decoration: none;
  display: block;
  padding: 18px 16px;
}

.menu-category-tile--light {
  background-color: #ffffff;
}

.menu-category-tile--accent {
  background-color: #f7aa06;
}

.menu-category-tile__title {
  position: relative;
  z-index: 2;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.2;
}

.menu-category-tile--light .menu-category-tile__title {
  color: #000000;
}

.menu-category-tile--accent .menu-category-tile__title {
  color: #ffffff;
}

.menu-category-tile--title-top .menu-category-tile__title {
  display: inline-block;
}

.menu-category-tile--title-bottom .menu-category-tile__title {
  position: absolute;
  left: 16px;
  bottom: 18px;
}

.menu-category-tile.menu-category-tile--light.menu-category-tile--title-bottom {
  margin-bottom: 8px;
}

.menu-category-tile.menu-category-tile--drink.menu-category-tile--title-top {
  margin-bottom: 8px;
}

.menu-category-tile__image {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.menu-category-tile__image--left-bottom {
  left: -10px;
  bottom: -10px;
}

.menu-category-tile__image--right-top {
  right: -10px;
  top: -10px;
}

.menu-category-tile__image--right-bottom {
  right: -10px;
  bottom: -10px;
}

.menu-category-tile--drink {
  background-color: #690802;
}

.menu-category-tile--drink .menu-category-tile__title {
  color: #ffffff;
}

.menu-category-tile--holiday {
  background-color: #ffffff;
}

.menu-category-tile--holiday .menu-category-tile__title {
  color: #000000;
}

.menu-categories-fourth-block {
  display: grid;
  grid-template-columns: repeat(2, 305px);
  gap: 12px;
  justify-content: center;
  height: 100%;
  align-content: start;
}

.menu-category-tile--cake-wide {
  grid-column: 1 / -1;
  width: 100%;
  height: 305px;
  background-color: #f7aa06;
  border-radius: 14px;
}

.menu-category-tile__wide-title {
  position: relative;
  z-index: 2;
  display: block;
  color: #ffffff;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
}

.menu-category-tile__wide-subtitle {
  position: relative;
  display: block;
  margin-top: 8px;
  z-index: 2;
  color: #ffffff;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.15;
}

.menu-category-tile--cake-wide .menu-category-tile__image {
  width: min(74%, 460px);
}

.menu-categories-second-block {
  --menu-categories-pad-x: 20px;
  --menu-categories-pad-top: 10px;
  background-color: #f7aa06;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
  padding: 20px 20px;
  min-height: 622px;
  height: 100%;
  padding-top: 10px;
}

.menu-categories-third-block {
  --menu-categories-pad-x: 20px;
  --menu-categories-pad-top: 10px;
  background-color: #690802;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
  padding: 35px 20px;
  min-height: 622px;
  height: 100%;
  padding-top: 10px;
}

.menu-categories-second-block__title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: calc(40px - var(--menu-categories-pad-top, 10px));
  padding-left: calc(35px - var(--menu-categories-pad-x, 20px));
  text-decoration: none;
  color: #ffffff;
  font-size: clamp(30px, 1.5vw, 44px);
  font-weight: 700;
  line-height: 1;
}

.menu-categories-second-block__title img {
  width: 13px;
  height: 40px;
  flex-shrink: 0;
}

.menu-categories-second-block__subtitle {
  margin: 0px 0 0;
  padding-left: calc(35px - var(--menu-categories-pad-x, 20px));
  color: #ffffff;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.2;
  max-width: 460px;
}

.menu-categories-second-block__cards {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.menu-categories-second-card {
  position: relative;
  display: block;
  min-height: 220px;
  border-radius: 16px;
  background-color: #ffffff;
  overflow: hidden;
  text-decoration: none;
}

.menu-categories-second-card__name {
  position: relative;
  z-index: 2;
  display: block;
  margin: 16px auto 0;
  text-align: center;
  color: #000000;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.2;
}

.menu-categories-second-card img {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  height: auto;
  pointer-events: none;
}

.app-download-section {
  margin-top: 145px;
}

.app-download {
  position: relative;
  background-color: #f7aa06;
  border-radius: 14px;
  min-height: 380px;
  overflow: visible;
  padding: 40px 420px 30px 52px;
}

.app-download__phone {
  position: absolute;
  right: -36px;
  bottom: 0px;
  width: 581px;
  height: 521px;
  object-fit: contain;
  z-index: 1;
  pointer-events: none;
}

.app-download__content {
  position: relative;
  z-index: 2;
}

.app-download__title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 700;
  line-height: 1.05;
}

.app-download__subtitle {
  margin: 14px 0 0;
  color: #ffffff;
  font-size: clamp(16px, 1.1vw, 28px);
  font-weight: 400;
  line-height: 1.2;
  max-width: 720px;
}

.app-download__buttons {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 770px;
}

.app-download__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 84px;
  border-radius: 14px;
  background-color: #ffffff;
  color: #690802;
  text-align: center;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.15;
  padding: 10px 8px;
}

.site-footer {
  margin-top: 20px;
}

.site-footer__inner {
  background-color: #690802;
  border-radius: 20px 20px 0 0;
  padding: 36px 24px 28px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr auto;
  gap: 24px;
}

.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__col--main {
  gap: 14px;
}

.site-footer__logo-link {
  display: inline-block;
  width: fit-content;
}

.site-footer__logo {
  display: block;
  width: min(280px, 100%);
  height: auto;
}

.site-footer__phone {
  color: #ffffff;
  text-decoration: none;
  font-size: 72px;
  font-weight: 700;
  line-height: 0.95;
}

.site-footer__copyright {
  margin: 0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
}

.site-footer__col a {
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
}

.site-footer__col a:hover {
  text-decoration: underline;
}

.site-footer__col--social {
  justify-content: flex-end;
}

.site-footer__socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-footer__socials a {
  display: inline-flex;
}

.site-footer__socials img {
  display: block;
  width: 40px;
  height: 40px;
}

@media (max-width: 991.98px) {
  .promotions-swiper .swiper-slide img,
  .promotions-swiper .swiper-slide video {
    max-height: none;
  }

  .promo-offer-cards {
    margin-top: -84px;
    padding: 0 20px 8px;
  }

  .double-banners {
    --double-banners-visible: 2.2;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .double-banners a {
    scroll-snap-align: start;
  }

  .menu-categories-grid {
    grid-template-columns: 1fr;
  }

  .menu-categories-first-block {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: initial;
  }

  .menu-categories-fourth-block {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: initial;
  }

  .menu-category-tile {
    width: 100%;

    aspect-ratio: 1 / 1;
  }

  .menu-categories-second-block {
    min-height: 0;
  }

  .menu-categories-third-block {
    min-height: 0;
  }

  .app-download {
    min-height: 340px;
    padding: 28px 280px 16px 16px;
  }

  .app-download__phone {
    right: -18px;
    bottom: -36px;
    width: 380px;
    height: 340px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__col--social {
    justify-content: flex-start;
  }

  .site-footer__phone {
    font-size: clamp(44px, 7vw, 64px);
  }

  .product-modal .modal-dialog {
    max-width: calc(100vw - 24px);
  }


  .product-modal__layout {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 12px;
  }

  .product-modal__main-image {
    height: min(50vw, 420px);
  }

  .product-modal__info {
    padding: 4px 2px 4px;
  }
}

@media (max-width: 767.98px) {
  .categories-nav__scroll {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .categories-nav__scroll::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }

  .promo-offer-cards {
    margin-top: -76px;
    padding: 0 6px;
  }

  .combo-swiper-next {
    right: 10px;
  }

  .menu-category-tile__image {
    width: 88%;
  }

  .menu-category-tile__wide-title {
    font-size: 22px;
  }

  .menu-category-tile__wide-subtitle {
    font-size: 18px;
  }

  .menu-categories-second-block {
    --menu-categories-pad-x: 16px;
    --menu-categories-pad-top: 28px;
    padding: 28px 16px;
  }

  .menu-categories-third-block {
    --menu-categories-pad-x: 16px;
    --menu-categories-pad-top: 28px;
    padding: 28px 16px;
  }

  .menu-categories-second-block__subtitle {
    font-size: 18px;
  }

  .menu-categories-second-block__cards {
    margin-top: 36px;
  }

  .app-download {
    min-height: 555px;
    padding: 20px 14px 220px;
  }
  .app-download-section {
    margin-top: 50px;
  }
  .app-download__phone {
    left: 45%;
    right: auto;
    top: auto;
    bottom: -1px;
    transform: translateX(-50%);
    width: min(78vw, 300px);
    height: auto;
  }

  .app-download__title {
    text-align: center;
  }

  .app-download__subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .app-download__button {
    min-height: 72px;
    font-size: clamp(14px, 3.8vw, 18px);
    line-height: 1.2;
    padding: 10px 6px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .site-footer__phone {
    font-size: clamp(34px, 11vw, 52px);
  }

  .product-modal .modal-dialog {
    max-width: calc(100vw - 16px);
    margin: 8px auto;
    height: calc(100dvh - 16px);
  }

  .callback-modal .modal-dialog {
    max-width: calc(100vw - 24px);
    margin: 12px auto;
  }

  .callback-modal .modal-content {
    min-height: auto;
    padding: 24px 16px 18px;
  }

  .callback-modal__body {
    max-width: 100%;
  }

  .callback-modal__title {
    margin-top: 18px;
    font-size: 36px;
  }

  .callback-modal__subtitle {
    font-size: 20px;
  }

  .callback-modal__form {
    margin-top: 18px;
  }

  .callback-modal__input {
    height: 56px;
    font-size: clamp(20px, 6vw, 30px);
    padding: 0 18px;
  }

  .callback-modal__legal {
    font-size: 14px;
  }

  .callback-modal__submit {
    height: 60px;
    font-size: 24px;
  }

  .product-modal .modal-content {
    padding: 12px;
    height: 100%;
    min-height: 0;
  }

  .product-modal__main-image {
    height: 250px;
  }

  .product-modal__layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    min-height: 100%;
  }

  .product-modal__info {
    min-height: 0;
  }

  .product-modal__thumb img {
    height: 68px;
  }

  .product-modal__title {
    font-size: 26px;
  }

  .product-modal__description {
    margin-top: 10px;
    font-size: 16px;
  }

  .product-modal__cart-btn {
    min-height: 52px;
    font-size: 20px;
  }
}

@media (max-width: 575.98px) {
  .cart-offcanvas__title {
    font-size: 26px;
  }

  .cart-offcanvas__header {
    padding: 12px 12px 10px;
  }

  .segment-toggle__option {
    min-height: 34px;
    font-size: 13px;
  }

  .cart-offcanvas__headline {
    gap: 6px;
    flex-wrap: wrap;
  }

  .cart-item {
    gap: 10px;
  }

  .cart-item__image {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
  }

  .cart-item__meta {
    font-size: 12px;
  }

  .cart-item__name {
    font-size: 16px;
  }

  .cart-item__weight {
    font-size: 12px;
  }

  .cart-item__price {
    font-size: 30px;
  }

  .cart-item__unit-price {
    font-size: 11px;
  }

  .cart-item__controls {
    transform: scale(0.94);
    transform-origin: right center;
  }

  .cart-offcanvas__promo-input {
    font-size: 16px;
  }

  .cart-extras__title {
    font-size: 30px;
  }

  .cart-extras__list {
    grid-auto-columns: calc((100% - 10px) / 2);
  }

  .cart-offcanvas__totals-row {
    font-size: 16px;
  }

  .cart-offcanvas__totals-row--payable {
    font-size: 28px;
  }

  .cart-offcanvas__checkout {
    min-height: 52px;
    font-size: 16px;
  }

  .site-search {
    padding: 8px;
  }

  .site-search__panel {
    width: calc(100vw - 12px);
    min-height: 0;
    height: auto;
    max-height: calc(100vh - 12px);
    border-radius: 14px;
    padding: 16px 12px 14px;
  }

  .site-search__content {
    max-width: 100%;
  }

  .site-search__title {
    margin-top: 34px;
    font-size: 36px;
    line-height: 1.05;
  }

  .site-search__subtitle {
    font-size: 20px;
    line-height: 1.2;
  }

  .site-search__form {
    margin-top: 14px;
  }

  .site-search__input-wrap {
    min-height: 52px;
    padding: 0 10px 0 6px;
  }

  .site-search__input-icon {
    width: 38px;
    height: 38px;
  }

  .site-search__input-icon img {
    width: 20px;
    height: 20px;
  }

  .site-search__input {
    height: 44px;
    margin-left: 8px;
    padding-left: 10px;
    font-size: 22px;
  }

  .site-search__result-btn {
    padding: 9px 11px;
  }

  .site-search__result-title {
    font-size: 17px;
  }

  .site-search__result-type {
    font-size: 11px;
  }

  .categories-nav.is-fixed::after {
    display: none;
  }

  .categories-nav.is-fixed .categories-nav__scroll {
    border-radius: 0;
    clip-path: none;
    padding: 10px 8px;
  }

  .categories-nav__bublik {
    width: 28px;
    height: 28px;
    transform: translateX(-44px);
    margin-right: -28px;
  }

  .site-header__bar {
    padding-right: 10px;
  }

  .site-header__right-actions {
    right: 10px;
    gap: 4px;
  }

  .icon-btn {
    width: 32px;
    height: 32px;
  }

  .site-header__logo {
    width: min(220px, 64vw);
  }

  .site-header__cart-overlay {
    right: -8px;
  }

  .floating-cart-btn {
    right: 12px;
    bottom: 12px;
    min-height: 56px;
    gap: 6px;
    padding: 6px 6px 6px 14px;
  }

  .floating-cart-btn__price {
    font-size: clamp(22px, 7vw, 36px);
  }

  .floating-cart-btn__icon {
    width: 44px;
    height: 44px;
  }

  .floating-cart-btn__icon img {
    width: 28px;
    height: 24px;
  }

  .menu-offcanvas__title {
    font-size: 24px;
  }

  .menu-offcanvas__nav a {
    font-size: 20px;
  }

  .promo-offer-hero {
    height: 260px;
    padding: 32px 20px 20px;
  }

  .promo-offer-cards {
    --promo-mobile-gutter: 12px;
    margin-top: -72px;
    padding: 0 var(--promo-mobile-gutter) 8px;
  }

  .promo-item-card {
    width: 100%;
    min-height: 244px;
  }

  .double-banners {
    --double-banners-visible: 2.15;
  }

  .combo-swiper-next {
    width: 44px;
    height: 44px;
    right: 8px;
  }

  .app-download__buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .site-footer__inner {
    padding-top: 28px;
  }

  .product-modal .modal-dialog {
    max-width: calc(100vw - 10px);
    margin: 5px auto;
    height: calc(100dvh - 10px);
  }

  .product-modal__main-image {
    height: 220px;
  }
}

.catalog-main {
  padding-top: 28px;
}

.catalog-title {
  margin: 0;
  color: #000000;
  font-size: clamp(28px, 2.2vw, 36px);
  font-weight: 700;
  line-height: 1;
}

.catalog-pills {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 7px;
}

.catalog-pills a {
  width: 100%;
  min-height: 45px;
  border-radius: 100px;
  background-color: #fff3da;
  color: #f7aa06;
  text-decoration: none;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
}

.catalog-pills a:hover {
  text-decoration: none;
  color: #e09a00;
}

.catalog-groups {
  margin-top: 32px;
}

.catalog-group + .catalog-group {
  margin-top: 36px;
}

.catalog-group {
  position: relative;
}

.catalog-group__title {
  margin: 0;
  color: #000000;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
}

.catalog-group__title-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.catalog-group__title-link img {
  width: 10px;
  height: 18px;
}

.catalog-group__title-link:hover {
  text-decoration: none;
}

.catalog-group-swiper {
  margin-top: 18px;
  overflow: hidden;
  padding: 0 0 14px;
}

.catalog-group-swiper .swiper-slide {
  height: auto;
}

.catalog-group-swiper-prev,
.catalog-group-swiper-next {
  position: absolute;
  top: calc(50% + 24px);
  transform: translateY(-50%);
  z-index: 3;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.94);
  color: #2f2f2f;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.catalog-group-swiper-prev {
  left: -58px;
}

.catalog-group-swiper-next {
  right: -58px;
}

.catalog-group-swiper-prev::after,
.catalog-group-swiper-next::after {
  font-size: 16px;
  font-weight: 700;
}

.catalog-group-swiper-prev.swiper-button-disabled,
.catalog-group-swiper-next.swiper-button-disabled {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media (max-width: 991.98px) {
  .catalog-group__title {
    font-size: 30px;
  }

  .catalog-group-swiper {
    padding: 0;
  }

  .catalog-group-swiper-prev {
    left: -10px;
  }

  .catalog-group-swiper-next {
    right: -10px;
  }
}

@media (max-width: 767.98px) {
  .catalog-main {
    padding-top: 18px;
  }

  .catalog-title {
    font-size: clamp(26px, 7.2vw, 32px);
  }

  .catalog-pills {
    margin-top: 16px;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .catalog-pills a {
    font-size: clamp(16px, 4.5vw, 20px);
    padding: 8px 16px;
  }

  .catalog-group + .catalog-group {
    margin-top: 28px;
  }

  .catalog-group__title {
    font-size: 26px;
  }
}

/* Restored project-wide overrides */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-footer {
  margin-top: auto;
}

.promotions-swiper .swiper-button-prev,
.promotions-swiper .swiper-button-next {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.94);
  color: #2f2f2f;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 6;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.promotions-swiper:hover .swiper-button-prev,
.promotions-swiper:hover .swiper-button-next {
  opacity: 1;
  visibility: visible;
}

.promotions-swiper .swiper-button-prev::after,
.promotions-swiper .swiper-button-next::after {
  font-size: 16px;
  font-weight: 700;
}

.promotions-swiper .swiper-button-prev {
  left: 12px;
}

.promotions-swiper .swiper-button-next {
  right: 12px;
}

.catalog-pills {
  margin-top: 24px;
  display: flex;
  flex-wrap: nowrap;
  gap: 7px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.catalog-pills a {
  width: auto;
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: 19px;
}

.profile-page {
  background-color: #f5f5f5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.profile-main {
  padding: 26px 0 40px;
  flex: 1 0 auto;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.profile-card {
  min-height: 200px;
  border: 2px solid #e8e8e8;
  border-radius: 20px;
  background-color: #f7f7f7;
  padding: 18px;
  display: flex;
  flex-direction: column;
}

.profile-card__title {
  margin: 0;
  color: #202020;
  font-size: clamp(22px, 1.4vw, 34px);
  font-weight: 700;
  line-height: 1.1;
}

.profile-card__title--accent {
  color: #efa100;
}

.profile-card__value {
  margin: 8px 0 0;
  color: #2e2e2e;
  font-size: clamp(16px, 0.95vw, 22px);
  line-height: 1.2;
}

.profile-card__text {
  margin: auto 0 0;
  color: #3d3d3d;
  font-size: clamp(14px, 0.9vw, 20px);
  line-height: 1.2;
}

.profile-card--user .profile-card__text--greeting {
  margin: 11px 0 0;
}

.profile-card--editable {
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.profile-card--editable:hover,
.profile-card--editable:focus-visible {
  border-color: #efa100;
  background-color: #fffdf6;
  outline: none;
}

.profile-card--link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.profile-card--link:hover,
.profile-card--link:focus-visible {
  border-color: #efa100;
  background-color: #fffdf6;
  outline: none;
}

button.profile-card--link {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  width: 100%;
  min-height: 200px;
  padding: 18px;
  border: 2px solid #e8e8e8;
  background-color: #f7f7f7;
  text-align: left;
  font: inherit;
  appearance: none;
}

.favorites-modal__dialog {
  max-width: min(510px, calc(100vw - 24px));
}

.favorites-modal__content {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  background-color: #f3f3f3;
}

.favorites-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px 10px;
}

.favorites-modal__title {
  margin: 0;
  color: #171717;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  line-height: 1;
}

.favorites-modal__close {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #efefef;
  color: #1f1f1f;
  font-size: 42px;
  line-height: 1;
  padding: 0;
  flex-shrink: 0;
}

.favorites-modal__body {
  padding: 0 16px 20px;
}

.favorites-modal__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.favorites-modal__empty {
  padding: 36px 20px;
  border-radius: 16px;
  background-color: #ffffff;
  text-align: center;
}

.favorites-modal__empty-text {
  margin: 0;
  color: #4a4a4a;
  font-size: 18px;
  line-height: 1.35;
}

.favorites-modal__add-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 16px;
  padding: 0 28px;
  border-radius: 999px;
  background-color: #f7aa06;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.favorites-item__remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background-color: #f2f2f2;
  color: #5a5a5a;
  padding: 0;
  flex-shrink: 0;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.favorites-item__remove:hover {
  background-color: #ffe8e8;
  color: #c62828;
}

.profile-favorites-page__head {
  margin-bottom: 20px;
}

.profile-favorites-page__title {
  margin: 0;
  color: #202020;
  font-size: clamp(24px, 2vw, 40px);
  font-weight: 700;
  line-height: 1.1;
}

.profile-favorites-page__subtitle {
  margin: 8px 0 0;
  color: #4a4a4a;
  font-size: clamp(15px, 1vw, 20px);
  line-height: 1.3;
}

.profile-favorites-page__empty {
  padding: 40px 20px;
  border: 2px dashed #e0e0e0;
  border-radius: 20px;
  background-color: #f7f7f7;
  text-align: center;
  color: #4a4a4a;
  font-size: 18px;
}

.profile-favorites-page__catalog-link {
  display: inline-flex;
  margin-top: 16px;
  color: #efa100;
  font-weight: 700;
  text-decoration: none;
}

.profile-favorites-page__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #202020;
  font-size: 28px;
  line-height: 1;
}

.product-modal__action-btn[data-product-fav-btn].is-active {
  background-color: #efa100;
}

.product-modal__action-btn[data-product-fav-btn].is-active img {
  filter: brightness(0) invert(1);
}

.profile-card__value--placeholder {
  color: #9a9a9a;
}

.profile-edit-modal__label {
  display: block;
  margin-bottom: 6px;
  color: #2e2e2e;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.profile-edit-modal.callback-modal .modal-content {
  min-height: 0;
}

.profile-edit-modal .callback-modal__input {
  font-size: 20px;
}

.profile-edit-modal .callback-modal__input::placeholder {
  font-size: 20px;
}

.profile-complete-modal .callback-modal__field + .callback-modal__field {
  margin-top: 12px;
}

.profile-card__text--accent {
  color: #b38a1f;
}

.profile-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.profile-user--editable {
  cursor: pointer;
  border-radius: 12px;
  margin: -4px;
  padding: 4px;
  transition: background-color 0.15s ease;
}

.profile-user--editable:hover,
.profile-user--editable:focus-visible {
  background-color: #fff3d6;
  outline: none;
}

.profile-user__name--placeholder {
  color: #9a9a9a;
}

.profile-user__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #f7b500;
  color: #ffffff;
  font-size: 34px;
  font-weight: 700;
  line-height: 56px;
  text-align: center;
}

.profile-user__name {
  margin: 0;
  color: #202020;
  font-size: clamp(20px, 1.4vw, 34px);
  font-weight: 700;
  line-height: 1.05;
}

.profile-user__phone {
  margin: 4px 0 0;
  color: #2f2f2f;
  font-size: clamp(15px, 1vw, 24px);
  line-height: 1;
}

.profile-logout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  margin-top: 18px;
  border: 1px solid #efa100;
  border-radius: 24px;
  background-color: #ffffff;
  color: #efa100;
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 700;
  line-height: 1.15;
  cursor: pointer;
}

.profile-logout-btn:hover {
  background-color: #fff8e8;
}

.profile-logout-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.profile-progress {
  margin-top: 10px;
  width: 100%;
  height: 14px;
  border-radius: 999px;
  background-color: #ececec;
  overflow: hidden;
}

.profile-progress__bar {
  width: 50%;
  height: 100%;
  border-radius: 999px;
  background-color: #efa100;
  transition: width 0.55s ease;
}

.profile-card--progress.is-celebrating {
  animation: profile-progress-card-pop 0.65s ease;
}

@keyframes profile-progress-card-pop {
  0% {
    transform: scale(1);
    box-shadow: none;
  }

  45% {
    transform: scale(1.02);
    box-shadow: 0 0 0 4px rgba(239, 161, 0, 0.28);
  }

  100% {
    transform: scale(1);
    box-shadow: none;
  }
}

.profile-confetti-canvas {
  position: fixed;
  inset: 0;
  z-index: 10050;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.profile-auth-modal .callback-modal__subtitle {
  text-transform: none;
}

.callback-modal__auth-hint {
  margin: 18px 0 0;
  color: #2e2e2e;
  font-size: 16px;
  line-height: 1.25;
}

.callback-modal__method-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.callback-modal__method-btn {
  height: 44px;
  border: 1px solid #efa100;
  border-radius: 24px;
  background-color: #ffffff;
  color: #1f1f1f;
  font-size: 14px;
  font-weight: 700;
}

.callback-modal__method-btn.is-active {
  background-color: #efa100;
  color: #ffffff;
}

.profile-auth-modal .callback-modal__method-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr) minmax(0, 1.28fr);
}

.profile-auth-modal .callback-modal__method-grid .callback-modal__method-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: clamp(48px, 5vw, 56px);
  padding: 10px 8px;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
}

.profile-auth-modal .callback-modal__method-grid .callback-modal__method-btn[data-auth-method="vk"] {
  padding-inline: 12px;
}

.profile-auth-modal__screen[hidden] {
  display: none;
}

.profile-auth-modal__subtitle--plain {
  text-transform: none;
}

.profile-auth-modal__call-number-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  text-decoration: none;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
}

.profile-auth-modal__secondary-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  margin-top: 12px;
  border: 1px solid #efa100;
  border-radius: 24px;
  background-color: #ffffff;
  color: #efa100;
  font-size: clamp(16px, 1.5vw, 22px);
  font-weight: 700;
  line-height: 1.15;
}

.profile-auth-modal__title--code {
  font-size: clamp(20px, 5vw, 32px);
  line-height: 1.1;
  white-space: nowrap;
}

.profile-auth-modal__sms-target {
  margin-top: 8px;
  font-size: clamp(14px, 3.6vw, 19px);
  line-height: 1.25;
  text-align: center;
  text-transform: none;
}

.profile-auth-modal__sms-target-line {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  max-width: 100%;
  white-space: nowrap;
}

.profile-auth-modal__sms-target-line [data-auth-phone-display] {
  white-space: nowrap;
}

.profile-auth-modal__edit-phone {
  flex-shrink: 0;
  border: 0;
  padding: 0;
  background: transparent;
  color: #efa100;
  font-size: inherit;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

.profile-auth-modal__code-grid {
  display: grid;
  grid-template-columns: repeat(4, 60px);
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.profile-auth-modal__code-cell {
  width: 60px;
  height: 73px;
  border: 0;
  border-radius: 12px;
  background-color: #f2f2f2;
  color: #1f1f1f;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.profile-auth-modal__code-cell:focus {
  outline: 2px solid #efa100;
  outline-offset: 2px;
}

.profile-auth-modal__resend-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 52px;
  margin-top: 18px;
  margin-inline: auto;
  padding: 12px 18px;
  font-size: clamp(15px, 3.8vw, 20px);
  line-height: 1.15;
  white-space: nowrap;
  text-decoration: none;
}

.profile-auth-modal__resend-btn:disabled {
  background-color: #e8e8e8;
  color: #9a9a9a;
  cursor: not-allowed;
  opacity: 1;
}

.callback-modal__input--code {
  margin-top: 14px;
  text-align: center;
  letter-spacing: 4px;
  font-size: 28px;
  font-weight: 700;
}

.callback-modal__status {
  margin: 12px 0 0;
  min-height: 20px;
  color: #2e2e2e;
  font-size: 14px;
  line-height: 1.3;
}

.callback-modal__status.is-error {
  color: #d12f2f;
}

.callback-modal__status.is-success {
  color: #2d8f3a;
}

.product-modal__cart-wrap {
  margin-top: auto;
}

.dev-delivery-modal-test-page {
  min-height: 100vh;
  background-color: #f7f7f7;
}

.dev-delivery-modal-test {
  padding: 48px 0 64px;
}

.dev-delivery-modal-test__label {
  margin: 0 0 8px;
  color: #8a8a8a;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dev-delivery-modal-test__title {
  margin: 0;
  color: #1f1f1f;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
}

.dev-delivery-modal-test__text {
  margin: 12px 0 0;
  max-width: 640px;
  color: #4a4a4a;
  font-size: 18px;
  line-height: 1.4;
}

.dev-delivery-modal-test__open-btn {
  margin-top: 24px;
  min-width: 240px;
  min-height: 56px;
  border: 0;
  border-radius: 999px;
  background-color: #efa100;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.delivery-address-modal .modal-dialog {
  max-width: 954px;
}

.delivery-address-modal .modal-content {
  width: 954px;
  max-width: calc(100vw - 24px);
  height: 570px;
  min-height: 570px;
  padding: 0;
  overflow: hidden;
}

.delivery-address-modal__layout {
  display: flex;
  width: 100%;
  height: 100%;
}

.delivery-address-modal__form-panel {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-width: 0;
  padding: 28px 24px 24px;
  text-align: left;
}

.delivery-address-modal__title {
  margin: 0;
  color: #efa100;
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 700;
  line-height: 1.05;
}

.delivery-address-modal__delivery {
  margin-top: 16px;
  margin-bottom: 0;
}

.delivery-address-modal__content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  margin-top: 16px;
  min-height: 0;
}

.delivery-address-modal__view {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
}

.delivery-address-modal__view[hidden] {
  display: none !important;
}

.delivery-address-modal__form {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
}

.delivery-address-modal__pickup {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
}

.delivery-address-modal__search-wrap {
  width: 100%;
  max-width: 335px;
  min-height: 48px;
  border-width: 1px;
  padding: 0 12px 0 6px;
}

.delivery-address-modal__search-wrap .site-search__input-icon {
  width: 36px;
  height: 36px;
}

.delivery-address-modal__search-wrap .site-search__input-icon img {
  width: 18px;
  height: 18px;
}

.delivery-address-modal__search-wrap .site-search__input {
  height: 40px;
  margin-left: 8px;
  padding-left: 10px;
  font-size: 16px;
}

.delivery-address-modal__search-wrap .site-search__input::placeholder {
  font-size: 16px;
}

.delivery-address-modal__restaurants {
  flex: 1 1 auto;
  min-height: 0;
  max-height: 100%;
  margin-top: 12px;
  padding-right: 6px;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #efa100 #f2f2f2;
}

.delivery-address-modal__restaurants::-webkit-scrollbar {
  width: 6px;
}

.delivery-address-modal__restaurants::-webkit-scrollbar-track {
  border-radius: 999px;
  background-color: #f2f2f2;
}

.delivery-address-modal__restaurants::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background-color: #efa100;
}

.delivery-address-modal__restaurant {
  display: block;
  width: 100%;
  max-width: 335px;
  min-height: 81px;
  border: 1px solid #ececec;
  border-radius: 14px;
  background-color: #ffffff;
  padding: 14px 16px;
  text-align: left;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.delivery-address-modal__restaurant + .delivery-address-modal__restaurant {
  margin-top: 8px;
}

.delivery-address-modal__restaurant-address {
  display: block;
  color: #1f1f1f;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
}

.delivery-address-modal__restaurant-hours {
  display: block;
  margin-top: 6px;
  color: #6a6a6a;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
}

.delivery-address-modal__restaurant.is-active {
  border-color: #efa100;
  background-color: #fffaf0;
  box-shadow: 0 0 0 1px rgba(239, 161, 0, 0.35);
}

.delivery-address-modal__restaurant[hidden] {
  display: none;
}

.delivery-address-modal__pickup .delivery-address-modal__submit {
  flex: 0 0 auto;
  margin-top: 12px;
}

.delivery-address-modal__street-field {
  position: relative;
  z-index: 4;
}

.delivery-address-modal__street-label {
  display: block;
  margin: 0;
}

.delivery-address-modal__suggestions {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  left: 0;
  z-index: 20;
  max-height: 240px;
  border: 1px solid #efa100;
  border-radius: 16px;
  background-color: #ffffff;
  padding: 6px;
  overflow-x: hidden;
  overflow-y: auto;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  scrollbar-width: thin;
  scrollbar-color: #efa100 #f2f2f2;
}

.delivery-address-modal__suggestions::-webkit-scrollbar {
  width: 6px;
}

.delivery-address-modal__suggestions::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background-color: #efa100;
}

.delivery-address-modal__suggestion {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 12px;
  background: transparent;
  padding: 10px 12px;
  color: #1f1f1f;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  text-align: left;
}

.delivery-address-modal__suggestion:hover,
.delivery-address-modal__suggestion:focus {
  background-color: #fff6e5;
  outline: none;
}

.delivery-address-modal__field {
  margin-top: 0;
}

.delivery-address-modal__field + .delivery-address-modal__field,
.delivery-address-modal__row + .delivery-address-modal__field,
.delivery-address-modal__field + .delivery-address-modal__row,
.delivery-address-modal__row + .delivery-address-modal__row {
  margin-top: 10px;
}

.delivery-address-modal__row {
  display: flex;
  gap: 10px;
}

.delivery-address-modal__row .delivery-address-modal__field {
  flex: 1 1 0;
  min-width: 0;
}

.delivery-address-modal__row .callback-modal__field + .callback-modal__field {
  margin-top: 0;
}

.delivery-address-modal__input {
  height: 48px;
  border-width: 1px;
  border-radius: 24px;
  padding: 0 18px;
  font-size: 18px;
  font-weight: 500;
}

.delivery-address-modal__input::placeholder {
  font-size: 16px;
}

.delivery-address-modal__textarea {
  width: 100%;
  min-height: 72px;
  max-height: 96px;
  border: 1px solid #efa100;
  border-radius: 18px;
  background-color: #ffffff;
  padding: 12px 18px;
  color: #1f1f1f;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  resize: vertical;
  overflow-y: auto;
}

.delivery-address-modal__textarea::placeholder {
  color: #efa100;
}

.delivery-address-modal__textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(239, 161, 0, 0.18);
}

.delivery-address-modal__submit {
  width: 100%;
  max-width: none;
  height: 52px;
  margin-top: auto;
  font-size: 22px;
}

.delivery-address-modal__map-panel {
  flex: 0 0 562px;
  width: 562px;
  border-left: 1px solid #e4e4e4;
  background-color: #e8e8e8;
}

.delivery-address-modal__map {
  width: 100%;
  height: 100%;
  min-height: 100%;
}

@media (max-width: 991.98px) {
  .delivery-address-modal .modal-content {
    width: auto;
    height: auto;
    min-height: 0;
    max-height: calc(100dvh - 24px);
    overflow-y: auto;
  }

  .delivery-address-modal__layout {
    flex-direction: column;
    height: auto;
  }

  .delivery-address-modal__form-panel {
    padding: 24px 16px 16px;
  }

  .delivery-address-modal__map-panel {
    flex: 0 0 auto;
    width: 100%;
    height: 280px;
    border-left: 0;
    border-top: 1px solid #e4e4e4;
  }

  .delivery-address-modal__submit {
    margin-top: 16px;
  }
}

@media (max-width: 767.98px) {
  .catalog-pills a {
    font-size: clamp(15px, 4.5vw, 19px);
    padding: 8px 16px;
  }

  .callback-modal__method-grid {
    grid-template-columns: 1fr;
  }

  .profile-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .profile-card {
    min-height: 0;
    padding: 14px;
    border-radius: 16px;
  }

  button.profile-card--link {
    min-height: 0;
    padding: 14px;
  }
}

.news-page {
  background-color: #f5f5f5;
}

.news-page__main {
  padding: 32px 0 48px;
}

.news-page__header {
  margin-bottom: 20px;
}

.news-page__title {
  margin: 0;
  color: #690802;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
}

.news-page__subtitle {
  margin: 8px 0 0;
  color: #4a4a4a;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.35;
}

.news-page__empty {
  margin: 0;
  padding: 40px 20px;
  border-radius: 16px;
  background-color: #ffffff;
  color: #4a4a4a;
  font-size: 18px;
  text-align: center;
}

.news-page__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 305px));
  justify-content: start;
  gap: 16px;
}

.news-card {
  width: 305px;
  height: 440px;
  padding: 10px;
  border-radius: 16px;
  background-color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.news-card__link {
  display: flex;
  height: 100%;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.news-card__image {
  width: 285px;
  height: 285px;
  border-radius: 12px;
  object-fit: cover;
}

.news-card__title {
  margin: 12px 0 0;
  color: #f7aa06;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
}

.news-card__excerpt {
  margin: 8px 0 0;
  color: #333333;
  font-size: 14px;
  line-height: 1.35;
}

.news-article__back {
  display: inline-flex;
  margin-bottom: 20px;
  color: #690802;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

.news-article__back:hover {
  color: #f7aa06;
}

.news-article {
  max-width: 820px;
  margin: 0 auto;
  padding: 24px;
  border-radius: 20px;
  background-color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.news-article__image {
  width: 100%;
  max-width: 520px;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  object-fit: cover;
}

.news-article__title {
  margin: 20px 0 0;
  color: #690802;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.15;
}

.news-article__date {
  display: block;
  margin-top: 8px;
  color: #888888;
  font-size: 14px;
}

.news-article__body {
  margin-top: 18px;
  color: #333333;
  font-size: 16px;
  line-height: 1.55;
}

@media (max-width: 1320px) {
  .news-page__grid {
    grid-template-columns: repeat(3, minmax(0, 305px));
  }
}

@media (max-width: 991px) {
  .news-page__grid {
    grid-template-columns: repeat(2, minmax(0, 305px));
  }
}

@media (max-width: 680px) {
  .news-page__grid {
    grid-template-columns: minmax(0, 305px);
  }

  .news-card {
    width: 100%;
    max-width: 305px;
    margin: 0 auto;
  }

  .news-card__image {
    width: 100%;
    max-width: 285px;
    height: auto;
    aspect-ratio: 1 / 1;
  }
}

.news-modal__dialog {
  max-width: min(960px, calc(100vw - 32px));
}

.news-modal__content {
  position: relative;
  border: none;
  border-radius: 18px;
  padding: 24px;
  background-color: #ffffff;
}

.news-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
}

.news-modal__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  min-height: 420px;
}

.news-modal__media {
  display: flex;
  align-items: stretch;
}

.news-modal__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 14px;
  background-color: #ececec;
}

.news-modal__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-right: 8px;
  overflow: auto;
  max-height: min(70vh, 560px);
}

.news-modal__title {
  margin: 0;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 700;
  color: #690802;
}

.news-modal__date {
  font-size: 14px;
  color: #8a8a8a;
}

.news-modal__body {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: #2b2b2b;
  white-space: pre-wrap;
}

@media (max-width: 768px) {
  .news-modal__layout {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
  }

  .news-modal__image {
    min-height: 240px;
  }

  .news-modal__info {
    max-height: none;
  }
}

.contacts-page {
  background-color: #f5f5f5;
}

.contacts-page__main {
  padding: 32px 0 48px;
}

.contacts-page__header {
  margin-bottom: 20px;
}

.contacts-page__title {
  margin: 0;
  color: #690802;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
}

.contacts-page__subtitle {
  margin: 8px 0 0;
  color: #4a4a4a;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.35;
}

.contacts-page__panel {
  width: 100%;
  height: 570px;
  border-radius: 18px;
  background-color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.contacts-page__layout {
  display: flex;
  width: 100%;
  height: 100%;
}

.contacts-page__map-panel {
  flex: 1 1 auto;
  min-width: 0;
  border-left: 1px solid #e4e4e4;
  background-color: #e8e8e8;
}

.contacts-page__map {
  width: 100%;
  height: 100%;
  min-height: 100%;
}

.contacts-page__list-panel {
  display: flex;
  flex: 0 0 392px;
  flex-direction: column;
  width: 392px;
  max-width: 42%;
  min-width: 280px;
  padding: 28px 24px 24px;
}

.contacts-page__search-wrap {
  flex: 0 0 auto;
}

.contacts-page__restaurants {
  flex: 1 1 auto;
  min-height: 0;
  margin-top: 12px;
}

.contacts-page__location {
  max-width: none;
  padding: 0;
  overflow: hidden;
}

.contacts-location__head {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.contacts-location__select {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 14px 12px 14px 16px;
  text-align: left;
  cursor: pointer;
}

.contacts-location__chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  width: 44px;
  border: 0;
  border-left: 1px solid #ececec;
  background: transparent;
  color: #6a6a6a;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.contacts-location__chevron:hover {
  color: #690802;
  background-color: #fafafa;
}

.contacts-location.is-expanded .contacts-location__chevron {
  color: #690802;
}

.contacts-location__chevron-icon {
  transition: transform 0.2s ease;
}

.contacts-location.is-expanded .contacts-location__chevron-icon {
  transform: rotate(180deg);
}

.contacts-location.is-active .contacts-location__chevron {
  border-left-color: rgba(239, 161, 0, 0.35);
}

.contacts-location__details {
  display: none;
  padding: 0 16px 14px;
  border-top: 1px solid #f0f0f0;
}

.contacts-location.is-expanded .contacts-location__details {
  display: block;
}

.contacts-location__image {
  display: block;
  width: 100%;
  height: 140px;
  margin-top: 12px;
  border-radius: 12px;
  object-fit: cover;
}

.contacts-location__phones {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.contacts-location__phone-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background-color: #f7aa06;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.contacts-location__phone-btn:hover {
  background-color: #e39b00;
  color: #ffffff;
  text-decoration: none;
}

.contacts-page__empty {
  margin: 0;
  color: #4a4a4a;
  font-size: 16px;
}

@media (max-width: 991.98px) {
  .contacts-page__panel {
    height: auto;
    min-height: 0;
  }

  .contacts-page__layout {
    flex-direction: column;
  }

  .contacts-page__list-panel {
    flex: 0 0 auto;
    min-width: 0;
    max-width: none;
    min-height: 360px;
  }

  .contacts-page__map-panel {
    flex: 0 0 auto;
    width: 100%;
    height: 280px;
    border-left: 0;
    border-top: 1px solid #e4e4e4;
  }
}

.checkout-layout {
  background-color: #f5f5f5;
}

.checkout-header {
  padding: 20px 0;
  background-color: transparent;
}

.checkout-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.checkout-header__logo-link {
  display: inline-flex;
  flex-shrink: 0;
}

.checkout-header__logo {
  display: block;
  width: 242px;
  height: auto;
}

.checkout-steps {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.checkout-step {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  background-color: #ffffff;
}

.checkout-step--done {
  border-color: #f7aa06;
}

.checkout-step--active {
  border-color: #f7aa06;
  background-color: #f7aa06;
}

.checkout-step--pending {
  border-color: #c8c8c8;
}

.checkout-step__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}

.checkout-step__badge--done {
  background-color: #f7aa06;
  color: #ffffff;
  font-size: 16px;
}

.checkout-step__badge--active {
  background-color: #ffffff;
  color: #1f1f1f;
}

.checkout-step__badge--pending {
  background-color: #e8e8e8;
  color: #6a6a6a;
}

.checkout-step__label {
  color: #1f1f1f;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.checkout-step--active .checkout-step__label {
  color: #ffffff;
}

.checkout-step--pending .checkout-step__label {
  color: #6a6a6a;
}

.checkout-page {
  padding: 28px 0 48px;
}

.checkout-page__container {
  max-width: 1320px;
}

.checkout-page__grid {
  display: flex;
  align-items: flex-start;
  gap: 29px;
}

.checkout-panel {
  border-radius: 18px;
  background-color: #ffffff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.checkout-panel--form {
  flex: 1 1 822px;
  max-width: 822px;
  min-width: 0;
  padding: 28px 28px 32px;
}

.checkout-panel--summary {
  flex: 0 0 425px;
  width: 425px;
  max-width: 425px;
  padding: 28px 24px 24px;
  position: sticky;
  top: 20px;
}

.checkout-panel__title {
  margin: 0 0 20px;
  color: #690802;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
}

.checkout-panel--summary .checkout-panel__title {
  color: #000000;
  font-size: clamp(20px, 2vw, 24px);
}

.checkout-page__delivery-toggle {
  width: 328px;
  max-width: 100%;
  margin-bottom: 24px;
}

.checkout-field-group {
  margin-bottom: 22px;
}

.checkout-field-group__title {
  margin: 0 0 12px;
  color: #1f1f1f;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.checkout-field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.checkout-field-row--phone-known {
  grid-template-columns: minmax(0, 1fr);
}

.checkout-field {
  display: block;
  min-width: 0;
}

.checkout-field--full {
  width: 100%;
}

.checkout-input,
.checkout-textarea {
  width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 999px;
  background-color: #ffffff;
  color: #1f1f1f;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}

.checkout-input {
  height: 48px;
  padding: 0 18px;
}

.checkout-input::placeholder,
.checkout-textarea::placeholder {
  color: #8a8a8a;
}

.checkout-textarea {
  min-height: 96px;
  border-radius: 18px;
  padding: 12px 18px;
  resize: vertical;
}

.checkout-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.checkout-chip {
  min-height: 44px;
  border: 1px solid #e0e0e0;
  border-radius: 999px;
  background-color: #ffffff;
  color: #1f1f1f;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  padding: 10px 18px;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.checkout-chip.is-active {
  border-color: #f7aa06;
  background-color: #f7aa06;
  color: #ffffff;
}

.checkout-summary__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.checkout-summary-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.checkout-summary-item__main {
  min-width: 0;
  flex: 1 1 auto;
}

.checkout-summary-item__meta {
  margin: 0 0 4px;
  color: #6a6a6a;
  font-size: 13px;
  line-height: 1;
}

.checkout-summary-item__name {
  margin: 0;
  color: #1f1f1f;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.checkout-summary-item__side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

.checkout-summary-item__weight {
  margin: 0;
  color: #505050;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
}

.checkout-summary-item__controls {
  display: none; /* временно скрыто */
  align-items: center;
  border-radius: 999px;
  background-color: #f7aa06;
  overflow: hidden;
}

.checkout-summary-item__control {
  width: 30px;
  height: 30px;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  padding: 0;
}

.checkout-summary-item__qty {
  min-width: 24px;
  text-align: center;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
}

.checkout-summary-item__price {
  margin: 0;
  color: #1f1f1f;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.checkout-summary__empty {
  margin: 0 0 12px;
  color: #6a6a6a;
  font-size: 16px;
}

.checkout-summary__promo {
  position: relative;
  display: block;
  margin-top: 18px;
}

.checkout-summary__promo-input {
  width: 100%;
  height: 40px;
  border: 2px solid #f7aa06;
  border-radius: 999px;
  padding: 0 52px 0 18px;
  color: #1f1f1f;
  font-size: 16px;
}

.checkout-summary__promo-submit {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background-color: #f7aa06;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.checkout-summary__promo-submit img {
  width: 16px;
  height: 16px;
}

.checkout-summary__totals {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #ececec;
}

.checkout-summary__totals-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #333333;
  font-size: 16px;
  font-weight: 500;
}

.checkout-summary__totals-row + .checkout-summary__totals-row {
  margin-top: 8px;
}

.checkout-summary__totals-row--payable {
  font-size: 20px;
  font-weight: 700;
}

.checkout-summary__submit {
  width: 100%;
  min-height: 52px;
  margin-top: 18px;
  border: 0;
  border-radius: 999px;
  background-color: #f7aa06;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  padding: 12px 20px;
}

.checkout-summary__submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

@media (max-width: 1199.98px) {
  .checkout-page__grid {
    flex-direction: column;
  }

  .checkout-panel--form,
  .checkout-panel--summary {
    flex: 0 0 auto;
    width: 100%;
    max-width: none;
  }

  .checkout-panel--summary {
    position: static;
  }
}

@media (max-width: 767.98px) {
  .checkout-header__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .checkout-steps {
    justify-content: flex-start;
  }

  .checkout-step__label {
    font-size: 13px;
  }

  .checkout-field-row {
    grid-template-columns: minmax(0, 1fr);
  }
}
