@charset "UTF-8";
.hover__uderline {
  position: relative;
}
.hover__uderline::before {
  background: #324054;
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: 0;
  height: 2px;
  content: "";
  transition: 0.3s ease;
}
.hover__uderline:hover::before {
  width: 100%;
}

.scrolbar::-webkit-scrollbar {
  width: 2px;
  height: 2px;
}
.scrolbar::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}
.scrolbar::-webkit-scrollbar-thumb {
  background-color: #000000;
  border: 2px solid #555555;
}

.title {
  color: #161617;
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 32.5px */
  text-align: center;
  margin-bottom: 35px;
}

@media (max-width: 575.98px) {
  .title {
    font-size: 20px;
    margin-bottom: 25px;
  }
}
.prodcutInner {
  padding-top: 20px;
  padding-bottom: 50px;
}
.prodcutInner__content {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
}
.prodcutInner__content--name {
  color: #161617;
  text-align: center;
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 39px */
  margin-bottom: 10px;
}
.prodcutInner__content--brend {
  margin-bottom: 25px;
  color: #aaa;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 21px */
  letter-spacing: 0.7px;
}
.prodcutInner__content--brend img {
  max-height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
.prodcutInner__content--info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 25px;
  transition: 0.5s ease;
}
.prodcutInner__content--info.active {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 130;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.prodcutInner__content--info.active .info--text {
  max-width: 80%;
  height: 100%;
  max-height: 80%;
  padding: 30px;
  background: #fff;
  overflow-y: auto;
  animation: max 0.3s linear;
}
@keyframes max {
  0% {
    max-height: 0;
  }
  100% {
    max-height: 80%;
  }
}
.prodcutInner__content--info.active .info--btn {
  flex-direction: column-reverse;
  color: #fff;
  align-items: center;
}
.prodcutInner__content--info.active .info--btn p:nth-child(1) {
  opacity: 0;
}
.prodcutInner__content--info.active .info--btn p:nth-child(2) {
  opacity: 1;
}
.prodcutInner__content--info .info--text {
  color: #161617;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}
.prodcutInner__content--info .info--btn {
  color: #161617;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  text-decoration-line: underline;
  cursor: pointer;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-underline-offset: 3px;
}
.prodcutInner__content--info .info--btn p {
  transition: 0.3s ease;
}
.prodcutInner__content--info .info--btn p:nth-child(1) {
  opacity: 1;
}
.prodcutInner__content--info .info--btn p:nth-child(2) {
  opacity: 0;
}
.prodcutInner__content--add {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}
.prodcutInner__content--add .add__title {
  color: #161617;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
}
.prodcutInner__content--add .add__content {
  display: flex;
  align-items: center;
  gap: 20px;
}
.prodcutInner__content--add .add__input {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.prodcutInner__content--add .add__input .svg {
  position: absolute;
  top: 1px;
  background: #fff;
  padding: 0 7px;
  height: calc(100% - 2px);
  display: flex;
  align-items: center;
  cursor: pointer;
  z-index: 1;
}
.prodcutInner__content--add .add__input .minus {
  left: 3px;
}
.prodcutInner__content--add .add__input .plus {
  right: 3px;
}
.prodcutInner__content--add .add__input input {
  height: 56.8px;
  max-width: 120px;
  border: 1px solid #161617;
  text-align: center;
  outline: none;
}
.prodcutInner__content--add .add__input input::-webkit-inner-spin-button, .prodcutInner__content--add .add__input input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.prodcutInner__content--add .add__input input.invalid {
  border-color: #e81616;
  color: #e81616;
  animation: inputInvalid 0.4s infinite;
}
@keyframes inputInvalid {
  0% {
    transform: translateX(-5px);
  }
  20% {
    transform: translateX(5px);
  }
  40% {
    transform: translateX(-5px);
  }
  60% {
    transform: translateX(5px);
  }
  80% {
    transform: translateX(-5px);
  }
  100% {
    transform: translateX(0);
  }
}
.prodcutInner__content--add .add__favourite {
  cursor: pointer;
}
.prodcutInner__content--add .add__favourite svg {
  width: 26px;
  height: 26px;
}
.prodcutInner__content .share {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: #161617;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
}
.prodcutInner__content .share .shares {
  display: flex;
  align-items: center;
  gap: 0;
}
.prodcutInner__content .share .shares__item:hover svg {
  scale: 1.2;
}
.prodcutInner__content .share .shares svg {
  transition: 0.3s ease;
  width: 0;
}
.prodcutInner__content .share.active .shares {
  gap: 15px;
}
.prodcutInner__content .share.active svg {
  width: 20px;
}
.prodcutInner .add__favourite svg {
  fill: transparent;
  stroke: #161617;
}
.prodcutInner .add__favourite.active svg {
  fill: #161617;
  stroke: transparent;
}

.productInnerImages {
  display: flex;
  gap: 30px;
  width: 100%;
  justify-content: center;
}
.productInnerImages .swiper {
  width: 100%;
  max-height: 50vh;
}
.productInnerImages .swiper img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.productInnerImages .swiper-pagination {
  display: none;
}
.productInnerImages .mySwiper {
  width: 20vw;
}
.productInnerImages .mySwiper img {
  width: 100%;
}
.productInnerImages .swiper-slide-thumb-active {
  opacity: 0.5;
}
.productInnerImages .mySwiper2 {
  width: 80vw;
}
.productInnerImages .swiper-button-next,
.productInnerImages .swiper-button-prev {
  width: 46px;
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #fff;
}
.productInnerImages .swiper-button-next img,
.productInnerImages .swiper-button-prev img {
  width: 18px;
  height: 18px;
}
.productInnerImages .swiper-button-next::after,
.productInnerImages .swiper-button-prev::after {
  display: none;
}

.favourite {
  width: 100%;
  padding: 50px 0 80px;
}
.favourite__notContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.favourite__notContent--text {
  color: #161617;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}
.favourite__notContent--text:nth-child(3) {
  margin-bottom: 25px;
}
.favourite .row {
  row-gap: 30px;
}

.succes {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  padding: 30px;
}
.succes .title {
  margin: 0;
}
.succes .subtitle {
  color: var(--black, #161617);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 39px */
  text-align: center;
}

.placing {
  position: relative;
  padding: 30px 0 70px;
}
.placing .goToFrom {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
  display: none;
  transition: 0.3s ease;
}
.placing .goToFrom.hide {
  opacity: 0;
  pointer-events: none;
}
.placing__content {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.placing .row {
  row-gap: 30px;
}
.placing__form {
  position: sticky;
  width: calc(40% - 15px);
  top: 108px;
  right: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.placing__form .form__title {
  color: #161617;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 33px */
  margin-bottom: 20px;
}
.placing__form input:required {
  box-shadow: none;
  outline: none;
  border-color: initial; /* сброс цвета границы */
  background-color: initial; /* сброс цвета фона */
  color: #161617;
}
.placing__form .input input:invalid ~ label {
  color: #161617;
}
.placing__form .formInput {
  margin-bottom: 30px;
}
.placing__form .formRadioTop {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-bottom: 20px;
}
.placing__form .formRadioTop label {
  position: relative;
  cursor: pointer;
  padding-left: 34px; /* Отступ для метки */
  display: inline-block;
  color: #161617;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
}
.placing__form .formRadioTop label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 26px;
  height: 26px;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 1px solid #161617;
}
.placing__form .formRadioTop input[type=radio]:checked + label:after {
  content: "";
  position: absolute;
  left: 4px; /* Отступ внутри круга */
  top: 50%;
  transform: translate(0%, -50%);
  width: 18px; /* Размер внутреннего круга */
  height: 18px;
  border-radius: 50%; /* Округление */
  background-color: #161617; /* Цвет внутреннего круга */
}
.placing__form .formRadioTop input[type=radio] {
  display: none; /* Скрываем стандартные радиокнопки */
}
.placing__form #addressInput {
  display: flex;
  flex-direction: column;
  margin-bottom: 25px;
}
.placing__form #addressInput label {
  color: #161617;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
}
.placing__form #addressInput input {
  padding: 12px 15px 5px 0;
  color: #161617;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  border: none;
  outline: none;
  border-bottom: 1px solid #d4d4d4;
  transition: 0.3s ease;
}
.placing__form #addressInput input:focus {
  border-bottom: 1px solid #161617;
}
.placing__form .formRadioBottom {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.placing__form .formRadioBottom_title {
  color: #161617;
  font-size: 14px;
  font-weight: 700;
  line-height: 150%; /* 21px */
}
.placing__form .formRadioBottom .formRadioBottom_content {
  display: flex;
  align-items: center;
  gap: 30px;
}
.placing__form .formRadioBottom .formRadioBottom_content label {
  position: relative;
  cursor: pointer;
  padding-left: 34px; /* Отступ для метки */
  display: inline-block;
  color: #161617;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
}
.placing__form .formRadioBottom .formRadioBottom_content label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 26px;
  height: 26px;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 1px solid #161617;
}
.placing__form .formRadioBottom .formRadioBottom_content input[type=radio]:checked + label:after {
  content: "";
  position: absolute;
  left: 4px; /* Отступ внутри круга */
  top: 50%;
  transform: translate(0%, -50%);
  width: 18px; /* Размер внутреннего круга */
  height: 18px;
  border-radius: 50%; /* Округление */
  background-color: #161617; /* Цвет внутреннего круга */
}
.placing__form .formRadioBottom .formRadioBottom_content input[type=radio] {
  display: none; /* Скрываем стандартные радиокнопки */
}
.placing__form .input {
  gap: 0;
}
.placing__form .input label {
  color: #161617;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
}
.placing__form .input input {
  padding: 12px 15px 5px 0;
  color: #161617;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  border: none;
  border-bottom: 1px solid #d4d4d4;
  transition: 0.3s ease;
}
.placing__form .input input:focus {
  border-bottom: 1px solid #161617;
}
.placing__form .conditions {
  padding-top: 30px;
}
.placing__form .conditions h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  color: #161617;
}
.placing__form .conditions_item {
  padding: 20px 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #161617;
}
.placing__form .conditions h4 {
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
  color: #161617;
}
.placing__orders {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: calc(40% - 15px);
}
.placing__orders .order {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 30px;
}
.placing__orders .order__img img {
  min-width: 200px;
  max-width: 200px;
  min-height: 200px;
  max-height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
}
.placing__orders .order__content {
  display: flex;
  flex-direction: column;
}
.placing__orders .order__content--name {
  color: #161617;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 21px */
  letter-spacing: 0.7px;
}
.placing__orders .order__content--brend, .placing__orders .order__content--color, .placing__orders .order__content--amount {
  color: #aaa;
  font-size: 15px;
  font-weight: 400;
  line-height: 150%; /* 22.5px */
  letter-spacing: 0.75px;
  margin-bottom: 8px;
}
.placing__orders .order__content--links {
  display: flex;
  align-items: center;
  gap: 15px;
}
.placing__orders .order__content--link {
  color: #161617;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  letter-spacing: 0.7px;
  cursor: pointer;
  position: relative;
}
.placing__orders .order__content--link.red {
  color: #161617;
}
.placing__orders .order__content--link::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  left: 0;
  height: 2px;
  bottom: -5px;
  background-color: #161617;
  border-radius: 0;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.placing__orders .order__content--link:hover::after {
  -webkit-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  width: 5px;
  left: 50%;
  height: 5px;
  border-radius: 50%;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.placing__orders .order__content--link.red {
  color: #161617;
}
.placing__orders .order__content--link.red::after {
  background: #161617;
}

@media (max-width: 1199.98px) {
  .prodcutInner__content .add__content {
    flex-wrap: wrap;
  }
  .prodcutInner__content .add__input {
    width: 100%;
  }
  .prodcutInner__content .add__input input {
    max-width: 100%;
    width: 100%;
  }
  .placing__form {
    width: calc(50% - 15px);
  }
  .placing__orders {
    width: calc(50% - 15px);
  }
}
@media (max-width: 991.98px) {
  .favourite {
    padding: 30px 0 70px;
  }
  .favourite .row {
    row-gap: 30px;
  }
  .placing {
    padding: 30px 0 50px;
  }
  .placing .goToFrom {
    display: flex;
  }
  .placing__content {
    flex-direction: column;
    align-items: center;
  }
  .placing__form {
    width: 90%;
  }
  .placing__orders {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .prodcutInner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 70px;
  }
  .prodcutInner__content {
    width: 100%;
    max-width: 100%;
  }
  .prodcutInner__content--name {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .prodcutInner__content--brend {
    font-size: 14px;
  }
  .prodcutInner__content--info {
    margin-bottom: 30px;
  }
  .prodcutInner__content--info.active .info--text {
    padding: 15px;
    max-width: 90%;
  }
  .prodcutInner__content--info .info--text {
    font-size: 14px;
  }
  .prodcutInner__content--info .info--btn {
    font-size: 15px;
  }
  .prodcutInner__content--add .add__input input {
    height: 45px;
  }
  .prodcutInner__content--add .add button {
    max-width: 100%;
  }
  .prodcutInner__content--add .add__favourite svg {
    width: 26px;
    height: 26px;
  }
}
@media (max-width: 575.98px) {
  .prodcutInner .container-fluid {
    padding-left: 0;
    padding-right: 0;
  }
  .prodcutInner__content {
    padding-left: 20px;
    padding-right: 20px;
  }
  .prodcutInner__content--info .info--btn {
    font-size: 14px;
  }
  .prodcutInner .row {
    margin-left: 0;
    margin-right: 0;
  }
  .prodcutInner .row > div {
    padding-left: 0;
    padding-right: 0;
  }
  .productInnerImages {
    display: flex;
    gap: 30px;
    width: 100%;
    justify-content: center;
  }
  .productInnerImages .swiper {
    width: 100%;
    max-height: auto;
  }
  .productInnerImages .swiper img {
    aspect-ratio: 1/1;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .productInnerImages .swiper-pagination {
    display: flex;
    border-radius: 41px;
    background: #fff;
    position: absolute;
    bottom: 10px;
    right: 10px;
    align-items: center;
    justify-content: end;
    top: auto;
    left: auto;
    width: auto;
    color: #161617;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 18px */
    padding: 2px 14px;
  }
  .productInnerImages .mySwiper {
    display: none;
  }
  .productInnerImages .mySwiper2 {
    width: 100%;
  }
  .favourite {
    padding: 30px 0 50px;
  }
  .favourite .row {
    row-gap: 20px;
  }
  .favourite__notContent--text {
    font-size: 12px;
  }
  .placing {
    padding: 20px 0 30px;
  }
  .placing .goToFrom {
    left: 20px;
    right: 20px;
    bottom: 20px;
    justify-content: center;
    width: calc(100% - 40px);
  }
  .placing .row {
    row-gap: 25px;
  }
  .placing__form {
    width: 100%;
  }
  .placing__form .formRadioTop,
  .placing__form .formRadioBottom .formRadioBottom_content {
    gap: 15px;
  }
  .placing__orders {
    gap: 35px;
  }
  .placing__orders .order {
    gap: 15px;
    flex-direction: column;
  }
  .placing__orders .order .img {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .placing__orders .order__img {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .placing__orders .order__img img {
    width: 100%;
    height: 100%;
    min-width: auto;
    max-width: unset;
    min-height: auto;
    max-height: unset;
    aspect-ratio: 1/1;
  }
  .placing__orders .order__content {
    width: 100%;
  }
  .placing__orders .order__content--name {
    font-size: 14px;
  }
  .placing__orders .order__content--brend {
    font-size: 14px;
  }
  .placing__orders .order__content--links {
    justify-content: space-between;
    gap: 15px;
  }
}/*# sourceMappingURL=product.css.map */