.order-form-module {
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica,
    Arial, sans-serif;
  max-width: 600px;
  margin: 0 auto;
}

.order-form-module .form-promo {
  background: linear-gradient(135deg, #fff5f5, #ffebe8);
  border: 2px solid #ff7b72;
  padding: 30px;
  border-radius: 16px;
  margin: 0 0 24px;
  box-shadow: 0 8px 24px rgba(255, 123, 114, 0.15);
  position: relative;
  overflow: hidden;
}

.order-form-module .form-promo__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: #ff7b72;
}

.order-form-module .form-promo__title {
  color: #d32f2f;
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.3;
}

.order-form-module .form-promo__icon {
  flex-shrink: 0;
}

.order-form-module .form-promo__text {
  font-size: 18px;
  margin: 0 0 20px;
  line-height: 1.55;
  color: #333;
}

.order-form-module .dynamic-date {
  color: #d32f2f;
  border-bottom: 2px dashed #d32f2f;
  padding-bottom: 2px;
}

.order-form-module .form-promo__product {
  color: #212121;
}

.order-form-module .form-promo__stock {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #ffcccb;
}

.order-form-module .form-promo__stock-label {
  font-size: 16px;
  color: #555;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
}

.order-form-module .dynamic-stock {
  font-size: 48px;
  font-weight: 900;
  color: #d32f2f;
  letter-spacing: 2px;
  line-height: 1;
}

.order-form-module .form-promo__stock-unit {
  font-size: 14px;
  color: #888;
  margin-top: 5px;
}

.order-form-module *,
.order-form-module *::before,
.order-form-module *::after {
  box-sizing: border-box;
}

.order-form-module .form-content {
  background: linear-gradient(135deg, #ffffff, #fdfbfb);
  border: 2px solid #d4a373;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  max-width: 600px;
  position: relative;
}

.order-form-module .form-med {
  max-width: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.order-form-module .form-med img {
  max-width: 250px;
  display: block;
  margin: 0 auto 20px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.order-form-module .form-title {
  text-align: center;
  color: #222;
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 15px;
  text-transform: uppercase;
}

.order-form-module .form-tiket {
  color: #0d2e6d;
  font-size: 12px;
  margin: 0 0 12px;
}

.order-form-module .form-tiket-date {
  color: rgb(61, 31, 55);
  font-weight: bold;
}

.order-form-module .get-free {
  text-align: center;
  font-size: 18px;
  color: #e91e63;
  font-weight: 700;
  background: #fce4ec;
  padding: 10px;
  border-radius: 8px;
  margin: 0 0 20px;
}

.order-form-module .form-info {
  text-align: center;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.6;
  font-size: 16px;
}

.order-form-module .form-info p {
  margin: 0;
}

.order-form-module .order_form_pole {
  margin-bottom: 20px;
}

.order-form-module .order_form_pole label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #444;
}

.order-form-module .form__input {
  width: 100%;
  padding: 15px;
  border: 2px solid #eee;
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.3s;
  outline: none;
}

.order-form-module .form__input:focus {
  border-color: #e91e63 !important;
  box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.order-form-module .btn-sub {
  text-align: center;
  margin-top: 30px;
}

.order-form-module .submit-btn {
  background: linear-gradient(135deg, #e91e63, #c2185b);
  color: #fff;
  border: none;
  padding: 15px 20px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(233, 30, 99, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
  display: block;
  width: 100%;
  white-space: normal;
  height: auto !important;
  min-height: unset;
  line-height: 1.4 !important;
  max-width: 100%;
  overflow: visible;
}

.order-form-module .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(123, 44, 44, 0.5);
}

.order-form-module .pulse-btn {
  animation: order-form-pulse 2s infinite;
}

@keyframes order-form-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(233, 30, 99, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(233, 30, 99, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(233, 30, 99, 0);
  }
}

.order-form-module .form-note {
  text-align: center;
  font-size: 14px;
  margin: 4px 0 0;
  color: #666;
}

@media (max-width: 600px) {
  .order-form-module .form-promo {
    padding: 22px 18px;
  }

  .order-form-module .form-promo__title {
    font-size: 20px;
  }

  .order-form-module .form-promo__text {
    font-size: 16px;
  }

  .order-form-module .dynamic-stock {
    font-size: 40px;
  }

  .order-form-module .form-content {
    padding: 24px 18px;
  }

  .order-form-module .form-title {
    font-size: 22px;
  }
}
