* {
  box-sizing: border-box;
}
body {
  font-family: "Inter", sans-serif;
  margin: 0;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  font-family: "Inter", sans-serif;
}

h4,
p,
a,
button,
input {
  font-family: "Inter", sans-serif;
}
button {
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  cursor: pointer;
}

textarea:focus,
input[type="text"]:focus {
  border-color: rgba(255, 255, 255, 0.5) !important;
}

.categories {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 26px 24px;
  /* margin: 60px 0; */
}

.categories__item {
  padding: 10px;
  background: #fff;
  border: 1px solid rgba(48, 48, 48, 0.1);
  border-radius: 24px;
  transition: 0.2s ease;
  position: relative;
}

.categories__item a {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.categories__item h4 {
  transition: 0.2s ease;
}
.categories__item:hover {
  box-shadow: 0px 11px 24px rgba(69, 43, 42, 0.05);
  transition: 0.2s ease;
  background: #ff4b6e;
}

.categories__item svg circle,
.categories__item svg path {
  transition: 0.3s ease;
}
.categories__item:hover svg path {
  transition: 0.3s ease;
  stroke: #ff4b6e;
}

.categories__item:hover svg circle {
  fill: #fff;
  transition: 0.3s ease;
}

.categories__item:hover h4 {
  color: #fff;
  transition: 0.3s ease;
}

.categories__item img {
  width: 100%;
  height: 294px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  transition: 0.2s ease;
}

.categories__item:hover img {
  transform: scale(1.1);
  transition: 0.2s ease;
}

.categories__item__pic {
  overflow: hidden;
  border-radius: 20px;
}

.categories__item__row {
  display: flex;
  justify-content: space-between;
  padding: 18px 8px 14px;
  align-items: center;
}

.categories__item__row h4 {
  font-size: 20px;
  color: #303030;
  margin: 0;
  font-weight: 700;
}

.info {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin: 60px 0;
}

.info__item {
  padding: 24px;
  background: #f8f8f8;
  position: relative;
  transition: 0.3s ease;
  border: 1px solid rgba(48, 48, 48, 0.1);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
}

.info__item:hover {
  background: #ff4b6e;
  color: #fff;
  transition: 0.3s ease;
}

.info__item:hover button svg circle {
  fill: #fff;
  transition: 0.3s ease;
}

.info__item:hover button svg path {
  stroke: #ff4b6e;
  transition: 0.3s ease;
}

.info__item a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.info__item h4 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 14px;
}

.info__item p {
  font-size: 18px;
  font-weight: 500;
}

.info__item p a {
  position: static;

}

.info__item button {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin-top: auto;
}

@media (max-width: 767px) {
  .info__item h4 {
    font-size: 24px;
    margin-bottom: 8px;
    line-height: 1;
  }

  .info__item p {
    font-size: 16px;
    margin-bottom: 10px;
  }
}

.prods__item {
  padding: 10px;
  border: 1px solid rgba(48, 48, 48, 0.1);
  border-radius: 24px;
  position: relative;
  transition: 0.2s ease;
  overflow: hidden;
}

.prods__item:hover .prods__item__content h4 {
  color: #ff4b6e;
  transition: 0.2s ease;
}

.prods__item__pic-wrap {
  overflow: hidden;
  width: 100%;
  max-height: 294px;
  border-radius: 15px;
}

.prods__item:hover img {
  transform: scale(1.1);
  transition: 0.5s ease;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  text-align: left;
  margin-bottom: 48px;
  color: #303030;
}
.modal-content {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding: 25px 30px;
  box-shadow: none;
}
@media (max-width: 767px) {
  .section-title {
    font-size: 38px;
    text-align: center;
  }
}

.prods {
  margin-top: 120px;
  padding-bottom: 30px;
}

.prods__item__content {
  padding: 10px 8px;
}

.prods__item__content span {
  font-size: 14px;
  color: #888888;
  display: block;
}

.prods__item__content h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15px;
  transition: 0.2s ease;
  min-height: 51px;
}

.prods__item__price {
  font-size: 20px;
  font-weight: 700;
}

.prods__item img {
  width: 100%;
  height: 294px;
  object-fit: cover;
  border-radius: 24px;
  transition: 0.5s ease;
}

.sales {
  background: #ff4b6e;
  color: #fff;
  padding: 26px 36px 28px;
  border-radius: 24px;
  margin: 120px 0;
}

.sales h3 {
  font-size: 36px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 24px;
}

.sales__form {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.sales__form label span {
  font-size: 14px;
  font-weight: 500;
  display: block;
  margin-bottom: 5px;
}

.sales__form label input {
  border-radius: 100px;
  background: none;
  max-width: 374px;
  width: 100%;
  height: 41px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 14px;
  color: #fff;
  outline: none;
}

.sales__form button {
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  margin-left: 14px;
  padding: 10px 46px;
  border-radius: 100px;
  transition: 0.3s ease;
}

.sales__form button:hover {
  transition: 0.3s ease;
  opacity: 1;
  background: #ff9d00;
  color: #fff;
}

.sales__form label input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.contacts__inner {
  display: grid;
  grid-template-columns: 374px 1fr;
  gap: 24px;
}

.contacts__socials {
  display: flex;
}

.contacts__socials a {
  margin-right: 15px;
  margin-bottom: 0;
}

.contacts__item h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.contacts__item ul li span {
  display: block;
  font-size: 16px;
  color: #888888;
  margin-bottom: 14px;
}

.contacts__item ul li p {
  color: #474747;
}

.contacts__item ul li {
  font-size: 22px;
  margin-bottom: 45px;
  display: flex;
  flex-direction: column;
  line-height: 105%;
  font-weight: 600;
}

.contacts__item ul li:last-child {
  margin-bottom: 0;
}

.contacts__item ul li a {
  margin-bottom: 15px;
}

.contacts__item ul li a:hover {
  color: #ff4b6e;
}

.contacts {
  margin-top: 60px;
}

.requisites {
  margin-top: 100px;
}

.requisites h5 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 700;
}
.requisites .contacts__item ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 24px;
}

.requisites .contacts__item ul li {
  flex-direction: row;
}

.requisites .contacts__item li {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 15px;
}

.requisites .contacts__item ul li span {
  margin-right: 10px;
  font-size: 18px;
  flex-shrink: 0;
  margin-bottom: 0;
  font-weight: 400;
}

