@font-face {
  font-display: swap;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/montserrat-v31-latin_latin-ext-regular.woff2")
      format("woff2"),
    url("../fonts/montserrat-v31-latin_latin-ext-regular.woff") format("woff");
}

@font-face {
  font-display: swap;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/montserrat-v31-latin_latin-ext-500.woff2") format("woff2"),
    url("../fonts/montserrat-v31-latin_latin-ext-500.woff") format("woff");
}

@font-face {
  font-display: swap;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/montserrat-v31-latin_latin-ext-700.woff2") format("woff2"),
    url("../fonts/montserrat-v31-latin_latin-ext-700.woff") format("woff");
}

@font-face {
  font-display: swap;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/montserrat-v31-latin_latin-ext-800.woff2") format("woff2"),
    url("../fonts/montserrat-v31-latin_latin-ext-800.woff") format("woff");
}

@font-face {
  font-display: swap;
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/montserrat-v31-latin-italic.woff2") format("woff2"),
    url("../fonts/montserrat-v31-latin-italic.woff") format("woff");
}

@font-face {
  font-display: swap;
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 500;
  src: url("../fonts/montserrat-v31-latin-500italic.woff2") format("woff2"),
    url("../fonts/montserrat-v31-latin-500italic.woff") format("woff");
}

@font-face {
  font-display: swap;
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 700;
  src: url("../fonts/montserrat-v31-latin-700italic.woff2") format("woff2"),
    url("../fonts/montserrat-v31-latin-700italic.woff") format("woff");
}

@font-face {
  font-display: swap;
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 800;
  src: url("../fonts/montserrat-v31-latin-800italic.woff2") format("woff2"),
    url("../fonts/montserrat-v31-latin-800italic.woff") format("woff");
}

@font-face {
  font-display: swap;
  font-family: "Urbanist";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/urbanist-v18-latin-300.woff2") format("woff2"),
    url("../fonts/urbanist-v18-latin-300.woff") format("woff");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #14223d;
  background-color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  display: inline-block;
}

