:root {
  --h2: 32px;
  --small: 14px;
  --regular: 16px;
  --border-gray: #ccc;
}

body {
  background: #F8F8F8;
}

main {
  padding-top: 80px;
}

.catch__section {
  width: 100%;
  margin-bottom: 20px;
}
.catch__image {
  width: 100%;
  height: auto;
}
.catch__image img {
  width: 100%;
  height: auto;
  max-height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}

.breadcrumb__wrap {
  width: 100%;
  margin-bottom: 64px;
  padding: 0 20px 27px;
  border-bottom: 1px solid #DDDDDD;
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 1130px;
  margin: 0 auto;
}
.breadcrumb__el {
  display: flex;
  align-items: center;
}
.breadcrumb__el:not(:last-child)::after {
  content: "";
  background: url(../images/breadcrumbArrow.png) no-repeat center/cover;
  width: 11px;
  height: 11px;
  margin-left: 14px;
}
.breadcrumb__link {
  display: flex;
  align-items: center;
  transition: opacity 0.3s ease;
}
.breadcrumb__link:hover {
  opacity: 0.7;
}
.breadcrumb__icon {
  width: 12px;
  height: 12px;
  display: block;
}
.breadcrumb__icon img {
  vertical-align: top;
}
.breadcrumb__current {
  color: #AD926A;
  font-size: 12px;
  font-weight: 500;
}

.button__section {
  display: block;
  width: 100%;
  margin-bottom: 120px;
}
.button__inner {
  max-width: 1218px;
  margin: 0 auto;
}
.button__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
.button__el a {
  font-size: var(--small);
  font-weight: 500;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 203px;
  height: 53px;
  padding: 0 16px;
  background: linear-gradient(140deg, #fff 45%, #E4E4E4 100%);
  position: relative;
  transition: color 0.4s ease, background 0.4s ease;
}
.button__el a::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(../images/menu/buttonIcon.png) no-repeat center/cover;
  transition: background 0.4s ease;
}
.button__el a:hover {
  color: #fff;
  background: #2C2C2C;
}
.button__el a:hover::after {
  background: url(../images/menu/buttonIconOver.png) no-repeat center/cover;
}

.categoryNav {
  display: none;
}

.item__section {
  margin-bottom: 60px;
}
.item__inner {
  padding: 0 20px;
}
.item__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 2;
  text-align: center;
  margin-bottom: 64px;
}
.item__card {
  width: 100%;
  position: relative;
}
.item__image {
  display: block;
  max-width: 1130px;
  margin: 0 auto;
}
.item__info {
  background: #fff;
  padding: 25px 30px 30px 30px;
  width: 100%;
  max-width: 1010px;
  margin: 0 auto;
  translate: 0 -60px;
}
.item__name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}
.item__price {
  font-size: var(--regular);
  font-weight: 500;
}

.menu__section {
  width: 100%;
  padding: 0 20px;
  margin-bottom: 120px;
}
.menu__inner {
  max-width: 1139px;
  margin: 0 auto;
}
.menu__block:not(:last-child) {
  margin-bottom: 120px;
}
.menu__title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  line-height: 2;
  margin-bottom: 64px;
}
.menu__grid {
  display: grid;
  grid-template: auto/repeat(2, 1fr);
  justify-content: center;
  gap: 30px 9px;
  max-width: 1130px;
  margin-bottom: 64px;
}
.menu__grid-el {
  width: 100%;
  max-width: 560px;
}
.menu__img-box picture {
  display: block;
  max-height: 406px;
  overflow: hidden;
}
.menu__img-box picture img {
  max-height: 406px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.menu__box-info {
  background: #fff;
  padding: 25px 30px 39px 30px;
  width: 100%;
  max-width: 440px;
  margin: -60px auto 0;
  position: relative;
  z-index: 1;
}
.menu__box-name {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 9px;
}
.menu__box-price {
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}
.menu__list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 40px 19px;
}
.menu__list-el {
  width: 560px;
  display: flex;
  align-items: baseline;
}
.menu__list-el:last-child {
  margin-bottom: 0;
}
.menu__list-name {
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  max-width: 280px;
}
.menu__list-leader {
  flex-grow: 1;
  border-bottom: 1px dotted #000;
  margin: 0 10px;
  position: relative;
  top: -5px;
}
.menu__list-price {
  font-size: 18px;
  font-weight: 500;
  flex-shrink: 0;
}