@media (max-width: 767px) {
  .contacts-page .contacts__item ul li {
    align-items: flex-start;
    margin-bottom: 36px;
    text-align: left;
  }

  .requisites .contacts__item ul li {
    margin-bottom: 15px;
  }

  .requisites .contacts__item ul {
    display: flex;
    flex-direction: column;
  }
}
.footer {
  background-color: #303030;
  margin-top: 120px;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  padding: 54px 0 24px;
  color: #fff;
}

.footer__content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 49px;
}

.footer__content a {
  color: #fff;
  transition: 0.3s ease;
}

.footer__content a:hover {
  color: #ff4b6e;
  transition: 0.3s ease;
}

.basic-btn {
  padding: 14px 40px;
  background-color: #ff4b6e;
  color: #fff;
  font-weight: 500;
  border-radius: 100px;
  transition: 0.3s ease;
}

.basic-btn:hover {
  background: #ff9d00;
  transition: 0.3s ease;
}

.footer__phone {
  margin-bottom: 24px;
}
.footer__phone span {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  display: block;
}

.footer__phone a {
  font-size: 18px;
  color: #fff;
}

.footer__col h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
}

.footer__col ul li {
  font-size: 18px;
  margin-bottom: 14px;
}

.footer__order__info a {
  text-decoration: underline;
}

.footer__order__info {
  font-size: 18px;
  margin-bottom: 24px;
}

.footer__socials span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.footer__down {
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  font-size: 14px;
  font-weight: 400;
  align-items: center;
}

.footer__down a {
  color: rgba(255, 255, 255, 0.5);
  transition: 0.3s ease;
}

.footer__down a:hover {
  color: #ff4b6e;
  transition: 0.3s ease;
}

.footer__developed {
  display: flex;
  align-items: center;
  transition: 0.2s ease;
}

.footer__developed svg {
  margin-right: 10px;
  transition: 0.2s ease;
}

.footer__developed:hover {
  color: #ff4b6e;
  transition: 0.2s ease;
}

.footer__developed svg path {
  transition: 0.3s ease;
}

.footer__developed:hover svg path {
  transition: 0.3s ease;
  fill: #ff4b6e;
}
@media (max-width: 992px) {
  .info {
    grid-template-columns: 1fr;
  }

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

  .footer {
    padding: 40px 18px;
  }

  .footer__content {
    grid-template-columns: 1fr 1fr;
  }

  .footer__col h4 {
    margin-top: 0;
  }

  .footer__down {
    flex-wrap: wrap;
  }

  .contacts__inner {
    grid-template-columns: 1fr;
  }

  .sales__form {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .contacts__item:last-child ul li {
    flex-direction: column;
    gap: 3px;
  }
}

@media (max-width: 767px) {
  .categories__item img {
    height: 140px;
  }

  .categories__item__row h4 {
    font-size: 16px;
    text-align: center;
    width: 100%;
  }

  .categories__item__row button {
    display: none;
  }

  .sales h3 {
    font-size: 24px;
  }

  .contacts__item ul li {
    align-items: center;
    margin-bottom: 36px;
    text-align: center;
  }
}

@media (max-width: 500px) {
  .categories {
    /* grid-template-columns: 1fr; */
    gap: 15px 10px;
  }

  .footer__content {
    grid-template-columns: 1fr;
  }

  .footer__down {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-top: 24px;
  }
}

.contacts-page .section-title {
  text-align: left;
}

.contacts-page {
  padding-top: 50px;
}

.about {
  display: grid;
  grid-template-columns: 772px 1fr;
  gap: 24px;
  margin-top: 40px;
}

.about__gallery {
  grid-column-start: 1;
  grid-column-end: 3;
}

.about h1 {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 24px;
}

.about h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about p {
  font-size: 18px;
}


.accent-block {
  padding: 24px;
  background: #fff1f4;
  margin: 20px 0;
  border-radius: 24px;
}

.accent-block b {
  color: #ff4b6e;
}

.about__right {
  margin-top: 20px;
}

.about ul li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.about ul li:before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #ff4b6e;
  margin-right: 24px;
  display: block;
  border-radius: 50%;
  flex-shrink: 0;
}

.about__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px;
}

.about__gallery img {
  width: 100%;
}