address {
  font-style: normal;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.container {
  width: 100%;
  max-width: 1248px;
  margin: 0 auto;
  padding: 0 24px;
}

/* announcement-bar */
.announcement-bar {
  display: none;
  padding: 13px 0;
  background-color: #dd8592;
}

.announcement-bar__text {
  text-align: center;
  color: #fff;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* header */
.header {
  padding: 15px 0;
  position: fixed;
  width: 100%;
  background: #fff;
  left: 0;
  /* top: 48px; */
  top: 0;
  z-index: 33;
  transition: top 0.3s ease;
}
.header.scroll {
  top: 0;
  transition: top 0.3s ease;
}
.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.header_menu {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 1100px) {
  .header_menu {
    display: none;
  }
}

.header_burger {
  display: none;
  background: none;
  border: none;
  box-shadow: none;
  outline: none;
  padding: 0;
}

@media screen and (max-width: 1100px) {
  .header_burger {
    display: block;
  }
}

.header_menu-link {
  padding: 0 30px;
  color: #14223d;
  text-align: center;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: all 0.4s;
  text-decoration: none;
}

.header_menu-link:hover {
  color: #dd8592;
  text-decoration: underline;
}

.header_menu-logo {
  position: static;
  top: 50%;
  left: 50%;
  /* transform: translate(-50%, -50%); */
}

.header_right {
  display: flex;
  align-items: center;
  gap: 34px;
}

@media screen and (max-width: 768px) {
  .header_right {
    gap: 10px;
  }
  .header-wrapper {
    justify-content: flex-start;
    gap: 30px;
  }
  .header_menu-logo {
    margin-left: auto;
  }
}

.native-select {
  position: absolute !important;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.header_mobile-select {
  display: none;
  background: none;
  border: none;
  box-shadow: none;
  outline: none;
  padding: 0;
}

@media screen and (max-width: 768px) {
  .header_mobile-select {
    display: flex;
    align-items: center;
  }
}

.inline-select {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--black, #14223d);
  font-family: Urbanist;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 21.7px;
  letter-spacing: 0.63px;
  cursor: pointer;
  user-select: none;
}

.inline-select__chev {
  transition: transform 0.4s;
  display: inline-flex;
}

.inline-select[aria-expanded="true"] .inline-select__chev {
  transform: rotate(180deg);
}

.inline-select__value {
  white-space: nowrap;
}

.inline-select__list {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 50;
  min-width: 200px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.12);
  padding: 4px;
  max-height: 240px;
  overflow: auto;
  display: none;
}

@media (max-width: 768px) {
  .inline-select .inline-select__button {
    display: none !important;
  }

  .inline-select--mobile-open .inline-select__list {
    position: fixed !important;
    z-index: 2000 !important;
    display: block;
  }
}

.inline-select[aria-expanded="true"] .inline-select__list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.inline-select__option {
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
}

.inline-select__option:hover,
.inline-select__option[data-active="true"] {
  background: #f3f4f6;
}

.inline-select__option[aria-selected="true"] {
  font-weight: 300;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* mobile menu */
.mnav {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
}

.mnav__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 34, 61, 0.45);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mnav__panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(86vw, 360px);
  background: #fff;
  box-shadow: -10px 0 30px rgba(17, 24, 39, 0.12);
  transform: translateX(100%);
  transition: transform 0.4s ease;
  padding: 18px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mnav.is-open {
  pointer-events: auto;
}

.mnav.is-open .mnav__backdrop {
  opacity: 1;
}

.mnav.is-open .mnav__panel {
  transform: translateX(0);
}

.mnav__close {
  all: unset;
  cursor: pointer;
  align-self: flex-end;
  line-height: 0;
  padding: 6px;
}

.mnav__list {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mnav__list li {
  border-bottom: 1px solid #eef1f4;
}

.mnav__list a {
  display: block;
  padding: 14px 4px;
  text-decoration: none;
  color: #14223d;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.mnav__list a:active {
  opacity: 0.7;
}

/* home-hero */
.home-hero {
  padding: 110px 0 120px;
  background: #fff4f5;
}

@media screen and (max-width: 768px) {
  .home-hero {
    padding: 30px 0 30px;
    padding-top: 80px;
    overflow: hidden;
  }
}

.home-hero-wrapper {
  display: flex;
  align-items: center;
  gap: 45px;
}

@media screen and (max-width: 1100px) {
  .home-hero-wrapper {
    flex-direction: column;
    gap: 20px;
  }
}

.home-hero__content {
  display: flex;
  flex-direction: column;
}
.home-hero__content .home-gift__trust {
  background: transparent;
  border: 1px solid #14223d;
  width: max-content;
}
.home-hero__content .home-gift__trust p {
  font-weight: 400;
  font-size: 16px;
  color: #14223d;
}
.home-hero__content-subtitle {
  color: var(--black, #14223d);
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 10px;
}

@media screen and (max-width: 1100px) {
  .home-hero__content-subtitle {
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .home-hero__content-subtitle {
    font-size: 20px;
  }
  .home-hero__content .home-gift__trust {
    width: 100%;
    padding-right: 0;
  }
  .home-hero__content .home-gift__trust p {
    font-size: 13px;
  }
}

.home-hero__content-title {
  color: var(--black, #14223d);
  font-family: Montserrat;
  font-size: 52px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  margin-bottom: 10px;
}

@media screen and (max-width: 1100px) {
  .home-hero__content-title {
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .home-hero__content-title {
    font-size: 34px;
  }
}

.home-hero__content-title span {
  display: block;
  color: var(--green, #b85462);
  font-family: Montserrat;
  font-size: 52px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

@media screen and (max-width: 768px) {
  .home-hero__content-title span {
    font-size: 34px;
  }
}

.home-hero__content-text {
  color: var(--grey, #475a6b);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 30px;
}

@media screen and (max-width: 1100px) {
  .home-hero__content-text {
    text-align: center;
    margin-bottom: 0;
  }
}

.home-hero__content-link {
  width: max-content;
  display: inline-flex;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 100px;
  background: #0e9aa0;
  color: var(--white, #fff);
  text-align: center;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration: none;
  border: 2px solid #0e9aa0;
  transition: all 0.4s;
}

@media screen and (max-width: 1100px) {
  .home-hero__content-link {
    display: none;
  }
}

.home-hero__content-link:hover {
  box-shadow: inset 4px 4px 10px 0 rgba(0, 0, 0, 0.25);
  background: #0e9aa0;
  transition: all ease 0.3s;
}

.home-hero__content-link-mobile {
  display: none;
}

@media screen and (max-width: 1100px) {
  .home-hero__content-link-mobile {
    display: block;
    padding: 15px 100px;
    border-radius: 100px;
    background: #dd8592;
    color: var(--white, #fff);
    text-align: center;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration: none;
    border: 2px solid #dd8592;
    transition: all 0.4s;
    margin-top: 35px;
  }

  .home-hero__content-link-mobile:hover {
    background-color: transparent;
    color: #dd8592;
  }
}

.home-hero__video {
  position: relative;
  max-width: 600px;
  width: 100%;
}

.home-hero__video::after {
  content: "";
  position: absolute;
  bottom: -31px;
  right: -29px;
  background-image: url("../image/home-hero-after.svg");
  background-size: cover;
  width: 170px;
  height: 170px;
}

@media screen and (max-width: 768px) {
  .home-hero__video::after {
    bottom: -25px;
    right: -15px;
    width: 85px;
    height: 85px;
  }
  .home-hero__content-text {
    font-size: 14px;
  }
  .home-hero__content-link {
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 0;
    width: 100%;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
  }
  .home-hero__content-link-mobile {
    display: none;
  }
}

.home-hero__video::before {
  content: "";
  position: absolute;
  bottom: 80px;
  right: -51px;
  background-image: url("../image/home-hero-before.svg");
  background-size: cover;
  width: 80px;
  height: 80px;
  z-index: 1;
}

@media screen and (max-width: 1350px) {
  .home-hero__video::before {
    right: -24px;
  }
}

@media screen and (max-width: 768px) {
  .home-hero__video::before {
    bottom: 41px;
    right: -20px;
    width: 39px;
    height: 39px;
  }
}

.home-hero__video-media {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16/9;
  position: relative;
  z-index: 2;
  border-radius: 20px;
}

.home-hero__video-play {
  position: absolute;
  right: 16px;
  bottom: 16px;
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
}

.home-hero__video-play:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* home-advantages */
.home-advantages {
  background-color: #b8dce1;
}
.home-advantages .container {
  max-width: 1440px;
  padding: 0 74px;
}
@media screen and (max-width: 1000px) {
  .home-advantages .container {
    padding: 0;
  }
}

.home-advantages-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 0;
}

@media screen and (max-width: 1000px) {
  .home-advantages-wrapper {
    gap: 80px;
    overflow: hidden;
    padding: 16px 24px;
  }

  .home-advantages-wrapper.is-marquee {
    position: relative;
  }

  .home-advantages-wrapper.is-marquee .marquee-track {
    display: flex;
    align-items: center;
    gap: 80px;
    will-change: transform;
    animation-name: advantages-marquee;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
  }

  @keyframes advantages-marquee {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-50%);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .home-advantages-wrapper.is-marquee .marquee-track {
      animation: none;
      transform: none;
    }
  }
}

.home-advantages__item {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media screen and (max-width: 1000px) {
  .home-advantages__item {
    width: 100%;
    white-space: nowrap;
    flex-direction: column;
  }
}

.home-advantages__item h4 {
  color: var(--black, #14223d);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.home-advantages__item h4 br {
  display: none;
}
/* home gift */
.home-gift {
  padding: 75px 0 95px;
}
@media (max-width: 992px) {
  .home-advantages__item h4 br {
    display: block;
  }
  .home-advantages__item h4 {
    text-align: center;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .home-gift {
    padding: 30px 0;
  }
  .home-advantages-wrapper {
    flex-wrap: wrap;
    gap: 15px;
  }
}

.home-gift-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-gift__title {
  color: var(--black, #14223d);
  text-align: center;
  font-family: Montserrat;
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .home-gift__title {
    font-size: 28px;
  }
}

.home-gift__text {
  color: var(--grey, #475a6b);
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  max-width: 620px;
  margin-bottom: 20px;
}

.home-gift__trust {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px 8px 8px;
  border-radius: 10000px;
  background: var(--green, #0e9aa0);
  margin-bottom: 30px;
}
.home-gift__trust img {
  width: 85px;
  height: auto;
}
.home-gift__trust p {
  color: var(--white, #fff);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.home-gift__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-bottom: 30px;
}
.home-gift-list {
  width: 100%;
}
@media screen and (max-width: 1100px) {
  .home-gift__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    align-items: center;
  }
}

.home-gift__list-item {
  padding: 55px 20px 60px;
  border-radius: 12px;
  border: 1px solid #b8bdc5;
  height: auto;
}
.home-gift-wrapper .swiper-button-prev {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px 0 rgba(71, 90, 107, 0.25);
  border-radius: 50%;
  left: -65px !important;
  top: 56%;
}
.home-gift-wrapper .swiper-button-prev svg {
  width: 11px;
  height: auto;
}
.home-gift-wrapper .swiper-button-next {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px 0 rgba(71, 90, 107, 0.25);
  border-radius: 50%;
  right: -65px !important;
  top: 56%;
}
.home-gift-wrapper .swiper-button-next svg {
  width: 11px;
  height: auto;
}
@media screen and (max-width: 1100px) {
  .home-gift__list-item {
    max-width: 370px;
  }
}

@media screen and (max-width: 768px) {
  .home-gift__list-item {
    padding: 55px 20px 20px;
  }
  .home-gift__text {
    font-size: 14px;
    line-height: 150%;
  }
}
@media screen and (max-width: 768px) {
  .home-gift-wrapper .swiper-button-prev {
    display: none;
  }
  .home-gift-wrapper .swiper-button-next {
    display: none;
  }
}

.home-gift__list-item-media {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 30px;
  position: relative;
  margin-bottom: 14px;
}

.home-gift__list-item-media img {
  position: absolute;
  top: -20px;
  left: 10px;
  z-index: 1;
  width: 128px;
  border-radius: 12px;
}

.home-gift__list-item-media-arrow {
  margin-top: 70px;
}

.home-gift__list-item-media-svg-video {
  position: absolute;
  bottom: 17px;
  right: 17px;
}

.home-gift__list-item-media video {
  max-width: 213px;
  height: 238px;
  object-fit: cover;
  border-radius: 12px;
}

.home-gift__list-item-content h3 {
  color: var(--black, #14223d);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 5px;
}

.home-gift__list-item-content-stars {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 12px;
}

.home-gift__list-item-content p {
  color: var(--black, #14223d);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.home-gift__link {
  border-radius: 100px;
  border: 2px solid var(--pink, #dd8592);
  padding: 15px 100px;
  color: var(--pink, #dd8592);
  text-align: center;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  transition: all 0.4s;
  text-decoration: none;
}

@media screen and (max-width: 400px) {
  .home-gift__link {
    padding: 15px 30px;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .home-gift__list-item-content {
    text-align: center;
  }
  .home-gift__list-item-content h3 {
    justify-content: center;
  }
  .home-gift__list-item-content-stars {
    justify-content: center;
  }
}

.home-gift__link:hover {
  background-color: #dd8592;
  color: #fff;
}

/* home-story */
.home-story {
  padding: 64px 0 130px;
  position: relative;
  background: #fff4f5;
}

@media screen and (max-width: 768px) {
  .home-story {
    padding: 64px 0 50px;
  }
}

.home-story::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 438px;
  background-image: url("../image/story-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  /* content: ""; */
}

.home-story-wrapper {
  display: flex;
  flex-direction: column;
  gap: 55px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 1100px) {
  .home-story-wrapper {
    gap: 80px;
  }
}

.home-story__item-image {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
}

@media screen and (max-width: 1100px) {
  .home-story__item-image {
    flex-direction: column-reverse;
    gap: 20px;
  }
}

.home-story__item-image-content {
  display: flex;
  flex-direction: column;
}

.home-story__item-image-content h2 {
  color: var(--black, #14223d);
  font-family: Montserrat;
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 10px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .home-story__item-image-content h2 {
    font-size: 28px;
    text-align: center;
  }
}

.home-story__item-image-content p {
  color: var(--grey, #475a6b);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
}

.home-story__item-video {
  display: flex;
  align-items: center;
  gap: 92px;
}

@media screen and (max-width: 1100px) {
  .home-story__item-video {
    flex-direction: column;
    gap: 90px;
  }
}

.home-story__item-video-media {
  max-width: 540px;
  border-radius: 20px;
}

@media screen and (max-width: 600px) {
  .home-story__item-video-media {
    max-width: 100%;
  }
  .home-story__item-image-content p {
    font-size: 14px;
    line-height: 150%;
  }
}

.home-story__item-video-wrapper {
  position: relative;
}

.home-story__item-video-wrapper::after {
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 60px;
  background-image: url("../image/story-poster-after.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
}

.home-story__item-video-wrapper::before {
  position: absolute;
  bottom: -70px;
  left: 0;
  width: 100%;
  height: 70px;
  background-image: url("../image/story-poster-before.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
}

.home-story__item-video-content h2 {
  color: var(--black, #14223d);
  font-family: Montserrat;
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 10px;
  max-width: 480px;
  text-align: center;
}

@media screen and (max-width: 1100px) {
  .home-story__item-video-content h2 {
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .home-story__item-video-content h2 {
    font-size: 28px;
    text-align: center;
  }
}

.home-story__item-video-content p {
  color: var(--grey, #475a6b);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
}

/* home-how */
.home-how {
  position: relative;
  padding: 75px 0;
  /* background: rgba(14, 154, 160, 0.1); */
}
.home-how::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("../image/how-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  left: 0;
  bottom: 0;
  background-position: bottom;
  /* z-index: -1; */
  display: none;
}
@media screen and (max-width: 768px) {
  .home-how {
    padding: 45px 0;
  }
  .home-how::after {
    background-position: bottom right;
  }
  .home-story__item-video-content p {
    font-size: 14px;
    line-height: 150%;
  }
}

.home-how-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-how__title {
  position: relative;
  z-index: 1;
  color: var(--black, #14223d);
  text-align: center;
  font-family: Montserrat;
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .home-how__title {
    font-size: 28px;
  }
}

.home-how__text {
  position: relative;
  z-index: 1;
  color: var(--grey, #475a6b);
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 30px;
}
.home-how__list-wrap {
  width: 100%;
}
.home-how__list {
  margin-top: 30px;
  padding-top: 20px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 30px;
  width: 100%;
  /* display: none; */
}
.home-how__list.active {
  display: flex;
}
.home-how__list-item {
  padding-bottom: 30px;
  position: relative;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  max-width: 320px;
  background: #fff;
  border: 1px solid #b8bdc5;
  border-radius: 30px;
}
.home-how__list-second .home-how__list-item {
  max-width: 272px;
}
.home-how__list-second .home-how__list-item:nth-child(1)::after {
  background: url(../image/how-step-1-second.png) no-repeat;
  top: -22px;
  right: -91px;
  display: block;
  width: 86px;
  height: 53px;
  display: none;
}
.home-how__list-second .home-how__list-item:nth-child(3)::after {
  content: "";
  position: absolute;
  background: url(../image/how-step-1-second.png) no-repeat;
  top: -22px;
  right: -91px;
  display: block;
  width: 86px;
  height: 53px;
}
.home-how__list-item:nth-child(1)::after {
  content: "";
  position: absolute;
  top: 0;
  right: -99px;
  display: block;
  width: 86px;
  height: 39px;
  background: url(../image/how-step-1.png) no-repeat;
  display: none;
}
.home-how__list-item:nth-child(2)::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -99px;
  display: block;
  width: 86px;
  height: 39px;
  /* background:url(../image/how-step-2.png) no-repeat; */
}
.home-how__list-item:nth-child(even) {
  margin-top: 35px;
}
.home-how__list-item-step {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #b85462;
  border-radius: 30px;
  width: 111px;
  height: 40px;
  background: #b85462;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  color: #fff;
}
.home-how__list-item img {
  margin-bottom: 30px;
  height: auto;
  max-width: 100%;
  width: 100%;
}

.home-how__list-item h3 {
  color: var(--black, #14223d);
  text-align: center;
  font-family: Montserrat;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 10px;
}

.home-how__list-item p {
  color: var(--grey, #475a6b);
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  padding: 0 30px;
}
.home-how__btns {
  position: relative;
  z-index: 1;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.home-how__btns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  height: 50px;
  border-radius: 10px;
  text-decoration: none;
  background: #fff;
  border: 2px solid #14223d;
  color: #14223d;
}
.home-how__btns a.active {
  background: #14223d;
  border: 2px solid #14223d;
  color: #fff;
}

@media (max-width: 992px) {
  .home-how__list-item:nth-child(1)::after {
    display: none;
  }
  .home-how__list-item:nth-child(2)::after {
    display: none;
  }
}
.home-how__slider-arrow {
  position: relative;
  z-index: 2;
  display: none;
  justify-content: flex-end;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .home-how__slider-arrow {
    display: flex;
  }
  .home-how__list {
    margin-top: 0;
    flex-wrap: wrap;
    gap: 40px;
  }
  .home-how__list-item {
    padding: 0;
    display: flex;
    align-items: stretch;
    gap: 15px;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    border-radius: 15px;
  }
  .home-how__list-second .home-how__list-item {
    max-width: 100%;
  }
  .home-how__list-item:nth-child(2) {
    margin-top: 0;
    flex-direction: column;
  }
  .home-how__list-second .home-how__list-item:nth-child(4) {
    margin-top: 0;
    flex-direction: row-reverse;
  }
  .home-how__list-item:nth-child(2n) {
    margin-top: 0;
  }
  .home-how__list-item:nth-child(2) img {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
  }
  .home-how__list-second .home-how__list-item:nth-child(4) img {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
  }
  .home-how__list-item h3 {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 15px;
    font-size: 20px;
  }
  .home-how__list-item p {
    max-width: 300px;
    padding: 0;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 20px;
    font-size: 14px;
    line-height: 150%;
  }
  .home-how__list-item:nth-child(1)::after {
    display: block;
    top: auto;
    bottom: -16px;
    right: -33px;
    transform: rotate(90deg) scale(0.7);
    display: none;
  }
  .home-how__list-item:nth-child(2)::after {
    display: block;
    transform: rotate(90deg) scale(0.7);
    top: auto;
    right: auto;
    bottom: -16px;
    left: -33px;
  }
  .home-how__list-second .home-how__list-item:nth-child(1)::after {
    display: block;
    top: auto;
    bottom: -16px;
    right: -33px;
    transform: rotate(90deg) scale(0.7);
    background: url(../image/how-step-1.png) no-repeat;
    display: none;
  }
  .home-how__list-second .home-how__list-item:nth-child(3)::after {
    display: block;
    top: auto;
    bottom: -16px;
    right: -33px;
    transform: rotate(90deg) scale(0.7);
    background: url(../image/how-step-1.png) no-repeat;
    display: none;
  }
  .home-how__list-item img {
    width: 100%;
    margin-bottom: 0;
    height: auto;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
  }
  .home-how__list-item-step {
    top: -15px;
    height: 29px;
    font-size: 14px;
  }
  .home-how__btns {
    margin-top: 0;
    flex-wrap: wrap;
    gap: 10px;
  }
  .home-how__btns a {
    width: 100%;
    height: 44px;
  }
  .home-how__text {
    font-size: 14px;
    line-height: 150%;
  }
}

.home-how__list.home-how--mobile {
  display: block;
}

.home-how__list.home-how--mobile .home-how__slide {
  max-width: none;
  display: flex;
  align-items: center;
}

.home-how__pagination {
  position: relative !important;
  margin-top: 20px;
  text-align: center;
  bottom: auto !important;
  top: auto !important;
}

.home-how__pagination .swiper-pagination-bullet {
  opacity: 1 !important;
  width: 13px;
  height: 13px;
  border-radius: 13px;
  border: 1px solid var(--pink, #dd8592);
  background-color: transparent;
}

.home-how__pagination .swiper-pagination-bullet-active {
  opacity: 1 !important;
  background-color: #dd8592;
}

@media (min-width: 1001px) {
  .home-how__pagination {
    display: none;
  }
}

@media (min-width: 1001px) {
  .home-how__list:not(.home-how--mobile) {
    /* display: flex; */
    /* justify-content: space-between; */
  }

  .home-how__list:not(.home-how--mobile) .swiper-wrapper {
    display: contents;
  }

  .home-how__list:not(.home-how--mobile) .swiper-slide {
    width: auto !important;
    flex: 0 0 auto;
  }
}

.home-how__link {
  padding: 15px 100px;
  border-radius: 100px;
  background: var(--pink, #dd8592);
  border: 2px solid #dd8592;
  color: var(--white, #fff);
  text-align: center;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration: none;
  transition: all 0.4s;
}

.home-how__link:hover {
  background-color: transparent;
  color: #dd8592;
}

/* home-numbers */
.home-numbers {
  padding: 77px 0;
  background-color: #b8dce1;
}

@media screen and (max-width: 768px) {
  .home-numbers {
    padding: 30px 0 40px;
  }
}

.home-numbers-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 92px;
}

@media screen and (max-width: 1100px) {
  .home-numbers-wrapper {
    flex-direction: column;
    gap: 92px;
  }
}

@media screen and (max-width: 768px) {
  .home-numbers-wrapper {
    gap: 30px;
  }
}

.home-numbers__left {
  display: flex;
  flex-direction: column;
}

.home-numbers__left p {
  color: var(--grey, #475a6b);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 10px;
}

@media screen and (max-width: 1100px) {
  .home-numbers__left p {
    text-align: center;
  }
}

.home-numbers__left h2 {
  color: var(--black, #14223d);
  font-family: Montserrat;
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

@media screen and (max-width: 1100px) {
  .home-numbers__left h2 {
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .home-numbers__left h2 {
    font-size: 32px;
  }
}

.home-numbers__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media screen and (max-width: 1100px) {
  .home-numbers__right {
    grid-template-columns: 1fr;
  }
}

.home-numbers__right-item {
  padding: 40px 20px;
  background-color: #fff;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 350px;
  transition: all 0.4s;
  cursor: pointer;
}

@media screen and (max-width: 1100px) {
  .home-numbers__right-item {
    width: auto;
  }
}

.home-numbers__right-item.active {
  background-color: #0e9aa0;
}

.home-numbers__right-item h3 {
  color: #14223d;
  text-align: center;
  font-family: Montserrat;
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  transition: all 0.4s;
}

.home-numbers__right-item.active h3 {
  color: #fff;
}

.home-numbers__right-item p {
  color: #475a6b;
  text-align: center;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  transition: all 0.4s;
}

.home-numbers__right-item.active p {
  color: #fff;
}

/* home-clients */
.home-clients {
  padding: 75px 0 135px;
  position: relative;
  background: rgba(14, 154, 160, 0.1);
}

@media screen and (max-width: 768px) {
  .home-clients {
    padding: 50px 0 66px;
    padding-top: 30px;
  }
}

.home-clients::after {
  position: absolute;
  /* content: ""; */
  width: 100%;
  height: 100%;
  background-image: url("../image/home-client-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  left: 0;
  bottom: 0;
  background-position: bottom;
}

.home-clients-product::after {
  display: none;
}

.home-clients-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.home-clients__text {
  color: var(--grey, #475a6b);
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 10px;
}

.home-clients__slider {
  width: 100%;
}

.home-clients__slider .swiper-wrapper {
  align-items: center;
}

.home-clients__slider .swiper-slide {
  will-change: transform;
  backface-visibility: hidden;
}

.home-clients__title {
  color: var(--black, #14223d);
  text-align: center;
  font-family: Montserrat;
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .home-clients__title {
    font-size: 28px;
  }
}

.client-card {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  position: relative;
  height: 434px;
  overflow: hidden;
}

.client-card__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-card__play {
  background-color: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  padding: 0;
  cursor: pointer;
}

.client-card__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  bottom: 17px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.4s;
}

.client-card.is-playing .client-card__footer {
  opacity: 0;
  pointer-events: none;
}

.client-card__name {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--white, #fff);
  font-family: Montserrat;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 5px;
}

.client-card__stars {
  display: flex;
  align-items: center;
}
.client-card__stars svg path {
  fill: #dd8592;
}
/* home-product */
.home-product {
  padding: 75px 0;
}

@media screen and (max-width: 768px) {
  .home-product {
    padding: 30px 0;
  }
  .home-clients__text {
    font-size: 14px;
    line-height: 150%;
  }
}

.home-product-wrapper {
  display: flex;
  align-items: center;
  gap: 92px;
}

@media screen and (max-width: 1100px) {
  .home-product-wrapper {
    flex-direction: column;
    gap: 35px;
  }
}

.home-product__media {
  display: flex;
  gap: 18px;
}

.home-product__media-left,
.home-product__media-right {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.home-product__media-big {
  height: 314px;
  width: 259px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .home-product__media-big {
    max-width: 210px;
    width: 100%;
    height: 256px;
  }
}

.home-product__media-small {
  height: 201px;
  width: 259px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .home-product__media-small {
    max-width: 210px;
    width: 100%;
    height: 164px;
  }
}

.home-product__media-big img,
.home-product__media-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-product__media-icon {
  position: absolute;
  left: 17px;
  bottom: 13px;
}

.home-product__media-time {
  position: absolute;
  right: 17px;
  bottom: 13px;
  color: var(--white, #fff);
  font-family: Montserrat;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.home-product__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.home-product__content-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--black, #14223d);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 10px;
}

.home-product__content-rating-stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

.home-product__content-title {
  color: var(--black, #14223d);
  font-family: Montserrat;
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 10px;
}

.home-product__content-text {
  color: var(--grey, #475a6b);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 30px;
}

.home-product__content-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.home-product__content-list li {
  color: var(--grey, #475a6b);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-left: 32px;
  position: relative;
}

.home-product__content-list li::after {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url("../image/check.svg");
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  width: 22px;
  height: 22px;
}

.home-product__content-bottom {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

.home-product__content-bottom-price {
  color: var(--black, #14223d);
  font-family: Montserrat;
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.home-product__content-bottom-text {
  color: var(--black, #14223d);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.home-product__content-link {
  padding: 15px 100px;
  border-radius: 100px;
  background: var(--pink, #dd8592);
  border: 2px solid #dd8592;
  color: var(--white, #fff);
  text-align: center;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  transition: all 0.4s;
  text-decoration: none;
}

@media screen and (max-width: 500px) {
  .home-product__content-link {
    width: 100%;
  }
}

.home-product__content-link:hover {
  background: transparent;
  color: #dd8592;
}

/* home-emotion */
.home-emotion {
  padding: 75px 0;
  position: relative;
}

@media screen and (max-width: 768px) {
  .home-emotion {
    padding: 75px 0 30px;
  }
}

.home-emotion::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../image/emotion-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
}

.home-emotion-wrapper {
  display: flex;
  align-items: center;
  gap: 120px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 1250px) {
  .home-emotion-wrapper {
    gap: 30px;
  }
}

@media screen and (max-width: 1150px) {
  .home-emotion-wrapper {
    flex-direction: column;
    align-items: center;
  }
}

.home-emotion__content {
  display: flex;
  flex-direction: column;
  max-width: 438px;
}

@media screen and (max-width: 1150px) {
  .home-emotion__content {
    max-width: 100%;
  }
}

.home-emotion__content h2 {
  color: var(--black, #14223d);
  font-family: Montserrat;
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 10px;
  max-width: 320px;
}

@media screen and (max-width: 1150px) {
  .home-emotion__content h2 {
    max-width: 100%;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .home-emotion__content h2 {
    font-size: 28px;
  }
}

.home-emotion__content h4 {
  color: var(--grey, #475a6b);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 20px;
}

@media screen and (max-width: 1150px) {
  .home-emotion__content h4 {
    text-align: center;
  }
}

.home-emotion__content p {
  color: var(--grey, #475a6b);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media screen and (max-width: 1150px) {
  .home-emotion__content p {
    text-align: center;
  }
}

.home-emotion__slider {
  margin: 0;
  width: 100%;
  padding-top: 35px;
  padding-right: 35px;
}

.home-emotion__slider-slide {
  position: relative;
  display: flex;
}

@media screen and (max-width: 1150px) {
  .home-emotion__slider-slide {
    display: flex !important;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
    padding-top: 12px;
  }
}

.home-emotion__slider-slide-video-icon {
  position: absolute;
  bottom: 17px;
  right: 17px;
}

.home-emotion__slider-slide-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 100px;
}
.home-emotion__slider-slide-top {
  position: absolute;
  top: -17px;
  left: 243px;
  border: 1px solid #b85462;
  border-radius: 15px 15px 15px 0;
  padding: 10px 30px;
  padding-left: 30px;
  padding-right: 30px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #b85462;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}
.home-emotion__slider .swiper-button-prev {
  left: 70px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 4px 0 rgba(71, 90, 107, 0.25);
  border-radius: 50%;
  background: #fff;
}
.home-emotion__slider .swiper-button-prev svg {
  width: 11px;
  height: auto;
}
.home-emotion__slider .swiper-button-next {
  right: 4px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 4px 0 rgba(71, 90, 107, 0.25);
  border-radius: 50%;
  background: #fff;
}
.home-emotion__slider .swiper-button-next svg {
  width: 11px;
  height: auto;
}
@media screen and (max-width: 600px) {
  .home-emotion__slider-slide-left {
    gap: 15px;
    left: 0;
    top: 14px;
  }
  .home-emotion__content h4 {
    font-size: 14px;
    line-height: 150%;
  }
  .home-emotion__content p {
    font-size: 14px;
    line-height: 150%;
  }
  .home-emotion__slider {
    padding: 0;
    padding-top: 0;
  }
  .home-emotion__slider .swiper-button-prev {
    display: none;
  }
  .home-emotion__slider .swiper-button-next {
    display: none;
  }
  .home-emotion__slider-slide-top {
    left: 95px;
    top: 6px;
    padding: 0 15px;
    height: 29px;
    font-size: 14px;
  }
}

.home-emotion__slider-slide-left img {
  max-width: 143px;
  border-radius: 12px;
}

@media screen and (max-width: 600px) {
  .home-emotion__slider-slide-left img {
    max-width: 95px;
  }
}

@media screen and (max-width: 600px) {
  .home-emotion__slider-slide-left svg {
    width: 44px;
    height: 58px;
  }
}

.home-emotion__slider-slide-video {
  margin-left: auto;
  margin-top: 23px;
  max-width: 540px;
  object-fit: cover;
  border-radius: 20px;
  aspect-ratio: 540 / 303;
}

@media screen and (max-width: 1150px) {
  .home-emotion__slider-slide-video {
    max-width: calc(100% - 100px);
  }
}

@media screen and (max-width: 600px) {
  .home-emotion__slider-slide-video {
    max-width: calc(100% - 69px);
    margin-left: 69px;
  }
}

.home-emotion__slider-pagination {
  position: relative !important;
  bottom: auto !important;
  top: auto !important;
  margin-top: 20px;
  margin-left: 100px;
  width: calc(100% - 100px) !important;
}

@media screen and (max-width: 600px) {
  .home-emotion__slider-pagination {
    width: 100% !important;
    margin-left: 0;
  }
}

.home-emotion__slider-pagination .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  border-radius: 13px;
  border: 1px solid #dd8592;
  background: transparent;
  opacity: 1 !important;
}

.home-emotion__slider-pagination .swiper-pagination-bullet-active {
  width: 13px;
  height: 13px;
  border-radius: 13px;
  border: 1px solid #dd8592;
  background: #dd8592;
  opacity: 1 !important;
}

/* home-make */
.home-make {
  padding: 75px 0;
  background-color: #0e9aa0;
}

@media screen and (max-width: 768px) {
  .home-make {
    padding: 30px 0;
  }
}

.home-make-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-make__title {
  color: var(--white, #fff);
  text-align: center;
  font-family: Montserrat;
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .home-make__title {
    font-size: 32px;
    margin-bottom: 20px;
  }
}

.home-make__text {
  color: var(--white, #fff);
  text-align: center;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 30px;
  max-width: 730px;
}

.home-make__link {
  padding: 15px 100px;
  border-radius: 100px;
  background: var(--white, #fff);
  color: var(--green, #0e9aa0);
  border: 2px solid #fff;
  text-align: center;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration: none;
  transition: all 0.4s;
}

.home-make__link:hover {
  background-color: transparent;
  color: #fff;
}

/* home-gift-bottom */
.home-gift-bottom {
  padding: 75px 0;
  padding-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .home-gift-bottom {
    padding: 30px 0;
  }
}

.home-gift-bottom-container {
  width: 100%;
  max-width: 1362px;
  margin: 0 auto;
  padding: 0 24px;
}

.home-gift-bottom-wrapper {
  display: flex;
  align-items: center;
  gap: 64px;
  border-radius: 28px;
  background-image: url("../image/home-gift-bottom-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 65px 70px;
}

@media screen and (max-width: 1100px) {
  .home-gift-bottom-wrapper {
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .home-gift-bottom-wrapper {
    padding: 35px 20px 30px;
    background-image: url("../image/home-gift-bottom-mobile-bg.png");
  }
}

.home-gift-bottom__image {
  max-width: 613px;
  width: 100%;
}

.home-gift-bottom__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media screen and (max-width: 768px) {
  .home-gift-bottom__content {
    gap: 20px;
  }
}

.home-gift-bottom__content h2 {
  color: var(--black, #14223d);
  font-family: Montserrat;
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

@media screen and (max-width: 768px) {
  .home-gift-bottom__content h2 {
    font-size: 28px;
    text-align: center;
  }
}

.home-gift-bottom__content-texts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .home-gift-bottom__content-texts {
    gap: 10px;
  }
}

.home-gift-bottom__content-texts p {
  color: var(--grey, #475a6b);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* home-faq */
.home-faq {
  padding: 75px 0;
  padding-top: 60px;
}

@media screen and (max-width: 768px) {
  .home-faq {
    padding: 30px 0;
  }
  .home-gift-bottom__content-texts p {
    font-size: 14px;
    line-height: 150%;
    text-align: center;
  }
}

.home-faq-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-faq__title {
  color: var(--black, #14223d);
  text-align: center;
  font-family: Montserrat;
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .home-faq__title {
    font-size: 28px;
  }
}

.home-faq__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
  width: 100%;
  margin-bottom: 30px;
}

.home-faq__list-item {
  padding: 20px 0;
  border-bottom: 1px solid #475a6b;
  width: 100%;
}

.home-faq__list-item:first-child {
  border-top: 1px solid #475a6b;
}

.home-faq__list-item h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  color: var(--black, #14223d);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  cursor: pointer;
}

.home-faq__list-item h3 svg {
  transition: transform 0.5s ease;
}

.home-faq__list-item.is-open h3 svg {
  transform: rotate(180deg);
}

.home-faq__list-item p {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
  will-change: max-height;
  margin-top: 0;
  color: var(--grey, #475a6b);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 90%;
}

.home-faq__list-item.is-open p {
  opacity: 1;
  max-height: 1000;
  margin-top: 15px;
}

.home-faq__link {
  padding: 15px 100px;
  border-radius: 100px;
  background: var(--pink, #dd8592);
  border: 2px solid #dd8592;
  color: var(--white, #fff);
  text-align: center;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  transition: all 0.4s;
  text-decoration: none;
  display: none;
}

.home-faq__link:hover {
  background-color: transparent;
  color: #dd8592;
}

/* footer */
.footer {
  padding: 20px 0;
  padding-top: 56px;
  padding-bottom: 26px;
  background: #b8dce1;
}

.footer-wrapper {
  display: flex;
  flex-direction: column;
  gap: 75px;
}

@media screen and (max-width: 768px) {
  .footer-wrapper {
    gap: 35px;
  }
  .home-faq__list-item {
    padding: 15px 0;
  }
  .home-faq__list-item h3 {
    font-size: 18px;
  }
  .home-faq__list-item p {
    margin-top: 12px;
    font-size: 14px;
    line-height: 150%;
  }
  .home-faq__link {
    display: none;
  }
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

@media screen and (max-width: 768px) {
  .footer__top {
    grid-template-columns: 1fr;
  }
}

.footer__top-left {
  display: flex;
  flex-direction: column;
}
.footer__top-title {
  color: var(--black, #14223d);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 20px;
}
.footer__top-right {
  display: flex;
  flex-direction: column;
}

.footer__top-right h3 {
  color: var(--black, #14223d);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 20px;
}

.footer__top-right-menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__top-right-menu a {
  text-decoration: none;
  color: var(--grey, #14223d);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
}

.footer__top-right-menu a:hover {
  text-decoration: underline;
}

.footer__top-logo {
  margin-bottom: 30px;
}

.footer__top-text {
  margin-top: 20px;
  margin-bottom: 30px;
  color: var(--grey, #14223d);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .footer__top-text {
    margin-bottom: 28px;
  }
}

.footer__top-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 38px;
}

@media screen and (max-width: 768px) {
  .footer__top-links {
    margin-bottom: 10px;
  }
}

.footer__top-links a {
  color: var(--grey, #14223d);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
}

.footer__top-links a:hover {
  text-decoration: underline;
}

.footer__top-socials {
  display: flex;
  align-items: center;
  gap: 60px;
}
.footer__top-socials a {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--grey, #475a6b);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .footer__top-socials {
    gap: 10px;
  }
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__bottom-payments {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__bottom-copyright {
  color: var(--black, #14223d);
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media screen and (max-width: 500px) {
  .footer__bottom-copyright {
    max-width: 140px;
  }
}

/* reviews */
.reviews {
  padding: 75px 0;
  background: #fff4f5;
}

@media screen and (max-width: 768px) {
  .reviews {
    padding: 30px 0;
  }
}

.reviews-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reviews__title {
  color: var(--black, #14223d);
  text-align: center;
  font-family: Montserrat;
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .reviews__title {
    margin-bottom: 10px;
  }
}

.reviews__top {
  display: flex;
  gap: 98px;
  margin-bottom: 30px;
}

@media screen and (max-width: 1000px) {
  .reviews__top {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}

.reviews__top-left {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.reviews__top-left-wrapper {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

@media screen and (max-width: 768px) {
  .reviews__top-left-wrapper {
    gap: 5px;
  }
}

.reviews__top-left-rating {
  color: var(--black, #14223d);
  font-family: Montserrat;
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.reviews__top-left-stars {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}

.reviews__top-left-count {
  color: var(--grey, #475a6b);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 6px;
}

.reviews__top-left-text {
  color: var(--grey, #475a6b);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media screen and (max-width: 1000px) {
  .reviews__top-left-text {
    text-align: center;
  }
}

.reviews__top-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.reviews__top-right-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .reviews__top-right-item {
    gap: 10px;
  }
}

.reviews__top-right-item-number {
  color: var(--black, #14223d);
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.reviews__top-right-item-line {
  max-width: 380px;
  width: 380px;
  border-radius: 100px;
  background: #fff;
  height: 12px;
}

@media screen and (max-width: 768px) {
  .reviews__top-right-item-line {
    max-width: 280px;
    width: 280px;
  }
}

@media screen and (max-width: 400px) {
  .reviews__top-right-item-line {
    max-width: 210px;
    width: 210px;
  }
}

.reviews__top-right-item-line-fill {
  height: 12px;
  border-radius: 100px;
  background: var(--pink, #dd8592);
}

.reviews__top-right-item-percent {
  color: var(--black, #14223d);
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 30px;
}

.reviews__top-right-item-count {
  color: var(--grey, #475a6b);
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: none;
}

.reviews__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
  max-width: 940px;
}

@media screen and (max-width: 1000px) {
  .reviews__list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    max-width: 300px;
  }
}

.reviews__list-item {
  padding: 20px;
  border-radius: 20px;
  border: 1px solid #b8bdc5;
  background: var(--white, #fff);
}

.reviews__list-item-image {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 10px;
}

.reviews__list-item-name {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--black, #14223d);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 5px;
}

.reviews__list-item-stars {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.reviews__list-item-text {
  color: var(--grey, #475a6b);
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.reviews__link {
  padding: 15px 100px;
  border-radius: 100px;
  background: var(--pink, #dd8592);
  border: 2px solid #dd8592;
  color: var(--white, #fff);
  text-align: center;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration: none;
  transition: all 0.4s;
}

.reviews__link:hover {
  background: transparent;
  color: #dd8592;
}

/* product-clients */
.product-clients {
  padding: 75px 0;
}

@media screen and (max-width: 768px) {
  .product-clients {
    padding: 30px 0;
  }
}

.product-clients-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-clients__title {
  color: var(--black, #14223d);
  text-align: center;
  font-family: Montserrat;
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .product-clients__title {
    font-size: 32px;
    margin-bottom: 5px;
  }
}

.product-clients__text {
  color: var(--grey, #475a6b);
  text-align: center;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .product-clients__text {
    margin-bottom: 20px;
  }
}

.product-clients__slider {
  width: 100%;
}

.product-clients__slider-slide {
  padding: 20px;
  border-radius: 20px;
  border: 1px solid #b8bdc5;
  background: var(--white, #fff);
  display: flex;
  flex-direction: column;
  height: auto !important;
}

.product-clients__slider-slide-name {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--black, #14223d);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 5px;
}

.product-clients__slider-slide-stars {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.product-clients__slider-slide-subtitle {
  color: var(--grey, #475a6b);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 10px;
}

.product-clients__slider-slide-text {
  color: var(--grey, #475a6b);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media screen and (max-width: 768px) {
  .product-clients__slider-slide-text {
    font-size: 14px;
  }
}

.product-clients__slider-pagination {
  position: relative !important;
  bottom: auto !important;
  top: auto !important;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.product-clients__slider-pagination .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  border-radius: 13px;
  border: 1px solid var(--pink, #dd8592);
  background-color: transparent;
  opacity: 1 !important;
  margin: 0 !important;
}

.product-clients__slider-pagination .swiper-pagination-bullet-active {
  background-color: #dd8592;
}

/* product-gift */
.product-gift {
  padding: 10px 0;
}

.product-gift .container {
  max-width: 1362px;
}

.product-gift-wrapper {
  padding: 75px 20px;
  border-radius: 28px;
  background: var(--light-green, #b8dce1);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (max-width: 1000px) {
  .product-gift-wrapper {
    padding: 75px 8px;
  }
}

@media screen and (max-width: 768px) {
  .product-gift-wrapper {
    padding: 30px 8px;
  }
}

.product-gift-wrapper::after {
  position: absolute;
  content: "";
  background-image: url("../image/product-gift-left.png");
  background-repeat: no-repeat;
  background-size: cover;
  width: 220px;
  height: 100%;
  left: 0;
  top: 0;
}

@media screen and (max-width: 1000px) {
  .product-gift-wrapper::after {
    display: none;
  }
}

.product-gift-wrapper::before {
  position: absolute;
  content: "";
  background-image: url("../image/product-gift-right.png");
  background-repeat: no-repeat;
  background-size: cover;
  width: 235px;
  height: 100%;
  top: 0;
  right: 0;
}

@media screen and (max-width: 1000px) {
  .product-gift-wrapper::before {
    display: none;
  }
}

.product-gift__title {
  color: var(--black, #14223d);
  font-family: Montserrat;
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .product-gift__title {
    font-size: 32px;
    text-align: center;
  }
}

.product-gift__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

@media screen and (max-width: 1000px) {
  .product-gift__list {
    flex-direction: column;
    width: 100%;
    gap: 20px;
  }
}

.product-gift__list-item {
  padding: 15px 100px;
  border-radius: 100px;
  background: var(--white, #fff);
  color: var(--black, #14223d);
  text-align: center;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media screen and (max-width: 1000px) {
  .product-gift__list-item {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .product-gift__list-item {
    padding: 15px 30px;
  }
}

/* how-work */
.how-work {
  padding: 87px 0 75px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .how-work {
    padding: 75px 0;
  }
}

.how-work::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../image/how-work-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  content: "";
}

.how-work-wrapper {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 1000px) {
  .how-work-wrapper {
    flex-direction: column;
  }
}

.how-work__content {
  display: flex;
  flex-direction: column;
  max-width: 540px;
}

@media screen and (max-width: 1000px) {
  .how-work__content {
    max-width: 100%;
  }
}

.how-work__content h2 {
  color: var(--black, #14223d);
  font-family: Montserrat;
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 5px;
}

@media screen and (max-width: 768px) {
  .how-work__content h2 {
    font-size: 32px;
  }
}

.how-work__content h3 {
  color: var(--grey, #475a6b);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.how-work__content p {
  color: var(--grey, #475a6b);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 20px;
}

.how-work__content ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 10px;
}

.how-work__content ul li {
  padding-left: 32px;
  color: var(--black, #14223d);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: relative;
}

.how-work__content ul li::after {
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../image/check.svg");
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  width: 22px;
  height: 22px;
}

.how-work__image {
  max-width: 510px;
}

@media screen and (max-width: 1000px) {
  .how-work__image {
    max-width: 100%;
  }
}

/* product main */

.product-main {
  padding: 75px 0;
}

@media screen and (max-width: 768px) {
  .product-main {
    padding: 50px 0 30px;
    padding-top: 10px;
  }
}

.product-main-wrapper {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: flex-start;
}

@media screen and (max-width: 1000px) {
  .product-main-wrapper {
    flex-direction: column;
  }
}

.product-main__content {
  display: flex;
  flex-direction: column;
  max-width: 580px;
}

@media screen and (max-width: 1000px) {
  .product-main__content {
    max-width: 100%;
  }
}

.product-main__content-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--black, #14223d);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.product-main__content-rating a {
  text-decoration: underline;
  color: var(--black, #14223d);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media screen and (max-width: 450px) {
  .product-main__content-rating {
    font-size: 16px;
    flex-direction: row;
  }
}

.product-main__content-rating-stars {
  display: flex;
  align-items: center;
}

.product-main__content-title {
  color: var(--black, #14223d);
  font-family: Montserrat;
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 10px;
}

@media screen and (max-width: 450px) {
  .product-main__content-title {
    font-size: 32px;
  }
}

.product-main__content-text {
  color: var(--black, #14223d);
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 10px;
}

@media screen and (max-width: 450px) {
  .product-main__content-text {
    font-size: 16px;
  }
}

.product-main__content-price {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--black, #14223d);
  font-family: Montserrat;
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}

@media screen and (max-width: 450px) {
  .product-main__content-price {
    font-size: 32px;
  }
}

.product-main__content-price span {
  color: var(--black, #14223d);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media screen and (max-width: 450px) {
  .product-main__content-price span {
    font-size: 16px;
  }
}

.product-main__content-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 17px;
}

.product-main__content-list li {
  padding-left: 32px;
  position: relative;
  color: var(--black, #14223d);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.product-main__home .product-main__content-list li {
  margin-bottom: 10px;
  padding-left: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-main__home .product-main__content-list li:last-child {
  margin-bottom: 0;
}
.product-main__home .product-main__content-list li::after {
  display: none;
}
@media screen and (max-width: 450px) {
  .product-main__content-list li {
    font-size: 16px;
  }
}

.product-main__content-list li::after {
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../image/check.svg");
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  width: 22px;
  height: 22px;
}

.product-main__content-variant {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.product-main__content-variant-text {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #14223d;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

@media screen and (max-width: 450px) {
  .product-main__content-variant-text {
    font-size: 16px;
  }
}

.product-main__content-variant-text span {
  color: #14223d;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media screen and (max-width: 450px) {
  .product-main__content-variant-text span {
    font-size: 16px;
  }
}

.product-main__content-variant-images {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.product-main__content-variant-images-item {
  position: relative;
  background: none;
  padding: 0;
  border: none;
  border-radius: 12px;
  max-width: 77px;
  cursor: pointer;
  /* overflow: hidden; */
}
.product-main__content-variant-images-item .notice {
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -7px;
  right: 0;
  border-radius: 5px 5px 5px 0;
  width: 48px;
  height: 14px;
  background: #b85462;
  font-weight: 600;
  font-size: 8px;
  color: #fff;
}
.product-main__content-variant-images-item.is-active {
  border: 2px solid #dd8592;
}
.product-main__content-variant-images-item.is-active .notice {
  display: flex;
}

.product-main__content-variant-images-item img {
  border-radius: 12px;
}

.product-main__content-select {
  position: relative;
  width: 100%;
  font-family: Montserrat;
  margin-bottom: 15px;
}

.product-main__content-select__button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 22px 10px 30px;
  border-radius: 12px;
  border: 1px solid #475a6b;
  background: #fff;
  color: #14223d;
  line-height: 1.2;
  cursor: pointer;
}

@media screen and (max-width: 500px) {
  .product-main__content-select__button {
    gap: 20px;
  }
}

.product-main__content-select__label {
  color: var(--grey, #475a6b);
  font-family: Montserrat;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media screen and (max-width: 500px) {
  .product-main__content-select__label {
    font-size: 18px;
  }
}

.product-main__content-select__price {
  color: var(--grey, #475a6b);
  font-family: Montserrat;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-right: 20px;
}

@media screen and (max-width: 500px) {
  .product-main__content-select__price {
    font-size: 18px;
  }
}

.product-main__content-select__chev {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  flex: 0 0 auto;
  transition: transform 0.4s ease;
  color: #14223d;
}

.product-main__content-select.is-open .product-main__content-select__chev {
  transform: rotate(180deg), translateY(-50%);
}

.product-main__content-select__list {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  border-radius: 12px;
  border: 1px solid #e1e7f0;
  background: #fff;
  box-shadow: 0 6px 24px rgba(20, 34, 61, 0.12);
  padding: 6px;
  margin: 0;
  list-style: none;
  display: none;
  z-index: 20;
}

.product-main__content-select.is-open .product-main__content-select__list {
  display: block;
}

.product-main__content-select__option {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 10px;
  border-radius: 8px;
  cursor: pointer;
}

.product-main__content-select__option:hover,
.product-main__content-select__option:focus {
  background: #f5f8fe;
  outline: none;
}

.product-main__content-select__option.is-active {
  font-weight: 600;
}

.product-main__content-select__opt-price {
  opacity: 0.9;
}

.product-main__content-add {
  padding: 15px 100px;
  border-radius: 100px;
  background: var(--pink, #dd8592);
  border: 2px solid #dd8592;
  color: var(--white, #fff);
  text-align: center;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  transition: all 0.4s;
  margin-bottom: 20px;
  cursor: pointer;
}

@media screen and (max-width: 500px) {
  .product-main__content-add {
    padding: 15px 30px;
  }
}

.product-main__content-add:hover {
  box-shadow: inset 4px 4px 10px 0 rgba(0, 0, 0, 0.25);
  background: #0e9aa0;
}

.product-main__content-delivery {
  color: var(--black, #14223d);
  text-align: center;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media screen and (max-width: 450px) {
  .product-main__content-delivery {
    font-size: 16px;
  }
}

.product-main__content-delivery span {
  color: #14223d;
  font-family: Montserrat;
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
  line-height: normal;
}

@media screen and (max-width: 450px) {
  .product-main__content-delivery span {
    font-size: 16px;
  }
}

.product-main__media {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 530px;
  width: 100%;
  position: sticky;
  top: 120px;
}

@media screen and (max-width: 1000px) {
  .product-main__media {
    max-width: 100%;
    position: static;
  }
}

.product-main__media-main {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}
.product-main__media-main .counter {
  position: absolute;
  right: 15px;
  bottom: 55px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border-radius: 10px;
  padding: 2px 15px;
  height: 19px;
  font-weight: 600;
  font-size: 12px;
  text-align: center;
  color: #fff;
  background: #dd8592;
  display: none;
}
.product-main__media-main .swiper-button-prev {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  box-shadow: 0 4px 4px 0 rgba(71, 90, 107, 0.25);
  background: #fff;
}
.product-main__media-main .swiper-button-prev.swiper-button-disabled {
  opacity: 0;
}
.product-main__media-main .swiper-button-prev svg {
  width: 6px;
  height: auto;
}
.product-main__media-main .swiper-button-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  box-shadow: 0 4px 4px 0 rgba(71, 90, 107, 0.25);
  background: #fff;
}
.product-main__media-main .swiper-button-next.swiper-button-disabled {
  opacity: 0;
}
.product-main__media-main .swiper-button-next svg {
  width: 6px;
  height: auto;
}
.product-main__media-main-slide {
  position: relative;
}
.product-main__media-main-slide .btn-play {
  cursor: pointer;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.video-player__poster {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.product-main__media-main-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
}
.video-player__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-main__media-main-slide video {
  width: 100%;
  height: 530px;
  object-fit: cover;
}
.product-main__media-thumbs {
  width: 100%;
}

.product-main__media-thumbs-wrapper {
  align-items: center;
}

.product-main__media-thumbs-slide {
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  height: 94px;
}
.product-main__media-thumbs-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-main__media-thumbs img {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
}

.product-main__media-thumbs .swiper-slide-thumb-active {
  border: 2px solid #dd8592;
  filter: none;
}

.product-main__content-add-mobile-wrapper {
  border-radius: 100px;
  background: rgba(221, 133, 146, 0.51);
  padding: 10px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}

@media (max-width: 768px) {
  .product-main__content-add-mobile-wrapper {
    opacity: 0;
    transform: translateY(100%);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  .product-main__content-add-mobile-wrapper.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .product-main__media-main-slide video {
    height: 327px;
  }
  .product-main__media-thumbs-slide {
    height: auto;
  }
  .product-main__media-thumbs-slide video {
    transform: translateY(2px);
  }
  .product-main__media-main .swiper-button-prev {
    width: 30px;
    height: 30px;
  }
  .product-main__media-main .swiper-button-next {
    width: 30px;
    height: 30px;
  }
  .product-main__media-main .counter {
    /* display: inline-flex; */
    display: none;
  }
}

@media (min-width: 769px) {
  .product-main__content-add-mobile-wrapper {
    display: none !important;
  }
}

.product-main__content-add-mobile {
  border-radius: 100px;
  background: #dd8592;
  padding: 15px 30px;
  color: var(--white, #fff);
  text-align: center;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border: 2px solid #dd8592;
  transition: all 0.4s;
  cursor: pointer;
  width: 100%;
}

.product-main__content-add-mobile:hover {
  background: transparent;
}

/* product-form */
.product-form {
  padding: 30px 0 60px;
}

.product-form-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-form__first {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.product-form__banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 44px;
  border-radius: 20px;
  background-color: #fff4f5;
  background-image: url("../image/form-banner.png");
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 30px;
  max-width: 950px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .product-form__banner {
    padding: 30px 44px 30px;
  }
}

.product-form__banner h2 {
  color: var(--black, #14223d);
  text-align: center;
  font-family: Montserrat;
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .product-form__banner h2 {
    font-size: 32px;
  }
}

.product-form__banner p {
  color: var(--grey, #475a6b);
  text-align: center;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  max-width: 615px;
}

@media screen and (max-width: 768px) {
  .product-form__banner p {
    font-size: 16px;
  }
}

.product-form__steps {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.product-form__steps-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 88px;
  position: relative;
}

.product-form__steps.step2 .product-form__steps-wrapper::after {
  background: #dd8592;
  background: linear-gradient(
    90deg,
    rgba(221, 133, 146, 1) 60%,
    rgba(235, 235, 235, 1) 60%
  );
}

.product-form__steps-wrapper::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 10px);
  height: 6px;
  background-color: #dd8592;
  content: "";
}

.product-form__steps-item-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-form__steps-item-wrapper:has(.product-form__steps-item.current) {
  width: 30px;
  height: 30px;
  border-radius: 30px;
  background: rgba(221, 133, 146, 0.51);
}

.product-form__steps-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  border: 1px solid var(--pink, #dd8592);
  background: var(--white, #fff);
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 1;
}

.product-form__steps-item.current {
  background: #dd8592;
  color: #fff;
}

.product-form__steps-item.done {
  background: #dd8592;
  color: #fff;
}

.product-form__first-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
}

.product-form__first-step-title {
  color: var(--black, #14223d);
  text-align: center;
  font-family: Montserrat;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .product-form__first-step-title {
    font-size: 22px;
    margin-bottom: 20px;
  }
}

.product-form__first-step-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

@media screen and (max-width: 500px) {
  .product-form__first-step-content {
    margin-bottom: 10px;
  }
}

.product-form__first-step-content-item {
  border-radius: 12px;
  background: var(--white, #fff);
  box-shadow: 0 0 20px 0 #ebebeb;
  border: 2px solid transparent;
  padding: 30px 42px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .product-form__first-step-content-item {
    padding: 20px 15px;
  }
}

@media screen and (max-width: 500px) {
  .product-form__first-step-content-item {
    padding: 10px;
  }
}

.product-form__first-step-content-item.active {
  border-radius: 12px;
  border: 2px solid var(--pink, #dd8592);
  background: var(--light-pink, #fff4f5);
  box-shadow: 0 0 20px 0 #ebebeb;
}

.product-form__first-step-content-item h3 {
  color: var(--black, #14223d);
  text-align: center;
  font-family: Montserrat;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .product-form__first-step-content-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 500px) {
  .product-form__first-step-content-item h3 {
    font-size: 16px;
    margin-bottom: 5px;
  }
}

.product-form__first-step-content-item img {
  margin-bottom: 20px;
  height: 118px;
}

@media screen and (max-width: 500px) {
  .product-form__first-step-content-item img {
    height: 50px;
    margin-bottom: 5px;
  }
}

.product-form__first-step-content-item p {
  color: var(--black, #14223d);
  text-align: center;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.product-form__first-step-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 100px;
  background: #dd8592;
  padding: 15px 10px;
  gap: 10px;
  color: var(--white, #fff);
  text-align: center;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border: 2px solid #dd8592;
  transition: all 0.4s;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .product-form__first-step-button {
    font-size: 16px;
  }
}

@media screen and (max-width: 500px) {
  .product-form__first-step-button {
    font-size: 14px;
  }
}

.product-form__first-step-button:hover {
  color: #dd8592;
  background: transparent;
}

.product-form__second {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.product-form__second-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 950px;
  width: 100%;
}

.product-form__second-step-upload {
  width: 100%;
  border-radius: 12px;
  border: 1px dashed var(--pink, #dd8592);
  background: var(--light-pink, #fff4f5);
  padding: 30px 30px 8px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  position: relative;
}

@media screen and (max-width: 500px) {
  .product-form__second-step-upload {
    padding: 30px 30px 20px;
    margin-bottom: 20px;
  }
}

.product-form__second-step-upload > img {
  margin-bottom: 35px;
}

@media screen and (max-width: 500px) {
  .product-form__second-step-upload > img {
    margin-bottom: 5px;
    max-width: 70%;
  }
}

.product-form__second-step-upload p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--black, #14223d);
  font-family: Montserrat;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 10px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .product-form__second-step-upload p {
    font-size: 18px;
  }
}

@media screen and (max-width: 450px) {
  .product-form__second-step-upload p {
    font-size: 16px;
  }
}

.product-form__second-step-upload span {
  color: var(--grey, #475a6b);
  text-align: center;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media screen and (max-width: 768px) {
  .product-form__second-step-upload span {
    font-size: 14px;
    max-width: 255px;
  }
}

.product-form__second-step-upload.is-dragover {
  border-color: #14223d;
  background: #ffe9ec;
}

.upload-preview__item {
  position: relative;
}

.upload-preview__remove {
  display: flex;
  position: absolute;
  top: -4px;
  right: 0;
  width: 15px;
  height: 15px;
  border: none;
  border-radius: 50%;
  font-weight: 700;
  line-height: 22px;
  text-align: center;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
}

@media screen and (max-width: 768px) {
  .upload-preview__remove {
    width: 25px;
    height: 25px;
    top: -10px;
  }
  .upload-preview__remove svg {
    width: 25px;
    height: 25px;
  }
}

.upload-preview__remove:hover {
  background: rgba(20, 34, 61, 1);
}

.upload-preview__remove:focus {
  outline: 2px solid #dd8592;
  outline-offset: 2px;
}

.upload-preview {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  width: 100%;
  max-width: 460px;
}

@media screen and (max-width: 768px) {
  .upload-preview {
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
    max-width: 340px;
  }
}

.upload-preview__item {
  border-radius: 8px;
  font-size: 12px;
  text-align: center;
}

.upload-preview__thumb {
  display: block;
  width: 100%;
  max-width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 6px;
}

@media screen and (max-width: 768px) {
  .upload-preview__thumb {
    max-width: 100px;
    height: 100px;
  }
  .upload-preview__svg-wrapper svg {
    width: 100px;
    height: 100px;
  }
}

.upload-preview__index {
  width: 24px;
  padding: 2px 5px;
  border-radius: 10px 10px 10px 0;
  background: #dd8592;
  position: absolute;
  left: 0;
  top: -10px;
  color: #fff;
  text-align: center;
  font-family: Montserrat;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.upload-preview__swap {
  position: absolute;
  right: 19px;
  top: -4px;
  display: flex;
  width: 15px;
  height: 15px;
  padding: 2px;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background: #14223d;
}

@media screen and (max-width: 768px) {
  .upload-preview__swap {
    width: 20px;
    height: 20px;
    padding: 3px;
    bottom: 21px;
    top: auto;
    right: -3px;
  }

  .upload-preview__swap svg {
    width: 14px;
    height: 14px;
  }
}

.upload-preview__caption {
  max-width: 80px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media screen and (max-width: 768px) {
  .upload-preview__caption {
    max-width: 100px;
  }
}

.upload-preview__err {
  color: #c62828;
  font-size: 12px;
}

.upload-counter {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 10px;
  font-size: 12px;
  line-height: 1;
  background: #dd8592;
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  user-select: none;
}

.product-form__second-step-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 100px;
  background: #0e9aa0;
  padding: 15px 10px;
  gap: 10px;
  color: var(--white, #fff);
  text-align: center;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border: 2px solid #0e9aa0;
  transition: all 0.4s;
  cursor: pointer;
  margin-bottom: 10px;
  max-width: 505px;
}
.product-form__create-order-step-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 100px;
  background: #0e9aa0;
  padding: 15px 10px;
  gap: 10px;
  color: var(--white, #fff);
  text-align: center;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border: 2px solid #0e9aa0;
  transition: all 0.4s;
  cursor: pointer;
  margin-bottom: 10px;
  max-width: 505px;
}

@media screen and (max-width: 768px) {
  .product-form__second-step-button,
  .product-form__create-order-step-button {
    font-size: 16px;
  }
}

@media screen and (max-width: 500px) {
  .product-form__second-step-button {
    font-size: 14px;
  }
}

.product-form__second-step-button:hover {
  color: #0e9aa0;
  background: transparent;
}

.product-form__second-step-upload span.file-uploader-error {
  color: #eb001b;
}

.product-form__second-step-button-back {
  color: var(--grey, #475a6b);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

@media screen and (max-width: 768px) {
  .product-form__second-step-button-back {
    font-size: 16px;
  }
}

.product-form__second-step-button-back:hover {
  text-decoration: underline;
}

.product-form__third {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.product-form__third-step-color-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 950px;
  width: 100%;
}

.product-form__third-step-color {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-form__third-step-color-title {
  color: var(--black, #14223d);
  text-align: center;
  font-family: Montserrat;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 30px;
}

.product-form__third-step-color-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

@media screen and (max-width: 1000px) {
  .product-form__third-step-color-block {
    grid-template-columns: 1fr;
  }
}

.product-form__third-step-color-block-left {
  padding: 30px;
  border-radius: 12px;
  background: var(--white, #fff);
  box-shadow: 0 0 20px 0 #ebebeb;
}

@media screen and (max-width: 1000px) {
  .product-form__third-step-color-block {
    padding: 30px 20px;
  }
}

.product-form__third-step-color-block-left-images {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 16px;
}

.product-form__third-step-color-block-left-images::after {
  position: absolute;
  top: 50%;
  left: 49%;
  width: 2px;
  background-color: #fff;
  height: 100%;
  transform: translate(-50%, -50%);
  content: "";
}

.product-form__third-step-color-block-left-images img {
  width: 197px;
}

@media screen and (max-width: 768px) {
  .product-form__third-step-color-block-left-images img {
    width: 150px;
  }
}

@media screen and (max-width: 500px) {
  .product-form__third-step-color-block-left-images img {
    width: 100px;
  }
}

.product-form__third-step-color-block-left-images svg {
  position: absolute;
  top: 50%;
  left: 49%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.product-form__third-step-color-block-left-middle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.product-form__third-step-color-block-left-middle-title {
  color: var(--black, #14223d);
  font-family: Montserrat;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.product-form__third-step-color-block-left-middle-price {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--black, #14223d);
  text-align: right;
  font-family: Montserrat;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.product-form__third-step-color-block-left-middle-price span {
  color: var(--black, #14223d);
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.product-form__third-step-color-block-left-text {
  color: var(--black, #14223d);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.product-form__third-step-color-block-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 37px 33px;
  border-radius: 12px;
  background: var(--white, #fff);
  box-shadow: 0 0 20px 0 #ebebeb;
}

@media screen and (max-width: 400px) {
  .product-form__third-step-color-block-right {
    padding: 20px;
  }
}

.product-form__third-step-color-block-right-item {
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
}

.product-form__third-step-color-block-right-item img {
  width: 90px;
}

@media screen and (max-width: 400px) {
  .product-form__third-step-color-block-right-item img {
    width: 70px;
  }
}

.product-form__third-step-color-block-right-item svg {
  flex-shrink: 0;
}

.product-form__third-step-color-block-right-item .radio--on {
  display: none;
}

.product-form__third-step-color-block-right-item.is-checked .radio--on {
  display: inline;
}

.product-form__third-step-color-block-right-item.is-checked .radio--off {
  display: none;
}

.product-form__third-step-color-block-right-item .radio-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-form__third-step-color-block-right-item p {
  color: var(--black, #14223d);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.product-form__third-step-color-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 100px;
  background: #dd8592;
  padding: 15px 10px;
  gap: 10px;
  color: var(--white, #fff);
  text-align: center;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border: 2px solid #dd8592;
  transition: all 0.4s;
  cursor: pointer;
  margin-bottom: 10px;
  max-width: 600px;
}

@media screen and (max-width: 768px) {
  .product-form__third-step-color-button {
    font-size: 16px;
  }
}

@media screen and (max-width: 500px) {
  .product-form__third-step-color-button {
    font-size: 14px;
  }
}

.product-form__third-step-color-button:hover {
  color: #dd8592;
  background: transparent;
}

.product-form__third-step-color-button-back {
  color: var(--grey, #475a6b);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

@media screen and (max-width: 768px) {
  .product-form__third-step-color-button-back {
    font-size: 16px;
  }
}

.product-form__third-step-color-button-back:hover {
  text-decoration: underline;
}

.product-form__third-step-music-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 850px;
  width: 100%;
}

.product-form__third-step-music {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.product-form__third-step-music-top {
  width: 100%;
}

.product-form__third-step-music-title {
  color: var(--black, #14223d);
  text-align: center;
  font-family: Montserrat;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .product-form__third-step-music-title {
    font-size: 18px;
  }
}

.product-form__third-step-music-text {
  color: var(--grey, #475a6b);
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .product-form__third-step-music-text {
    font-size: 16px;
  }
}

.product-form__third-step-music-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-bottom: 30px;
}

.product-form__third-step-music-block-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.product-form__third-step-music-block-top-item {
  padding: 36px 30px;
  border-radius: 12px;
  background: var(--white, #fff);
  box-shadow: 0 0 20px 0 #ebebeb;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .product-form__third-step-music-block-top-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 10px;
  }
}

.product-form__third-step-music-block-top-item.active {
  border-radius: 12px;
  border: 1px solid var(--pink, #dd8592);
  background: var(--light-pink, #fff4f5);
  box-shadow: 0 0 20px 0 #ebebeb;
}

.product-form__third-step-music-block-top-item p {
  color: var(--black, #14223d);
  text-align: left;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media screen and (max-width: 768px) {
  .product-form__third-step-music-block-top-item p {
    font-size: 18px;
  }
}

.product-form__third-step-music-block-bottom {
  padding: 22px 30px;
  border-radius: 12px;
  border: 1px solid var(--grey, #475a6b);
  color: var(--grey, #475a6b);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.product-form__third-step-music-block-bottom.is-invalid {
  border-color: #c62828 !important;
}

@media screen and (max-width: 768px) {
  .product-form__third-step-music-block-bottom {
    padding: 24px 20px;
    font-size: 18px;
  }
}

.product-form__third-step-music-block-bottom::placeholder {
  color: var(--grey, #475a6b);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media screen and (max-width: 768px) {
  .product-form__third-step-music-block-bottom::placeholder {
    font-size: 18px;
  }
}

.product-form__third-step-music-bottom {
  margin-bottom: 30px;
  width: 100%;
}

.product-form__third-step-music-bottom-title {
  color: var(--black, #14223d);
  text-align: center;
  font-family: Montserrat;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .product-form__third-step-music-bottom-title {
    font-size: 18px;
  }
}

.product-form__third-step-music-bottom-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-bottom: 30px;
}

.product-form__third-step-music-bottom-block-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.product-form__third-step-music-bottom-block-top-item {
  padding: 36px 30px;
  border-radius: 12px;
  background: var(--white, #fff);
  box-shadow: 0 0 20px 0 #ebebeb;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .product-form__third-step-music-bottom-block-top-item {
    padding: 20px 10px;
  }
}

.product-form__third-step-music-bottom-block-top-item.active {
  border-radius: 12px;
  border: 1px solid var(--pink, #dd8592);
  background: var(--light-pink, #fff4f5);
  box-shadow: 0 0 20px 0 #ebebeb;
}

.product-form__third-step-music-bottom-block-top-item p {
  color: var(--black, #14223d);
  text-align: left;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media screen and (max-width: 768px) {
  .product-form__third-step-music-bottom-block-top-item p {
    font-size: 18px;
  }
}

.product-form__third-step-music-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 100px;
  background: #0e9aa0;
  padding: 15px 10px;
  gap: 10px;
  color: var(--white, #fff);
  text-align: center;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border: 2px solid #0e9aa0;
  transition: all 0.4s;
  cursor: pointer;
  margin-bottom: 10px;
  max-width: 600px;
}

@media screen and (max-width: 768px) {
  .product-form__third-step-music-button {
    font-size: 16px;
  }
}

@media screen and (max-width: 500px) {
  .product-form__third-step-music-button {
    font-size: 14px;
  }
}

.product-form__third-step-music-button:hover {
  color: #0e9aa0;
  background: transparent;
}

.product-form__third-step-music-button-back {
  color: var(--grey, #475a6b);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

@media screen and (max-width: 768px) {
  .product-form__third-step-music-button-back {
    font-size: 16px;
  }
}

.product-form__third-step-music-button-back:hover {
  text-decoration: underline;
}

.product-form__third-step-date-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 950px;
  width: 100%;
}

.product-form__third-step-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.product-form__third-step-date-title {
  color: var(--black, #14223d);
  text-align: center;
  font-family: Montserrat;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .product-form__third-step-date-title {
    font-size: 22px;
  }
}

.product-form__third-step-date-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
  margin-bottom: 30px;
}

.product-form__third-step-date-block-item {
  padding: 42px 30px;
  border-radius: 12px;
  background: var(--white, #fff);
  box-shadow: 0 0 20px 0 #ebebeb;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .product-form__third-step-date-block-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 10px;
  }
}

.product-form__third-step-date-block-item.active {
  border-radius: 12px;
  border: 1px solid var(--pink, #dd8592);
  background: var(--light-pink, #fff4f5);
  box-shadow: 0 0 20px 0 #ebebeb;
}

.product-form__third-step-date-block-item p {
  color: var(--black, #14223d);
  text-align: left;
  font-family: Montserrat;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-form__third-step-date-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 100px;
  background: #dd8592;
  padding: 15px 10px;
  gap: 10px;
  color: var(--white, #fff);
  text-align: center;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border: 2px solid #dd8592;
  transition: all 0.4s;
  cursor: pointer;
  margin-bottom: 10px;
  max-width: 388px;
}

@media screen and (max-width: 768px) {
  .product-form__third-step-date-button {
    font-size: 16px;
  }
}

@media screen and (max-width: 500px) {
  .product-form__third-step-date-button {
    font-size: 14px;
  }
}

.product-form__third-step-date-button:hover {
  color: #dd8592;
  background: transparent;
}

.product-form__third-step-date-button-back {
  color: var(--grey, #475a6b);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

@media screen and (max-width: 768px) {
  .product-form__third-step-date-button-back {
    font-size: 16px;
  }
}

.product-form__third-step-date-button-back:hover {
  text-decoration: underline;
}

.is-hidden {
  display: none !important;
}

.button--disabled,
button[disabled] {
  opacity: 0.5;
  pointer-events: none;
}

.product-form__fourth {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.product-form__fourth-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 950px;
  width: 100%;
}

.product-form__fourth-step-title {
  color: var(--black, #14223d);
  text-align: center;
  font-family: Montserrat;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .product-form__fourth-step-title {
    font-size: 22px;
    margin-bottom: 20px;
  }
}

.product-form__fourth-step-content {
  max-width: 850px;
  width: 100%;
  margin-bottom: 30px;
}

.datefield {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-height: 44px;
  border: 1px solid #475a6b;
  border-radius: 10px;
  padding: 16px 30px;
  cursor: pointer;
  background: #fff;
  transition: box-shadow 0.4s, border-color 0.4s;
}

@media screen and (max-width: 768px) {
  .datefield {
    padding: 24px 20px;
  }
}

.datefield:focus,
.datefield:focus-visible,
.datefield:focus-within {
  outline: none;
  border-color: #a6b4c4;
  box-shadow: 0 0 0 3px rgba(221, 133, 146, 0.15);
}

.datefield__label {
  flex: 1 1 auto;
  color: var(--grey, #475a6b);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media screen and (max-width: 768px) {
  .datefield__label {
    font-size: 17px;
  }
}

.datefield.has-value .datefield__label {
  color: #14223d;
}

.datefield__input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.datefield__popup {
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  transform: translateX(-50%);
  z-index: 50;
  width: 320px;
  background: #fff;
  border: 1px solid #d8dee6;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 12px;
  display: none;
}

.datefield.is-open .datefield__popup {
  display: block;
}

.dp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.dp-nav-btn {
  border: 0;
  background: #f3f6f9;
  border-radius: 4px;
  width: 24px;
  height: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.dp-month-label {
  font: 600 14px/1.2 Montserrat, system-ui;
  color: #14223d;
}

.dp-week,
.dp-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.dp-week span {
  text-align: center;
  font: 600 12px/1 Montserrat, system-ui;
  color: #7b8a9a;
}

.dp-day {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  font: 500 14px/1 Montserrat, system-ui;
  color: #14223d;
}

.dp-day--muted {
  color: #a6b4c4;
}

.dp-day:hover {
  background: #fff4f5;
}

.dp-day--today {
  outline: 2px solid #dd8592;
  outline-offset: -2px;
}

.dp-day--selected {
  background: #dd8592;
  color: #fff;
}

.datefield__input {
  display: none;
}

.product-form__fourth-step-button,
.button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 100px;
  background: #dd8592;
  padding: 15px 10px;
  gap: 10px;
  color: var(--white, #fff);
  text-align: center;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border: 2px solid #dd8592;
  transition: all 0.4s;
  cursor: pointer;
  margin-bottom: 10px;
  max-width: 600px;
}
.product-form__fourth-step-button {
  background-color: #0e9aa0;
  border-color: #0e9aa0;
  max-width: 420px;
}

@media screen and (max-width: 768px) {
  .product-form__fourth-step-button {
    font-size: 16px;
  }
}

@media screen and (max-width: 500px) {
  .product-form__fourth-step-button {
    font-size: 14px;
  }
}

.product-form__fourth-step-button:hover {
  color: #0e9aa0;
  background: transparent;
}

.product-form__fourth-step-button-back {
  color: var(--grey, #475a6b);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

@media screen and (max-width: 768px) {
  .product-form__fourth-step-button-back {
    font-size: 16px;
  }
}

.product-form__fourth-step-button-back:hover {
  text-decoration: underline;
}

/* modal */
.lovio-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  place-items: center;
  padding: 24px;
  pointer-events: auto;
}

.lovio-modal.is-open {
  display: grid;
}

.lovio-modal__backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.8;
  background: var(--black, #14223d);
}

.lovio-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(700px, 92vw);
  background: #fff;
  border-radius: 20px;
  padding: 50px 36px;
}

@media (max-width: 768px) {
  .lovio-modal__dialog {
    padding: 40px 14px;
  }
}

.lovio-modal__header {
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 768px) {
  .lovio-modal__header {
    margin-bottom: 12px;
  }
}

.lovio-modal__header h2 {
  color: var(--black, #14223d);
  text-align: center;
  font-family: Montserrat;
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .lovio-modal__header h2 {
    font-size: 32px;
  }
}

.lovio-modal__header p {
  color: var(--grey, #475a6b);
  text-align: center;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  max-width: 560px;
}

.lovio-modal__social {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .lovio-modal__social {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 22px;
  }
}

.lovio-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 5px 10px;
  border-radius: 100px;
  background: var(--white, #fff);
  box-shadow: 0 0 20px 0 #ebebeb;
  cursor: pointer;
  color: var(--black, #14223d);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  transition: all 0.4s;
  border: 1px solid transparent;
}

@media (max-width: 768px) {
  .lovio-social {
    width: 310px;
  }
}

.lovio-social:active {
  transform: translateY(1px);
}

.lovio-social:hover {
  box-shadow: 0 0 20px 0 #ebebeb;
  border: 1px solid var(--black, #14223d);
}

.lovio-social .lovio-social__icon {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lovio-social--google .lovio-social__icon svg {
  width: 46px;
  height: 46px;
}

.lovio-modal__sep {
  position: relative;
  text-align: center;
  color: var(--black, #14223d);
  text-align: center;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .lovio-modal__sep {
    font-size: 14px;
  }
}

.lovio-modal__sep::before,
.lovio-modal__sep::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20%;
  border-top: 1px solid #dfdfdf;
}

.lovio-modal__sep::before {
  left: 0;
}

.lovio-modal__sep::after {
  right: 0;
}

.lovio-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .lovio-form__row {
    gap: 10px;
    margin-bottom: 15px;
  }
}

.lovio-form__fieldset {
  border: 0;
  padding: 0;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .lovio-form__fieldset {
    margin-bottom: 15px;
  }
}

.lovio-form__legend {
  color: #14223d;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 10px;
}

.lovio-form__fieldset-inputs {
  display: flex;
  align-items: center;
  gap: 30px;
}

.lovio-input {
  border-radius: 12px;
  border: 1px solid var(--grey, #475a6b);
  padding: 15px 20px;
  color: var(--grey, #475a6b);
  font-family: Montserrat;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  background: #fff;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .lovio-input {
    font-size: 18px;
  }
}

.lovio-input::placeholder {
  color: var(--grey, #475a6b);
  font-family: Montserrat;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media screen and (max-width: 768px) {
  .lovio-input::placeholder {
    font-size: 18px;
  }
}

.lovio-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
}

/* Прячем нативный радио-инпут */
.lovio-checkbox input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Обертка с текстом + псевдо-иконка слева */
.lovio-checkbox > span {
  position: relative;
  padding-left: 28px; /* место под иконку */
}

/* Пустой квадрат (не выбран) */
.lovio-checkbox > span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg%20width='20'%20height='20'%20viewBox='0%200%2020%2020'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3E%3Crect%20x='1'%20y='1'%20width='18'%20height='18'%20rx='1'%20stroke='%23475A6B'%20stroke-width='2'/%3E%3C/svg%3E");
}

/* Квадрат с галочкой (выбран) */
.lovio-checkbox input[type="radio"]:checked + span::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width='20'%20height='20'%20viewBox='0%200%2020%2020'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3E%3Crect%20x='1'%20y='1'%20width='18'%20height='18'%20rx='1'%20stroke='%23475A6B'%20stroke-width='2'/%3E%3Cpath%20d='M16.1956%205.55966C15.5903%204.95668%2014.6065%204.95668%2014.0011%205.55966L8.41515%2011.1457L5.9981%208.72861C5.69533%208.42584%205.29868%208.27456%204.90203%208.27456C4.50303%208.27456%204.10638%208.42584%203.8036%208.72861C3.19828%209.33394%203.19828%2010.3178%203.8036%2010.9231L7.31886%2014.4384C7.61245%2014.7296%207.99993%2014.8924%208.41493%2014.8924C8.82994%2014.8924%209.21976%2014.7296%209.51336%2014.4384L16.1954%207.75394C16.801%207.15096%2016.801%206.16499%2016.1956%205.55966Z'%20fill='%23475A6B'/%3E%3C/svg%3E");
}

/* (опционально) hover-состояние */
.lovio-checkbox:hover > span::before {
  filter: brightness(0.9);
}

.lovio-input:focus {
  outline: none;
  border-color: #dd8592;
  box-shadow: 0 0 0 3px rgba(221, 133, 146, 0.18);
}

.lovio-input--full {
  grid-column: 1 / -1;
}

.lovio-modal__legal {
  margin-top: 15px;
  color: #14223d;
  text-align: center;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 18px */
}

.lovio-modal__legal a {
  color: #dd8592;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  text-decoration: none;
}

.lovio-modal__legal a:hover {
  text-decoration: underline;
}

.lovio-modal__hint {
  color: var(--grey, #475a6b);
  text-align: center;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.lovio-link {
  color: var(--grey, #475a6b);
  text-align: center;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration: underline;
}

/* account */
.account {
  padding: 50px 0;
}

.account-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.account__banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 950px;
  width: 100%;
  border-radius: 20px;
  background: var(--light-pink, #fff4f5);
  padding: 48px 40px;
  position: relative;
  background-image: url(../image/form-banner.png);
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .account__banner {
    padding: 60px 25px;
  }
}

.account__banner-title {
  margin-bottom: 10px;
  color: var(--black, #14223d);
  text-align: center;
  font-family: Montserrat;
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

@media screen and (max-width: 768px) {
  .account__banner-title {
    font-size: 32px;
    max-width: 300px;
  }
}

.account__banner-text {
  color: var(--grey, #475a6b);
  text-align: center;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.product-form__second-step-upload-wrapper {
  max-width: 950px;
  width: 100%;
}

.account__content {
  display: flex;
  gap: 20px;
  max-width: 950px;
  width: 100%;
  margin-bottom: 20px;
}

@media screen and (max-width: 1000px) {
  .account__content {
    flex-direction: column;
    gap: 30px;
  }
}

.account__content-left {
  border-radius: 20px;
  background: var(--white, #fff);
  box-shadow: 0 0 20px 0 #ebebeb;
  padding: 70px 60px;
}

@media screen and (max-width: 768px) {
  .account__content-left {
    padding: 70px 30px;
  }
}

.account__content-left-title {
  color: var(--black, #14223d);
  text-align: center;
  font-family: Montserrat;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 17px;
}

.account__content-left-list {
  display: flex;
  flex-direction: column;
}

.account__content-left-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #475a6b;
  padding: 10px 0;
}

.account__content-left-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.account__content-left-list li p {
  color: var(--grey, #475a6b);
  text-align: center;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.account__content-left-list li span {
  color: var(--black, #14223d);
  text-align: right;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.account__content-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 422px;
  width: 100%;
}

@media screen and (max-width: 1000px) {
  .account__content-right {
    max-width: 100%;
  }
}

.account__content-right-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 12px;
  background: var(--light-green, #b8dce1);
  box-shadow: 0 0 20px 0 #ebebeb;
  height: 112px;
  padding: 10px 30px 10px 12px;
}

.account__content-right-item-title {
  color: var(--black, #14223d);
  font-family: Montserrat;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.account__content-right-item-button {
  background: none;
  border: none;
  width: 46px;
  height: 46px;
  cursor: pointer;
  transition: all 0.4s;
}

.account__content-right-item-button:hover {
  opacity: 0.7;
}

.account__next {
  padding: 15px 100px;
  border-radius: 100px;
  background: #dd8592;
  color: var(--white, #fff);
  text-align: center;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border: 2px solid #dd8592;
  transition: all 0.4s;
  cursor: pointer;
}

.account__next:hover {
  background: transparent;
  color: #dd8592;
}

.lovio-modal__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 100px;
  background: #dd8592;
  padding: 15px 10px;
  gap: 10px;
  color: var(--white, #fff);
  text-align: center;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border: 2px solid #dd8592;
  transition: all 0.4s;
  cursor: pointer;
  margin: 0 auto;
  margin-bottom: 10px;
  max-width: 300px;
}

@media screen and (max-width: 768px) {
  .lovio-modal__button {
    font-size: 16px;
    max-width: 100%;
  }
}

@media screen and (max-width: 500px) {
  .lovio-modal__button {
    font-size: 14px;
  }
}

.lovio-modal__button:hover {
  color: #dd8592;
  background: transparent;
}

.site-main {
  padding: 32px 0px;
}

.site-main h1 {
  margin-bottom: 32px;
}

/* Base typography for Privacy page content */
.main-privacy .entry-header .entry-title {
  margin: 0 0 1.25rem;
  line-height: 1.15;
  font-weight: 700;
  font-size: clamp(1.5rem, 1.1rem + 1vw, 2rem);
}

.main-privacy .entry-content {
  font-size: 1rem;
  line-height: 1.7;
  color: #14223d;
}

/* Vertical rhythm for common blocks */
.main-privacy .entry-content > * + * {
  margin-top: 1rem;
}

/* Paragraphs */
.main-privacy .entry-content p {
  margin: 0;
}

/* Headings */
.main-privacy .entry-content h1,
.main-privacy .entry-content h2,
.main-privacy .entry-content h3,
.main-privacy .entry-content h4,
.main-privacy .entry-content h5,
.main-privacy .entry-content h6 {
  margin: 1.5rem 0 0.75rem;
  line-height: 1.25;
  font-weight: 700;
}

.main-privacy .entry-content h1 {
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
}

.main-privacy .entry-content h2 {
  font-size: clamp(1.375rem, 1.1rem + 0.8vw, 1.75rem);
}

.main-privacy .entry-content h3 {
  font-size: clamp(1.25rem, 1.05rem + 0.6vw, 1.5rem);
}

.main-privacy .entry-content h4 {
  font-size: 1.125rem;
}

.main-privacy .entry-content h5 {
  font-size: 1rem;
}

.main-privacy .entry-content h6 {
  font-size: 0.9375rem;
}

/* Links */
.main-privacy .entry-content a {
  color: #0a6cf1;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.main-privacy .entry-content a:hover {
  text-decoration-thickness: 2px;
}

/* Lists */
.main-privacy .entry-content ul,
.main-privacy .entry-content ol {
  padding-left: 1.25rem;
  margin: 0.75rem 0 0;
}

.main-privacy .entry-content ul {
  list-style: disc;
}

.main-privacy .entry-content ul ul {
  list-style: circle;
}

.main-privacy .entry-content ul ul ul {
  list-style: square;
}

.main-privacy .entry-content ol {
  list-style: decimal;
}

.main-privacy .entry-content li {
  margin: 0.35rem 0;
}

/* Definition lists */
.main-privacy .entry-content dl {
  margin: 1rem 0 0;
}

.main-privacy .entry-content dt {
  font-weight: 600;
}

.main-privacy .entry-content dd {
  margin: 0.25rem 0 0.75rem 1rem;
}

/* Blockquote */
.main-privacy .entry-content blockquote {
  margin: 1rem 0 0;
  padding: 0.75rem 1rem;
  border-left: 3px solid #e5e7eb;
  background: #f8fafc;
  color: #0f172a;
}

.main-privacy .entry-content blockquote p:last-child {
  margin: 0;
}

/* Code & pre */
.main-privacy .entry-content code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", monospace;
  font-size: 0.9375rem;
  padding: 0.1rem 0.3rem;
  background: #f3f4f6;
  border-radius: 4px;
}

.main-privacy .entry-content pre {
  margin: 1rem 0 0;
  padding: 0.875rem 1rem;
  overflow: auto;
  background: #0b1220;
  color: #e5e7eb;
  border-radius: 8px;
  line-height: 1.6;
}

.main-privacy .entry-content pre code {
  background: transparent;
  padding: 0;
  color: inherit;
}

/* Tables */
.main-privacy .entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 0;
  font-size: 0.9375rem;
}

.main-privacy .entry-content th,
.main-privacy .entry-content td {
  padding: 0.6rem 0.75rem;
  border: 1px solid #e5e7eb;
  text-align: left;
}

.main-privacy .entry-content thead th {
  background: #f3f4f6;
  font-weight: 600;
}

/* Images & figures */
.main-privacy .entry-content img,
.main-privacy .entry-content video {
  max-width: 100%;
  height: auto;
}

.main-privacy .entry-content figure {
  margin: 1rem 0 0;
}

.main-privacy .entry-content figcaption {
  margin-top: 0.4rem;
  font-size: 0.875rem;
  color: #64748b;
  text-align: center;
}

/* Horizontal rule */
.main-privacy .entry-content hr {
  height: 1px;
  border: 0;
  background: #e5e7eb;
  margin: 1.25rem 0 0;
}

/* WP alignment helpers */
.main-privacy .entry-content .alignleft {
  float: left;
  margin: 0.25rem 1rem 0.75rem 0;
}

.main-privacy .entry-content .alignright {
  float: right;
  margin: 0.25rem 0 0.75rem 1rem;
}

.main-privacy .entry-content .aligncenter {
  display: block;
  margin: 0.75rem auto 0;
  text-align: center;
}

/* Pagination inside content */
.main-privacy .page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.main-privacy .page-links a,
.main-privacy .page-links span {
  padding: 0.35rem 0.6rem;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
}

/* Small screens polish */
@media (max-width: 640px) {
  .main-privacy .entry-content {
    font-size: 0.9875rem;
  }

  .main-privacy .entry-content ul,
  .main-privacy .entry-content ol {
    padding-left: 1rem;
  }

  .main-privacy .entry-content .alignleft,
  .main-privacy .entry-content .alignright {
    float: none;
    margin: 0.75rem 0 0;
  }
}

@media screen and (max-width: 1100px) {
  .header_menu {
    display: none;
  }
}

.entry-content tbody tr:nth-child(odd),
.entry-content thead th {
  background: transparent !important;
}

@media screen and (max-width: 768px) {
  .woocommerce-order-pay .site-main > .container {
    padding: 0 !important;
  }
}

.woocommerce-order-pay .entry-header {
  display: none;
}

.woocommerce-order-pay .entry-content {
  max-width: 100% !important;
}

.woocommerce-order-pay .entry-content .woocommerce-error {
  display: none;
}

.lovio-opay__grid {
  display: flex;
  gap: 20px;
}

@media screen and (max-width: 1100px) {
  .lovio-opay__grid {
    gap: 45px;
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) {
  .lovio-opay__grid {
    display: block;
  }
}
.lovio-opay__left {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .lovio-opay__left {
    padding: 15px;
    padding-top: 0;
    background: #fff;
  }
}

.lovio-opay__right {
  padding: 30px 25px;
  border-radius: 12px;
  /* border: 1px solid rgba(221, 133, 146, 0.50); */
  background: #efefef;
  max-width: 570px;
  width: 100%;
  height: fit-content;
  position: sticky;
  top: 30px;
  flex-shrink: 0;
}

@media screen and (max-width: 1100px) {
  .lovio-opay__right {
    position: static;
    max-width: 100%;
    border-radius: 0;
  }
}

@media screen and (max-width: 768px) {
  .lovio-opay__right {
    padding: 30px 20px;
  }
}

@media screen and (max-width: 400px) {
  .lovio-opay__right {
    padding: 30px 15px;
  }
}

.lovio-opay__top {
  display: flex;
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .lovio-opay__top {
    gap: 10px;
  }
}

.lovio-opay__right-image {
  width: 80px;
  height: 80px;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  object-fit: cover;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .lovio-opay__right-image {
    width: 60px;
    height: 60px;
  }
}

.lovio-opay__right-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .lovio-opay__right-content {
    margin-bottom: 20px;
  }
}

.lovio-opay__summary-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 15px;
}

.lovio-opay__summary-title-mobile {
  display: none;
}

@media screen and (max-width: 768px) {
  .lovio-opay__summary-title {
    display: none;
  }

  .lovio-opay__summary-title-mobile {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 20px;
  }
}

.lovio-opay__summary-title h3 {
  color: var(--black, #14223d);
  font-family: Montserrat;
  font-size: 20px !important;
  font-style: normal;
  font-weight: 700 !important;
  line-height: normal !important;
  margin: 0 !important;
}

@media screen and (max-width: 768px) {
  .lovio-opay__summary-title-mobile h3 {
    font-size: 18px !important;
    color: var(--black, #14223d);
    font-family: Montserrat;
    font-style: normal;
    font-weight: 700 !important;
    line-height: normal !important;
    margin: 0 !important;
  }
}

.lovio-opay__summary-price {
  color: #475a6b;
  text-align: right;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

@media screen and (max-width: 768px) {
  .lovio-opay__summary-price {
    font-size: 18px !important;
  }
}

.lovio-opay__summary-meta {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.lovio-opay__summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.lovio-opay__summary-row-price {
  color: var(--black, #14223d);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

@media screen and (max-width: 768px) {
  .lovio-opay__summary-row-price {
    font-size: 14px !important;
  }
}

.lovio-opay__summary-row-content {
  color: var(--black, #14223d);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media screen and (max-width: 768px) {
  .lovio-opay__summary-row-content {
    font-size: 14px !important;
  }
}

.lovio-opay__summary-row-content strong {
  color: var(--black, #14223d);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

@media screen and (max-width: 768px) {
  .lovio-opay__summary-row-content strong {
    font-size: 14px !important;
  }
}

.lovio-opay__summary-row-content-music {
  max-width: 300px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .lovio-opay__summary-row-content-music {
    max-width: 150px;
  }
}

.lovio-opay__summary-row-content-speed {
  display: flex;
  align-items: center;
  gap: 5px;
}

.lovio-opay__summary-row-content-speed span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.lovio-opay__coupon {
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .lovio-opay__coupon {
    margin-bottom: 20px;
  }
}

.lovio-opay__coupon-row {
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.lovio-opay__coupon-row .lovio-opay__input {
  flex: 1;
  background: transparent;
  padding: 15px 20px;
  color: #14223d;
  font-family: Montserrat;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  outline: none;
  border-radius: 12px 0 0 12px;
  border-top: 1px solid var(--grey, #475a6b);
  border-bottom: 1px solid var(--grey, #475a6b);
  border-left: 1px solid var(--grey, #475a6b);
  border-right: 0;
  max-width: 100%;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .lovio-opay__coupon-row .lovio-opay__input {
    font-size: 16px;
  }
}

.lovio-opay__coupon-row .lovio-opay__input::placeholder {
  color: var(--grey, #475a6b);
  font-family: Montserrat;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media screen and (max-width: 768px) {
  .lovio-opay__coupon-row .lovio-opay__input::placeholder {
    font-size: 16px;
  }
}

.lovio-opay__coupon-btn {
  border-radius: 0 12px 12px 0;
  border: 0;
  padding: 15px 20px;
  color: #fff;
  font-family: Montserrat;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  background: rgba(71, 90, 107, 0.5);
  white-space: nowrap;
  transition: background 0.4s ease;
  cursor: default;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .lovio-opay__coupon-btn {
    font-size: 18px;
  }
}

.lovio-opay__coupon-btn.is-active {
  background: #dd8592;
  cursor: pointer;
  pointer-events: all;
}

.lovio-opay__coupon-btn.is-active:hover {
  background: #d4657c;
}

.lovio-opay__totals-row-sum {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .lovio-opay__totals-row-sum {
    margin-bottom: 10px;
  }
}

.lovio-opay__totals-row-sum p {
  color: #000;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

@media screen and (max-width: 768px) {
  .lovio-opay__totals-row-sum p {
    font-size: 16px;
  }
}

.lovio-opay__totals-row-sum span {
  color: #475a6b;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

@media screen and (max-width: 768px) {
  .lovio-opay__totals-row-sum span {
    font-size: 16px;
  }
}

.lovio-opay__totals-row-service {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .lovio-opay__totals-row-service {
    margin-bottom: 15px;
  }
}

.lovio-opay__totals-row-service p {
  color: #000;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 15px;
}

@media screen and (max-width: 768px) {
  .lovio-opay__totals-row-service p {
    font-size: 16px;
    gap: 10px;
  }
}

.lovio-opay__totals-row-service > span {
  color: #475a6b;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

@media screen and (max-width: 768px) {
  .lovio-opay__totals-row-service > span {
    font-size: 16px;
  }
}

.lovio-opay__totals-row--total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.lovio-opay__totals-row--total p {
  color: #000;
  font-family: Montserrat;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.lovio-opay__totals-row--total > span {
  color: #000;
  font-family: Montserrat;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.lovio-opay__tooltip {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: help;
  outline: none;
}

/* сам пузырь */
.lovio-opay__tooltip-bubble {
  position: absolute;
  bottom: 20px;
  left: 20px;
  min-width: 190px;
  max-width: 190px;
  border-radius: 30px 30px 30px 0;
  background: #475a6b;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
  padding: 10px;
  color: #fff;
  text-align: center;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  white-space: normal;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 10;
}

/* показываем при hover/focus */
.lovio-opay__tooltip:hover .lovio-opay__tooltip-bubble,
.lovio-opay__tooltip:focus-visible .lovio-opay__tooltip-bubble {
  opacity: 1;
  visibility: visible;
}

.lovio-opay__vat-note {
  color: var(--grey, #475a6b);
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.lovio-opay__card.lovio-opay__contact {
  margin-bottom: 30px;
  padding: 30px 25px;
  border-radius: 12px;
  background: var(--white, #fff);
  box-shadow: 0 0 20px 0 #ebebeb;
}

@media screen and (max-width: 768px) {
  .lovio-opay__card.lovio-opay__contact {
    padding: 25px 15px;
  }
}

.lovio-opay__card.lovio-opay__contact .lovio-opay__title {
  color: #14223d;
  font-family: Montserrat;
  font-size: 20px !important;
  font-style: normal;
  font-weight: 600 !important;
  line-height: normal !important;
  margin: 0 0 25px 0 !important;
}

@media screen and (max-width: 768px) {
  .lovio-opay__card.lovio-opay__contact .lovio-opay__title {
    margin: 0 0 20px 0 !important;
  }
}

.lovio-opay__field {
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .lovio-opay__field {
    margin-bottom: 15px;
  }
}

.lovio-opay__contact .lovio-opay__input,
.lovio-opay__contact .lovio-opay__textarea {
  border-radius: 12px;
  border: 1px solid var(--grey, #475a6b);
  padding: 15px 20px;
  width: 100%;
  color: var(--grey, #475a6b);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.lovio-opay__contact .lovio-opay__textarea {
  height: 110px;
}

@media screen and (max-width: 768px) {
  .lovio-opay__contact .lovio-opay__input,
  .lovio-opay__contact .lovio-opay__textarea {
    font-size: 16px;
  }
}

.lovio-opay__contact .lovio-opay__input::placeholder,
.lovio-opay__contact .lovio-opay__textarea::placeholder {
  color: var(--grey, #475a6b);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media screen and (max-width: 768px) {
  .lovio-opay__contact .lovio-opay__input::placeholder,
  .lovio-opay__contact .lovio-opay__textarea::placeholder {
    font-size: 16px;
  }
}

.lovio-opay__label {
  color: var(--grey, #475a6b);
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 10px;
}

/* прячем нативный select, но оставляем в форме */
.lovio-select__control {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  border: 0;
  padding: 0;
  margin: 0;
}

/* обёртка кастомного селекта */
.lovio-select {
  position: relative;
  font-family: Montserrat, system-ui, -apple-system, BlinkMacSystemFont,
    sans-serif;
}

/* "закрытый" вид селекта (как инпут) */
.lovio-select__button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border-radius: 12px;
  border: 1px solid var(--grey, #475a6b);
  background: #fff;
  color: #14223d;
  font-family: Montserrat;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  cursor: pointer;
  text-align: left;
}
.lovio-opay__field {
  position: relative;
}
.lovio-opay__field--tel .iti {
  width: 100%;
}
.lovio-opay__field--tel .iti__selected-flag {
  background-color: #efefef;
  border-radius: 12px 0 0 12px;
  padding: 0 20px;
}
.lovio-opay__field--tel .iti--allow-dropdown input {
  padding-left: 92px !important;
}
.lovio-opay__field--tel .iti--container {
  width: 100%;
  left: 0 !important;
  top: 100% !important;
}
.lovio-opay__field--tel .iti__country-list {
  position: relative;
  padding-inline-start: 0;
  border: 0;
  white-space: unset;
  box-shadow: none;
  border: 1px solid var(--grey, #475a6b);
  border-radius: 12px;
}
.lovio-opay__field--tel .iti__country-list::-webkit-scrollbar {
  display: none;
}

@media screen and (max-width: 768px) {
  .lovio-select__button {
    font-size: 18px;
  }
}

.lovio-select.lovio-select--open .lovio-select__button {
  border: 1px solid var(--grey, #475a6b);
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
}

/* иконка-стрелка внутри кнопки */
.lovio-select__icon {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  transition: transform 0.2s ease;
}

@media screen and (max-width: 768px) {
  .lovio-select__icon {
    right: 20px;
  }
}

/* открытое состояние — вращаем стрелку */
.lovio-select.lovio-select--open .lovio-select__icon {
  transform: translateY(-50%) rotate(180deg);
}

/* дропдаун */
.lovio-select__dropdown {
  position: absolute;
  flex-direction: column;
  gap: 15px;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  border-radius: 0 0 12px 12px;
  border: 1px solid var(--grey, #475a6b);
  border-top: 0;
  max-height: 260px;
  overflow-y: auto;
  z-index: 20;
  padding: 15px 20px;
  display: none;
}

/* когда открыт */
.lovio-select.lovio-select--open .lovio-select__dropdown {
  display: flex;
}

/* внутренняя разделительная линия сверху, как на скрине */
.lovio-select__dropdown::before {
  content: "";
  display: block;
  height: 1px;
  background: rgba(142, 142, 142, 0.5);
  position: absolute;
  top: 0;
  width: calc(100% - 40px);
}

/* опции */
.lovio-select__option {
  padding: 0;
  width: 100%;
  display: block;
  background: transparent;
  border: none;
  text-align: left;
  color: #14223d;
  font-family: Montserrat;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .lovio-select__option {
    font-size: 18px;
  }
}

.lovio-select__option:hover {
  background: #f5f7fa;
}

.lovio-select__option.is-active {
  font-weight: 600;
}

/* телефон */
.lovio-phone {
  display: flex;
  gap: 10px;
}

.lovio-phone__code {
  min-width: 80px;
  padding: 15px 20px;
  border-radius: 12px;
  border: 1px solid var(--grey, #475a6b);
  background: #fff;
  color: #14223d;
  font-family: Montserrat;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .lovio-phone__code {
    font-size: 18px;
  }
}

.lovio-opay__input--phone {
  flex: 1;
  padding: 15px 20px;
  border-radius: 12px;
  border: 1px solid var(--grey, #475a6b);
  color: #475a6b;
  font-family: Montserrat;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media screen and (max-width: 768px) {
  .lovio-opay__input--phone {
    font-size: 18px;
  }
}

.lovio-opay__input--phone::placeholder {
  color: #475a6b;
  font-family: Montserrat;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media screen and (max-width: 768px) {
  .lovio-opay__input--phone::placeholder {
    font-size: 18px;
  }
}

.lovio-opay__actions {
  padding-bottom: 45px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(142, 142, 142, 0.77);
}

@media screen and (max-width: 768px) {
  .lovio-opay__actions {
    padding-bottom: 30px;
  }
}

.lovio-opay__submit {
  display: flex !important;
  height: 56px;
  padding: 15px 20px !important;
  justify-content: center;
  align-items: center;
  border-radius: 100px !important;
  background: #dd8592 !important;
  border: 1px solid #dd8592 !important;
  color: var(--white, #fff) !important;
  text-align: center;
  font-family: Montserrat;
  font-size: 18px !important;
  font-style: normal;
  font-weight: 500 !important;
  line-height: normal !important;
  transition: all 0.4s;
  max-width: 100%;
}

.lovio-opay__submit:hover {
  background: #fff !important;
  color: #dd8592 !important;
}

.lovio-opay__footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

@media screen and (max-width: 768px) {
  .lovio-opay__footer-links {
    gap: 15px;
  }
}

.lovio-opay__footer-links a {
  color: var(--black, #14223d) !important;
  text-align: center;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration: underline;
}

.lovio-opay__time {
  margin-bottom: 30px;
}

.lovio-opay__time__title {
  color: var(--black, #14223d);
  font-family: Montserrat;
  font-size: 22px !important;
  font-style: normal;
  font-weight: 600 !important;
  line-height: normal !important;
  margin-bottom: 20px;
}

.lovio-opay__time-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.lovio-opay__time-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 20px 25px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 0 20px 0 #ebebeb;
  border: 1px solid #fff;
}

@media screen and (max-width: 768px) {
  .lovio-opay__time-item {
    padding: 20px;
    gap: 20px;
  }
}

.lovio-opay__time-item.active {
  border: 1px solid #dd8592;
  background: #fff4f5;
}

.lovio-opay__time-item p {
  color: var(--black, #14223d);
  font-family: Montserrat;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 10px;
}

@media screen and (max-width: 768px) {
  .lovio-opay__time-item p {
    font-size: 18px;
    gap: 5px;
  }
}

.lovio-opay__time-item span {
  color: var(--black, #14223d);
  font-family: Montserrat;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media screen and (max-width: 768px) {
  .lovio-opay__time-item span {
    font-size: 18px;
  }
}

.woocommerce-message {
  display: none;
}

/* Список платёжек как вертикальный стек */
.lovio-opay__payment .wc_payment_methods.payment_methods {
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .lovio-opay__payment .wc_payment_methods.payment_methods {
    gap: 15px;
  }
}

/* Каждый метод оплаты */
.lovio-opay__payment .wc_payment_method {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

/* Прячем дефолтный radio */
.lovio-opay__payment .wc_payment_method input.input-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Карточка-лейбл, выглядит как блок */
.lovio-opay__payment .wc_payment_method > label {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  cursor: pointer;
  border-radius: 12px;
  border: 1px solid transparent;
  background: #ffffff;
  padding: 25px;
  color: #14223d;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  position: relative;
  box-shadow: 0 0 20px 0 #ebebeb;
}

@media screen and (max-width: 768px) {
  .lovio-opay__payment .wc_payment_method > label {
    padding: 20px;
    font-size: 18px;
  }
}

.lovio-opay__payment .wc_payment_method > label img {
  margin-left: auto !important;
}

/* Левая часть: кружок + текст */
.lovio-opay__payment .wc_payment_method > label::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #d9d9d9;
  flex-shrink: 0;
  margin-right: 10px;
}

/* Внутренний тёмный кружок (по умолчанию скрыт) */
.lovio-opay__payment .wc_payment_method > label::after {
  content: "";
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #14223d;
  opacity: 0;
  transition: opacity 0.15s ease;
}

@media screen and (max-width: 768px) {
  .lovio-opay__payment .wc_payment_method > label::after {
    left: 23px;
  }
}

/* Когда метод выбран — показываем внутренний круг и подчёркиваем карточку */
.lovio-opay__payment
  .wc_payment_method
  input.input-radio:checked
  + label::after {
  opacity: 1;
}

.lovio-opay__payment .wc_payment_method input.input-radio:checked + label {
  border-radius: 12px 12px 0 0;
  border: 1px solid rgba(142, 142, 142, 0.5);
  border-bottom: none;
  background: var(--white, #fff);
  box-shadow: 0 0 20px 0 #ebebeb;
}

.lovio-opay__card.lovio-opay__payment .lovio-opay__title {
  color: var(--black, #14223d);
  font-family: Montserrat;
  font-size: 22px !important;
  font-style: normal;
  font-weight: 700 !important;
  line-height: normal !important;
  margin: 0 0 10px 0 !important;
}

@media screen and (max-width: 768px) {
  .lovio-opay__card.lovio-opay__payment .lovio-opay__title {
    font-size: 20px !important;
  }
}

.lovio-opay__card.lovio-opay__payment .lovio-opay__text {
  color: var(--grey, #475a6b);
  font-family: Montserrat;
  font-size: 16px !important;
  font-style: normal;
  font-weight: 500 !important;
  line-height: normal !important;
}

@media screen and (max-width: 768px) {
  .lovio-opay__card.lovio-opay__payment .lovio-opay__text {
    font-size: 16px !important;
  }
}

.lovio-opay__card.lovio-opay__payment .woocommerce-checkout-payment {
  background: transparent !important;
}

.lovio-opay__card.lovio-opay__payment .place-order {
  display: none !important;
}

.lovio-opay__card.lovio-opay__payment .payment_box {
  margin: 0 !important;
  padding: 25px !important;
  border-radius: 0 0 12px 12px !important;
  border: 1px solid rgba(142, 142, 142, 0.5) !important;
  border-top: none !important;
  background: var(--white, #fff) !important;
  box-shadow: 0 0 20px 0 #ebebeb !important;
}

@media screen and (max-width: 768px) {
  .lovio-opay__card.lovio-opay__payment .payment_box {
    padding: 20px !important;
  }
}

.lovio-opay__card.lovio-opay__payment .payment_box::before {
  display: none !important;
}

.lovio-opay__card.lovio-opay__payment .payment_box::after {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% - 50px);
  height: 1px;
  background: rgba(71, 90, 107, 0.5);
  top: 0;
  left: 25px;
}

@media screen and (max-width: 768px) {
  .lovio-opay__card.lovio-opay__payment .payment_box::after {
    left: 20px;
  }
  .home-how__link,
  .home-hero__content-link-mobile,
  .home-product__content-link,
  .home-faq__link {
    padding: 15px 20px;
    width: 100%;
  }
  .page-privacy {
    padding: 0 24px;
  }
}

.lovio-opay__card.lovio-opay__payment .payment_box .wc-payment-form {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}
.payment_method_stripe .p-GridCell p {
  display: none !important;
}
.loader-wrap {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 111;
  background: rgba(255, 255, 255, 0.6);
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.loader-wrap.active {
  display: flex;
}
.loader {
  width: 50px;
  padding: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #dd8592;
  --_m: conic-gradient(#0000 10%, #000), linear-gradient(#000 0 0) content-box;
  -webkit-mask: var(--_m);
  mask: var(--_m);
  -webkit-mask-composite: source-out;
  mask-composite: subtract;
  animation: l3 1s infinite linear;
}
@keyframes l3 {
  to {
    transform: rotate(1turn);
  }
}

/* input:required:invalid {
  border-color: #EB001B;
}
input:required:invalid::placeholder{
  color: #EB001B;
} */
input.show-error:required:invalid {
  border-color: #eb001b !important;
}

input.show-error:required:invalid::placeholder {
  color: #eb001b !important;
}

.lovio-opay__right-accordion {
  padding: 24px 15px;
  display: none;
  align-items: center;
  justify-content: space-between;
  border-top: 2px solid #aaaaaa;
  box-shadow: 0px 0px 20px #ebebeb;
  border-radius: 12px 12px 0px 0px;
}
.lovio-opay__right-accordion svg {
  transition: all ease 0.3s;
}
.lovio-opay__right-accordion.active svg {
  transform: scale(-1);
  transition: all ease 0.3s;
}
.lovio-opay__right-accordion p {
  display: flex;
  gap: 10px;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #14223d;
}
.lovio-opay__right-accordion span {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
}
.lovio-opay__right-mob {
  display: none;
}
.lovio-opay__actions-mob {
  display: none;
}
.lovio-opay__footer-links-mob {
  display: none;
}

@media (max-width: 767px) {
  .lovio-opay__right-accordion {
    display: flex;
  }
  .lovio-opay__actions {
    overflow: hidden;
    position: absolute;
    visibility: hidden;
    width: 0;
    height: 0;
    opacity: 0;
  }
  .lovio-opay__footer-links {
    display: none;
  }
  .lovio-opay__actions-mob,
  .lovio-opay__footer-links-mob {
    display: block;
  }
  .lovio-opay__footer-links-mob {
    padding: 15px;
    display: flex;
    gap: 15px;
  }
  .lovio-opay__actions-mob {
    padding: 15px;
    position: static;
    overflow: visible;
    width: auto;
    height: auto;
    opacity: 1;
    visibility: visible;
  }
  .lovio-opay__submit-mob {
    display: flex !important;
    height: 56px;
    padding: 15px 20px !important;
    justify-content: center;
    align-items: center;
    border-radius: 100px !important;
    background: #dd8592 !important;
    border: 1px solid #dd8592 !important;
    color: var(--white, #fff) !important;
    text-align: center;
    font-family: Montserrat;
    font-size: 18px !important;
    font-style: normal;
    font-weight: 500 !important;
    line-height: normal !important;
    transition: all 0.4s;
    max-width: 100%;
  }
}
.podgotovka {
  padding: 60px 0;
}
.podgotovka .home-how__title span {
  color: #b85462;
}
.podgotovka .home-how__text {
  margin-top: 30px;
}
.podgotovka-row {
  margin-top: 30px;
  display: flex;
  gap: 10px;
}
.podgotovka-item {
  position: relative;
  width: 20%;
  height: 216px;
  border-radius: 5px;
  overflow: hidden;
}
.podgotovka-item img{
  height: 100%;
  object-fit: cover;
}
.podgotovka-item__icon {
  position: absolute;
  bottom: 12px;
  right: 12px;
}
@media (max-width: 992px) {
  .podgotovka-row {
    flex-wrap: wrap;
  }
  .podgotovka-item{
    height: auto;
  }
  .podgotovka-item:nth-child(1) {
    width: 100%;
    height: 210px;
  }
  .podgotovka-item:nth-child(1) .podgotovka-item__icon {
    bottom: 12px;
    right: 12px;
  }
  .podgotovka-item:nth-child(1) .podgotovka-item__icon svg {
    width: 20px;
    height: 20px;
  }
  .podgotovka-item__icon {
    bottom: 6px;
    right: 6px;
    display: flex;
  }
  .podgotovka-item__icon svg {
    width: 12px;
    height: 12px;
  }
  .podgotovka-item img {
    width: 100%;
  }
  .podgotovka-item {
    width: calc(25% - 8px);
  }
  .podgotovka .home-how__title span {
    display: block;
  }
  .podgotovka .home-how__text {
    margin-top: 15px;
  }
  .podgotovka .home-how__text br {
    display: none;
  }
}
.product-main__content-radio {
  margin-top: 15px;
}
.product-main__content-radio .input-wrap {
  margin-bottom: 15px;
  width: 100%;
  box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.1);
  border: 2px solid #d9d9d9;
  border-radius: 12px;
  padding: 24px 30px;
}
.product-main__content-radio .input-wrap.active {
  background: #fff4f5;
  border: 2px solid #dd8592;
  box-shadow: 0 0 20px 0 #ebebeb;
}
.product-main__content-radio .input-wrap.open .variation-list-title svg {
  transform: scale(-1);
}
.product-main__content-radio .input-wrap.open .variation-list {
  display: block;
}
.product-main__content-radio .input-wrap label {
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  width: 100%;
  padding-bottom: 16px;
}
.product-main__content-radio .input-wrap label .icon {
  margin-right: 16px;
}
.product-main__content-radio .input-wrap label .price {
  margin-left: auto;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  color: #475a6b;
}
.variation-title {
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  color: #14223d;
}
.variation-date {
  margin-top: 6px;
  font-weight: 400;
  font-size: 16px;
  color: #14223d;
}
.product-main__content-radio label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #d9d9d9;
  display: none;
}
.product-main__content-radio label::after {
  content: "";
  position: absolute;
  display: none;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2a2a2a;
  display: none;
}
.variation-acf-content {
  padding-top: 16px;
  border-top: 1px solid #d9d9d9;
}
.variation-list-title {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 400;
  font-size: 18px;
  color: #475a6b;
}
.variation-list-title svg {
  transition: all ease 0.3s;
}
.variation-list-title.active svg {
  transform: scale(-1);
  transition: all ease 0.3s;
}
.variation-list {
  display: none;
  margin-top: 16px;
}

.variation-list li {
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  color: #14223d;
}
.variation-list li:last-child {
  margin-bottom: 0;
}
.product-main__content-radio input[type="radio"]:checked + label::after {
  display: none;
}
.product-main__content-radio input[type="radio"] {
  display: none;
  position: absolute;
  visibility: hidden;
  position: 0;
  width: 0;
  height: 0;
}
.product-main__content-radio-title {
  margin-top: 14px;
  font-weight: 700;
  font-size: 16px;
  color: #14223d;
}
.product-main__home .product-main__content-variant-images-item.is-active {
  box-shadow: 0 0 15px 0 #b85462;
}
.product-main__home .product-main__content-add {
  margin-top: 30px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding-left: 45px;
  padding-right: 45px;
  background: #0e9aa0;
  border: 2px solid #0e9aa0;
  width: 100%;
}
.product-main__home .product-main__content-add .btn-glow {
  width: calc(100% + 8px);
  height: 60px;
}
.product-main__home .product-main__content-delivery {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  max-width: 100%;
  font-size: 16px;
}
.product-main__home
  .product-main__content-delivery.product-main__content-delivery-second {
  max-width: 100%;
  text-align: left;
}
.product-main__home .product-main__content-delivery span {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
}
.product-main__faq {
  margin-top: 30px;
}
.product-main__faq-item {
  margin-bottom: 15px;
  border: 1px solid #d9d9d9;
  padding: 15px 30px;
  box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.1);
  background: #fff;
}
.product-main__faq-item.open .product-main__faq-top svg {
  transform: scale(-1);
  transition: all ease 0.3s;
}
.product-main__faq-item.active .product-main__faq-top svg {
  transform: scale(-1);
  transition: all ease 0.3s;
}
.product-main__faq-top svg {
  transition: all ease 0.3s;
}
.product-main__faq-item:last-child {
  margin-bottom: 0;
}
.product-main__faq-top {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  font-size: 18px;
  color: #14223d;
}
.product-main__faq-content {
  display: none;
  padding-top: 15px;
  font-weight: 400;
  font-size: 18px;
  color: #475a6b;
}
.product-main__modal-btn {
  cursor: pointer;
  margin-top: 45px;
  display: flex;
  align-items: center;
  box-shadow: 0 0 15px 0 rgba(20, 34, 61, 0.15);
  background: #dd8592;
  border-radius: 15px;
  padding: 15px 30px;
  height: 48px;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  color: #fff;
  gap: 15px;
}
.product-main__modal-btn svg:last-child {
  margin-left: auto;
}
.modal-info {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 1111;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 34, 61, 0.6);
  display: none;
}
.modal-info__body {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #d9d9d9;
  border-radius: 30px;
  padding: 30px;
  max-width: 752px;
  width: 100%;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
  background: #fff;
}
.modal-info__body h3 {
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 25px;
  text-align: center;
  color: #14223d;
}
.modal-info__body p {
  margin-bottom: 15px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #14223d;
}
.modal-info__body p:last-child {
  margin-bottom: 0;
}
.modal-info__close {
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
}
.product-progress {
  margin-top: 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-progress::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 6px;
  background: #ebebeb;
}
.product-progress::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 70px;
  height: 6px;
  background: #dd8592;
  z-index: 1;
}
.product-progress__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid #dd8592;
  font-weight: 500;
  font-size: 18px;
  color: #14223d;
  position: relative;
  z-index: 2;
}
.product-progress__item:first-child {
  color: #fff;
  background: #dd8592;
}
.header-contact__wrap {
  position: relative;
}
.header-contact__wrap.open .header-contact__menu {
  display: block;
}
.header-contact__wrap.open .header-contact__btn {
  color: #fff;
}
.header-contact__wrap.open .header-contact__btn span {
  transform: translateY(7px);
}

.header-contact__wrap.open .header-contact__btn::before {
  display: block;
}
.header-contact__menu {
  display: none;
  position: absolute;
  top: 48px;
  right: -1px;
  z-index: 22;
  border: 1px solid rgba(71, 90, 107, 0.5);
  border-radius: 30px 0 30px 30px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  background: #fff;
  padding: 30px;
  width: 400px;
}
.header-contact__menu a {
  margin-bottom: 18px;
  display: flex;
  gap: 15px;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #14223d;
  text-decoration: none;
  width: max-content;
}
.header-contact__menu p {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #14223d;
}

.header-contact__btn {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 18px;
  text-align: center;
  color: #475a6b;
  border: 1px solid #475a6b;
  border-radius: 20px;
  padding: 6px 15px;
  height: 34px;
}
.header-contact__btn:hover {
  background: #475a6b;
  color: #fff;
}
.header-contact__btn:hover span {
  color: #fff;
}
.header-contact__btn::before {
  content: "";
  display: none;
  width: 104px;
  height: 48px;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  background: url(../image/header-btn-bg.png) no-repeat;
}
.header-contact__menu-title {
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 22px;
  color: #14223d;
}
.header-contact__menu-mobile {
  position: fixed;
  width: 100%;
  top: 52px;
  left: 0;
  display: none;
  padding: 30px 15px;
  background: #fff;
}
.header-contact__menu-mobile.scroll {
  top: 52px;
}
.header-contact__menu-mobile a {
  margin-bottom: 18px;
  display: flex;
  gap: 15px;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  color: #14223d;
  text-decoration: none;
}
.header-contact__menu-mobile p {
  margin-bottom: 18px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #14223d;
  text-decoration: none;
}
.header_burger svg:nth-child(2) {
  display: none;
}
.header_burger.open svg:nth-child(1) {
  display: none;
}
.header_burger.open svg:nth-child(2) {
  display: block;
}
.mob-phone {
  display: none;
}
@media (max-width: 767px) {
  .product-main__home .product-main__content-add {
    margin-top: 15px;
    width: 100%;
    height: 44px;
    font-size: 16px;
  }
  .product-main__home .product-main__content-add .btn-glow {
    height: 48px;
  }
  .product-main__modal-btn {
    font-size: 14px;
    padding: 15px;
  }
  .product-main__modal-btn svg {
    min-width: max-content;
  }
  .product-main__faq-top {
    font-weight: 500;
    font-size: 16px;
  }
  .product-main__faq-content {
    font-size: 14px;
  }
  .product-main__home {
    padding-top: 45px;
  }
  .product-main__content-radio .input-wrap {
    width: 100%;
  }
  .product-main__content-radio .input-wrap label {
    position: relative;
    padding-bottom: 42px;
  }
  .product-main__content-radio .input-wrap label .price {
    position: absolute;
    right: 0;
    bottom: 9px;
    font-size: 20px;
  }
  .variation-date {
    position: absolute;
    left: 0;
    bottom: 9px;
    font-size: 14px;
  }
  .variation-title {
    font-weight: 600;
    font-size: 16px;
    color: #14223d;
    text-align: left;
  }
  .product-main__content-radio .input-wrap label .icon {
    margin-right: 14px;
  }
  .product-main__content-radio .input-wrap label .icon svg {
    width: 33px;
    height: 33px;
  }
  .product-main__home .product-main__media-thumbs {
    display: none;
  }
  .product-main__home .product-main__content-variant-images-item {
    width: 25%;
    max-width: 100%;
  }
  .product-main__content-variant-images {
    flex-wrap: nowrap;
    gap: 10px;
  }
  .product-main__home .product-main__content-title {
    font-size: 28px;
  }
  .product-main__home .product-main__content-text {
    margin-bottom: 30px;
    font-size: 14px;
  }
  .product-main__content-price {
    font-size: 26px;
    align-items: flex-end;
  }
  .product-progress {
    margin-top: 0;
  }
  .product-progress__item {
    width: 25px;
    height: 25px;
    font-size: 14px;
  }
  .product-progress::before {
    height: 4px;
  }
  .product-progress::after {
    height: 4px;
  }
  .variation-list-title {
    font-size: 14px;
  }
  .variation-list li {
    font-size: 14px;
  }
  .container {
    padding: 0 15px;
  }
  .header-contact__wrap {
    display: none;
  }
  .header_mobile-select {
    display: none;
  }
  .header_right {
    display: none;
  }
  .header-contact__menu-mobile .inline-select .inline-select__button {
    display: block !important;
  }
  .header-contact__menu-mobile .inline-select__list {
    position: absolute !important;
    top: 24px !important;
  }
  .product-main__home .product-main__content-delivery {
    max-width: 100%;
  }
  .product-main__home
    .product-main__content-delivery.product-main__content-delivery-second {
    text-align: center;
  }
  .modal-info__body {
    border-radius: 15px;
    padding: 30px 15px;
    width: 94%;
  }
  .modal-info__body h3 {
    margin-bottom: 24px;
    font-size: 20px;
  }
  .modal-info__body p {
    font-size: 14px;
    line-height: 150%;
  }
  .modal-info__close {
    top: 15px;
    right: 15px;
  }
  .product-main__faq-item {
    padding: 15px;
  }
  .mob-phone {
    display: block;
  }
  .mob-phone a {
    display: flex;
    gap: 5px;
    align-items: center;
    font-weight: 700;
    font-size: 14px;
    line-height: 150%;
    color: #14223d;
    text-decoration: none;
  }
}
.modal-banner {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  background: rgba(20, 34, 61, 0.6);
}
.modal-banner.active {
  display: block;
}
.banner {
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 15px;
  width: 700px;
  height: 350px;
  background: #fff;
}
.banner-close {
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
}
.banner-img {
  width: 280px;
  min-width: 280px;
  height: 350px;
}
.banner-img img {
  width: 100%;
  height: 100%;
}
.banner-content {
  padding: 30px;
}
.banner-title {
  font-weight: 700;
  font-size: 50px;
  line-height: 150%;
  text-align: center;
  color: #0e9aa0;
}
.banner-title span {
  display: block;
  font-size: 25px;
  color: #14223d;
  line-height: normal;
}
.banner-text {
  margin-top: 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #14223d;
}
.banner-field {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  padding: 15px 30px;
  width: 100%;
  height: 56px;
  font-size: 16px;
  font-weight: 500;
  background: #b8dce1;
  white-space: nowrap;
}
.banner-promo {
  font-weight: 700;
  font-size: 20px;
}
.banner-promo.copied {
  color: #dd8592;
}
.banner-promo__btn {
  cursor: pointer;
}
.banner-notice {
  margin-top: 15px;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  text-align: center;
  color: #475a6b;
}
@media (max-width: 768px) {
  .banner {
    max-width: 300px;
    width: 100%;
    height: auto;
    flex-wrap: wrap;
    overflow: hidden;
  }
  .banner-img {
    border-radius: 15px 15px 0 0;
    width: 300px;
    height: 160px;
  }
  .banner-img img {
    object-position: top;
  }
  .banner-content {
    padding: 25px 15px;
  }
  .banner-title {
    font-size: 32px;
    line-height: 150%;
  }
  .banner-title span {
    font-size: 18px;
  }
  .banner-text {
    margin-top: 12px;
    font-size: 14px;
    line-height: 150%;
  }
  .banner-text b {
    display: block;
  }
  .banner-field {
    margin-top: 15px;
    padding: 12px 12px;
    height: 45px;
    border-radius: 100px;
    font-size: 13px;
  }
  .banner-promo {
    font-size: 15px;
  }
  .banner-notice {
    font-size: 12px;
    line-height: 150%;
  }
  .banner-close {
    top: 15px;
    right: 15px;
  }
}
.inline-select__option[data-value="https://lovio-shop.com/en/lovio-2/"]
{
  display: none !important;
}
.scroll-button {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 44px;
  height: 44px;
  background: #14223d;
  border-radius: 50%;
  /* box-shadow: 0 4px 10px rgba(0,0,0,0.2); */
  cursor: pointer;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-button__icon {
  position: absolute;
  z-index: 2;
  display: flex;
}

.progress-ring {
  transform: rotate(-90deg);
  position: absolute;
  top: 0;
  left: 0;
}

.progress-ring__circle {
  fill: none;
  stroke: #fff4f5;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 0;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.15s linear;
}
.progress-ring-2 {
  display: none;
}
@media (max-width: 768px) {
  .scroll-button {
    right: 10px;
    bottom: 28px;
    width: 34px;
    height: 34px;
    transition: all ease 0.3s;
  }
  .progress-ring {
    display: none;
    width: 32px;
    height: 32px;
  }
  .progress-ring.progress-ring-2 {
    display: block;
  }
}
.header-product {
  position: fixed;
  z-index: 999;
  top: -100%;
  left: 0;
  width: 100%;
  height: 90px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
  background: #e7f5f6;
  transition: top 0.3s ease;
}
.header-product__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  height: 100%;
}
.header-product__left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.header-product__img {
  border-radius: 12px;
  width: 60px;
  height: 60px;
  overflow: hidden;
}
.header-product__img img {
  width: 100%;
  height: 100%;
}
.header-product__text p:nth-child(1) {
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  color: #14223d;
}
.header-product__text p:nth-child(2) {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #475a6b;
}
.header-product__right {
  display: flex;
  align-items: center;
  gap: 45px;
}
.header-product__price {
  font-weight: 700;
  font-size: 22px;
  color: #14223d;
}
.header-product__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* border: 2px solid #0e9aa0; */
  border-radius: 100px;
  padding: 0 45px;
  height: 48px;
  background: #0e9aa0;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  color: #fff;
  text-decoration: none;
}
.btn-glow {
  position: absolute;
  z-index: -1;
  overflow: hidden;
  height: 52px;
  width: 193px;
  border-radius: 100px;
}
.btn-glow::before {
  content: "";
  width: 9999px;
  height: 9999px;
  top: 50%;
  left: 50%;
  background-image: conic-gradient(#14223d 0%, #0e9aa0 73.61%);
  background-repeat: no-repeat;
  background-position: 0 0;
  position: absolute;
  transform: translate(-50%, -50%) rotate(0deg);
  z-index: -2;
  animation: glow 5s linear infinite;
}
@keyframes glow {
  100% {
    transform: translate(-50%, -50%) rotate(1turn);
  }
}
.slider-vector {
  display: none;
}
@media (max-width: 767px) {
  .header-product__left {
    display: none;
  }
  .header-product__right {
    width: 100%;
    justify-content: space-between;
  }
  .header-product {
    padding: 0 15px;
    height: 74px;
  }
  .header-product__price {
    font-size: 18px;
  }
  .header-product__btn {
    height: 44px;
    font-size: 16px;
  }
  .btn-glow {
    height: 48px;
    width: 102%;
  }
  .slider-vector {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }
  .home-emotion-wrapper .slider-vector svg {
    position: absolute;
    bottom: -57px;
  }
}
.swiper-backface-hidden .swiper-slide {
  backface-visibility: visible !important;
  transform: none !important;
}
