
/* Универсальный светлый стиль для лендингов */

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #222;
  background-color: #f9f9f9;
  max-width: 480px;
  margin: 0 auto;
  padding: 0 12px;
}

/* HERO-секция */
.hero {
  text-align: center;
  padding: 20px 0 24px;
}

.product-name {
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.product-subtitle-wrapper {
  background: #efefef;
  padding: 6px 10px;
  margin: 0 -12px 10px;
  border-radius: 8px;
}

.product-subtitle {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

.hero-img-wrapper {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.discount-tag {
  position: absolute;
  top: 17px;
  left: -35px;
  background-color: #e53935;
  color: #fff;
  font-weight: bold;
  transform: rotate(-45deg);
  padding: 8px 50px;
  font-size: 18px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Цены */
.price-wrapper {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 12px 0;
}

.price {
  padding: 14px 24px;
  border-radius: 14px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 110px;
}

.price .label {
  font-size: 13px;
  font-weight: 500;
  color: #666;
  margin-bottom: 4px;
}

.price .amount {
  font-size: 24px;
  font-weight: 700;
}

.old-price {
  background: #f0f0f0;
  color: #999;
  text-decoration: line-through;
}

.new-price {
  background: #ffe600;
  color: #000;
  animation: pulse 1.8s infinite ease-in-out;
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 230, 0, 0.6); }
  70% { transform: scale(1.05); box-shadow: 0 0 12px 10px rgba(255, 230, 0, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 230, 0, 0); }
}

/* Кнопка Заказать */
.btn-order {
  display: block;
  width: 100%;
  background-color: #007bff;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  padding: 16px 0;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease;
  margin-top: 12px;
}

.btn-order:hover {
  background-color: #0056b3;
}

/* Преимущества */
.features-inline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
  gap: 6px;
}

.feature-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  background-color: #fff;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #ddd;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.feature-icon img {
  width: 64px;
  margin-bottom: 6px;
}

.feature-label {
  font-size: 13px;
  font-weight: 500;
  color: #333;
}

/* Видео */
.video-section {
  margin: 40px 0 30px;
  text-align: center;
}

.video-title {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 16px;
}

.video-wrapper iframe,
.local-video {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Описание */
.description-section {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 40px 0 30px;
  text-align: center;
}

.desc-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.desc-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.desc-text {
  font-size: 14px;
  font-weight: 400;
  color: #333;
  line-height: 1.4;
  max-width: 90%;
}

/* Отзывы */
.reviews-section {
  margin: 40px 0 30px;
  text-align: center;
}

.review-main img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  margin-bottom: 16px;
}

.review-thumbnails {
  display: flex;
  justify-content: space-between;
  gap: 6px;
}

.thumb {
  width: 22%;
  border-radius: 8px;
  opacity: 0.6;
  cursor: pointer;
  transition: 0.3s;
  border: 2px solid transparent;
}

.thumb:hover {
  opacity: 0.9;
}

.thumb.active {
  opacity: 1;
  border-color: #007bff;
}

/* Шаги заказа */
.order-steps {
  margin: 40px 0 30px;
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 12px;
  padding: 0 12px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.step img {
  width: 72px;
  height: 72px;
  margin-bottom: 10px;
}

.step p {
  font-size: 13px;
  color: #333;
  font-weight: 500;
  margin: 0;
}

/* Форма заказа */
.order-section {
  padding: 40px 0;
  text-align: center;
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
  padding: 0 12px;
}

.order-form input[type="text"],
.order-form input[type="tel"] {
  padding: 14px;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid #ccc;
  outline: none;
}

.order-form input::placeholder {
  color: #aaa;
}

.checkbox-label {
  font-size: 12px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: left;
  line-height: 1.3;
}

.checkbox-label a {
  color: #007bff;
  text-decoration: underline;
}

.order-form button {
  background-color: #28a745;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  padding: 16px;
  border-radius: 12px;
  border: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.order-form button:hover {
  background-color: #218838;
}

/* Футер */
.footer {
  background: #f0f0f0;
  padding: 24px 12px;
  text-align: center;
  font-size: 12px;
  color: #555;
  margin-top: 0px;
}

.footer-container p {
  margin: 4px 0;
}

.footer-link {
  color: #007bff;
  text-decoration: underline;
  display: inline-block;
  margin: 6px 8px;
  font-size: 12px;
}

.footer-links {
  margin-top: 1px;
  display: flex;
  flex-direction: column;
  gap: 0px;
}
