/**
 * Boston — Оптовикам (Wholesale landing page).
 * По Figma 1:4530.
 *
 * Breakpoint convention (same as header.css — cascading):
 *   base        = 1920+
 *   max-width: 1919px = 1280 overrides
 *   max-width: 1279px = 768 overrides (stacks on top of 1280)
 *   max-width: 767px  = 420 overrides (stacks on top of 768)
 */

/* ===== Shared components (also used in home.css, duplicated for page isolation) ===== */
body.boston-child .boston-ws__link-ul {
  display: inline-block;
  font-weight: 700;
  font-size: var(--fs-lg);
  color: var(--color-text);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-text);
  line-height: 1.2;
  transition: opacity .2s ease;
}
body.boston-child .boston-ws__link-ul:hover { opacity: .7; text-decoration: none; }
body.boston-child .boston-ws__link-ul--white {
  color: #fff;
  border-bottom-color: #fff;
}

body.boston-child .boston-ws__chip {
  display: inline-flex;
  align-items: center;
  background: rgba(58, 5, 15, 0.1);
  color: var(--color-text);
  font-size: var(--fs-lg);
  font-weight: 400;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  line-height: 1;
}

/* ===== Page wrapper ===== */
body.boston-child .boston-ws {
  max-width: 1920px;
  margin-inline: auto;
}

/* ===== 1. Hero Banner ===== */
body.boston-child .boston-ws__hero {
  position: relative;
  width: 100%;
  height: 855px;
  border-radius: 0 0 var(--radius-pill) var(--radius-pill);
  overflow: hidden;
  background: var(--color-bg-soft) url('../img/wholesale/opt_hero.jpg') center / cover no-repeat;
}

body.boston-child .boston-ws__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 55px;
  width: 532px;
  text-align: center;
  z-index: 1;
}

body.boston-child .boston-ws__hero-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: var(--fs-h3);
  line-height: 1;
  color: var(--color-text);
  margin: 0;
}

body.boston-child .boston-ws__hero-lead {
  font-size: var(--fs-lg);
  line-height: 1.2;
  color: var(--color-text);
  margin: 0;
  max-width: 483px;
}

body.boston-child .boston-ws__hero-buttons {
  display: flex;
  gap: 45px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===== 2. Phone CTA (floating pill, right-aligned) ===== */
body.boston-child .boston-ws__phone-cta {
  position: fixed;
  bottom: 30px;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-brand);
  color: #f4f5f0;
  font-size: var(--fs-lg);
  padding: 15px 80px 15px 30px;
  border-radius: var(--radius-pill) 0 0 var(--radius-pill);
  width: max-content;
  transition: opacity .2s ease;
}
/* mobile-кнопку прячем на десктопе ПОСЛЕ базового правила: иначе display:flex базы
   перебивает display:none по порядку (равная специфичность) и обе кнопки накладываются. */
body.boston-child .boston-ws__phone-cta--mobile { display: none; }
/* hover: фон НЕ меняем и НЕ убираем (важно !important — иначе hover родительской
   темы Ecomus сбрасывает фон). Меняется только подчёркивание текста ниже. */
body.boston-child .boston-ws__phone-cta:hover {
  background: var(--color-brand) !important;
  color: #f4f5f0;
}
body.boston-child .boston-ws__phone-cta--desktop:hover span {
  text-decoration: underline;
}
body.boston-child .boston-ws__phone-cta svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* ===== 3. Products + Categories ===== */
body.boston-child .boston-ws__products {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 55px;
  max-width: var(--container-max);
  margin: 55px auto 0;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

body.boston-child .boston-ws__products-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 55px;
  width: 560px;
  flex-shrink: 0;
}

body.boston-child .boston-ws__products-title {
  font-weight: 700;
  font-size: var(--fs-h3);
  line-height: 1;
  color: var(--color-text);
  margin: 0;
  max-width: 514px;
}

