@font-face {
  font-family: Inter;
  src: url('/fonts/Inter-Regular.woff2');
  src: local('/fonts/Inter-Regular'),url('/fonts/Inter-Regular.woff2') format('woff2'),url('/fonts/Inter_28pt-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  display: swap;
}
@font-face {
  font-family: Inter;
  src: url('/fonts/Inter-Medium.woff2');
  src: local('/fonts/Inter-Medium'),url('/fonts/Inter-Medium.woff2') format('woff2'),url('/fonts/Inter_28pt-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  display: swap;
}
html{
  background-color: #fff;
  font-family: 'Inter', system-ui, sans-serif;;
  font-size: 18px;
  line-height: 1.2;
}
body{
  background-color: #1d1d1d;
  /* max-width: 1200px; */
  width: 100%;
  /* margin: 0px auto; */
  position: relative;
}
main{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
h2{
  color: #fff;
  font-weight: 500;
  font-size: 42px;
  text-transform: uppercase;
  margin-bottom: 50px;
}
@media (max-width: 960px){
  h2{
    font-size: 23px;
  }
}
@media (max-width: 640px){
  .mainCatalog h2{
    margin-bottom: 20px;
  }
}
/** --- header --- **/
header{
  display: flex;
  flex-direction: column;
  font-weight: 500;
  /* width: 1200px; */
  width: 100%;
  position: fixed;
  z-index: 99;
  /* box-shadow: 2px 2px 12px 2px #0000001A; */
}
.header.scrolled{
  box-shadow: 2px 2px 12px 2px #0000001A;
}
header a{
  display: inline-block;
  color: #1D1D1D;
}
header .hWrap{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
header .first,
header .second{
  width: 100%;
  padding: 10px 20px;
  background-color: #fff;
}
.fixedHead.second{
  padding: 73px 20px 10px 20px;
  width: 100%;
  background-color: #fff;
  position: relative;
  height: 143px;
  transition: background-color 0.5s ease;
}
.fixedHead .hWrap{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 1200px;
  height: 60px;
  margin: 0 auto;
  align-items: flex-start;
  gap: 40px;
}
/* header .second {
  transition: background-color 0.5s ease;
  height: 80px;
}
header .second .hWrap{
  align-items: flex-start;
  gap: 40px;
} */
.headLinks{
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
}
.headLinks>a,
.headSocials a,
.catalogItem a{
  position: relative;
  color: #1d1d1d;
}
.headLinks>a:not(:first-child):after,
.headSocials a:after,
.catalogItem a:after,
.contacts .ourContacts .ourSocials>a:after,
.contacts .ourContacts .phm>div>a:after,
.footerMenu>a:after,
.footerSocials a:after{
  content: '';
  width: 100%;
  position: absolute;
  bottom: -3px;
  left: 0px;
  height: 1px;
  background: #1D1D1D;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.5s ease;
}
.contacts .ourContacts .ourSocials>a:after,
.contacts .ourContacts .phm>div>a:after{
  background: #fff;
}
.headLinks>a:not(:first-child):hover:after,
.headSocials a:hover:after,
.catalogItem a:hover:after,
.catalogItem a.active:after,
.contacts .ourContacts .ourSocials>a:hover:after,
.contacts .ourContacts .phm>div>a:hover:after,
.footerMenu>a:hover:after,
.footerSocials a:hover:after{
  transform: scaleX(1);
}
.headSocials{
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 55px;
}
.headSocials>.soc{
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap:20px;
}
.headSocials>.soc>.phone{
  display: none;
}
#catalog{
  width: 260px;
  height: 60px;
  min-height: 60px;
  border-radius: 20px;
  background-color: #1D1D1D;
  color: #fff;
  transition: min-height 0.5s ease-in-out, height 0.5s ease-in-out, background-color 0.5s ease;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 2px 2px 12px 2px #0000001A;
}
#catalog .catalogHead{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  width: 260px;
  padding: 0px 20px;
  cursor: pointer;
  user-select: none;
}
#catalog .catalogHead p{
  font-weight: 500;
  font-size: 27px;
}
#catalog .catalogHead img{
  width: 30px;
  height: 30px;
}
#catalog .catalogItem{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap:10px;
  padding: 10px 12px;
  font-size: 18px;
}
#catalog .catalogItem:nth-child(2) {
  margin-top: 20px;
}
#catalog .catalogItem button{
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
}
.headSearch{
  width: 100%;
}
.headSearch form{
  display: flex;
  height: 60px;
  width: 100%;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  border: 1px solid #1d1d1d;
  border-radius: 20px;
  background-color: #1d1d1d;
}
.headSearch input[type="text"]{
  width: 100%;
  padding: 20px;
  color: #fff;
}
.headSearch button{
  width: 60px;
  height: 60px;
}

