/**
 * Modal zamówień hurtowych / wysyłki — kompaktowy layout na mobile,
 * żeby box mieścił się w viewport przy widocznych paskach przeglądarki.
 */

@media (max-width: 767px) {
  .customProductModals__modal.open {
    box-sizing: border-box;
    padding: 12px 10px;
    height: 100%;
    max-height: 100vh;
    max-height: 100svh;
    align-items: center;
    overflow: hidden;
  }

  .customProductModals__modal-content {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    max-height: calc(100vh - 24px);
    max-height: calc(100svh - 24px);
    margin: 0;
    padding: 28px 14px 12px;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .customProductModals__modal-close {
    position: sticky;
    top: 0;
    float: right;
    z-index: 5;
    display: block;
    width: 32px;
    height: 32px;
    margin: -8px -4px 0 0;
    padding: 7px;
    box-sizing: border-box;
    background-color: #f2f9ff;
  }

  .customProductModals__modal-content h2 {
    font-size: 22px;
    padding-bottom: 8px;
  }

  .customProductModals__modal-content h3 {
    font-size: 20px;
    padding-top: 10px;
    padding-bottom: 16px;
  }

  .customProductModals__modal-content p {
    font-size: 15px;
    line-height: 1.3;
    margin-bottom: 8px;
  }

  .customProductModals__modal-content .small-desc p {
    font-size: 9px;
    line-height: 1.25;
  }

  .customProductModals__modal form {
    margin-top: 10px;
  }

  .customProductModals__modal form input,
  .customProductModals__modal form textarea {
    margin-bottom: 6px;
    padding: 8px 10px;
    font-size: 13px;
  }

  .customProductModals__modal form textarea {
    height: 52px;
  }

  .customProductModals__modal form .wpcf7-submit {
    font-size: 16px;
    padding: 10px 12px;
  }

  .customProductModals__modal .wpcf7-not-valid-tip {
    padding-bottom: 8px;
  }

  .customProductModals__send-list {
    margin-bottom: 12px;
    gap: 4px;
  }

  .customProductModals__send-list-name,
  .customProductModals__send-list-price {
    font-size: 15px;
  }

  .customProductModals__send-list-info {
    font-size: 14px;
  }

  .customProductModals__footer-info {
    margin-top: 20px;
    margin-bottom: 16px;
    font-size: 13px;
  }

  .customProductModals__footer-info a {
    font-size: 13px;
  }
}