.word-break {
  display: none;
}

@media (max-width: 1178px) {
  .menu__list {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .menu__wrap{
    padding-top: 74px;
  }
  .breadcrumb__wrap {
    margin-bottom: 40px;
    padding: 0 20px 13px;
  }
  .button__section {
    display: none;
  }
  .categoryNav {
    display: block;
    width: calc(100% - 132px);
    position: absolute;
    left: 50%;
    translate: -50% 0;
    z-index: 1;
  }
  .categoryNav__dropdown {
    box-sizing: border-box;
    width: 100%;
    height: 34px;
    overflow: hidden;
    border: 1px solid #000;
    border-radius: 4px;
    background: #f8f8f8;
    transition: height 0.18s ease;
  }
  .categoryNav__dropdown[open] {
    height:200px;
  }
  .categoryNav__summary {
    box-sizing: border-box;
    height: 34px;
    padding-left: 8px;
    padding-right: 28px;
    display: flex;
    align-items: center;
    position: relative;
    font-size: 14px;
    line-height: 1.75;
    color: #000;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    list-style: none;
  }
  .categoryNav__summary::-webkit-details-marker {
    display: none;
  }
  .categoryNav__summary::marker {
    content: "";
  }
  .categoryNav__summary::after {
    content: "";
    position: absolute;
    right: 12px;
    top: 17px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #000;
  }
  .categoryNav__list {
    box-sizing: border-box;
    margin: 0;
    padding: 0 0 5px;
    list-style: none;
    max-height: 384px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .categoryNav__item {
    margin: 0;
  }
  .categoryNav__item + .categoryNav__item {
    margin-top: 8px;
  }
  .categoryNav__link {
    display: flex;
    align-items: center;
    padding-left: 8px;
    padding-right: 8px;
    font-size: 14px;
    line-height: 1.75;
    color: #000;
    text-decoration: none;
    min-height: 24px;
  }
  .categoryNav__link:hover {
    text-decoration: underline;
  }
  .categoryNav__link:focus-visible {
    outline: 2px solid #000;
    outline-offset: 2px;
  }
  .categoryNav__dropdown[open] .categoryNav__summary::after {
    transform: translateY(-50%) rotate(180deg);
  }
  .categoryNav__summary:focus-visible {
    outline: 2px solid #000;
    outline-offset: 2px;
  }
  .item__section {
    margin-bottom: 48px;
  }
  .item__inner {
    padding: 74px 20px 0;
  }
  .item__title {
    margin-bottom: 16px;
  }
  .item__info {
    width: calc(100% - 15px);
    padding: 8px 16px;
    translate: 0 -32px;
  }
  .item__name {
    font-size: 18px;
    font-weight: 700;
  }
  .item__price {
    font-size: 18px;
  }
  .menu__section {
    margin-bottom: 40px;
  }
  .menu__title {
    margin-bottom: 16px;
  }
  .menu__grid {
    grid-template: auto/1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  .menu__grid-el {
    width: 100%;
    max-width: unset;
  }
  .menu__box-info {
    width: calc(100% - 15px);
    max-width: unset;
    margin: -32px auto 0;
    padding: 8px 16px;
  }
  .menu__box-name {
    margin-bottom: 8px;
    font-size: 18px;
  }
  .menu__list {
    gap: 24px;
    flex-direction: column;
  }
  .menu__list-el {
    justify-content: space-between;
  }
  .menu__list-name {
    font-size: clamp(0.875rem, 0.636rem + 1.02vw, 1.125rem);
    font-size: clamp(0.875rem, 0.636rem + 0.438vw, 1.125rem);
    letter-spacing: 0;
    max-width: 150px;
  }
  .menu__list-price {
    font-size: clamp(0.875rem, 0.636rem + 1.02vw, 1.125rem);
    font-size: clamp(0.875rem, 0.636rem + 0.438vw, 1.125rem);
    letter-spacing: 0;
    max-width: 130px;
  }
  .menu__list-el {
    width: 100%;
  }
  .menu__block:not(:last-child) {
    margin-bottom: 80px;
  }
}
@media (max-width: 430px) {
  .menu__list-leader {
    display: none;
  }
  .word-break {
    display: block;
  }
}/*# sourceMappingURL=menu.css.map */