.second.open {
  background-color: transparent;
  align-items: flex-start;
}

.second.open #catalog {
  background-color: #fff;
  color: #1d1d1d;
  /* height: 690px; */
  min-height: 240px; /* новая высота */
  height: auto;
  z-index: 98;
}

.second.open #catalog .catalogHead svg path {
  stroke: #1d1d1d;
}

.second.open #catalog .catalogHead svg {
  transform: rotate(180deg);
}

.second.open .headSearch form{
  background-color: #fff;
}
.second.open .headSearch form input[type="text"]{
  color: #1d1d1d;
}
/* новые данные для стилей меню каталога*/
#catalog .catalogItem{
  flex-wrap: wrap;
  gap: unset;
  column-gap: 10px;
}
#catalog .catalogItem>div:nth-child(1){
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
#catalog .catalogItem .arrow-icon{
  width: 16px;
  height: 16px;
  transition: transform 0.5s ease-in-out;
}
#catalog .catalogItem .arrow-icon.icon-up{
  transform: rotate(-180deg);
}
#catalog .catalogItem .subCatalog {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 10px;
  background: #ececec;
  width: 100%;
  overflow: hidden;
  max-height: 0px;
  margin-top: 0px;
  transition: max-height 0.5s ease-in-out, margin-top 0.5s ease-in-out;
}
#catalog .catalogItem .subCatalog.open {
  margin-top: 10px;
  width: 100%;
  max-height: 450px;
}
#catalog .catalogItem .subCatalog{
  font-size: 17px;
}
#catalog .catalogItem .subCatalogLink {
  margin-left: 10px;
  margin-right: 10px;
}

#catalog .catalogItem .subCatalogLink:first-child {
  margin-top: 10px;
}

#catalog .catalogItem .subCatalogLink:last-child {
  margin-bottom: 10px;
}


.mobileMenu{
  position: relative;
  width: 30px;
  height: 30px;
  display: none;
}
#toggle {
  display: none;
}
.hamburger {
  height: 30px;
  z-index: 5
}
.hamburger,.hamburger div {
  position: relative;
  width: 30px
}
.nav-logo,body {
  display: flex;
  flex-direction: column
}
.nav,header {
  position: fixed;
  left: 0
}

.hamburger div {
  height: 3px;
  background-color: #1d1d1d;
  margin-top: 5px
}
.nav {
  width: 100%;
  height: 100%;
  background-color: #fff;
  top: -100%;
  right: 0;
  bottom: 0;
  transform: scale(0)
}

.nav-wrapper {
  position: relative;
  overflow-y: auto;
  height: 100%
}
.nav-logo a,nav a,nav span {
  display: inline-block
}
.nav-item:not(:first-child)::before {
  content: ' ';
  display: block;
  border-top: 1px solid #41414152;
  width: 160px;
  margin: 0 auto
}

nav {
  text-align: center
}

nav a {
  position: relative;
  text-decoration: none;
  line-height: 40px;
  transition: color .2s ease-in-out;
  letter-spacing: 1px
}

nav span {
  width: 5px;
  padding: 10px 15px;
  margin-left: -38px
}

.nav-item a {
  margin-top: 0
}

.nav-item li>a {
  line-height: 24px
}

.nav-item li:last-child {
  margin-bottom: 10px
}

.nav-logo {
  width: 100vw;
  align-items: center;
  justify-content: center;
  padding: 30px 0
}

.nav-logo a {
  width: 180px
}

#toggle:checked+.hamburger .top-bun {
  transform: rotate(-45deg);
  margin-top: 13px
}

#toggle:checked+.hamburger .bottom-bun {
  opacity: 0;
  transform: rotate(45deg)
}
#toggle:checked+.hamburger .meat {
  transform: rotate(45deg);
  margin-top: -3px
}

#toggle:checked+.hamburger+.nav {
  top: 0;
  transform: scale(1);
  z-index: 1;
}
.hamburger div,.nav {
  transition: .3s ease-in-out
}


