body {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  background-color: #f9f9f9;
}

.container {
  max-width: 1290px;
  padding: 0 15px;
  margin: 0 auto;
}

.header {
  background-image: url(../images/header-1-background.png);
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0;
}
.header__logo {
  display: flex;
  justify-content: center;
  padding-top: 21px;
}
.header__flex {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 56px 20px 72px 20px;
  gap: 57px;
}
.header__main-h1 {
  font-size: 50px;
  color: #fff;
}
.header__main-h1 span {
  color: #ff5c00;
}
.header__p {
  color: #fff;
  font-size: 16px;
  padding-top: 52px;
}

.menu {
  padding-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.menu__input {
  display: none;
}
.menu__label {
  display: flex;
  align-items: center;
  padding: 8px 14px;
  color: #000;
  border-radius: 50px;
  cursor: pointer;
  position: relative;
}
.menu__label img {
  width: 24px;
  margin-right: 8px;
}
.menu__label:hover {
  background-color: #ffe6b4;
}
.menu__input:checked + .menu__label {
  background-color: #ffab08;
}

.main {
  display: flex;
  padding-top: 59px;
}
.main__basket {
  position: sticky;
  top: 10px;
  width: 300px;
  height: min-content;
  background-color: #fff;
  border-radius: 18px;
  padding: 16px 24px;
}
.main__basket h3 {
  color: #000;
  font-size: 24px;
  font-weight: 600;
}
.main__basket__1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main__basket__1 p {
  background-color: #f2f2f3;
  border-radius: 6px;
  padding: 2px 16px;
}
.main__basket-btn {
  display: none;
  width: 250px;
  height: 40px;
  margin-top: 24px;
  padding: 11px 32px;
  border: none;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  border-radius: 12px;
  background: #ff7020;
  color: #fff;
}

.product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-left: 30px;
  margin-top: 50px;
}
.product-list__item {
  padding: 12px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  opacity: 0;
  animation: fade-in 0.3s ease-in forwards;
  cursor: pointer;
}
.product-list__img {
  width: 250px;
  height: 200px;
}
.product-list__price {
  font-size: 24px;
  font-weight: 600;
  color: #000;
  padding-top: 16px;
}
.product-list__name {
  color: #000;
  font-size: 16px;
  padding-top: 8px;
}
.product-list__weight {
  color: #b1b1b1;
  font-size: 16px;
  font-weight: 600;
  padding-top: 29px;
}
.product-list button {
  border-radius: 12px;
  background-color: #f2f2f3;
  border: none;
  margin: 8px 0 12px 0;
  padding: 11px 92px;
  color: #000;
  cursor: pointer;
}
.product-list button:hover {
  background-color: #ffab08;
  color: white;
}
.product-list__header {
  margin-left: 30px;
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.cart-list {
  padding: 8px 0 13px;
  font-size: 12px;
}
.cart-list__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid #f2f2f3;
  border-bottom: 1px solid #f2f2f3;
}
.cart-list__img {
  max-width: 25%;
}
.cart-list__info {
  padding: 0 20px 0 5px;
}
.cart-list__weight {
  padding: 1px 0 6px;
  color: #b1b1b1;
  font-size: 10px;
}
.cart-list__counter {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 7px 0 8px;
  min-width: 60px;
  height: 20px;
  border-radius: 8px;
  background: #f2f2f3;
}
.cart-list__btn-minus, .cart-list__btn-plus {
  border: none;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
}

.cart-total {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 16px;
}

.footer {
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .footer {
    padding-top: 50px;
  }
}
.footer__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  padding: 50px 0 40px;
}
@media screen and (max-width: 576px) {
  .footer__wrapper {
    flex-flow: column;
  }
}
.footer__info img {
  width: 200px;
  height: 40px;
}
@media screen and (max-width: 768px) {
  .footer__info {
    padding-bottom: 30px;
  }
}
.footer__text {
  padding-top: 50px;
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .footer__text {
    display: none;
  }
}
.footer__contacts {
  display: flex;
  gap: 126px;
  padding-right: 211px;
}
@media screen and (max-width: 576px) {
  .footer__contacts {
    flex-flow: column;
    gap: 50px;
    padding-right: 100px;
  }
}
.footer__contact-call-title {
  padding-bottom: 20px;
  font-size: 18px;
}
.footer__contact-call-number {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 576px) {
  .footer__contact-call-number {
    justify-content: flex-start;
  }
}
.footer__contact-social a:hover img {
  filter: brightness(0) saturate(100%) invert(62%) sepia(96%) saturate(555%) hue-rotate(351deg) brightness(99%) contrast(105%);
}
.footer__contact-social-title {
  padding-bottom: 17px;
  font-size: 18px;
}
.footer__contact-social-vk {
  padding-right: 16px;
}

