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

h1 {
  font-family: var(--third-family);
  font-weight: 700;
  font-size: 112px;
  line-height: 120%;
  color: var(--white);
}
h1 span {
  color: var(--boss-red);
}

button {
  border: none;
  padding: 0;
  cursor: pointer;
  background: transparent;
  transition: 0.4s;
}

.shine-button {
  position: relative;
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  min-width: 200px;
}

.shine-button::before {
  content: "";
  position: absolute;
  height: 250%;
  width: 40px;
  top: 0;
  left: -60px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: rotate(45deg) translateY(-35%);
  animation: shine 3s ease infinite;
}

@keyframes shine {
  0% {
    left: -80px;
  }
  40% {
    left: calc(100% + 20px);
  }
  100% {
    left: calc(100% + 20px);
  }
}
.button {
  border-radius: 8px;
  padding: 16px 24px;
  max-width: max-content;
  display: flex;
  gap: 10px;
  align-items: center;
  min-width: 200px;
  justify-content: center;
}
.button-red {
  background: var(--boss-red);
  box-shadow: 0 4px 30px rgba(158, 23, 20, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.button-red:hover {
  background: var(--deep-red);
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(158, 23, 20, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.button-orange {
  background: var(--hot-orange);
  box-shadow: 0 4px 30px rgba(255, 159, 28, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.button-orange:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(255, 159, 28, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.button span {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  color: var(--white);
}

.title {
  font-family: var(--third-family);
  font-weight: 700;
  font-size: 48px;
  color: var(--white);
}
.title span {
  color: var(--boss-red);
}

.subtitle {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 28px;
  color: var(--white);
}

input {
  margin: 0;
}

.text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
}

* {
  box-sizing: border-box;
}

p {
  margin: 0;
}

:root {
  --font-family: "Manrope", sans-serif;
  --second-family: "Inter", sans-serif;
  --third-family: "Oswald", sans-serif;
}

:root {
  --graphite-black: #080a0b;
  --charcoal: #111417;
  --dark-card: #181c20;
  --soft-border: #2a2f35;
  --boss-red: #e12b23;
  --deep-red: #9e1714;
  --hot-orange: #ff9f1c;
  --cheese-yellow: #ffc247;
  --white: #fff;
  --light-gray: #c7cdd3;
  --muted-gray: #8a929a;
}

ul, li {
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: normal;
}

a {
  text-decoration: none;
  line-height: normal;
  cursor: pointer;
  transition: 0.4s;
}

img, svg {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

html,
body {
  padding: 0;
  height: 100%;
  margin: 0;
}

html {
  scrollbar-width: thin;
  scroll-behavior: smooth;
  scrollbar-color: rgba(225, 43, 25, 0.5) transparent;
}

::placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--muted-gray);
  transition: 0.4s;
}

::-webkit-input-placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--muted-gray);
  transition: 0.4s;
}

::-moz-placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--muted-gray);
  transition: 0.4s;
}

:-ms-input-placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--muted-gray);
  transition: 0.4s;
}

body {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  background: var(--graphite-black);
}

body.hidden {
  overflow: hidden;
}

.container {
  max-width: 1920px;
  width: 100%;
  padding: 0 80px;
  box-sizing: border-box;
  margin: 0 auto;
}

.row {
  display: flex;
}

.opacite {
  background: rgba(0, 0, 0, 0.5);
  display: none;
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 100000;
  left: 0;
  top: 0;
  backdrop-filter: blur(3px);
}
.opacite.active {
  display: block;
}

.main {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

.header {
  flex: 0 0 auto;
  position: fixed;
  top: 0px;
  left: 0;
  z-index: 10000;
  width: 100vw;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
  background: transparent;
  backdrop-filter: blur(0);
}
.header__opacite {
  background: rgba(0, 0, 0, 0.5);
  display: none;
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  backdrop-filter: blur(3px);
}
.header__opacite.active {
  display: block;
}
.header.menu-open {
  background: var(--graphite-black);
}
.header.scrolled {
  background: rgba(24, 28, 32, 0.3);
  backdrop-filter: blur(20px);
}
.header__row {
  padding: 20px 0;
  align-items: center;
}
.header__menu {
  display: flex;
  gap: 60px;
  margin-left: 60px;
}
.header__menu-item {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: var(--white);
}
.header__menu-item:hover {
  color: var(--boss-red);
}
.header__contact {
  display: flex;
  align-items: end;
  gap: 8px;
  margin-left: auto;
}
.header__contact-content {
  display: flex;
  flex-direction: column;
}
.header__contact-content a {
  font-family: var(--third-family);
  font-weight: 700;
  font-size: 28px;
  color: var(--white);
}
.header__contact-content a:hover {
  color: var(--boss-red);
}
.header__contact-content p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: var(--white);
}
.header__logo {
  max-width: 162px;
  flex-shrink: 0;
}
.header__line {
  height: 63px;
  width: 1px;
  background: var(--white);
  margin: 0 16px;
}
.header__burger {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  height: 44px;
  width: 44px;
  border: 1px solid var(--soft-border);
  border-radius: 6px;
  background: var(--charcoal);
  margin-left: 20px;
}
.header__burger-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.header__burger-icon--menu {
  transform: translate(-50%, -50%);
  opacity: 1;
}
.header__burger-icon--close {
  transform: translate(200%, -50%);
  opacity: 0;
}
.header__burger.active .header__burger-icon--menu {
  transform: translate(-250%, -50%);
  opacity: 0;
}
.header__burger.active .header__burger-icon--close {
  transform: translate(-50%, -50%);
  opacity: 1;
}