@media (max-width: 1200px) {
  header .first, header .second{
    padding: 10px;
  }
  .headSocials{
    gap: 20px;
  }
  .headSocials>a{
    display: none;
  }
  .headSocials>.soc>.phone{
    display: block;
  }
  .fixedHead .hWrap{
    gap: 20px;
  }
  .fixedHead.second{
    padding: 73px 10px 10px 10px;
  }
}
@media (max-width: 960px) {
  .headLinks>a:not(:first-child) {
    display: none;
  }
  .headSocials>a{
    display: block;
  }
  .headSocials>.soc>a:not(:last-child){
    display: none;
  }
  .hamburger,
  .mobileMenu{
    display: block;
  }

  .fixedHead.second.always{
    height: auto;
  }
  .fixedHead.second.always .hWrap{
    height: auto;
    flex-direction: column-reverse;
    gap: 10px;
  }
  .fixedHead.second.open.always #catalog{
    /* height: 250px; */
    min-height: 220px;
  }
  .fixedHead.second.always #catalog{
    width: 100%;
  }
  .fixedHead.second.always #catalog .catalogHead{
    width: 100%;
  }
}
@media (max-width: 640px){
  .headSocials>a{
    display: none;
  }
  .headSocials>.soc>a.phone{
    display: block;
  }
  #catalog{
    width: calc((100% - 20px)/2);
  }
  #catalog .catalogHead{
    width: 100%;
  }
  .headSearch input[type="text"]{
    padding: 20px 10px 20px 20px;
  }
  .headSearch button{
    width: 50px;
    padding-right: 10px;
    flex-shrink: 0;
  }
}
@media (max-width: 480px){
  .fixedHead.second{
    height: auto;
  }
  .fixedHead .hWrap{
    height: auto;
    flex-direction: column-reverse;
    gap: 10px;
  }
  #catalog{
    width: 100%;
  }
}

/** --- footer ---**/

footer{
  width: 100%;
  background-color: #fff;
}
.footer {
  width: 100%;
  max-width: 1200px;
  padding: 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}
