/** Shopify CDN: Minification failed

Line 7:0 Unexpected "<"
Line 243:0 Unexpected "<"

**/
<style>
  /* ===== Make an Offer (Apartment theme) ===== */

  .make-offer-container {
    margin: 1.75rem 0;
  }

  /* Trigger Button (bigger + cleaner + 1px border) */
  #MakeOfferBtn.button {
    width: 100%;
    font-size: 1.05rem;
    letter-spacing: 0.01em;
    padding: 14px 18px;
    border-radius: 0px;
    border: 1px solid rgba(0, 0, 0, 0.9);
  }

  #MakeOfferBtn.button:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
  }

  /* Modal overlay */
  .make-offer-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    padding: 24px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
  }

  .make-offer-modal[open] {
    display: flex;
  }

  /* Modal panel */
  .make-offer-modal-content {
    width: 100%;
    max-width: 600px;
    border-radius: 18px;
    overflow: hidden;
    background: rgb(var(--color-background, 255 255 255));
    color: rgb(var(--color-foreground, 24 24 24));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.14);
  }

  .make-offer-modal-header {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  /* Larger modal title (stronger hierarchy) */
  .make-offer-modal-title {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.25;
  }

  .make-offer-modal-close {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.14);
    background: rgba(255, 255, 255, 0.65);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: 1;
    color: inherit;
  }

  .make-offer-modal-close:hover {
    background: rgba(0, 0, 0, 0.04);
  }

  .make-offer-modal-body {
    padding: 20px;
  }

  .make-offer-form-group {
    margin-bottom: 14px;
  }

  /* Larger labels */
  .make-offer-label {
    display: block;
    margin: 0 0 8px;
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.005em;
  }

  .make-offer-input,
  .make-offer-textarea {
    width: 100%;
    padding: 12px 12px;
    border-radius: 0px;
    border: 1px solid rgba(0, 0, 0, 0.18);
    background: rgba(255, 255, 255, 0.7);
    color: inherit;
    font: inherit;
    box-sizing: border-box;
    font-size: 1rem;
  }

  .make-offer-input:focus,
  .make-offer-textarea:focus {
    outline: none;
    border-color: rgba(0, 0, 0, 0.45);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
  }

  .make-offer-textarea {
    min-height: 110px;
    resize: vertical;
  }

  /* Currency prefix input */
  .make-offer-currency {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: stretch;
    border-radius: 0px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.18);
    background: rgba(255, 255, 255, 0.7);
  }

  .make-offer-currency-prefix {
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border-right: 1px solid rgba(0, 0, 0, 0.12);
    font-weight: 700;
    letter-spacing: 0.02em;
    user-select: none;
    background: rgba(0, 0, 0, 0.03);
  }

  .make-offer-currency input {
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 12px;
  }

  .make-offer-currency:focus-within {
    border-color: rgba(0, 0, 0, 0.45);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
  }

  .make-offer-success-message {
    display: none;
    padding: 12px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.08);
    text-align: left;
    margin-bottom: 14px;
  }

  .make-offer-success-message.show {
    display: block;
  }

  .make-offer-error {
    display: none;
    margin-top: 10px;
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 0, 0, 0.06);
    border: 1px solid rgba(255, 0, 0, 0.18);
  }

  .make-offer-error.show {
    display: block;
  }

  .make-offer-actions {
    margin-top: 8px;
  }

  /* Submit button – allow theme primary styling, but force full width + square corners */
  #MakeOfferSubmitBtn.button {
    display: block;        /* ensure full-width layout */
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 14px 18px;
    border-radius: 0;
  }

  .make-offer-hint {
    margin-top: 10px;
    font-size: 0.9rem;
    opacity: 0.75;
  }

  /* Hidden iframe for native form submission (keeps hCaptcha happy) */
  #MakeOfferIframe {
    display: none;
    width: 0;
    height: 0;
    border: 0;
  }

  @media (max-width: 640px) {
    .make-offer-modal {
      padding: 16px;
    }

    .make-offer-modal-body {
      padding: 16px;
    }

    .make-offer-modal-title {
      font-size: 1.3rem;
    }

    .make-offer-label {
      font-size: 1rem;
    }
  }
</style>