.burger {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: transparent;
  padding: 16px 20px 32px 0;
  background: var(--graphite-black);
}
.burger .header__menu {
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin: 0 auto;
}

.footer {
  flex: 0 0 auto;
  border-top: 1px solid var(--soft-border);
  overflow: hidden;
}
.footer__row {
  padding: 48px 0 24px 0;
  flex-direction: column;
}
.footer__line {
  width: 100vw;
  background: var(--soft-border);
  left: 50%;
  transform: translateX(-50%);
  position: relative;
  height: 1px;
  margin: 24px 0;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.footer__right {
  max-width: 223px;
  flex-shrink: 0;
}
.footer__middle {
  display: flex;
  gap: 48px;
  align-items: center;
}
.footer__bottom {
  border-radius: 8px;
  margin: 24px 0;
}
.footer__bottom iframe {
  border-radius: 8px;
  height: 315px;
}
.footer__left {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.footer__menu {
  display: flex;
  gap: 48px;
  align-items: center;
}
.footer__menu-second .footer__menu-right {
  margin-left: auto;
}
.footer__middle {
  display: flex;
  gap: 48px;
}
.footer__middle .header__contact {
  margin-left: 0;
}
.footer__address {
  display: flex;
  align-items: center;
  margin-top: 24px;
  gap: 16px;
}
.footer__address a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
}
.footer__address span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
}

.first {
  height: auto;
  background: url("../image/first__back.jpg");
  background-position: right;
  background-size: cover;
  position: relative;
  background-repeat: no-repeat;
  margin-bottom: 24px;
}
.first__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.first__overlay img {
  width: 100%;
  height: 100%;
}
.first .container {
  z-index: 2;
  position: relative;
}
.first__row {
  padding-top: 160px;
  padding-bottom: 60px;
  flex-direction: column;
  gap: 48px;
}
.first__buttons {
  display: flex;
  gap: 16px;
}
.first__info {
  display: flex;
  gap: 24px;
  align-items: center;
}
.first__info-item {
  display: flex;
  gap: 8px;
  align-items: center;
}
.first__info-item .text span {
  color: var(--muted-gray);
}

.policy {
  padding-top: 180px;
  padding-bottom: 48px;
}
.policy__row {
  flex-direction: column;
}
.policy p, .policy li, .policy span, .policy a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
  margin-top: 8px;
}
.policy .title {
  margin-bottom: 20px;
}
.policy .subtitle {
  margin: 12px 0;
}

.search.fixed {
    position: fixed;
    left: 0;
    width: 100%;
    z-index: 9998;
}

.search__row {
  flex-direction: column;
}

.js-filters-prev:disabled, .js-filters-next:disabled {
  opacity: 0.35;
  pointer-events: none;
}

.js-promo-prev:disabled, .js-promo-next:disabled {
  opacity: 0.35;
  pointer-events: none;
}

.filters {
  position: relative;
  background: var(--graphite-black);
  z-index: 9999;
}
.filters.fixed {
  position: fixed;
  left: 0;
  width: 100%;
}
.filters__row {
  gap: 24px;
  padding-bottom: 8px;
}
.filters__search {
  position: relative;
  max-width: 320px;
}
.filters__search input {
  width: 100%;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
  background: var(--charcoal);
  border: 1px solid var(--soft-border);
  border-radius: 8px;
  padding: 16px 24px;
  transition: 0.4s;
}
.filters__search input:focus {
  outline: none;
  border: 1px solid var(--white);
}
.filters__search input:focus::placeholder {
  color: var(--white);
}
.filters__search input:focus + .filters__search-svg path {
  stroke: var(--white);
}
.filters__search-svg {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  max-width: 24px;
  z-index: 1;
}
.filters__search-svg path {
  transition: 0.4s;
}
.filters__search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    max-height: 320px;
    overflow-y: auto;
    background: #111416;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    z-index: 100;
    display: none;
    scrollbar-width: thin;
    scrollbar-color: rgba(225, 43, 25, 0.5) transparent;
}
.filters__search-results.active {
    display: block;
}
.filters__search-result {
    width: 100%;
    padding: 12px 24px;
    border: 0;
    background: transparent;
    color: #fff;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    color: var(--white);
}
.filters__search-result:hover {
    background: rgba(255, 255, 255, 0.08);
}
.search-found {
    outline: 2px solid #ef2b2b;
    outline-offset: 4px;
}
.filters__buttons {
  gap: 8px;
  flex-shrink: 0;
}
.filters__wrapper {
  background: var(--dark-card);
  padding: 16px 24px;
  justify-content: space-between;
  gap: 16px;
  display: flex;
  border-radius: 8px;
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  white-space: nowrap;
  scrollbar-width: none;
}
.filters__item {
  border: 1px solid var(--boss-red);
  border-radius: 8px;
  padding: 16px 24px;
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(12.5% - 14px);
  transition: 0.4s;
  min-width: 140px;
}
.filters__item:hover {
  background: var(--boss-red);
}
.filters__item.active {
  background: var(--boss-red);
}