.footerMenu,
.footerContacts{
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.footer p{
  font-size: 23px;
  font-weight: 500;
  margin-bottom: 10px;
}
.footerMenu>a,
.footerContacts>span{
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #1d1d1d;
  display: inline-block;
  position: relative;
}
.footerSocials>div {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 20px;
}
.footerSocials a{
  display: inline-block;
  position: relative;
}
@media (max-width: 1200px) {
  .footer{
    padding: 10px;
    padding-bottom: 50px;
  }
}
@media (max-width: 960px) {
  .footer p{
    font-size: 18px;
  }
  .footerMenu>a,
  .footerContacts>span{
    font-size: 16px;
  }
  .footerSocials{
    position: absolute;
    top: 80px;
    left: 17px;
  }
}
@media (max-width: 640px){
  .footer{
    gap: 60px;
  }
  .footer>a{
    flex-shrink: 0;
  }
  .footerMenu{
    display: none;
  }
}
@media (max-width: 480px){
  .footer{
    flex-wrap: wrap;
    gap: 30px;
  }
  .footerSocials{
    top: 17px;
    right: 20px;
    left: unset;
  }
  .footerSocials p{
    display: none;
  }
}

/** --- логотип --- **/
/* .bigLogo{
  width: 100%;
  max-width: 1200px;
  height: 100vh;
  min-height: 750px;
  display: block;
  background-color: #1d1d1d;
  background-image: url('/images/logo_big.svg');
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.bigLogo .yandexMark{
  width: 150px;
  height: 100px;
  position: absolute;
  bottom: 110px;
  left: 20px;
  background-image: url('/images/mark.svg');
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 1200px){
  .bigLogo{
    background-size: 90%;
    background-position: center;
    background-repeat: no-repeat;
  }
  .bigLogo .yandexMark{
    left: 10px;
  }
}
@media (max-width: 960px){
  .bigLogo{
    max-width: 100vw;
    min-height: 600px;
  }
}
@media (max-width: 640px){
  .bigLogo{
    background-size: 100%;
    min-height: 500px;
    max-height: 80vh;
  }
  .bigLogo .yandexMark{
    left: 50%;
    transform: translateX(-50%);
  }
} */

/** --- акции --- **/
.promo,
.mainCatalog,
.mainProjects,
.mainServices,
.mainSteps,
.mainAdvantages,
.mainFAQ,
.mainContacts,
.mainGranit,
.mainTargets,
.mainPerson,
.mainBlog{
  width: 100%;
  max-width: 1200px;
  height: auto;
  padding: 70px 20px;
}
.sectionName{
  font-size: 17px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}
.sectionName::before{
  content: '\2022';
  display: inline-block;
  width: 30px;
  height: 20px;
  color: #fff;
}
.promoArea{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 40px;
}
.promoArea .paImage {
  flex-shrink: 0;
  width: calc(50% - 20px);
}
.promoArea .paImage img {
  aspect-ratio: 560/333;
  object-fit: cover;
  border: 1px solid #fff;
  border-radius: 10px;
}
/* #promoCarousel{
  --f-carousel-slide-width: calc((100% - 40px) / 2);
  --f-carousel-slide-height: 333px;
  --f-carousel-spacing: 40px;
}
#promoCarousel .f-carousel__slide{
  border-radius: 10px;
  overflow: hidden;
}
#promoCarousel .f-carousel__slide img {
  width: 100%;
  height: auto;
  max-height: 333px;
  object-fit: cover;
}
#promoCarousel .f-carousel__slide p {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 27px;
  font-weight: 500;
  text-transform: uppercase;
  color: #1d1d1d;
  width: calc(100% - 40px);
}
#promoCarousel .f-progress{
  display: none;
} */
@media (max-width: 1200px){
  .promo,
  .mainCatalog,
  .mainProjects,
  .mainServices,
  .mainSteps,
  .mainAdvantages,
  .mainFAQ,
  .mainContacts,
  .mainGranit,
  .mainTargets,
  .mainPerson,
  .mainBlog{
    padding: 70px 10px;
    max-width: 100vw;
  }
  .promoArea{
    gap: 20px;
  }
  .promoArea .paImage {
    width: calc(50% - 10px);
  }
  /* #promoCarousel{
    --f-carousel-slide-width: calc((100% - 20px) / 2);
    --f-carousel-spacing: 20px;
  }
  #promoCarousel .f-carousel__slide img{
    height: 333px;
  } */
}
@media (max-width: 960px){
  /* #promoCarousel .f-carousel__slide p{
    font-size: 18px;
  } */
  .promoArea .paImage{
    width: 100%;
  }
  .promoArea .paImage img {
    width: 100%;
  }
  
}
@media (max-width: 640px){
  /* #promoCarousel{
    --f-carousel-slide-width: 100%;
  } */
  .promo,
  .mainCatalog,
  .mainProjects,
  .mainServices,
  .mainSteps,
  .mainAdvantages,
  .mainFAQ,
  .mainContacts,
  .mainGranit,
  .mainTargets,
  .mainPerson,
  .mainBlog{
    padding: 40px 10px;
  }
}

/** --- contacts --- **/
#contactMe {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  width: calc(50% - 40px);
}
#contactMe input[type="text"] {
  width: 100%;
  padding: 20px;
  border: 1px solid #fff;
  border-radius: 10px;
  font-size: 20px;
  color: #fff;
}
#contactMe button{
  width: 100%;
  height: 45px;
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #fff;
  font-size: 20px;
  transition: all 0.5s ease-in-out;
}
#contactMe button:hover{
  background-color: #1d1d1d;
  color: #fff;
}
#contactMe input[name="acceptPolicy"]{
  display: none;
}
#contactMe label{
  font-size: 16px;
  color: #7a7a7a;
  display: inline-block;
  position: relative;
  /* padding-left: 19px; */
}
/* #contactMe label:before{
  display: inline-block;
  position: absolute;
  top: 3px;
  left: 0px;
  content: '';
  width: 12px;
  height: 12px;
  border: 1px solid #fff;
  border-radius: 3px;
  transition: background-color 0.5s;
}
#contactMe input[name="acceptPolicy"]:checked + label:before{
  background-color: #fff;
  background-image: url('/images/check.svg');
  background-repeat: no-repeat;
  background-size: 10px;
  background-position: center;
} */
#contactMe label>a{
  color: #7a7a7a;
  text-decoration: underline;
  white-space: pre;
  transition: color 0.5s ease-in-out;
}
#contactMe label:hover>a{
  color: #fff;
}
.contacts {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.contacts .ourContacts {
  width: calc(50% - 40px);
}

.contacts .ourContacts>div>p {
  font-size: 27px;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
}

.contacts .ourContacts .phm {
  margin: 15px 0px 30px 0px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
}

.contacts .ourContacts .phm>div {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 7px;
}

.contacts .ourContacts .phm>div>a,
.contacts .ourContacts .phm>div>p {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  position: relative;
  display: inline-block;
}

.contacts .ourContacts .ourSocials {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 40px;
}
.contacts .ourContacts .ourSocials>a{
  display: inline-block;
  position: relative;
}
@media (max-width: 960px){
  #contactMe label{
    font-size: 10px;
  }
  #contactMe label:before{
    top: 0px;
  }
  /* #contactMe label>a{
    margin-left: 19px;
  } */
  .contacts .ourContacts>div>p{
    font-size: 18px;
  }
  .contacts .ourContacts .phm{
    flex-wrap: wrap;
    gap: 10px;
  }
  .contacts .ourContacts .ourSocials img{
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 640px){
  .mainContacts h2{
    margin-bottom: 40px;
  }
  .contacts{
    flex-direction: column;
  }
  #contactMe,
  .ourContacts,
  .contacts .ourContacts{
    width: 100%;
  }
  .contacts .ourContacts .phm{
    flex-direction: column;
  }
  .ourContacts, .contacts .ourContacts {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .contacts .ourContacts .phm>div>a{
    font-size: 18px;
  }
}
@media (max-width: 480px){
  .ourContacts, .contacts .ourContacts{
    flex-direction: column;
  }
}


#cartLabel{
  position: relative;
}
#cartCount{
  position: absolute;
  top: 0;
  right: 0;
  font-size: 10px;
  display: flex;
  width: 15px;
  height: 15px;
  background: #f00;
  text-align: center;
  padding: 3px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 50%;
  opacity: 0;
}
#cartCount.visible{
  opacity: 1;
}