@media (max-width: 1200px) {
  .about__right {
    display: none;
  }

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

  .about {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 992px) {
  .about__right {
    display: none;
  }

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

@media (max-width: 768px) {
  .about h1 {
    font-size: 48px;
  }

  .about h4 {
    font-size: 20px;
  }

  .about p {
    font-size: 16px;
  }

  .about ul li:before {
    margin-right: 12px;
  }
}

.banket-hero {
  display: grid;
  grid-template-columns: 1fr 355px;
  gap: 24px;
  padding: 10px;
  border: 1px solid rgba(48, 48, 48, 0.1);
  border-radius: 24px;
  margin-top: 20px;
}

.banket-hero img {
  height: 400px;
  object-fit: cover;
  width: 100%;
  border-radius: 18px;
}

@media (max-width: 767px) {
  .banket-hero img {
    height: 170px;
  }
}

.banket-hero h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 24px;
}

.banket-hero p {
  font-size: 18px;
  font-weight: 500;
}

.banket-hero__content {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px 0;
}

@media (max-width: 767px) {
  .banket-hero {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px 20px 25px;
  }

  .banket-hero__content {
    text-align: center;
  }

  .banket-hero__content .secondary-btn {
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
  }
}

.secondary-btn {
  padding: 14px 40px;
  background: #fff1f4;
  color: #ff4b6e;
  font-size: 16px;
  font-weight: 500;
  width: fit-content;
  border-radius: 100px;
  margin-top: auto;
  transition: 0.3s ease;
}

.secondary-btn:hover {
  transition: 0.3s ease;
  background: #ff4b6e;
  color: #fff;
}

.banket__gallery {
  margin-top: 128px;
  margin-bottom: 128px;
}

.banket__video-wrap {
  position: relative;
  max-width: 770px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
}

.banket__video-wrap img {
  width: 100%;
}

.banket__video-wrap button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.banket__video p {
  text-align: center;
  font-weight: 500;
  font-size: 18px;
}

.banket__video {
  margin-bottom: 128px;
}

.prods__item__btns {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 11px;
}

.prods__item__count {
  background: rgba(255, 241, 244, 1);
  width: 100%;
  max-width: 81px;
}

.prods__item__count input {
  border: none;
  width: 30px;
}

.prods__item:hover .prods__item__weight {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.prods__item:hover .prods__item__btns {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.prods__item:hover .prods__item__more {
  visibility: visible;
  opacity: 1;
  transition: 0.3s ease;
  background: #ff9d00;
  color: #fff;
}

.prods__item:hover {
  box-shadow: 0px 11px 24px rgba(69, 43, 42, 0.05);
  opacity: 1;
}

.prods__item__weight {
  margin-bottom: 15px;
  visibility: hidden;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.prods__item__weight button {
  background: rgba(255, 241, 244, 1);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 75, 110, 1);
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: -2%;
}

.prods__item__weight button.active {
  background-color: rgba(255, 75, 110, 1);
  color: #fff;
}

.prods__item__btns {
  margin-top: 23px;
  background: #fff;
}

.prods__item__btn {
  background-color: rgba(255, 75, 110, 1);
  color: #fff;
  border-radius: 100px;
  font-size: 16px;
  padding: 14px 30px;
  width: 100%;
}

.prods__item__count {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
}

.prods__item__count input {
  background: none;
  text-align: center;
}

/* .prods-swiper {
    padding-bottom: 100px;
  } */

.prods-swiper {
  position: relative;
  overflow: visible;
}

.prods {
  overflow: hidden;
  padding: 0 25px;
}

.prods-swiper .prods-prev,
.prods-swiper .prods-next {
  position: absolute;
}

.prods-swiper .prods-prev {
  left: -25px;
  top: 50%;
  transform: translate(0, -50%);
}

.prods-swiper .prods-next {
  right: -25px;
  top: 50%;
  transform: translate(0, -50%);
}

.prods__item__link {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.prods__item__more {
  background: rgba(255, 255, 255, 1);
  width: 180px;
  height: 40px;
  border-radius: 100px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  top: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  transition: 0.3s ease;
  opacity: 0;
  z-index: 2;
}

@media (max-width: 1070px) {
  .prods__item__more {
    display: none;
  }
}

@media (max-width: 768px) {
  .prods__item__weight {
    visibility: visible;
    opacity: 1;
  }

  .prods__item__btns {
    display: flex;
    opacity: 1;
  }
}

.banket__kitchen__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 25px;
}

.banket__kitchen__swiper {
  display: none;
}

@media (max-width: 767px) {
  .banket__kitchen__grid {
    display: none;
  }

  .banket__kitchen__swiper {
    display: block;
    padding-bottom: 50px;
  }
}

.banket__kitchen__item {
  padding: 10px 10px 36px;
  background: #ffffff;
  border: 1px solid rgba(48, 48, 48, 0.1);
  border-radius: 24px;
}

.banket__kitchen__item img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 25px;
}

.banket__kitchen__item h4 {
  font-size: 20px;
  margin-bottom: 8px;
  padding: 0 12px;
  font-weight: 700;
}

.banket__kitchen__item p {
  font-size: 14px;
  padding: 0 12px;
}

.banket__kitchen .secondary-btn {
  display: block;
  width: fit-content;
  margin: 30px auto 0;
}

.banket__about {
  margin-top: 64px;
  margin-bottom: 128px;
}

.banket__about__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 21px;
  margin-bottom: 48px;
  align-items: center;
}

.banket__about__item img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 12px;
}

@media (max-width: 767px) {
  .banket__about__item {
    display: flex;
    flex-direction: column;
  }

  .banket__about__item.reverse {
    flex-direction: column-reverse;
  }

  .banket__about__item img {
    height: 240px;
  }
}
.banners {
  margin-top: 10px;
  position: relative;
}
.banners__item {
  padding: 10px;
  border: 1px solid rgba(48, 48, 48, 0.1);
  border-radius: 24px;
  display: grid;
  grid-template-columns: 1fr 355px;
  gap: 24px;
}

@media (max-width: 767px) {
  .banners__item {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px 20px 25px;
  }
}

.banners__item__content {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px 0;
}

.banners__item__content h2 {
  font-size: 40px;
  font-family: "Inter", sans-serif;
  color: #303030;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.banners__item__content p {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.banners-next {
  position: absolute;
  top: 50%;
  right: -48px;
  transform: translate(0, -50%);
}

.banners-prev {
  position: absolute;
  top: 50%;
  left: -48px;
  transform: translate(0, -50%);
}

.banners-next svg path {
  transition: 0.2s ease;
}

.banners-next:hover svg path,
.banners-prev:hover svg path {
  stroke: #ff4b6e;
  transition: 0.2s ease;
}

.banners__item img {
  width: 100%;
  object-fit: cover;
  height: 100%;
  border-radius: 18px;
  transition: 0.3s ease;
}

.banners__item__pic {
  overflow: hidden;
  border-radius: 18px;
}

.banners__item:hover img {
  transition: 0.3s ease;
  transform: scale(1.05);
}

.banners .swiper-pagination {
  display: none;
}

@media (max-width: 767px) {
  .banners__item__content {
    padding-top: 0px;
    text-align: center;
    align-items: center;
  }
  .banners__item__content h2 {
    font-size: 32px;
    margin-bottom: 12px;
  }

  .banners__item__content p {
    font-size: 16px;
    margin-bottom: 28px;
  }

  .banners-next,
  .banners-prev {
    display: none;
  }

  .banners__item img {
    height: 170px;
  }

  .banners .swiper-pagination {
    display: block;
    text-align: center;
    padding: 0 20px;
  }

  .swiper-pagination .swiper-pagination-bullet {
    background-color: transparent;
    border: 1px solid #303030;
  }

  .swiper-pagination .swiper-pagination-bullet-active {
    border-color: #ff4b6e;
    background-color: #ff4b6e;
  }
}

.categories-wrapper {
  margin-top: 128px;
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 14px 0 12px;
}
.breadcrumbs li {
  display: flex;
  align-items: center;
}

.breadcrumbs li a {
  font-size: 14px;
  color: rgba(48, 48, 48, 0.3);
}
.breadcrumbs li:after {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  display: block;
  margin-left: 8px;
  background-color: rgba(48, 48, 48, 0.3);
}

.breadcrumbs li:last-child:after {
  display: none;
}

.prod-section {
  display: grid;
  grid-template-columns: 375px 475px 275px;
  gap: 23px;
}

@media (max-width: 1199px) {
  .prod-section {
    grid-template-columns: 375px 1fr;
  }
}