.popup__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: 0.5s all;
}

.popup__bg.active {
  opacity: 1;
  pointer-events: all;
  transition: 0.5s all;
}

.popup {
  display: grid;
  grid-template-columns: 342px 342px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: #fff;
  padding: 25px;
  transition: 0.5s all;
  border-radius: 24px;
}

.popup.active {
  transform: translate(-50%, -50%) scale(1);
  transition: 0.5s all;
}

.close-popup {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.popup__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: 0.5s all;
}

.popup__bg.active {
  opacity: 1;
  pointer-events: all;
  transition: 0.5s all;
}

.delivery {
  font-size: 24px;
  margin-left: 20px;
  margin-top: 40px;
}

.container__pic {
  display: grid;
  background-color: rgb(255, 171, 8);
  margin: -25px;
  border-radius: 25px 0px 0px 25px;
  grid-row: 1/2;
  grid-column: 1/2;
  width: 342px;
  height: 432px;
}

.container__del {
  grid-row: 1/2;
  grid-column: 2/3;
  width: 342px;
  height: 432px;
  margin: -25px;
}

.pic {
  display: flex;
  justify-self: center;
  align-self: center;
}

#delivery__b,
#pickup__b {
  width: 12px;
  height: 12px;
  margin-left: 20px;
  margin-top: 10px;
}

#your-name,
#phone,
#a {
  width: 294px;
  height: 40px;
  margin-left: 20px;
  margin-top: 10px;
  border-radius: 12px;
  border: 1px #bababa solid;
}

#aa,
#aaa {
  width: 143px;
  height: 40px;
  margin-top: 10px;
  border-radius: 12px;
  border: 1px #bababa solid;
}

#aa {
  margin-left: 20px;
}

.none {
  display: none;
}

.buy {
  width: 294px;
  height: 40px;
  margin-left: 25px;
  margin-top: 30px;
  border-radius: 12px;
  background-color: rgb(255, 112, 32);
  color: #fff;
  border: none;
  cursor: pointer;
}

.product-card__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: 0.5s all;
}

.product-card__bg.active {
  opacity: 1;
  pointer-events: all;
  transition: 0.5s all;
}

.product-card__conteiner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: #fff;
  padding: 25px;
  transition: 0.5s all;
  border-radius: 24px;
}

.product-card__conteiner.active {
  transform: translate(-50%, -50%) scale(1);
  transition: 0.5s all;
}

.close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.product-card_conteiner {
  display: grid;
  grid-row: 2/3;
  padding: 20px;
  display: none;
}
.product-card__img {
  width: 276px;
  height: 220px;
}
.product-card_div {
  padding-left: 20px;
}
.product-card__description {
  font-size: 16px;
  font-weight: 400;
}
.product-card__composition {
  font-size: 12px;
  font-weight: 600;
  padding-bottom: 10px;
  padding-top: 10px;
}
.product-card__composition_ul {
  list-style-type: none;
  font-size: 12px;
  font-weight: 400;
  padding: 0;
}
.product-card__kcal {
  font-size: 12px;
  font-weight: 400;
  color: #b1b1b1;
  padding-top: 10px;
}
.product-card__add {
  min-width: 276px;
  height: 40px;
  border-radius: 12px;
  color: white;
  background-color: #ff7020;
  border: 0;
}
.product-card__price {
  padding-top: 10px;
  font-size: 24px;
  font-weight: 600;
  width: 80px;
}
.product-card__conteiner {
  justify-content: space-between;
  align-items: center;
}
.product-card__conteiner1 {
  display: flex;
  flex-direction: row;
}
.product-card__conteiner2 {
  display: flex;
  flex-direction: row;
  margin-top: 30px;
  justify-content: space-between;
}
.product-card__conteiner3 {
  display: flex;
  flex-direction: row;
  padding-left: 20px;
  width: 344px;
  justify-content: space-between;
}
.product-card__btn-plus-minus {
  width: 84px;
  height: 40px;
  background-color: rgb(238, 235, 235);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-card__btn-plus-minus span {
  width: 100%;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
}
.product-card__btn-plus-minus span.number {
  pointer-events: none;
}

.h2__meatbomb {
  display: grid;
  grid-row: 1/2;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 20px;
}

.close {
  font-size: 24px;
  color: grey;
}

/*# sourceMappingURL=style.min.css.map */