#cart {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  overflow: hidden;
  background: #000000b3;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

#cart.visible {
  opacity: 1;
}

#cart .closeCart {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

#cart .closeCart::before, #cart .closeCart::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background-color: #ddd;
  position: absolute;
  top: 19px;
  left: 0;
  transition: background 0.5s ease;
}

#cart .closeCart::before {
  transform: rotate(45deg);
}

#cart .closeCart::after {
  transform: rotate(135deg);
}

#cart .closeCart:hover::before, #cart .closeCart:hover::after {
  background-color: #fff;
}

#cart .content {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  width: 760px;
}
#cart .cartHead {
  font-size: 27px;
  margin-bottom: 40px;
}
#cart form {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
  gap: 20px;
}
#cart .products-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 20px;
  max-height: 300px;
  overflow-y: scroll;
  padding: 10px;
  box-shadow: inset 0px 0px 5px #0000003d;
  border-radius: 10px;
}
#cart .product:not(:nth-child(1)){
  border-top: 1px solid #d9d9d9;
  padding-top: 20px;
}
#cart .product{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 20px;
  position: relative;
  width: 100%;
  opacity: 1;
  transition: opacity 0.5s;
}
#cart .product.removed{
  opacity: 0;
}
#cart .product>img {
  width: 130px;
  height: 130px;
  object-fit: cover;
}
#cart .product .product-content {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  max-width: calc(100% - 110px);
}
#cart .options::before {
  content: 'Дополнительные опции:';
  font-size: 20px;
  font-weight: 500;
}
#cart .options{
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
  width: 100%;
}
#cart .options p::before{
  content: '•';
  margin-right: 0.5em;
}
#cart .options p span::before{
  content: '— ';
  margin: 0 0.5em;
}
#cart .cart-separator{
  height: 1px;
  width: 100%;
  background: #7a7a7a;
}
#cart .result-sum {
  width: 100%;
  text-align: right;
  font-size: 20px;
}
#cart form input[type="text"]{
  width: 100%;
  font-size: 20px;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #7a7a7a;
}
#cart form input[name="customer-phone"], 
#cart form input[name="customer-mail"] {
  width: calc(50% - 10px)!important;
}
#cart input[type="submit"]{
  width: 100%;
  height: 45px;
  color: #fff;
  background-color: #1d1d1d;
  border-radius: 10px;
  border: 1px solid #1d1d1d;
  font-size: 20px;
  transition: all 0.5s ease-in-out;
}
#cart input[type="submit"]:hover,
#cart input[type="submit"]:active{
  color: #1d1d1d;
  background-color: #fff;
}
#cart input[name="acceptPolicy"] {
  display: none;
}
#cart label {
  font-size: 16px;
  color: #7a7a7a;
  display: inline-block;
  position: relative;
  /* padding-left: 19px; */
}
/* #cart label:before {
  display: inline-block;
  position: absolute;
  top: 3px;
  left: 0px;
  content: '';
  width: 12px;
  height: 12px;
  border: 1px solid #1d1d1d;
  border-radius: 3px;
  transition: background-color 0.5s;
}
#cart input[name="acceptPolicy"]:checked + label:before {
  background-color: #fff;
  background-image: url('/images/check.svg');
  background-repeat: no-repeat;
  background-size: 10px;
  background-position: center;
} */
#cart label>a {
  color: #7a7a7a;
  text-decoration: underline;
  white-space: pre;
  transition: color 0.5s ease-in-out;
}
#cart .remove-product {
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
#cart .remove-product::before, #cart .remove-product::after {
  content: '';
  display: block;
  width: 20px;
  height: 3px;
  background-color: #c85252;
  position: absolute;
  top: 10px;
  left: 0;
  transition: background 0.5s ease;
}
#cart .remove-product::before {
  transform: rotate(45deg);
}
#cart .remove-product::after {
  transform: rotate(135deg);
}
#cart .remove-product:hover::before, #cart .remove-product:hover::after {
  background-color: #f00;
}

