@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

* {
  box-sizing: border-box;
}
html {
  font-size: 16px;
  font-family: "Roboto", sans-serif;
}
body,
ul,
ol,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}
ul,
ol {
  list-style: none;
  padding: 0;
}
input,
button {
  border: none;
}
input,
label {
  display: block;
}
a {
  text-decoration: none;
}
body {
  max-width: 480px;
  min-width: 320px;
  margin: 0 auto;
}

.main-wrapper {
  width: 100%;
  margin: 0 auto;
  background: #f0f0f0;
}

.wrapper {
  padding: 0 15px;
}

.header__title {
  padding-top: 15px;
  text-align: center;
  color: rgb(85, 155, 212);
  text-transform: uppercase;
}

.header__subtitle {
  text-align: center;
  margin-top: -2px;
  text-transform: uppercase;
  line-height: 1.5;
  letter-spacing: 3px;
}

.header__img {
  margin-top: 20px;
  width: 100%;
}

.header__slider {
    display: flex;
    overflow: hidden; /* Прячем изображения, выходящие за пределы контейнера */
    position: relative;
    width: 100%; /* Полная ширина */
    max-width: 1080px; /* Максимальная ширина (Instagram стандарт) */
    height: auto; /* Высота подстраивается под контент */
    margin: 0 auto; /* Центрирование */
}

.header__slider-item {
    flex-shrink: 0; /* Не уменьшается в размере */
    width: 100%; /* Изображение занимает всю ширину слайда */
    height: auto; /* Автоматическая высота для поддержания пропорций */
    object-fit: cover; /* Обрезка изображения для заполнения области */
    aspect-ratio: 1080 / 1350; /* Соотношение сторон Instagram */
}

.header__slider {
  margin-top: 30px;
}

.header__slider-item {
  width: 100%;
}

.prev,
.next {
  position: absolute;
  top: 45%;
  height: 30px;
  width: 30px;
  z-index: 1;
  cursor: pointer;
}

.next {
  transition-duration: 0.5s;
  right: 0;
}

.prev {
  transition-duration: 0.5s;
}

.prev:hover,
.next:hover {
  transition-duration: 0.5s;
  transform: scale(1.5);
}

.prev:hover {
  transform: scale(1.5);
}

.toggle-box {
  display: none;
}
.toggle-box + label {
  display: block;
}
.toggle-box + label + div {
  display: none;
}
.toggle-box:checked + label + div {
  display: block;
  background: #fff;
  padding: 15px;
}

.toggle-item {
  position: relative;
  margin-bottom: 3px;
}

.toggle-item:first-child {
  margin-bottom: 4px;
}

.toggle-item:nth-child(3) {
  margin-bottom: 4px;
}

.toggle-label {
  font-size: 25px;
  cursor: pointer;
  padding: 25px 15px;
  background-color: #fff;
}

.toggle-label::after {
  content: "+";
  font-size: 40px;
  font-weight: 100;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 30px;
  top: 20px;
}

.toggle-label:hover {
  color: rgb(85, 155, 212);
}

.toggle-description {
  font-size: 17px;
  margin-top: 10px;
  text-align: justify;
  text-indent: 20px;
}

.toggle-list {
  font-size: 17px;
  counter-reset: myCounter;
}

.toggle-list-item {
  color: rgb(100, 100, 100);
  margin-top: 15px;
}

.toggle-list-item:hover {
  color: #000;
  cursor: pointer;
}

.toggle-list-item:before {
  counter-increment: myCounter;
  content: counter(myCounter);
  color: white;
  background: #2980b9;
  display: inline-block;
  text-align: center;
  margin: 10px 10px;
  line-height: 28px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
}

/* .toggle-list-item:hover:before {
  background-color: #2ecc71;
} */

.order {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-top: 25px;
}

.order:first-child {
  margin-top: 0;
}

.order__img {
  width: 10%;
}

.order__description {
  font-size: 19px;
  padding-left: 25px;
}

.video .header__title {
  margin: 25px 0;
}

.price_block {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  margin: 10px auto 30px;
  text-align: center;
}