@media (max-width: 900px) {
  .prod-section {
    display: flex;
    flex-direction: column;
  }
}

.contacts__map img,
.contacts__map #map2 {
  width: 100%;
  height: 450px;
}

.prods-swiper .swiper-pagination {
  display: none;
}

@media (max-width: 767px) {
  .prods-swiper {
    padding-bottom: 50px;
  }
  .prods-swiper .swiper-pagination {
    display: block;
    text-align: center;
    bottom: 0px;
  }
}

.banket-info {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 28px;
}

@media (max-width: 1199px) {
  .banket-info {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .banket-info {
    grid-template-columns: 1fr;
  }
}

.banket-info__item {
  text-align: center;
  background-color: #fff1f4;
  border-radius: 24px;
  padding: 30px;
}

.banket-info__item p {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 120%;
}

.banket-info__item span {
  font-size: 18px;
  line-height: 120%;
  letter-spacing: -0.04em;
}

.banket .section-title {
  text-align: center;
}

.banket__gifts__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px;
}

@media (max-width: 1200px) {
  .banket__gifts__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .banket__gifts__grid {
    grid-template-columns: 1fr 1fr;
  }

  .banket__gifts .section-title {
    font-size: 24px;
  }
}

@media (max-width: 500px) {
  .banket__gifts__grid {
    grid-template-columns: 1fr;
  }
}

.banket__gifts__item img {
  width: 100%;
  border-radius: 15px;
}

.banket__gifts__item {
  padding: 10px;
  border: 1px solid rgba(48, 48, 48, 0.1);
  border-radius: 24px;
}

.banket__gifts__item p {
  font-size: 20px;
  font-weight: 700;
  padding: 0 10px;
  line-height: 120%;
  margin-top: 26px;
  height: 72px;
}

.banket__gifts__desc {
  text-align: center;
  font-size: 18px;
  margin: 27px 0 34px;
}

.banket__gifts .basic-btn {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  white-space: nowrap;
}

.banket__gifts {
  margin-bottom: 128px;
}

@media (max-width: 767px) {
  .banket__gifts__item p {
    font-size: 16px;
    text-align: center;
    margin-top: 16px;
    height: auto;
    padding-bottom: 10px;
  }
}

.banket__contact {
  text-align: center;
}

.banket__contact__heading {
  font-size: 24px;
  max-width: 573px;
  font-weight: 700;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

.banket__contact__map {
  display: block;
  width: 100%;
  object-fit: cover;
  height: 460px;
  margin-top: 28px;
}

.banket__contact a {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: fit-content;
  font-size: 18px;
}

.banket__contact p {
  color: #888888;
}

.product-info__title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

@media (max-width: 500px) {
  .product-info__title {
    font-size: 40px;
  }
}

.product-info__article {
  color: #888888;
  font-size: 14px;
}

.product-info__weight {
  margin: 36px 0;
}

.product-info__weight button {
  background: rgba(255, 241, 244, 1);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 75, 110, 1);
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: -2%;
}

.product-info__weight button.active {
  background-color: rgba(255, 75, 110, 1);
  color: #fff;
}

.product-info h5 {
  font-size: 24px;
  font-weight: 600;
}

@media (max-width: 500px) {
  .product-info h5 {
    font-size: 18px;
  }
}

.product-info__weight__items {
  display: flex;
  gap: 4px;
  margin-top: 16px;
}

.product-info__composition h5 {
  margin-bottom: 20px;
}

.product-info__composition__item {
  margin-bottom: 10px;
}

.product-info__composition__item__inner {
  display: grid;
  grid-template-columns: 278px 1fr;
  gap: 20px;
}

@media (max-width: 500px) {
  .product-info__composition__item__inner {
    grid-template-columns: 1fr;
  }
}

.accordion-item.active .accordion-title p {
  color: #333;
}

.accordion-item.active .accordion-title .icon-wrapper .icon:after {
  height: 0;
}

.accordion-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  border-radius: 24px;
  border: 1px solid rgba(48, 48, 48, 0.15);
}

.accordion-item .accordion-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  border-radius: 8px;
  background: #fff;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  font-weight: 600;
  font-size: 18px;
}

.accordion-item .accordion-title span {
  font-weight: 600;
  font-size: 18px;
  display: block;
  /* min-height: 54px; */
}

.accordion-item .accordion-title label {
  text-align: left;
}

.accordion-item .accordion-title .icon-wrapper {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  max-width: 40px;
  max-height: 40px;
  background: #fff;
  border-radius: 999px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
}

.accordion-item .accordion-title .icon-wrapper .icon {
  display: block;
  width: 19px;
  height: 2px;
  background: #fff;
  position: relative;
}

.accordion-item .accordion-title .icon-wrapper .icon:after {
  content: "";
  position: absolute;
  height: 19px;
  width: 2px;
  background: #fff;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.accordion-item .accordion-title p {
  color: #333;
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.accordion-item .collapse {
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  display: grid;
  padding: 0 20px 20px;
}

.accordion-item .collapse p {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  /* margin-top: 20px; */
  background: #fff;
  /* padding: 25px; */
  border-radius: 8px;
  margin-bottom: 10px;
}

.radio span {
  position: relative;
  padding-left: 36px;
}

.radio span:before {
  content: "";
  border-radius: 50%;
  position: absolute;
  left: 0;
  display: block;
  width: 20px;
  height: 20px;
  -webkit-box-flex: 0;
  -webkit-flex: 0;
  -ms-flex: 0;
  flex: 0;
  background-color: #fff1f4;
  border: 7px solid #fff1f4;
  background-repeat: no-repeat;
  background-position: center center;
  top: 5px;
}

/* .radio input:checked + span:before {
    border-color: #ff4b6e;
  } */

.radio input {
  z-index: -1;
  position: absolute;
  opacity: 0;
}

.product-info__composition__item__inner ul li,
.product-info__extras ul li {
  margin-bottom: 12px;
  font-size: 16px;
  display: flex;
  line-height: 120%;
  letter-spacing: -0.04em;
}

.product-info__composition__item__inner ul li:before,
.product-info__extras ul li:before {
  content: "";
  width: 5px;
  height: 5px;
  background: #ff4b6e;
  display: block;
  margin-right: 25px;
  flex-shrink: 0;
  margin-top: 8px;
  border-radius: 50%;
}

.product-info__composition__item__inner img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 15px;
}