.often {
  margin-bottom: 96px;
}
.often__row {
  flex-direction: column;
  gap: 48px;
}
.often__title {
  gap: 16px;
  display: flex;
  align-items: center;
}
.often__top {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.menu {
  margin-bottom: 96px;
  scroll-margin-top: 300px;
}
.menu__link {
  display: flex;
  align-items: center;
  gap: 16px;
}
.menu__link span {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  color: var(--white);
}
.menu__top-title {
  position: relative;
  z-index: 2;
}
.menu__top-title .title {
  text-transform: uppercase;
}
.menu__top-title::before {
  content: "";
  position: absolute;
  top: 45%;
  right: -18px;
  transform: translateY(-50%);
  width: 82px;
  height: 76px;
  background: url("../image/menu__title.png") no-repeat center/contain;
  z-index: -1;
}
.menu__row {
  flex-direction: column;
  gap: 48px;
}
.menu__wrapper {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.menu__item {
  border-radius: 8px;
  background: var(--dark-card);
  width: calc(25% - 12px);
  position: relative;
  display: flex;
  flex-direction: column;
}
.menu__item-img {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.menu__item-img img {
  max-height: 400px;
  width: 100%;
  transition: 0.4s;
}
.menu__item-content {
  padding: 16px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.menu__item-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: none;
  border: none;
  cursor: pointer;
}
.menu__item-overlay:hover ~ .menu__item-content .button-red {
  background: var(--deep-red);
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(158, 23, 20, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.menu__item-overlay:hover ~ .menu__item-img img {
    transform: scale(1.05);
}
.menu__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
}
.menu__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
  margin: 16px 0 32px 0;
}
.menu__buttons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  margin-top: auto;
}
.menu__price {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
}
.menu__button {
  min-width: 0;
  padding: 9.5px 24px;
}
.menu__button span {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
}

.card {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 530px;
  border: 1px solid var(--deep-red);
  box-shadow: inset 0 4px 30px 5px rgba(158, 23, 20, 0.15);
  background: var(--charcoal);
  border-radius: 8px;
  z-index: 100000;
  display: flex;
  width: max-content;
  display: none;
}
.card.active {
  display: flex;
}
.card__title {
  color: var(--boss-red);
  line-height: 1;
}
.card__img {
  max-width: 531px;
  padding: 0 20px 0 0;
}
.card__img img {
  height: 100%;
  border-radius: 8px 0 0 8px;
}
.card__extra {
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
  margin-bottom: 24px;
  margin-top: 24px;
  scrollbar-width: thin;
  padding-right: 10px;
  gap: 8px;
  scrollbar-color: rgba(225, 43, 25, 0.5) transparent;
}
.card__persona {
  display: flex;
  gap: 20px;
  padding: 8px 0 0 0;
}
.card__content {
  max-width: 426px;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
}
.card__content-info {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
}
.card__content-info-light {
  opacity: 0.56;
  margin: 24px 0 8px 0;
}
.card__content-sizes {
  display: flex;
  border: 1px solid var(--deep-red);
  border-radius: 8px;
  padding: 4px;
  gap: 8px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.card__content-sizes button {
  padding: 8px 14px;
  border-radius: 10px;
  width: calc(50% - 8px);
}
.card__content-extra {
  display: flex;
  gap: 5px;
  justify-content: space-between;
  flex-wrap: wrap;
  border: 1px solid var(--deep-red);
  border-radius: 8px;
}
.card__content-extra button {
  padding: 8px 14px;
  border-radius: 10px;
  text-align: center;
  width: calc(50% - 10px);
}
.card__content-add {
  background: var(--boss-red);
  width: 100%;
  padding: 16px 32px;
  color: var(--white);
  border-radius: 10px;
  margin-top: auto;
  max-width: 100%;
  flex-shrink: 0;
}
.card__close {
  position: absolute;
  top: 20px;
  right: 20px;
}
.card__option {
  display: flex;
  border: 1px solid var(--deep-red);
  border-radius: 8px;
  padding: 4px;
  gap: 5px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.card__option button {
  padding: 8px 14px;
  border-radius: 10px;
  text-align: center;
  width: calc(50% - 10px);
}

.basket {
  position: fixed;
  height: 100dvh;
  right: 0;
  top: 0;
  z-index: 1000000;
  background-color: var(--charcoal);
  padding-top: 24px;
  flex-direction: column;
  width: 100%;
  max-width: 428px;
  display: none;
}
.basket__button {
  border-radius: 8px;
  border: 1px solid var(--white);
  background: var(--boss-red);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  position: fixed;
  bottom: 50px;
  right: 20px;
  z-index: 10000;
}
.basket.active {
  display: flex;
}
.basket__subtitle {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
  max-width: 90%;
}
.basket__text {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--light-gray);
}
.basket__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  margin-bottom: 24px;
}
.basket__menu {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: scroll;
  scrollbar-width: thin;
}
.basket__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  color: var(--boss-red);
}
.basket__counter {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: transparent;
  border-radius: 5px;
  border: 1px solid var(--soft-border);
  height: 24px;
}
.basket__counter-value {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
}
.basket__counter-btn {
  height: 100%;
  width: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  border: 1px solid var(--soft-border);
}
.basket__item {
  padding: 8px;
  background: var(--dark-card);
  position: relative;
  border-radius: 8px;
}
.basket__item-image {
  max-width: 86px;
}
.basket__item-top {
  display: flex;
  gap: 8px;
}
.basket__item-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 4px 0;
  width: 100%;
}
.basket__item-line {
  margin: 16px 0 8px 0;
  width: 100%;
  background: var(--soft-border);
  height: 1px;
}
.basket__item-bottom {
  display: flex;
  justify-content: space-between;
  padding: 0 5px;
}
.basket__item-price {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
}
.basket__item-close {
  position: absolute;
  right: 15px;
  top: 15px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.basket__result {
  margin-bottom: 0;
  background: var(--graphite-black);
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 24px;
}
.basket__result-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 28px;
  color: var(--white);
}
.basket__result-text {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 28px;
  color: var(--white);
}
.basket__result-button {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
}
.basket__result-button span {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  color: var(--white);
}
.basket__clean {
  max-width: max-content;
  margin-left: auto;
  margin-right: 0;
  display: flex;
  padding: 16px 24px;
  margin-top: auto;
  margin-bottom: 0;
}
.basket__clean span {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: var(--boss-red);
}