body.boston-child .boston-ws__products-list {
  list-style: disc;
  padding-left: 30px;
  margin: 0;
  font-size: var(--fs-lg);
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

body.boston-child .boston-ws__categories {
  display: flex;
  gap: 30px;
  flex: 1;
  min-width: 0;
}

body.boston-child .boston-ws__cat-card {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

body.boston-child .boston-ws__cat-card-media {
  width: 100%;
  height: 487px;
  border-radius: var(--radius-pill);
  overflow: hidden;
  background: #f4f5f0;
}

body.boston-child .boston-ws__cat-card-img,
body.boston-child .boston-ws__cat-card-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.boston-child .boston-ws__cat-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #f4f5f0;
  border-radius: 0 0 var(--radius-pill) var(--radius-pill);
  padding: 12px 30px 15px;
  font-size: var(--fs-lg);
  text-align: center;
  line-height: 1.2;
}

/* ===== 4. Advantages ===== */
body.boston-child .boston-ws__advantages {
  display: flex;
  gap: 30px;
  max-width: var(--container-max);
  margin: 100px auto 0;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

body.boston-child .boston-ws__adv-card {
  flex: 1;
  min-width: 0;
  background: var(--color-bg-soft);
  border-radius: var(--radius-pill);
  padding: 50px;
  height: 274px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  overflow: hidden;
}

body.boston-child .boston-ws__adv-card-title {
  font-weight: 700;
  font-size: var(--fs-h3);
  line-height: 1.2;
  margin: 0;
}

body.boston-child .boston-ws__adv-card-text {
  font-size: var(--fs-lg);
  line-height: 1.2;
  margin: 0;
}

/* ===== 5. Factory Banner ===== */
body.boston-child .boston-ws__factory {
  position: relative;
  max-width: var(--container-max);
  margin: 100px auto 0;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

body.boston-child .boston-ws__factory::before {
  content: '';
  display: block;
  width: 100%;
  height: 500px;
  border-radius: var(--radius-pill);
  background: var(--color-text) url('../img/wholesale/factory.jpg') center / cover no-repeat;
}

body.boston-child .boston-ws__factory-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 55px;
  text-align: center;
  color: #fff;
  padding: 50px;
}

body.boston-child .boston-ws__factory-title {
  font-weight: 700;
  font-size: var(--fs-h3);
  line-height: 1.2;
  margin: 0;
  color: #fff;
}

body.boston-child .boston-ws__factory-text {
  font-size: var(--fs-lg);
  line-height: 1.2;
  margin: 0;
  max-width: 600px;
  color: #fff;
}

/* ===== 6. Tolling (давальческий пошив) ===== */
body.boston-child .boston-ws__tolling {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 55px;
  max-width: var(--container-max);
  margin: 100px auto 0;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

body.boston-child .boston-ws__tolling-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}

body.boston-child .boston-ws__tolling-title {
  font-weight: 700;
  font-size: var(--fs-h3);
  line-height: 1.2;
  margin: 0;
}

body.boston-child .boston-ws__tolling-lead {
  font-size: var(--fs-md);
  line-height: 1.2;
  margin: 0;
  max-width: 700px;
}

body.boston-child .boston-ws__tolling-cards {
  display: flex;
  gap: 30px;
  width: 100%;
}

body.boston-child .boston-ws__tolling-card {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--color-brand);
  border-radius: var(--radius-pill);
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  overflow: hidden;
}

body.boston-child .boston-ws__tolling-card-title {
  font-weight: 700;
  font-size: var(--fs-h3);
  line-height: 1.2;
  margin: 0;
}

body.boston-child .boston-ws__tolling-card-text {
  font-size: var(--fs-lg);
  line-height: 1.2;
  margin: 0;
}

/* ===== 7. Contact Form Section ===== */
body.boston-child .boston-ws__form-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 100px auto 0;
  padding: 50px 100px;
  background: var(--color-bg-soft) url('../img/wholesale/form-bg.png') center / cover no-repeat;
  border-radius: var(--radius-pill);
  overflow: hidden;
  min-height: 500px;
}

body.boston-child .boston-ws__form-bg {
  position: absolute;
  left: 50%;
  bottom: -60px;
  transform: translateX(-50%);
  width: 70%;
  opacity: .06;
  pointer-events: none;
}

body.boston-child .boston-ws__form-man {
  display: none;
}

body.boston-child .boston-ws__form-text {
  position: relative;
  z-index: 1;
  flex: 0 1 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}

body.boston-child .boston-ws__form-title {
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  color: var(--color-text);
  margin: 0;
}

body.boston-child .boston-ws__form-lead {
  font-size: var(--fs-lg);
  line-height: 1.2;
  color: var(--color-text);
  margin: 0;
}

body.boston-child .boston-ws__form-card {
  position: relative;
  z-index: 1;
  background: rgba(224, 219, 215, 0.6);
  border-radius: var(--radius-pill);
  padding: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  flex: 1;
  max-width: 500px;
}

body.boston-child .boston-ws__form-card-title {
  font-weight: 700;
  font-size: var(--fs-lg);
  line-height: 1.2;
  text-align: center;
  margin: 0;
  width: 350px;
}

body.boston-child .boston-ws__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 350px;
}