.product-info__extras h5 {
  margin-bottom: 20px;
}

.product-info__extras {
  margin-top: 36px;
}

.product-actions__plate {
  padding: 30px;
  background: #f8f8f8;
  border-radius: 20px;
  text-align: center;
}

.product-actions__plate .product-price {
  margin-bottom: 10px;
  display: block;
}

.product-actions__plate .prods__item__count {
  background: #fff;
  color: #ff4b6e;
  width: 100%;
  max-width: unset;
  padding: 14px 21px;
  justify-content: space-between;
  margin-bottom: 16px;
}

.product-actions__plate .prods__item__count button,
.product-actions__plate .prods__item__count input {
  color: #ff4b6e;
}

.product-actions__plate .basic-btn {
  width: 100%;
  margin-bottom: 30px;
}

.product-price {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.product-actions__btn {
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
}

.product-actions__btn.favour.active span {
  background: #ff4b6e;
}

.product-actions__btn.favour.active span svg path {
  fill: white;
}

.product-actions__btn span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  margin-right: 16px;
  border: 1px solid #ff4b6e;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-actions__info {
  display: flex;
  line-height: 120%;
  margin-top: 30px;
}

.product-actions__info svg {
  flex-shrink: 0;
  margin-right: 16px;
}

.product-pics__big img {
  width: 100%;
  border-radius: 24px;
}

.product-pics__big {
  position: relative;
}

.product-pics__big .prods-next {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translate(0, -50%);
  z-index: 2;
}

.product-pics__big .prods-prev {
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translate(0, -50%);
  z-index: 2;
}

.product-pics__big .prods-prev:hover svg path,
.product-pics__big .prods-next:hover svg path {
  stroke: #ff4b6e;
}

.product-pic__mini {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 10px;
}

.product-pics__big img {
  width: 100%;
  height: 375px;
  object-fit: cover;
}

.product-pic__mini img {
  width: 100%;
  border-radius: 10px;
  height: 67px;
  object-fit: cover;
}

.addreses__item {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(48, 48, 48, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.addreses__item .secondary-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.addreses__item h5 {
  font-size: 20px;
  font-weight: 700;
  height: 72px;
}

.addreses__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}

.addreses__item ul li span {
  display: block;
  color: #888888;
  font-size: 16px;
}

.addreses__item ul li p,
.addreses__item ul li a {
  font-size: 18px;
}

.addreses__item ul li {
  margin-bottom: 14px;
}

.addreses__item ul li:last-child {
  margin-bottom: 0;
}

.addreses__item ul {
  margin: 18px 0;
}

.addreses__item .secondary-btn:hover svg path {
  transition: 0.2s ease;
  fill: #fff;
}

.addreses__item .secondary-btn svg path {
  transition: 0.2s ease;
}

@media (max-width: 1070px) {
  .addreses__items {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .addreses__items {
    grid-template-columns: 1fr;
  }

  .addreses__item h5 {
    height: auto;
  }
}

#map {
  height: 460px;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
}
.addreses__map {
  display: none;
}

.map-close {
  display: none;
}
@media (max-width: 767px) {
  #map {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
  }

  .map-close {
    display: block;
    position: absolute;
    top: 3px;
    right: 6px;
    z-index: 1;
  }

  #map.active {
    display: block;
  }

  .addreses__map {
    display: block;
    border: 1px solid #ff4b6e;
    color: #ff4b6e;
    width: 100%;
    padding: 14px 0;
    border-radius: 24px;
  }

  .addreses-page .section-title {
    text-align: left;
    font-size: 40px;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 28px;
  }
}

.product-actions,
.product-pics {
  position: sticky;
  top: 85px;
  align-self: flex-start;
}

@media (max-width: 992px) {
  .product-actions,
  .product-pics {
    position: static !important;
    align-self: unset !important;
  }
}

@media (max-width: 992px) {
  .product-pics {
    align-self: unset !important;
  }
}
.privacy-page p {
  margin-bottom: 10px;
}

.privacy-page h4 {
  font-size: 20px;
  margin: 15px 0;
}

.privacy-page ul li {
  display: list-item;
}

.privacy-page ul {
  list-style: inside;
  padding-left: 20px;
  margin-bottom: 10px;
}

.ymaps-2-1-79-balloon,
.ymaps-2-1-79-balloon__layout {
  border-radius: 24px;
}

.catalog-tags,
.filters_main {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 28px;
}

.catalog-tags a,
.catalog-tags button,
.filters_main a,
.filters_main button,
.filter_main .btn {
  font-size: 12px;
  font-weight: 500;
  background: #fff1f4 !important;
  color: #ff4b6e !important;
  padding: 10px 12px;
  border-radius: 100px;
  box-shadow: none !important;
}

.catalog-tags a:hover,
.catalog-tags button:hover,
.filters_main a:hover,
.filters_main button:hover,
.filter_main .btn:hover,
.catalog-tags a.active,
.catalog-tags button.active,
.filters_main a.active,
.filters_main button.active,
.filter_main .btn.active {
  background: #ff4b6e !important;
  color: #fff !important;
}

.catalog-page {
  display: grid;
  grid-template-columns: 275px 1fr;
}

.catalog-page h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 28px;
}

.catalog__items,
.product__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 25px;
}

.catalog__pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.catalog__pagination span,
.catalog__pagination a {
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
}

.catalog__pagination__outline {
  border: 1px solid rgba(48, 48, 48, 0.1);
  border-radius: 50%;
}

.catalog__pagination a.active {
  background: #ff4b6e;
  border-radius: 50%;
  color: #fff;
}

.catalog__article {
  margin-top: 80px;
}
.catalog__article h2 {
  font-size: 32px;
  margin: 25px 0;
}

.catalog__article h3 {
  font-size: 26px;
  margin: 20px 0;
  color: #303030;
}

.catalog__article p {
  margin-bottom: 15px;
  line-height: 150%;
}

.catalog__article ul {
  list-style: disc;
  margin-bottom: 15px;
  padding-left: 15px;
}

.catalog__article ul {
}

@media (max-width: 1090px) {
  .catalog-page {
    grid-template-columns: 1fr;
  }

  .catalog-filters {
    display: none;
  }
}

@media (max-width: 800px) {
  .catalog__items,
  .product__list {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
}

@media (max-width: 500px) {
  .catalog__items,
  .product__list {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }
}

.header .icon-box_item:hover {
  background: #ff4b6e;
  transition: 0.3s ease;
}

#basket_in.icon-box_item {
  margin-left: 0;
}