#backdrop{
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000000b3;
  z-index: 1000;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
#backdrop.visible{
  opacity: 1;
}
#backdrop .closeStep {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
#backdrop .content {
  background: #fff;
  max-width: 760px;
  padding: 20px;
  border-radius: 20px;
  min-width: 320px;
}
#backdrop .content>p {
  font-size: 27px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
#backdrop .content>span {
  font-size: 16px;
  font-weight: 400;
}
#backdrop .content img{
  max-height: 300px;
  width: 100%;
  object-fit: contain;
}
#backdrop .closeStep::before,
#backdrop .closeStep::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background-color: #ddd;
  position: absolute;
  top: 19px;
  left: 0;
  transition: background 0.5s ease;
}
#backdrop .closeStep::before{
  transform: rotate(45deg);
}
#backdrop .closeStep::after {
  transform: rotate(135deg);
}
#backdrop .closeStep:hover::after,
#backdrop .closeStep:hover::before{
  background-color: #fff;
}
#backdrop button {
  display: block;
  margin: 0px 50% 20px 50%;
  width: 220px;
  height: 45px;
  background-color: #1d1d1d;
  border: 1px solid #1d1d1d;
  border-radius: 10px;
  color: #fff;
  transform: translateX(-50%);
  transition: all 0.5s ease-in-out;
  cursor: pointer;
}
#backdrop button:hover {
  background-color: #fff;
  color: #1d1d1d;
}
#backdrop input[type="text"] {
  display: inline-block;
  font-size: 18px;
  font-weight: 400;
  margin: 20px 0px;
  border: 1px solid #1d1d1d;
  border-radius: 10px;
  padding: 10px;
  width: 100%;
}
#backdrop .modalControls {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 20px 20px 0px 20px;
}

#backdrop .modalControls button {
  margin: 0px;
  transform: unset;
  width: 200px;
}
#backdrop details{
  margin: 20px 0px;
}
#backdrop details>summary{
  font-size: 16px;
}
#backdrop details>p{
  background: #f9bdbd;
  border-radius: 10px;
  padding: 10px;
  font-size: 14px;
}
@media (max-width:960px) {
  #backdrop .content{
    margin: 0 90px;
  }
}
@media (max-width:640px) {
  #backdrop .content{
    margin: 0 30px;
  }
  #backdrop .closeStep{
    top: 30px;
    right: 30px;
  }
}
@media (max-width:480px) {
  #backdrop{
    flex-direction: column;
    justify-content: flex-start;
  }
  #backdrop .content{
    margin: 120px 10px 0px 10px;
  }
  #backdrop .content>p{
    font-size: 23px;
  }
  #backdrop .closeStep {
    top: 12px;
    right: 10px;
  }
}

#seon{
  position: absolute;
  bottom: 30px;
  left: 30px;
  display: flex;
  flex-direction: column;
  font-size: 12px;
  gap: 2px;
  color: #000;
}
#seon span,
#seon svg{
  flex-shrink: 0;
}
/* @media (max-width: 960px) {
  #seon{
    left: 20px;
    bottom: 10px;
  }
} */
@media (max-width: 960px) {
  #seon{
    left: 20px;
    bottom: 20px;
  }
}
@media (max-width: 640px) {
  #seon{
    flex-direction: row;
    gap: 5px;
  }
  #seon svg{
    width: auto;
    height: 12px;
  }
}
@media (max-width: 480px) {
  #seon{
    left: 10px;
  }
}