.formaa {
  background: linear-gradient(
      135deg,
      rgba(255, 140, 0, 0.08),
      rgba(255, 0, 0, 0.05)
    )
    #fff;
  border: 2px solid #ffb347;
  border-radius: 18px;
  padding: 2rem;
  margin: 50px auto;
  margin-top: 10px;
  margin-bottom: 0;
  max-width: 860px;
  font-family: Inter, Arial, sans-serif;
  box-shadow:
    0 6px 18px -4px rgba(0, 0, 0, 0.15),
    0 2px 4px -2px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  font-size: 1.05rem;
  line-height: 1.5;
}
.formaa__header {
  display: flex;
  flex-wrap: nowrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.formaa__title {
  flex: 1 1 280px;
  margin: 0;
  font-size: 2rem;
  line-height: 1.12;
  font-weight: 700;
}
.formaa__badge {
  background: #ff3d00;
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.55px;
  padding: 5px 12px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 0.55rem;
  text-transform: uppercase;
}
.formaa__product {
  flex: 0 0 160px;
  text-align: center;
  margin-left: auto;
}
.formaa__product img {
  width: 140px;
  max-width: 100%;
}
.stock-line {
  font-size: 0.95rem;
  margin-top: 0.45rem;
  color: #444;
}
.stock-line strong .date-0,
.stock-line strong {
  font-weight: 700;
}
.stock-line .lastpack {
  color: #d60000;
  font-weight: 700;
  font-size: 1.15rem;
}
.price-strip {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  margin: 1rem 0 1.25rem;
}
.price-box {
  flex: 1 1 50%;
  background: linear-gradient(135deg, #fff, #fff5ec);
  padding: 1.05rem 1.15rem;
  border: 1px solid #ffe1c4;
  border-radius: 14px;
  position: relative;
}
.price-box small {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.6px;
  font-weight: 600;
  color: #555;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.price-old {
  text-decoration: line-through;
  color: #9b9b9b;
  font-weight: 500;
  font-size: 1.1rem;
}
.price-new {
  color: #d60000;
  font-weight: 800;
  font-size: 2rem;
  line-height: 1.1;
}
.price-save {
  position: absolute;
  top: -14px;
  right: 8px;
  background: #18a100;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 10px;
  letter-spacing: 0.7px;
  box-shadow: 0 3px 10px -4px rgba(0, 0, 0, 0.25);
}
form.x_order_form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.formaa .full-row {
  grid-column: 1 / -1;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.form-field label {
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #222;
}
.form-field input {
  border: 1.5px solid #000;
  border-radius: 10px;
  padding: 0.95rem 1rem;
  font-size: 1.05rem;
  outline: none;
  font-family: inherit;
  background: #fff !important;
  box-shadow: none;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.form-field input:hover {
  border-color: #333;
}
.form-field input:focus {
  border-color: #ff6a00;
  box-shadow: 0 0 0 2px rgba(255, 106, 0, 0.25);
}
.form-field input::placeholder {
  color: #000;
  font-size: 0.9rem;
  letter-spacing: 0.2px;
  opacity: 1;
}
.form-field input:focus::placeholder {
  color: #000;
  opacity: 1;
}
.cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.85rem;
  margin-top: 0.25rem;
}
.order-btn {
  appearance: none;
  border: none;
  cursor: pointer;
  background: linear-gradient(90deg, #ff7a00, #ff4000);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.6px;
  font-size: 1.2rem;
  padding: 1.05rem 1.35rem;
  border-radius: 16px;
  box-shadow:
    0 6px 16px -4px rgba(255, 64, 0, 0.55),
    0 2px 4px -1px rgba(0, 0, 0, 0.18);
}
.order-btn:hover {
  filter: brightness(1.05);
}
.order-btn:active {
  filter: brightness(0.95);
}
.secure-line {
  font-size: 0.7rem;
  line-height: 1.5;
  color: #555;
  text-align: center;
}
@media (max-width: 780px) {
  form.x_order_form {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }
  .formaa {
    padding: 1.5rem;
  }
  .formaa__header {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  .formaa__product {
    align-self: center;
    margin-left: 0;
  }
  .price-strip {
    flex-direction: column;
    gap: 10px;
    margin: 12px 0 14px;
  }
  .price-box {
    width: 100%;
    padding: 14px 18px;
    box-sizing: border-box;
  }
  .price-box small {
    margin-bottom: 6px;
    line-height: 1.2;
  }
  .price-old,
  .price-new {
    display: block;
    position: static;
    left: auto;
    right: auto;
    margin: 0;
    padding: 0;
    transform: none;
    text-align: left;
    text-indent: 0;
    white-space: nowrap;
  }
  .price-old {
    font-size: clamp(26px, 7.5vw, 34px);
    line-height: 1;
    font-weight: 700;
  }
  .price-new {
    font-size: clamp(42px, 11vw, 56px);
    line-height: 1;
  }
  .price-save {
    top: -13px;
    right: 10px;
  }
  .form-field input {
    width: 100%;
    max-width: 100%;
  }
}
.inline-cta-box {
  margin: 25px 0;
  padding: 18px 20px;
  border: 2px solid #ff9100;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff7ee 0%, #fff 65%);
  display: flex;
  gap: 18px;
  align-items: stretch;
  flex-wrap: wrap;
  font-family: Inter, Arial, sans-serif;
  position: relative;
}
.inline-cta-media {
  flex: 0 0 160px;
  text-align: center;
}
.inline-cta-image {
  width: 100%;
  max-width: 160px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}
.inline-cta-content {
  flex: 1 1 240px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
}
.inline-cta-title {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 700;
  color: #cf3f00;
}
.inline-cta-benefits {
  margin: 0 0 14px 18px;
  padding: 0;
  font-size: 15px;
  line-height: 1.35;
  list-style: disc;
}
.inline-cta-benefits li + li {
  margin-top: 4px;
}
.inline-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.inline-cta-btn {
  display: inline-block;
  background: linear-gradient(90deg, #ff7a00, #ff4000);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 40px;
  letter-spacing: 0.5px;
  text-decoration: none;
  box-shadow:
    0 4px 10px rgba(255, 106, 0, 0.35),
    0 2px 4px -1px rgba(0, 0, 0, 0.25);
  transition: all 0.25s ease;
  position: relative;
}
.inline-cta-btn:hover {
  filter: brightness(1.07);
  box-shadow: 0 6px 14px -2px rgba(255, 106, 0, 0.5);
}
.inline-cta-btn:active {
  filter: brightness(0.94);
  transform: translateY(1px);
}
.inline-cta-btn:focus {
  outline: 2px solid #ff9100;
  outline-offset: 3px;
}
.hero-top-image {
  width: 100%;
  display: block;
  margin: 18px auto 14px;
  border-radius: 8px;
}
.article-date-line {
  font-size: 13px;
  color: #555;
  margin-top: 6px;
  font-weight: 500;
  letter-spacing: 0.4px;
}
.article-date-line .label-date {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.6px;
  color: #ff6a00;
  font-weight: 700;
  margin-right: 6px;
}
.hero-image-wrap {
  text-align: center;
}
.header-logo {
  width: 120px;
  height: auto;
  display: block;
}
.publication-info {
  display: flex;
  align-items: center;
  gap: 14px;
}
.pub-text-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.article-date-line.compact {
  margin-top: 0;
  font-size: 12px;
}
@media (max-width: 720px) {
  .header-logo {
    width: 82px;
  }
  .header-content {
    flex-direction: row;
    align-items: flex-start;
  }
  .news-badge span {
    font-size: 11px;
  }
  .article-date-line {
    font-size: 11px;
  }
  .news-badge {
    display: inline-block;
  }
}
@media (max-width: 680px) {
  .inline-cta-box {
    padding: 16px 16px;
  }
  .inline-cta-media {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 6px;
  }
  .inline-cta-image {
    max-width: 140px;
  }
  .inline-cta-title {
    font-size: 20px;
    text-align: center;
  }
  .inline-cta-benefits {
    margin-left: 18px;
  }
  .inline-cta-actions {
    justify-content: center;
  }
}