.icon-box_item#user:hover svg {
  fill: white;
}

.fancybox-is-open .fancybox-stage {
  background: none !important;
}

@media (max-width: 1024px) {
  .header-top-line {
    display: none !important;
  }
}

.search-page .product__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 25px;
}

.main_content {
  overflow: unset;
  background: transparent;
  padding-bottom: 0 !important;
}

#search-list .product-card {
  padding: 0;
}

.main_content .title_box h1 {
  font-size: 40px;
  border-bottom: unset;
}

.clear_basket {
  display: none;
}

.btn-buy {
  border-radius: 24px;
}

.delivery-page-inner {
  display: grid;
  grid-template-columns: 1fr 334px;
  gap: 64px;
}

@media (max-width: 1190px) {
  .delivery-page-inner {
    display: flex;
    flex-direction: column;
  }

  .delivery-page__info iframe {
    width: 100%;
  }
}
.delivery-page__info {
  margin-bottom: 60px;
}

.delivery-page__table {
  margin-top: 30px;
  margin-bottom: 20px;
}
.delivery-page__table__point {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(48, 48, 48, 0.1);
  padding-bottom: 12px;
  margin-bottom: 12px;
  gap: 10px;
}

.delivery-page__table__point:first-child {
  padding-top: 12px;
  border-top: 1px solid rgba(48, 48, 48, 0.1);
}

.delivery-page__table__point span {
  color: #ff4b6e;
  font-weight: 700;
  text-align: right;
}

.delivery-page h3 {
  font-size: 32px;
  line-height: 100%;
  letter-spacing: -0.02em;
  margin-top: 80px;
}

.delivery-page h2 {
  font-size: 36px;
  margin-bottom: 30px;
}

.delivery-page h4 {
  font-size: 24px;
  margin-bottom: 24px;
  margin-top: 48px;
}
.delivery-page ul {
  margin-top: 30px;
}
.delivery-page ul li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
  font-weight: 500;
}

.delivery-page {
  margin-bottom: 60px;
}

.delivery-page ul li:before {
  content: "";
  left: 0;
  top: 11px;
  width: 5px;
  height: 5px;
  background: #ff4b6e;
  position: absolute;
  display: block;
  border-radius: 50%;
}

.delivery-page ul li b {
  color: #ff4b6e;
}

.delivery-page .download {
  display: flex;
  color: #ff4b6e;
  gap: 24px;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(48, 48, 48, 0.1);
  margin-bottom: 30px;
}

.delivery-page__offer a {
  display: block;
  border-radius: 24px;
  color: #ff4b6e;
  display: flex;
  align-items: center;
  font-size: 24px;
  padding: 12px 24px;
  border: 1px solid rgba(48, 48, 48, 0.1);
  gap: 12px;
  font-weight: 700;
  width: fit-content;
  margin-bottom: 12px;
}

.delivery-page__offer h2 {
  font-weight: 700;
  line-height: 100%;
}

.delivery-page__offer {
  position: sticky;
  top: 90px;
  align-self: flex-start;
}

.search-page .middle_line {
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 30px;
  width: 100%;
}

.search-page .middle_line .sort-line .sort-col:first-child {
  display: none;
}

.search-page .middle_line .sort-line .sort-col:last-child {
  color: #ff4b6e;
}

.search-page .middle_line .sort-line .sbSelector:link {
  color: #ff4b6e;
}

.search-page .middle_line .sort-type .sbHolder,
.search-page .middle_line .sort-type .sbSelector {
  box-shadow: none;
  color: #ff4b6e;
}

@media (max-width: 1024px) {
  .search-page .product__list {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .search-page#search-list .product-card {
    width: 100%;
    max-width: 100% !important;
  }
}

.basket-item-block-image {
  border: none;
  height: 204px;
  width: 176px;
}

.basket-item-image {
  max-width: 100%;
  max-height: 100%;
  border-radius: 15px;
  object-fit: cover;
}

.basket-item-info-name span,
.basket-item-info-name a {
  font-size: 18px;
  font-weight: 700;
}

.basket-item-price-current-text {
  font-weight: 700;
}

.basket-items-list-wrapper,
.basket-items-list-wrapper-compact {
  border-left: unset;
  border-right: unset;
  border-top: 1px solid rgba(48, 48, 48, 0.1);
}

.basket-items-list-header {
  display: none;
}

.basket-item-block-amount {
  background-color: #fff1f4;
  border-radius: 100px;
  justify-content: space-between;
  margin-left: 30px;
}

.basket-item-block-amount .basket-item-amount-filed {
  background: unset;
  border: unset;
}

.clear_basket {
  display: none;
}

.basket-checkout-container {
  border: none;
  border-top: 1px solid rgba(48, 48, 48, 0.1);
}

.reviews-item {
  padding: 40px;
  border: 1px solid rgba(48, 48, 48, 0.1);
  border-radius: 24px;
}

.reviews-item h5 {
  font-size: 20px;
  font-weight: 700;
  flex: 0.7;
  margin: 0;
  line-height: 100%;
}
.reviews-item__head {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 18px;
  align-items: center;
}