body.boston-child .boston-ws__form-fields {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

body.boston-child .boston-ws__input {
  width: 100%;
  border: 1px solid var(--color-text);
  border-radius: var(--radius-pill);
  padding: 20px 30px;
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  color: var(--color-text);
  background: transparent;
  outline: none;
  transition: border-color .2s ease;
}
body.boston-child .boston-ws__input::placeholder {
  color: var(--color-text);
  opacity: 1;
}
body.boston-child .boston-ws__input:focus {
  border-color: var(--color-brand);
}

body.boston-child .boston-ws__form-privacy {
  font-size: var(--fs-sm);
  line-height: 1.2;
  text-align: center;
  color: var(--color-text);
  margin: 0;
}

body.boston-child .boston-ws__form-submit {
  background: none;
  border: none;
  border-bottom: 1px solid var(--color-text);
  cursor: pointer;
  font-family: var(--font-primary);
  padding: 0 0 14px;
}

/* ===== CF7 overrides inside form card ===== */
body.boston-child .boston-ws__form-card .wpcf7-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 25px;
  width: 350px;
}
body.boston-child .boston-ws__form-card .wpcf7-form p {
  margin: 0;
  width: 100%;
}
body.boston-child .boston-ws__form-card .wpcf7-form br {
  display: none;
}
body.boston-child .boston-ws__form-card .wpcf7-form p label {
  display: none;
}
body.boston-child .boston-ws__form-card .boston-ws__form-fields > p {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
body.boston-child .boston-ws__form-card .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
body.boston-child .boston-ws__form-card .wpcf7-form-control-wrap input {
  width: 100%;
  border: 1px solid var(--color-text);
  border-radius: var(--radius-pill);
  padding: 20px 30px;
  font-family: var(--font-primary);
  font-size: 20px !important;
  color: var(--color-text);
  background: transparent;
}
body.boston-child .boston-ws__form-card .wpcf7-form-control-wrap input::placeholder {
  font-size: 20px !important;
  color: var(--color-text);
  opacity: .6;
}
body.boston-child .boston-ws__form-card .wpcf7-submit {
  background: none;
  border: none;
  border-bottom: 1px solid var(--color-text);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: var(--fs-lg);
  cursor: pointer;
  padding: 0 0 14px;
  color: var(--color-text);
  display: block;
  margin-left: auto;
  margin-right: auto;
}
body.boston-child .boston-ws__form-card .boston-ws__form-privacy {
  text-align: center;
}

/* ===== Bottom spacing before footer ===== */
body.boston-child .boston-ws {
  padding-bottom: 100px;
}

/* ===== 1280 ===== */
@media (max-width: 1919px) {
  body.boston-child .boston-ws__hero {
    height: 600px;
  }
  body.boston-child .boston-ws__hero-content {
    width: 440px;
    gap: 35px;
  }
  body.boston-child .boston-ws__phone-cta {
    padding: 12px 40px 12px 20px;
    font-size: var(--fs-base);
  }
  body.boston-child .boston-ws__products {
    gap: 30px;
    margin-top: 35px;
  }
  body.boston-child .boston-ws__products-info {
    width: 380px;
    gap: 30px;
  }
  body.boston-child .boston-ws__products-title {
    max-width: 100%;
  }
  body.boston-child .boston-ws__categories {
    gap: 20px;
  }
  body.boston-child .boston-ws__cat-card-label {
    font-size: 16px;
  }
  body.boston-child .boston-ws__advantages {
    margin-top: 60px;
    gap: 20px;
  }
  body.boston-child .boston-ws__adv-card {
    padding: 30px;
    height: auto;
    min-height: 180px;
    gap: 25px;
  }
  body.boston-child .boston-ws__factory {
    margin-top: 60px;
  }
  body.boston-child .boston-ws__factory::before {
    height: 400px;
  }
  body.boston-child .boston-ws__factory-content {
    gap: 35px;
    padding: 30px;
  }
  body.boston-child .boston-ws__tolling {
    margin-top: 60px;
    gap: 35px;
  }
  body.boston-child .boston-ws__tolling-cards {
    gap: 20px;
  }
  body.boston-child .boston-ws__tolling-card {
    padding: 30px;
    gap: 20px;
  }
  body.boston-child .boston-ws__form-section {
    margin-top: 60px;
    padding: 40px 50px;
    min-height: 400px;
    max-width: calc(100% - 120px);
  }
  body.boston-child .boston-ws__form-title {
    font-size: 36px;
  }
  body.boston-child .boston-ws__form-card {
    padding: 35px;
  }
  body.boston-child .boston-ws__form-card-title {
    width: 300px;
  }
  body.boston-child .boston-ws__form,
  body.boston-child .boston-ws__form-card .wpcf7-form {
    width: 300px;
  }
  body.boston-child .boston-ws {
    padding-bottom: 60px;
  }
}

/* ===== 768 ===== */
@media (max-width: 1279px) {
  body.boston-child .boston-ws__hero {
    height: 500px;
  }
  body.boston-child .boston-ws__hero-content {
    width: 90%;
    max-width: 400px;
    gap: 25px;
  }
  body.boston-child .boston-ws__hero-title {
    font-size: 22px;
  }
  body.boston-child .boston-ws__hero-lead {
    font-size: 14px;
  }
  body.boston-child .boston-ws__hero-buttons {
    gap: 25px;
  }
  body.boston-child .boston-ws__phone-cta {
    font-size: 14px;
    padding: 10px 25px 10px 15px;
  }
  body.boston-child .boston-ws__phone-cta svg {
    width: 18px;
    height: 18px;
  }
  body.boston-child .boston-ws__products {
    margin-top: 30px;
    gap: 15px;
  }
  body.boston-child .boston-ws__products-info {
    width: 330px;
    gap: 20px;
  }
  body.boston-child .boston-ws__categories {
    gap: 20px;
  }
  body.boston-child .boston-ws__cat-card-media {
    height: 300px;
  }
  body.boston-child .boston-ws__cat-card-label {
    font-size: 12px;
    padding: 8px 14px 10px;
    border-radius: 0 0 20px 20px;
  }
  /* Advantages: 2x2 grid */
  body.boston-child .boston-ws__advantages {
    margin-top: 40px;
    flex-wrap: wrap;
    gap: 15px;
  }
  body.boston-child .boston-ws__adv-card {
    flex: 0 0 calc(50% - 8px);
    min-height: 160px;
    padding: 25px;
    gap: 20px;
  }
  body.boston-child .boston-ws__factory {
    margin-top: 40px;
  }
  body.boston-child .boston-ws__factory::before {
    height: 320px;
  }
  body.boston-child .boston-ws__factory-content {
    gap: 25px;
    padding: 25px;
  }
  body.boston-child .boston-ws__factory-title {
    font-size: 18px;
  }
  body.boston-child .boston-ws__factory-text {
    font-size: 14px;
  }
  body.boston-child .boston-ws__tolling {
    margin-top: 40px;
    gap: 25px;
  }
  body.boston-child .boston-ws__tolling-cards {
    gap: 15px;
  }
  body.boston-child .boston-ws__tolling-card {
    padding: 25px;
    gap: 15px;
  }
  body.boston-child .boston-ws__form-section {
    margin-top: 40px;
    padding: 25px;
    min-height: auto;
    border-radius: 30px;
    max-width: calc(100% - 40px);
    background: var(--color-bg-soft) url('../img/wholesale/man-bg-768.png') center / cover no-repeat;
  }
  body.boston-child .boston-ws__form-text {
    gap: 20px;
    flex: 0 1 280px;
  }
  body.boston-child .boston-ws__form-title {
    font-size: 26px;
  }
  body.boston-child .boston-ws__form-card {
    padding: 30px;
    border-radius: 30px;
    flex: 1 1 0%;
    max-width: none;
  }
  body.boston-child .boston-ws__form-card-title {
    width: 100%;
    font-size: 16px;
  }
  body.boston-child .boston-ws__form,
  body.boston-child .boston-ws__form-card .wpcf7-form {
    width: 100%;
  }
  body.boston-child .boston-ws {
    padding-bottom: 40px;
  }
}

/* ===== 420 ===== */
@media (max-width: 767px) {
  body.boston-child .boston-ws__hero {
    height: 531px;
    border-radius: 0 0 20px 20px;
    background-position: 100% center;
  }
  body.boston-child .boston-ws__hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 316px;
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,1));
    z-index: 0;
    border-radius: 0 0 20px 20px;
  }
  body.boston-child .boston-ws__hero-content {
    top: auto;
    bottom: 25px;
    transform: translateX(-50%);
    gap: 25px;
    max-width: 384px;
    width: 384px;
    z-index: 1;
  }
  body.boston-child .boston-ws__hero-title {
    font-size: 20px;
    color: #fff;
  }
  body.boston-child .boston-ws__hero-lead {
    font-size: 14px;
    color: #fff;
  }
  body.boston-child .boston-ws__hero-buttons {
    gap: 25px;
  }
  body.boston-child .boston-ws__hero-buttons .boston-ws__link-ul {
    color: #fff;
    border-bottom-color: #fff;
    font-size: 14px;
  }
  body.boston-child .boston-ws__phone-cta--desktop { display: none; }
  /* Мобильная кнопка — обычная в потоке страницы (по центру, после hero), а не floating.
     Плавающая fixed-кнопка пряталась за нижней панелью Safari на iPhone. */
  body.boston-child .boston-ws__phone-cta--mobile {
    display: flex;
    position: static;
    width: max-content;
    max-width: calc(100% - 30px);
    margin: 24px auto 8px;
    font-size: 14px;
    padding: 12px 24px;
    gap: 8px;
    text-decoration: none;
    color: #f4f5f0;
    border-radius: var(--radius-pill);
  }
  body.boston-child .boston-ws__phone-cta--mobile svg {
    width: 16px;
    height: 16px;
  }
  body.boston-child .boston-ws__products {
    flex-direction: column;
    align-items: center;
    margin-top: 25px;
    gap: 25px;
  }
  body.boston-child .boston-ws__products-info {
    width: 100%;
    text-align: center;
    align-items: center;
  }
  body.boston-child .boston-ws__products-title {
    font-size: 20px;
  }
  body.boston-child .boston-ws__products-list {
    font-size: 14px;
    gap: 10px;
    text-align: left;
  }
  body.boston-child .boston-ws__categories {
    gap: 10px;
  }
  body.boston-child .boston-ws__cat-card {
    flex: 1;
    min-width: 0;
  }
  body.boston-child .boston-ws__cat-card-media {
    height: 300px;
    border-radius: 20px;
  }
  body.boston-child .boston-ws__advantages {
    margin-top: 30px;
    gap: 10px;
  }
  body.boston-child .boston-ws__adv-card {
    flex: 0 0 calc(50% - 5px);
    min-height: auto;
    padding: 18px;
    gap: 12px;
    border-radius: 20px;
  }
  body.boston-child .boston-ws__adv-card-title {
    font-size: 15px;
  }
  body.boston-child .boston-ws__adv-card-text {
    font-size: 13px;
  }
  body.boston-child .boston-ws__factory {
    margin-top: 30px;
  }
  body.boston-child .boston-ws__factory::before {
    height: 300px;
    border-radius: 20px;
  }
  body.boston-child .boston-ws__factory-content {
    gap: 20px;
    padding: 20px;
  }
  body.boston-child .boston-ws__factory-title {
    font-size: 16px;
  }
  body.boston-child .boston-ws__factory-text {
    font-size: 13px;
  }
  body.boston-child .boston-ws__tolling {
    margin-top: 30px;
    gap: 20px;
  }
  body.boston-child .boston-ws__tolling-title {
    font-size: 18px;
  }
  body.boston-child .boston-ws__tolling-lead {
    font-size: 14px;
  }
  body.boston-child .boston-ws__tolling-cards {
    flex-direction: column;
    gap: 10px;
  }
  body.boston-child .boston-ws__tolling-card {
    padding: 20px;
    border-radius: 20px;
    gap: 12px;
  }
  body.boston-child .boston-ws__tolling-card-title {
    font-size: 16px;
  }
  body.boston-child .boston-ws__tolling-card-text {
    font-size: 14px;
  }
  body.boston-child .boston-ws__form-section {
    margin-top: 30px;
    padding: 0 var(--container-pad);
    background: transparent;
    border-radius: 0;
    flex-direction: column;
    gap: 20px;
    overflow: visible;
    min-height: 0;
    max-width: none;
  }
  body.boston-child .boston-ws__form-bg {
    display: none;
  }
  body.boston-child .boston-ws__form-man {
    display: none;
  }
  body.boston-child .boston-ws__form-text {
    background: var(--color-bg-soft) url('../img/wholesale/man-bg-420.png') right center / auto 100% no-repeat;
    border-radius: 20px;
    padding: 25px var(--container-pad);
    overflow: hidden;
    width: 384px;
    height: 237px;
    max-width: 100%;
    flex-shrink: 0;
  }
  body.boston-child .boston-ws__form-title {
    font-size: 20px;
    max-width: 45%;
  }
  body.boston-child .boston-ws__form-lead {
    font-size: 14px;
    max-width: 45%;
  }
  body.boston-child .boston-ws__form-card {
    padding: 40px var(--container-pad);
    border-radius: 20px;
    background: var(--color-bg-soft);
    width: 100%;
    max-width: none;
  }
  body.boston-child .boston-ws__input {
    padding: 12px 20px;
    font-size: 14px;
  }
  body.boston-child .boston-ws {
    padding-bottom: 30px;
  }
}