.option-group {
  position: relative;
}

.option-group[data-multiple="true"] .option-highlight {
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    transform: translate(0, 0) !important;
}

.option-group[data-multiple="true"] button.active {
    background: var(--boss-red);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.13), 0 2px 1px rgba(0, 0, 0, 0.08);
}

.option-group .option-highlight {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  border-radius: 8px;
  background: var(--boss-red);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.13), 0 2px 1px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, width 0.25s ease, height 0.25s ease, opacity 0.2s;
  pointer-events: none;
  z-index: 1;
}

.option-group button {
  position: relative;
  z-index: 2;
  background: transparent;
  flex-shrink: 0;
}

.promo {
  margin-bottom: 96px;
  margin-top: 48px;
}
.promo__page .promo__wrapper {
    flex-wrap: wrap;
}
.promo__row {
  flex-direction: column;
  gap: 48px;
  display: flex !important;
}
.promo__wrapper {
  display: flex;
  gap: 16px;
}
.promo__item {
  width: calc(33.333% - 11px) !important;
  border-radius: 8px;
  height: 408px !important;
}
.promo__item img {
  border-radius: 8px;
  height: 100%;
  width: 100%;
  object-position: left;
}
.promo__buttons {
  margin-left: auto;
  max-width: max-content;
  display: none;
  margin-top: -24px;
  gap: 8px;
}

.action {
  background: url("../image/action__back.jpg");
  background-position: right;
  background-size: cover;
  background-repeat: no-repeat;
}
.action__row {
  gap: 24px;
  flex-direction: column;
  padding-top: 180px;
  padding-bottom: 24px;
}
.action__row h3 {
  color: var(--muted-gray);
}

.order__row {
  padding-top: 180px;
  padding-bottom: 120px;
  gap: 16px;
  flex-direction: column;
}
.order__row .subtitle {
  color: var(--muted-gray);
  margin-top: 8px;
}