@media (max-width: 500px) {
  .reviews-item__head {
    gap: 15px 30px;
    flex-wrap: wrap;
  }

  .bx_pagination_bottom .bx_pagination_page li.bx_active span {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.reviews-item__head p {
  font-size: 14px;
  font-weight: 500;
  color: rgba(48, 48, 48, 0.5);
  flex: 0.3;
  text-align: right;
}

.reviews-page__block {
  margin-bottom: 24px;
}

.reviews-item-answer {
  background-color: #fff1f4;
  border: none;
  position: relative;
  max-width: 672px;
  width: 100%;
  margin-left: auto;
  margin-top: 10px;
}

.reviews-item-answer:before {
  content: "";
  background-image: url("../img/answer_line.svg");
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: -65px;
}

.reviews-item-answer h5 {
  color: #ff4b6e;
}

.reviews-item__body p a {
  text-decoration: underline;
}

.reviews-page__form h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 100%;
  letter-spacing: -0.02em;
  margin-top: 0;
}

.reviews-page__form input,
.reviews-page__form textarea {
  border: 1px solid rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 100px;
  padding: 14px 24px;
  resize: none;
  width: 100%;
}

.reviews-page__form textarea {
  height: 226px;
  border-radius: 30px;
}

@media (max-height: 750px) {
  .reviews-page__form textarea {height: 180px;}
}

.reviews-page__form textarea:focus,
.reviews-page__form input[type="text"]:focus {
  border: 1px solid rgba(0, 0, 0, 0.3) !important;
}

textarea {
  font-family: "Inter", sans-serif;
}

.reviews-page__form p {
  font-size: 14px;
  font-weight: 500;
  color: rgba(48, 48, 48, 0.5);
}

.reviews-page__form p a {
  color: #ff4b6e;
}

.reviews-page__form .basic-btn {
  width: 100%;
  margin-top: 20px;
  font-size: 16px;
}

.reviews-page__form {
  position: sticky;
  top: 90px;
  align-self: flex-start;
}

.mCSB_container {
  grid-template-columns: 1fr !important;
}

.minicart-custom .cart-list-item-name-box .item_name {
  font-size: 14px;
  font-weight: 700;
}

.minicart-custom .cart-list-item-wrapper-img {
  width: 56px;
  height: 64px;
}

.minicart-custom .cart-list-item-wrapper-img img {
  border-radius: 12px;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.minicart-custom .cart-list-item {
  padding-top: 20px;
  margin-left: 10px;
  margin-right: 10px;
  border: unset;
  border-top: 1px solid rgba(48, 48, 48, 0.1);
}

.minicart-custom .btn-goods-link.btn {
  background-color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  padding-left: 24px;
  padding-top: 20px;
  padding-bottom: 24px;
  color: #ff4b6e;
}
.minicart-options {
  margin-bottom: 10px;
}
.minicart-options li {
  font-size: 14px;
}

.minicart-options li span {
  color: rgba(48, 48, 48, 0.5);
}

.minicart-custom .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #ff4b6e;
}

.minicart-custom .close-btn:before,
.minicart-custom .close-btn:after {
  display: none;
}

.minicart-custom .close-btn {
  background-image: url("../images/icons/rm_icon.svg");
  background-size: cover;
  top: 13px;
}

.minicart-custom .minicart-header {
  font-size: 20px;
  font-weight: 700;
  padding: 13px;
}

.modal-content {
  border-radius: 15px !important;
}

.modal-content .modal-body {
  padding-left: 0;
  padding-right: 0;
}

.modal-content .modal-title .title {
  font-size: 36px;
  text-align: center;
  line-height: 100%;
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.modal-content .modal-title .sub-title {
  text-align: center;
  font-size: 18px;
  line-height: 105%;
  margin-bottom: 24px;
  letter-spacing: -0.04em;
}

@media (max-width: 500px) {
  .modal-content .title {
    font-size: 28px;
  }

  .modal-content .sub-title {
    font-size: 16px;
  }

  .modal-content {
    padding: 10px;
  }
}

.radio-btn span {
  position: relative;
  padding-left: 30px;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  font-family: "Inter", sans-serif;
}

.radio-btn span:before {
  content: "";
  border-radius: 50%;
  position: absolute;
  left: 0;
  display: block;
  width: 20px;
  height: 20px;
  -webkit-box-flex: 0;
  -webkit-flex: 0;
  -ms-flex: 0;
  flex: 0;
  background-color: white;
  border: 1px solid #ff4b6e;
  background-repeat: no-repeat;
  background-position: center center;
}
/* 
.radio-btn input:checked + span:before {
  background-image: url(../images/icons/dot_icon.svg);
  border: 1px solid #ff4b6e;
} */
.radio-btn input {
  z-index: -1;
  position: absolute;
  opacity: 0;
}

.radios-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 12px;
  margin-top: 12px;
}

.message-form__widget select {
  border-radius: 100px;
  border: 1px solid rgba(48, 48, 48, 0.1);
  width: 100%;
  padding: 12px 24px;
  -webkit-appearance: none;
  appearance: none;
  font-size: 16px;
  color: rgba(48, 48, 48, 0.5);
}

div.message-form__widget input,
div.message-form__widget textarea {
  font-size: 16px;
  border: 1px solid rgba(48, 48, 48, 0.1);
  padding: 12px 24px;
}

div.message-form__widget input {
  height: 50px;
}

div.message-form__widget input.error {
  border-color: #e04747;
}

div.message-form__widget textarea {
  border-radius: 20px;
}

div.message-form__widget input:focus,
div.message-form__widget textarea:focus {
  border: 1px solid rgba(48, 48, 48, 0.1) !important;
}

div.message-form__widget input::placeholder {
  color: rgba(48, 48, 48, 0.5);
}
div.message-form__widget {
  margin-bottom: 12px;
}

.message-form__widget select::placeholder {
  color: rgba(48, 48, 48, 0.5);
}

.delivery-hidden-info {
  letter-spacing: -0.04em;
  line-height: 120%;
  margin: 0 0 24px;
  display: none;
}

.delivery-hidden-info.active {
  display: block;
}

.air-datepicker-global-container {
  z-index: 2000;
}

.root-item-menu .mCSB_container {
  grid-template-columns: 1fr 1fr 1fr !important;
}

.popup-window {
  border-radius: 20px;
}

.popup-window .popup-window-content img {
  display: none;
}
.popup-window .popup-window-content {
  padding: 0 !important;
}
.popup-window .popup-window-content p {
  display: none;
}

.popup-window-titlebar-text {
  font-size: 36px;
  color: rgba(48, 48, 48, 1);
}

@media (max-width: 500px) {
  .header-bottom-row .hamburger {
    order: 6;
    left: 0;
  }

  .header .hb-content .logo {
    left: 0 !important;
    width: 108px !important;
  }

  .icon-box_item .basket-icon:before,
  .product_item__ico.basket_icon a:before {
    top: 4px;
  }

  .header .top-icon-box #user {
    display: flex !important;
    margin-right: 10px !important;
  }

  .header .icon-box_item a svg {
    display: block !important;
  }
}

@media screen and (max-width: 480px) {
  body.noscroll .top-nav-wrapper {
    transform: unset;
    left: 0;
    right: 0;
    top: 60px;
    width: 100%;
  }

  body.noscroll.menu-in {
    transform: unset;
  }

  .header .top-nav-wrapper .icon-box_item {
    display: none !important;
  }

	body.filter-in .top-nav-wrapper {
		display: none;
	}

    body.filter-in {
		transform: unset;
	}

	#catalog__filter {
      transform: unset;
      display: none;
   }

	body.filter-in #catalog__filter { display: block; }

	.popup-window.--open {
      max-height: 250px;
      overflow-y: scroll;
    }
}

