.price-box {
  position: relative;
  align-items: stretch;
  overflow: visible;
  border-top: 4px solid #17642d;
  border-bottom: 4px solid #17642d;
}

.promo-strip {
  padding: 11px 16px;
  background: linear-gradient(135deg, #17642d, #0d4520);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .4px;
}

.price-box > div {
  display: flex;
  min-height: 112px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.old-price {
  background: #f3f3f3;
}

.old-price > span {
  color: #777;
}

.old-price s {
  color: #6b6b6b;
  font-size: 34px;
  line-height: 1;
  text-decoration-color: #d62828;
  text-decoration-thickness: 4px;
}

.old-price s span {
  display: inline;
  font-size: 40px;
  letter-spacing: -1px;
  font-weight: 900;
}

.new-price {
  position: relative;
  background: linear-gradient(145deg, #ffec66, #ffc928);
  box-shadow: inset 0 0 25px rgba(255, 255, 255, .45);
}

.new-price i {
  position: absolute;
  top: -16px;
  right: 7px;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #d92121;
  box-shadow: 0 4px 12px rgba(127, 0, 0, .35);
  color: #fff;
  font-size: 15px;
  font-style: normal;
  font-weight: 900;
  animation: discountPulse 1.8s infinite;
}

.new-price > span {
  color: #3d3200;
  font-weight: 800;
}

.new-price strong {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  margin-top: 3px;
  color: #151515;
  line-height: 1;
  text-shadow: 0 2px 0 #fff8;
}

.new-price strong [data-price] {
  display: inline;
  font-size: 48px;
  letter-spacing: -2px;
}

.new-price strong b {
  font-size: 24px;
  font-weight: 900;
}

.new-price small {
  display: block;
  margin-top: 6px;
  padding: 3px 8px;
  border-radius: 10px;
  background: #17642d;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.bundle-note {
  margin: 12px 18px 0;
  padding: 10px 12px;
  border: 1px solid #dcb20e;
  border-radius: 8px;
  background: #fff7c8;
  color: #2c2500;
  font-size: 16px;
  font-weight: 900;
  text-align: center;
}

footer a {
  color: inherit;
  font-weight: 800;
}

.order-form {
  position: relative;
  margin: 10px 18px 24px;
  padding: 22px 18px 20px;
  border: 2px solid #17642d;
  border-radius: 12px;
  background: linear-gradient(180deg, #f7fff8 0%, #fff 100%);
  box-shadow: 0 8px 24px rgba(23, 100, 45, .13);
}

.order-form-title {
  margin: -22px -18px 20px;
  padding: 14px 18px 13px;
  border-radius: 9px 9px 0 0;
  background: #17642d;
  color: #fff;
  text-align: center;
}

.order-form-title strong,
.order-form-title span {
  display: block;
}

.order-form-title strong {
  font-size: 21px;
  line-height: 1.15;
  text-transform: uppercase;
}

.order-form-title span {
  margin-top: 5px;
  color: #e7f7ea;
  font-size: 13px;
  line-height: 1.3;
}

.order-form input {
  border: 2px solid #a9b8ac;
  border-radius: 7px;
  background: #fff;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.button:disabled {
  opacity: .72;
  cursor: wait;
}

@keyframes discountPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

@media (max-width: 360px) {
  .old-price s { font-size: 29px; }
  .old-price s span { font-size: 35px; }
  .new-price strong [data-price] { font-size: 42px; }
  .new-price strong b { font-size: 21px; }
  .new-price i { width: 46px; height: 46px; font-size: 13px; }
}