.form {
  display: flex;
  gap: 16px;
}
.form__message {
    color: var(--boss-red);
}
.form .subtitle {
  font-weight: 700;
  color: var(--white);
  margin-top: 0;
  font-size: 20px;
}
.form__left {
  width: calc(50% - 8px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--soft-border);
  border-radius: 8px;
  box-shadow: inset 0 4px 30px 5px rgba(158, 23, 20, 0.15);
  background: var(--charcoal);
}
.form__left input {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
  background: var(--charcoal);
  border: 1px solid var(--soft-border);
  border-radius: 8px;
  padding: 16px 24px;
  transition: 0.4s;
}
.form__left input:focus {
  outline: none;
  border: 1px solid var(--white);
}
.form__left input:focus::placeholder {
  color: var(--white);
}
.form__left input:-webkit-autofill, .form__left input:-webkit-autofill:hover, .form__left input:-webkit-autofill:focus, .form__left input:-webkit-autofill:active {
  -webkit-text-fill-color: var(--white);
  -webkit-box-shadow: 0 0 0 1000px var(--charcoal) inset;
  box-shadow: 0 0 0 1000px var(--charcoal) inset;
  transition: background-color 999999s ease-in-out 0s;
}
.form__client {
  display: flex;
  gap: 16px;
}
.form__client input {
  width: calc(50% - 8px);
}
.form__select {
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  border: 1px solid var(--white);
  background: var(--charcoal);
}
.form__select-arrow {
  transition: transform 0.2s ease;
  margin-right: 24px;
}
.form__select-list {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 0 24px 16px 24px;
}
.form__select-list .text {
  cursor: pointer;
}
.form__select-current {
  display: flex;
  justify-content: space-between;
}
.form__select-current .text {
  padding: 16px 24px;
}
.form__select.open .form__select-arrow {
  transform: rotate(180deg);
}
.form__select.open .form__select-list {
  display: flex;
}
.form__get-type {
  display: flex;
  gap: 16px;
}
.form__get-radio {
  width: calc(50% - 8px);
  border: 1px solid var(--white);
  border-radius: 8px;
  padding: 16px;
  gap: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.form__get-radio input {
  display: none;
}
.form__get-radio:has(input:checked) {
  border-color: var(--boss-red);
}
.form__pickup {
  transition: opacity 0.25s ease;
  flex-direction: column;
  gap: 16px;
}
.form__address {
  display: grid;
  grid-template-columns: 1fr 100px;
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 5px;
  grid-row-gap: 5px;
}
.form__address input {
  width: 100%;
}
.form__address input:checked {
  background: var(--charcoal);
}
.form__address input:last-child {
  grid-area: 2/1/3/3;
}
.form__address-extra {
  display: flex;
  width: 100%;
  grid-column: 1/-1;
  gap: 5px;
}
.form__delivery {
  transition: opacity 0.25s ease;
  flex-direction: column;
  gap: 16px;
}
.form__delivery-status {
    color: var(--boss-red);
}
.form__order {
  width: calc(50% - 8px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  border: 1px solid var(--soft-border);
  border-radius: 8px;
  padding: 24px;
  box-shadow: inset 0 4px 30px 5px rgba(158, 23, 20, 0.15);
  background: var(--charcoal);
}
.form__order-line {
  width: 100%;
  height: 1px;
  background: var(--soft-border);
}
.form__order-line-top {
  margin-top: auto;
}
.form__order-left {
  gap: 2px;
  display: flex;
  flex-direction: column;
}
.form__order-result {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.form__order-result .subtitle {
  font-size: 28px;
}
.form__order ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-height: 300px;
  overflow-y: scroll;
  scrollbar-width: thin;
  padding-right: 10px;
  scrollbar-color: rgba(225, 43, 25, 0.5) transparent;
}
.form__order ul li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.form__order-pay {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.form__order-type {
  width: calc(50% - 8px);
  border: 1px solid var(--white);
  border-radius: 8px;
  padding: 16px;
  gap: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.form__order-type input {
  display: none;
}
.form__order-type:has(input:checked) {
  border-color: var(--boss-red);
}
.form__cash-change {
  width: 100%;
  display: flex;
  gap: 16px;
  align-items: center;
  display: none;
}
.form__cash-change .text {
  flex-shrink: 0;
}
.form__cash-change input {
  width: 100%;
}
.form__cash-change.active {
  display: flex;
}
.form__comment {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
  background: var(--charcoal);
  border: 1px solid var(--soft-border);
  border-radius: 8px;
  padding: 16px 24px;
  transition: 0.4s;
  resize: none;
  min-height: 144px;
}
.form__comment:focus {
  outline: none;
  border: 1px solid var(--white);
}
.form__comment:focus::placeholder {
  color: var(--white);
}
.form__comment:-webkit-autofill, .form__comment:-webkit-autofill:hover, .form__comment:-webkit-autofill:focus, .form__comment:-webkit-autofill:active {
  -webkit-text-fill-color: var(--white);
  -webkit-box-shadow: 0 0 0 1000px var(--charcoal) inset;
  box-shadow: 0 0 0 1000px var(--charcoal) inset;
  transition: background-color 999999s ease-in-out 0s;
}
.form__agree {
  display: flex;
  align-items: center;
}
.form__agree input {
  display: none;
}
.form__agree input:checked + .form__agree-box {
  background: transparent;
}
.form__agree input:checked + .form__agree-box::after {
  transform: rotate(45deg) scale(1);
}
.form__agree .is-error .form__agree-text {
  color: var(--boss-red);
}
.form__agree-box {
  width: 24px;
  height: 24px;
  border: 2px solid var(--boss-red);
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
  transition: 0.2s ease;
}
.form__agree-box::after {
  content: "";
  position: absolute;
  left: 7.5px;
  top: 2px;
  width: 5px;
  height: 11px;
  border: solid var(--boss-red);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: 0.2s ease;
}
.form__agree-text {
  margin-left: 16px;
}
.form__agree-text a {
  text-decoration: underline;
  color: var(--boss-red);
}
.form__button {
  max-width: 100%;
}
.form__other {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  color: var(--boss-red);
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-align: center;
}

.contact {
  background: url("../image/contact__back.jpg");
  background-position: right;
  background-size: cover;
  background-repeat: no-repeat;
}

.social {
  margin: 48px 0;
}
.social__row {
  align-items: center;
}
.social__content {
  display: flex;
  flex-direction: column;
  margin-left: 8px;
}
.social__content .text {
  margin-top: 6px;
}
.social__content .text span {
  color: var(--boss-red);
}
.social__right {
  margin-left: auto;
}

.delivery {
  margin-bottom: 96px;
}
.delivery__row {
  flex-direction: column;
}
.delivery .footer__bottom {
  margin: 0;
}
.delivery__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}
.delivery__item {
  width: calc(33% - 11px);
  display: flex;
  gap: 24px;
  flex-direction: column;
  padding: 24px;
  background: var(--dark-card);
}
.delivery__address {
  display: flex;
  gap: 8px;
  align-items: center;
}
.delivery__address-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal {
  position: fixed;
  z-index: 100000000;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--deep-red);
  padding: 20px;
  border-radius: 20px;
  gap: 20px;
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 70%;
}
.modal a {
  color: white;
  text-decoration: underline;
}
.modal__button {
  padding: 10px 20px;
  border-radius: 20px;
  border: 1px solid #fff;
}
.modal.active {
  display: flex;
}

.error {
  background: url("../image/error__back.jpg");
  background-position: right;
  background-size: auto;
  position: relative;
  background-repeat: no-repeat;
}
.error__circle {
  background: #51FF00;
  border-radius: 100%;
  width: 184px;
  height: 184px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.error .container {
  z-index: 2;
  position: relative;
}
.error__row {
  padding-top: 120px;
  padding-bottom: 100px;
  flex-direction: column;
  gap: 24px;
}
.error__number {
  font-family: var(--third-family);
  font-weight: 700;
  font-size: 382px;
  line-height: 106%;
  color: var(--white);
}
.error__title {
  font-family: var(--third-family);
  font-weight: 700;
  font-size: 112px;
  line-height: 105%;
  color: var(--boss-red);
}
.error__title span {
  color: var(--white);
}
.error .subtitle {
  margin-top: 24px;
}

.thanks .error__row {
  padding-top: 200px;
}

.mob {
  display: none;
}

@media (max-width: 1440px) {
  .container {
    padding: 0 60px;
  }
  .header__logo {
    max-width: 125px;
  }
  .header__menu {
    margin-left: 40px;
    gap: 40px;
  }
  .menu {
    scroll-margin-top: 260px;
    margin-bottom: 64px;
  }
  .menu__item-content {
    padding: 8px 16px 16px 16px;
  }
  .menu__text {
    font-size: 14px;
    margin: 8px 0 16px 0;
  }
  .menu__button {
    padding: 8px 12px;
  }
  .menu__price {
    font-size: 16px;
  }
  .often {
    margin-bottom: 64px;
  }
  .promo {
    margin-bottom: 64px;
    margin-top: 32px;
  }
  .promo__item {
    height: 300px !important;
  }
  .footer__menu {
    gap: 32px;
  }
}
@media (max-width: 1024px) {
  .container {
    padding: 0 40px;
  }
  .header .button {
    min-width: 0;
  }
  .header__logo {
    max-width: 100px;
  }
  .header__menu {
    margin-left: 20px;
    gap: 20px;
  }
  .header__contact svg {
    max-width: 40px;
  }
  .header__contact-content a {
    font-size: 20px;
  }
  .header__contact-content p {
    font-size: 14px;
  }
  .filters__wrapper {
    padding: 8px 16px;
    gap: 8px;
  }
  .filters__item {
    padding: 12px 16px;
  }
  .menu {
    scroll-margin-top: 220px;
  }
  .menu__item {
    width: calc(33.3333% - 11px);
  }
  .promo__buttons {
    display: flex;
  }
  .promo__item {
    width: auto !important;
  }
  .promo__page .promo__item {
    width: calc(50% - 8px) !important;
  }
  .footer__right {
    max-width: 175px;
  }
  .footer__menu-second {
    flex-wrap: wrap;
    row-gap: 8px;
    column-gap: 16px;
  }
  .footer__menu-second::after {
    content: "";
    flex-basis: 100%;
    width: 0;
    order: 1;
  }
  .footer__menu-second li:nth-child(n+3) {
    order: 2;
  }
  .footer__menu-second li:nth-child(-n+2) {
    order: 0;
  }
  .card__img {
    max-width: 300px;
    display: flex;
    align-items: center;
  }
  .action__row {
    padding-top: 120px;
  }
  .policy {
    padding-top: 120px;
  }
  .delivery__item {
    width: calc(50% - 8px);
  }
  .delivery__item:first-child {
    width: 100%;
  }
  .form__client {
    flex-direction: column;
    gap: 8px;
  }
  .form__client input {
    width: 100%;
  }
  .form__get-type {
    flex-direction: column;
    gap: 8px;
  }
  .form__get-radio {
    width: 100%;
  }
  .form__order-pay {
    flex-direction: column;
    gap: 8px;
  }
  .form__order-type {
    width: 100%;
  }
  .order__row {
    padding-top: 120px;
  }
  .error__number {
    font-size: 300px;
  }
  .error__circle {
    width: 140px;
    height: 140px;
  }
  .error__circle svg {
    max-width: 70px;
  }
  .error__title {
    font-size: 80px;
  }
  .thanks .error__row {
    padding-top: 160px;
  }
}
@media (max-width: 768px) {
  .decs {
    display: none;
  }
  .mob {
    display: flex;
  }
  .container {
    padding: 0 16px;
  }
  h1 {
    font-weight: 600;
    font-size: 80px;
  }
  .first {
    height: auto;
    background: url("../image/first__mob.jpg");
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .first__row {
    padding-top: 130px;
    padding-bottom: 24px;
    gap: 24px;
  }
  .first__info {
    align-items: start;
    flex-direction: column;
  }
  .first__buttons {
    order: 1;
    flex-direction: column;
  }
  .first__buttons .button {
    width: 100%;
    max-width: 400px;
  }
  .promo {
    margin: 32px 0;
  }
  .promo__row {
    gap: 24px;
  }
  .promo__buttons {
    margin-top: 0;
  }
  .promo__page .promo__wrapper {
    gap: 8px;
  }
  .promo__page .promo__item {
    width: calc(50% - 4px) !important;
    height: 250px !important;
  }
  .often {
    margin-bottom: 32px;
  }
  .often__row {
    gap: 24px;
  }
  .menu {
    margin-bottom: 32px;
  }
  .menu__row {
    gap: 24px;
  }
  .menu__item {
    width: calc(50% - 8px);
  }
  .footer__address {
    flex-wrap: wrap;
    row-gap: 8px;
  }
  .footer__row {
    padding: 24px 0;
  }
  .footer__bottom {
    margin: 24px 0;
  }
  .footer__bottom iframe {
    height: 200px;
  }
  .footer__middle {
    gap: 24px;
  }
  .card {
    flex-direction: column;
    height: 90%;
    width: 90%;
    border-radius: 15px;
    max-height: 600px;
  }
  .card__extra {
    max-height: 100%;
  }
  .card__img {
    max-width: 100%;
    display: flex;
    align-items: center;
    max-height: 200px;
    justify-content: center;
  }
  .card__img img {
    height: 100%;
  }
  .card__title.title {
    font-size: 28px;
  }
  .card__content {
    margin-top: 16px;
  }
  .card__content-info-light {
    margin: 16px 0 8px 0;
  } 
  .card__extra {
    margin-bottom: 16px;
    margin-top: 16px;
  }
  .card .text {
    font-size: 14px;
  }
  .card__option button {
    padding: 4px 8px;
  }
  .card__content {
    max-width: 100%;
    height: 100%;
    padding: 0 10px 10px 10px;
    overflow: hidden;
  }
  .card__content-sizes button {
    padding: 4px 8px;
  }
  .card__content-type button {
    padding: 4px 8px;
  }
  .card__content-extra button {
    padding: 4px 8px;
  }
  .card__content-info {
    font-size: 14px;
  }
  .burger.active {
    display: flex;
  }
  .delivery {
    margin-bottom: 48px;
  }
  .social {
    margin: 24px 0;
  }
  .social__left {
    max-width: 80px;
  }
  .social__right {
    max-width: 70px;
  }
  .form {
    flex-direction: column;
  }
  .form__client {
    flex-direction: row;
    gap: 8px;
  }
  .form__client input {
    width: calc(50% - 4px);
  }
  .form__get-type {
    flex-direction: row;
    gap: 8px;
  }
  .form__get-radio {
    width: calc(50% - 4px);
  }
  .form__order {
    width: 100%;
  }
  .form__order-pay {
    flex-direction: row;
    gap: 8px;
  }
  .form__order-type {
    width: calc(50% - 4px);
  }
  .form__left {
    width: 100%;
  }
  .modal {
    bottom: 0px;
    left: 0;
    transform: translateX(0);
    border-radius: 20px 20px 0 0;
    gap: 10px;
    flex-direction: column;
    align-items: start;
    max-width: 100%;
  }
  .error {
    background-size: cover;
  }
  .error__circle {
    width: 100px;
    height: 100px;
  }
  .error__circle svg {
    max-width: 50px;
  }
  .error .subtitle {
    margin-top: 0;
  }
  .error__row {
    padding-top: 80px;
    padding-bottom: 60px;
  }
  .error__number {
    font-size: 200px;
  }
  .error__title {
    font-size: 60px;
  }
  .thanks .error__row {
    padding-top: 120px;
  }
}
@media (max-width: 576px) {
  h1 {
    font-size: 52px;
  }
  .subtitle {
    font-size: 18px;
  }
  .header__row {
    padding: 13px 0;
  }
  .header__logo {
    max-width: 70px;
  }
  .menu__title {
      font-size: 16px;
    }
  .filters {
    background: var(--dark-card);
  }
  .search {
    background: var(--graphite-black);
  }
  .search__row {
      padding-top: 8px;
  }
  .filters .container {
    padding: 0 0 0 16px;
  }
  .filters__search-results {
    top: calc(100% + 4px);
  }
  .filters__search {
    max-width: 100%;
  }
  .filters__item {
    padding: 8px 12px;
    min-width: 100px;
  }
  .filters__item:last-child {
    margin-right: 16px;
  }
  .filters__item .text {
    font-size: 14px;
  }
  .filters__wrapper {
    padding: 8px 0;
  }
  .filters__buttons button svg {
    max-width: 20px;
  }
  .filters__row {
      padding-bottom: 0;
  }
  .promo__item {
    width: 100% !important;
  }
  .promo__page .promo__item {
    width: 100% !important;
    height: auto !important;
  }
  .promo__wrapper {
    gap: 0;
  }
  .title {
    font-size: 44px;
    font-weight: 600;
  }
  .menu {
    scroll-margin-top: 160px;
  }
  .menu__buttons {
    flex-direction: column-reverse;
    align-items: start;
  }
  .menu__item {
    width: calc(50% - 4px);
  }
  .menu__item-content {
    padding: 8px 8px 16px 8px;
  }
  .menu__wrapper {
    gap: 8px;
  }
  .footer__menu {
    gap: 8px;
    flex-direction: column;
    align-items: start;
  }
  .footer__menu-second::after {
    content: none;
  }
  .footer__menu-second .footer__menu-right {
    margin-left: 0;
  }
  .footer__line {
    margin-bottom: 12px;
  }
  .footer__middle {
    gap: 8px;
    flex-direction: column;
    align-items: start;
  }
  .footer__address {
    flex-direction: column;
    align-items: start;
  }
  .footer__top {
    position: relative;
  }
  .footer__left {
    gap: 24px;
  }
  .footer__right {
    position: absolute;
    right: 0;
    top: 0;
    max-width: 120px;
  }
  .footer__bottom {
    margin: 12px 0;
  }
  .policy {
    padding-top: 100px;
  }
  .policy .title {
    font-size: 32px;
  }
  .policy .subtitle {
    margin: 8px 0;
  }
  .policy p, .policy a, .policy span, .policy li {
    margin-top: 4px;
  }
  .delivery__wrapper {
    flex-direction: column;
  }
  .delivery__item {
    width: 100%;
  }
  .form__left {
    padding: 16px;
  }
  .form__left input {
    padding: 8px 12px;
  }
  .form__client {
    flex-direction: column;
    gap: 8px;
  }
  .form__client input {
    width: 100%;
  }
  .form__get-type {
    flex-direction: column;
    gap: 8px;
  }
  .form__get-radio {
    width: 100%;
    padding: 12px;
    gap: 8px;
  }
  .form__order {
    gap: 12px;
    padding: 16px;
  }
  .form__order-pay {
    flex-direction: column;
    gap: 8px;
  }
  .form__order-type {
    width: 100%;
    padding: 12px;
    gap: 8px;
  }
  .order__row {
    padding-bottom: 60px;
  }
}