@media (max-width: 900px) {
  body.noscroll.menu-in .header {
    background-color: #fff;
    box-shadow: none;
  }
}

.top_catalog_wrapper form {
  display: none;
}

@media (max-width: 500px) {
  .top_catalog_wrapper form,
  .top_catalog_wrapper form input {
    width: 100%;
    font-size: 14px;
  }

  .top_catalog_wrapper form {
    margin: 0 10px 20px;
    position: relative;
    display: block;
  }

  .top_catalog_wrapper form input {
    padding: 12px 30px 12px 18px;
    border: 1px solid rgba(217, 218, 219, 1);
  }

  .top_catalog_wrapper form .search-title-button {
    position: absolute;
    top: 0;
    bottom: 1px;
    margin: auto;
    right: 0;
    width: 45px;
    height: 100%;
    text-align: center;
    border: none;
    cursor: pointer;
    /* background-size: contain; */
    /* background: #fff url(images/icons/search.png) center no-repeat !important; */
    font-size: 0;
    box-shadow: none;
    opacity: 0.5;
    transition: 0.2s ease-in-out;
    background: none;
  }

  .top_catalog_wrapper form .search-title-button:before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: 0.2s ease-in-out;
    background-image: url(../images/icons/search_icon.svg);
  }
}


.form-policy {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  color: rgba(48, 48, 48, 0.5);
}

.form-policy a {
  color: #ff4b6e;
}


@media (max-width: 992px) {
  .catalog__content#catalog__content {
    padding: 0 !important;
  }

  .main_content {
    padding-bottom: 0 !important;
  }
}

.accordion-item.active {
  border-color: #ff4b6e;
  transition: .3s ease;
}

.accordion-item.active .accordion-title span {
  color: #ff4b6e;
  transition: .3s ease;
}

.accordion-item .accordion-title .radio:hover span{
  color: #ff4b6e;
  transition: .3s ease;
}

.accordion-item.active .accordion-title span.symbol:hover  {
  color: #ff4b6e;
  transition: .3s ease;
}

.accordion-item .accordion-title .radion:hover span:before {
  background-color: rgba(246, 196, 207, 1);
  border: 7px solid rgba(246, 196, 207, 1);
  transition: .3s ease;
}

.product-actions__btn.favour svg {
  margin-top: 2px;
}

.thankyou-modal .modal-content .modal-title .title,
.thankyou-modal .modal-content .modal-title .sub-title {
  text-align: left;
}

.delivery-page__info p a {
  color: #ff4b6e;
  transition: .3s ease;
}

.radio-btn input:checked + span:before {
  background-image: url(../images/icons/dot_icon.svg);
  border: 1px solid #ff4b6e;
}

.header-phone {align-items: flex-end;}

.basket-item-amount-btn-plus, .basket-item-amount-btn-minus {
  border: none;
  background: none;
}

@media (max-width: 500px) {
  .basket-item-block-amount {
    margin-left: 0;
  }

  .modal-content .modal-title .title {
    font-size: 24px;
  }
}


.bonus-page .section-title {
  margin-bottom: 24px;
}
.bonus-page__content {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 24px;
}

.bonus-page__card {
  background-color: rgba(255, 241, 244, 1);
  border-radius: 24px;
  padding: 50px 50px 310px;
  position: relative;
}

.bonus-page__card img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  max-width: 246px;
  width: 100%;
}

.bonus-page__card h3 {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 13px;
}

.bonus-page__card p {
  font-size: 18px;
  line-height: 105%;
}
.bonus-page__subtitle {
  font-size: 18px;
}

@media (max-width: 1024px) {
  .bonus-page__content {
    grid-template-columns: 1fr 1fr;
  }

  .bonus-page__subtitle {
    display: none;
  }

  .bonus-page .section-title {
    text-align: left;
  }
}

@media (max-width: 500px) {
  .bonus-page__content {
    display: flex;
    flex-direction: column;
  }

  .bonus-page__card {
    padding: 44px 40px 310px;
  }

  .bonus-page__card h3 {
    font-size: 28px;
  }
}
.filter_main .btn {
  display: block;
}

.product-action-info {
  font-size: 13px;
  text-align: left;
  letter-spacing: -0.03em;
  font-weight: 400;
  margin: 1em 0;
}

.minicart-info {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 100%;
  font-size: 16px;
  letter-spacing: -0.04em;
  margin: 5px 0 0;
}


@media (max-width: 500px) {
	.minicart-info {
		font-size: 14px;
	}

	#catalog__filter {
		z-index: 999;
	}
}

.minicart-info svg {
	flex-shrink: 0;
    width: 20px;
    height: 20px;
}


.v10-seotext {
    padding: 10px;
    border: 1px solid rgba(48, 48, 48, 0.1);
    border-radius: 24px;
    position: relative;
    transition: 0.2s ease;
    overflow: hidden;
}

.v10-seotext h1, .v10-seotext h2, .v10-seotext h3 {
     padding: 15px 0px;
     line-height: 1.25;
}


.header-bottom-line form {
	display: none;
}
@media (max-width: 1024px) {
	.header-bottom-line form {
		display: block;
		margin-top: 5px;
	}
	.header {height: 130px !important; }

	.header-bottom-line form input {
		width: 100%;
    	padding: 5px 10px;
		border: 1px solid rgba(48, 48, 48, 0.1);
	}

	.header .top-nav-wrapper .top-nav-wrapper-overflow .icon-box_item {display: none}
	.header .top-nav-wrapper .icon-box_item {display: none}

	.info {
		margin-top: 30px;
	}
}

@media (max-width: 1024px) {
    .icon-box-link.user-link svg {
        display: block !important;
    }

    body.noscroll.menu-in {
        transform: unset;
    }

	    body.noscroll .top-nav-wrapper {
        transform: unset;
        left: 0;
        right: 0;
        top: 128px;
        width: 100%;
    }
}

}
@media (max-width: 500px) {
	.header-bottom-line form {
		display: block;
	}
	.header {height: 100px !important; }

	.header-bottom-line form input {
		width: 100%;
    	padding: 3px 10px;
		border: 1px solid #333;
	}

	.top-catalog-menu {padding-top: 60px}
	 body.menu-in .hamburger {top: -70px}
}