/* === Общий контейнер === */
.order-wrapper {
  max-width: 420px;
  margin: 40px auto;
  padding: 0 15px;
}

/* === Форма === */
.newlife-form {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,.12);
  padding: 20px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* === Картинка товара === */
.newlife-form-pack {
  text-align: center;
  margin-bottom: 15px;
}

.newlife-form-pack img {
  max-width: 220px;
  width: 100%;
  height: auto;
}

/* === Цены === */
.newlife-form-price {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
}

.price__old,
.price__new {
  flex: 1;
  background: #f6f7f9;
  border-radius: 12px;
  padding: 12px 10px;
  text-align: center;
}

.price__old {
  opacity: 0.7;
}

.price__old .price__number {
  text-decoration: line-through;
}

.price__title {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
}

.price__number {
  font-size: 22px;
  font-weight: 700;
}

/* Новая цена — акцент */
.price__new {
  background: linear-gradient(135deg, #0f9d58, #0b8043);
  color: #fff;
}

.price__new .price__title {
  color: rgba(255,255,255,.9);
}

/* === Форма === */
.newlife-form-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form__label {
  width: 100%;
}

.form__input {
  width: 100%;
  height: 52px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid #dcdfe4;
  font-size: 16px;
  transition: .2s;
}

.form__input:focus {
  outline: none;
  border-color: #0f9d58;
  box-shadow: 0 0 0 3px rgba(15,157,88,.15);
}

/* === Кнопка === */
.snoska {
  margin-top: 10px;
  text-align: center;
}

.btn {
  width: 100%;
  height: 56px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff9800, #f57c00);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: .25s;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(245,124,0,.35);
}

.form__footnote {
  font-size: 12px;
  margin-top: 6px;
  opacity: .7;
}

/* === Мобильная адаптация === */
@media (max-width: 480px) {
  .newlife-form {
    padding: 16px;
  }

  .price__number {
    font-size: 20px;
  }

  .btn {
    font-size: 17px;
  }
}
/* === Scarcity === */
.scarcity {
  background: linear-gradient(135deg, #ff5252, #e53935);
  color: #fff;
  border-radius: 14px;
  padding: 12px;
  text-align: center;
  margin-bottom: 14px;
  animation: pulse 1.5s infinite;
}

.scarcity__title {
  font-size: 13px;
  opacity: .9;
  margin-bottom: 4px;
}

.timer {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 2px;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}
/* === Sticky Mobile CTA === */
.sticky-order {
  display: none;
}

@media (max-width: 768px) {
  .sticky-order {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: #fff;
    box-shadow: 0 -10px 30px rgba(0,0,0,.15);
    z-index: 999;
  }

  .sticky-btn {
    width: 100%;
    height: 54px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
  }
}