.price_item.old {
  padding: 27px 27px;
  border-radius: 50px 0 0 50px;
  background: #3f8ce9;
  color: #fff;
  min-height: 80px;
}

.price_item.new {
  padding: 27px 27px;
  border-radius: 0 50px 50px 0;
  background: #3f8ce9;
  color: #fff;
  min-height: 80px;
}

.discount {
  background: #efff00;
  padding: 27px 27px;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.price_block .text {
  margin: 0 0 4px;
  font-size: 18px;
  line-height: 18px;
}

.price_item.old .value {
  text-decoration: line-through;
}

.price_block .value {
  font-weight: 700;
  font-size: 27px;
  line-height: 32px;
}

.order-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.order-form__input , .form-control {
  /* width: 80%;
  height: 50px;
  margin-top: 10px;
  padding: 0 0 0 15px;
  font-size: 17px;
  border: 1px solid grey;
  border-radius: 5px;
  outline: none; */
  margin: 0 auto 20px;
  padding: 0 20px;
  width: 90%;
  height: 70px;
  border: 1px solid black;
  border-radius: 8px;
  background: #fff;
  font-weight: 400;
  font-size: 17px;
  color: rgb(61, 61, 61);
  text-align: center;
}

.order-form__button {
  /* width: 60%;
  height: 50px;
  margin-top: 10px;
  background-color: #3f8ce9;
  border-radius: 5px;
  font-size: 20px;
  color: #fff; */
  display: block;
  margin: 10px auto;
  width: 330px;
  height: 70px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  border: none;
  background-color: #3f8ce9;
  background-image: linear-gradient(to top, #3f8ce9 0%, #3f8ce9 100%);
  box-shadow: 0 6px 0 #f0f0f0, inset 0 0 0 rgba(255, 255, 255, 0.15);
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 70px;
  color: white;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
}

.review {
  border: 1px solid grey;
  margin-top: 20px;
  min-height: 100px;
  border-radius: 5px;
  padding: 10px 0px;
}

.review__top {
  border-bottom: 1px solid grey;
  padding-bottom: 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.review__top-left {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

.review__top-img {
  margin-left: 10px;
  width: 40px;
}

.review__top-name {
  margin-left: 15px;
  font-weight: 600;
}

.review__top-right {
  margin-right: 15px;
}

.review__bottom{
  text-align: center;
  /* margin: 0 auto; */
}

.review__bottom-text {
  padding: 10px;
  text-align: left;
}

.review__bottom-img {
  max-height: 400px;
  max-width: 400px;
  padding-left: 10px;
}

.feedback {
  margin-top: 30px;
  text-align: center;
}

.feedback_area-name {
  width: 100%;
  height: 30px;
  padding: 10px;
  font-size: 16px;
  border: 1px solid black;
  border-radius: 5px;
  margin-bottom: 10px;
}

.feedback_area {
  border: 1px solid black;
  width: 100%;
  height: 100px;
  resize: none;
  padding: 10px;
  font-size: 16px;
  border-radius: 5px;
}

.feedback__btn {
  width: 330px;
  height: 70px;
  margin: 20px 0;
  background-color: #3f8ce9;
  border-radius: 5px;
  font-size: 24px;
  color: #fff;
}

.feedback__btn:hover {
  cursor: pointer;
  background-color: #86b8f5;
}


#modal_form {
	width: 90%; 
	height: 550px; /* Ð aÐ·Ð¼ÐµÑ€Ñ‹ Ð´oÐ»Ð¶Ð½Ñ‹ Ð±Ñ‹Ñ‚ÑŒ Ñ„Ð¸ÐºÑÐ¸Ñ€oÐ²aÐ½Ñ‹ */
	border-radius: 5px;
	border: 3px #000 solid;
	background: #fff;
	position: fixed; /* Ñ‡Ñ‚oÐ±Ñ‹ oÐºÐ½o Ð±Ñ‹Ð»o Ð² Ð²Ð¸Ð´Ð¸Ð¼oÐ¹ Ð·oÐ½Ðµ Ð² Ð»ÑŽÐ±oÐ¼ Ð¼ÐµÑÑ‚Ðµ */
	top: 35%; /* oÑ‚ÑÑ‚ÑƒÐ¿aÐµÐ¼ ÑÐ²ÐµÑ€Ñ…Ñƒ 45%, oÑÑ‚aÐ»ÑŒÐ½Ñ‹Ðµ 5% Ð¿oÐ´Ð²Ð¸Ð½ÐµÑ‚ ÑÐºÑ€Ð¸Ð¿Ñ‚ */
  left: 50%; /* Ð¿oÐ»oÐ²Ð¸Ð½a ÑÐºÑ€aÐ½a ÑÐ»ÐµÐ²a */
  transform: translateX(-50%);
	margin-top: -250px;
	/* margin-left: -150px; Ñ‚ÑƒÑ‚ Ð²ÑÑ Ð¼aÐ³Ð¸Ñ Ñ†ÐµÐ½Ñ‚Ñ€oÐ²ÐºÐ¸ css, oÑ‚ÑÑ‚ÑƒÐ¿aÐµÐ¼ Ð²Ð»ÐµÐ²o Ð¸ Ð²Ð²ÐµÑ€Ñ… Ð¼Ð¸Ð½ÑƒÑ Ð¿oÐ»oÐ²Ð¸Ð½Ñƒ ÑˆÐ¸Ñ€Ð¸Ð½Ñ‹ Ð¸ Ð²Ñ‹ÑoÑ‚Ñ‹ ÑooÑ‚Ð²ÐµÑ‚ÑÑ‚Ð²ÐµÐ½Ð½o =) */
	display: none; /* Ð² oÐ±Ñ‹Ñ‡Ð½oÐ¼ ÑoÑÑ‚oÑÐ½Ð¸Ð¸ oÐºÐ½a Ð½Ðµ Ð´oÐ»Ð¶Ð½o Ð±Ñ‹Ñ‚ÑŒ */
	opacity: 0; /* Ð¿oÐ»Ð½oÑÑ‚ÑŒÑŽ Ð¿Ñ€oÐ·Ñ€aÑ‡Ð½o Ð´Ð»Ñ aÐ½Ð¸Ð¼Ð¸Ñ€oÐ²aÐ½Ð¸Ñ */
	z-index: 5; /* oÐºÐ½o Ð´oÐ»Ð¶Ð½o Ð±Ñ‹Ñ‚ÑŒ Ð½aÐ¸Ð±oÐ»ÐµÐµ Ð±oÐ»ÑŒÑˆÐµÐ¼ ÑÐ»oÐµ */
	padding: 20px 10px;
}
/* ÐšÐ½oÐ¿Ðºa Ð·aÐºÑ€Ñ‹Ñ‚ÑŒ Ð´Ð»Ñ Ñ‚ÐµÑ… ÐºÑ‚o Ð² Ñ‚aÐ½ÐºÐµ) */
#modal_form #modal_close {
	width: 21px;
	height: 21px;
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
	display: block;
}
/* ÐŸoÐ´Ð»oÐ¶Ðºa */
#overlay {
	z-index:3; /* Ð¿oÐ´Ð»oÐ¶Ðºa Ð´oÐ»Ð¶Ð½a Ð±Ñ‹Ñ‚ÑŒ Ð²Ñ‹ÑˆÐµ ÑÐ»oÐµÐ² ÑÐ»ÐµÐ¼ÐµÐ½Ñ‚oÐ² ÑaÐ¹Ñ‚a, Ð½o Ð½Ð¸Ð¶Ðµ ÑÐ»oÑ Ð¼oÐ´aÐ»ÑŒÐ½oÐ³o oÐºÐ½a */
	position:fixed; /* Ð²ÑÐµÐ³Ð´a Ð¿ÐµÑ€ÐµÐºÑ€Ñ‹Ð²aÐµÑ‚ Ð²ÐµÑÑŒ ÑaÐ¹Ñ‚ */
	background-color:#000; /* Ñ‡ÐµÑ€Ð½aÑ */
	opacity:1; /* Ð½o Ð½ÐµÐ¼Ð½oÐ³o Ð¿Ñ€oÐ·Ñ€aÑ‡Ð½a */
	-moz-opacity:0.8; /* Ñ„Ð¸ÐºÑ Ð¿Ñ€Ð¾Ð·Ñ€Ð°Ñ‡Ð½Ð¾ÑÑ‚Ð¸ Ð´Ð»Ñ ÑÑ‚Ð°Ñ€Ñ‹Ñ… Ð±Ñ€Ð°ÑƒÐ·ÐµÑ€Ð¾Ð² */
	filter:alpha(opacity=80);
	width:100%; 
	height:100%; /* Ñ€aÐ·Ð¼ÐµÑ€oÐ¼ Ð²o Ð²ÐµÑÑŒ ÑÐºÑ€aÐ½ */
	top:0; /* ÑÐ²ÐµÑ€Ñ…Ñƒ Ð¸ ÑÐ»ÐµÐ²a 0, oÐ±ÑÐ·aÑ‚ÐµÐ»ÑŒÐ½Ñ‹Ðµ ÑÐ²oÐ¹ÑÑ‚Ð²a! */
	left:0;
	cursor:pointer;
	display:none; /* Ð² oÐ±Ñ‹Ñ‡Ð½oÐ¼ ÑoÑÑ‚oÑÐ½Ð¸Ð¸ ÐµÑ‘ Ð½ÐµÑ‚) */
}


.toggle-order-box {
  display: none;
}
.toggle-order-box + label {
  display: block;
}
.toggle-order-box + label + div {
  display: none;
}
.toggle-order-box:checked + label + div {
  display: block;
  background: #fff;
  padding: 15px;
}

.toggle-order-item {
  position: relative;
  margin-bottom: 3px;
}

.toggle-order-item:first-child {
  margin-bottom: 4px;
}

.toggle-order-item:nth-child(3) {
  margin-bottom: 4px;
}

.toggle-order-label {
  font-size: 25px;
  cursor: pointer;
  /* padding: 25px 15px; */
  background-color: #fff;
}

/* .toggle-order-label::after {
  content: "+";
  font-size: 40px;
  font-weight: 100;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 30px;
  top: 20px;
} */

.toggle-order-label:hover {
  color: rgb(212, 232, 248);
}

.toggle-order-description {
  font-size: 17px;
  margin-top: 10px;
  text-align: justify;
  text-indent: 20px;
}

.toggle-order-list {
  font-size: 17px;
  counter-reset: myCounter;
}

.toggle-order-list-item {
  color: rgb(100, 100, 100);
  margin-top: 15px;
}

.toggle-order-list-item:hover {
  color: #000;
  cursor: pointer;
}

.toggle-order-list-item:before {
  counter-increment: myCounter;
  content: counter(myCounter);
  color: white;
  background: #2980b9;
  display: inline-block;
  text-align: center;
  margin: 10px 10px;
  line-height: 28px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
}

/* Футер */
footer {
    background-color: #eeeeee;
    color: #121212;
    padding: 2rem 0;
    text-align: center;
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #3f8ce9;
    display: block;
    text-decoration: none;
    font-size: 1rem;
    margin: 0.5rem 0;
}

.footer-links a:hover {
    text-decoration: underline;
}

.company-info {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #121212;
}

/* Мобильная адаптация */
@media (max-width: 767px) {
    .header h1 {
        font-size: 1.75rem;
    }

    .header h2 {
        font-size: 1rem;
    }

    .offer .promo-text {
        font-size: 1.25rem;
    }

    #countdown {
        font-size: 1.5rem;
    }

    .contact-form h3 {
        font-size: 1.5rem;
    }

    .swiper-button-next, .swiper-button-prev {
        font-size: 1.5rem;
        right: 0.5rem;
        left: 0.5rem;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-links a {
        margin: 0.25rem 0;
    }
}
.order-form__checkbox {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #555;
  margin: 10px 0;
}
.order-form__checkbox input {
  margin: 0 6px 0 0;
}
.order-form__checkbox a {
  text-decoration: underline;
}



