/** Shopify CDN: Minification failed

Line 27:16 Expected identifier but found whitespace
Line 27:18 Unexpected "{"
Line 27:28 Expected ":"
Line 27:53 Expected identifier but found ","
Line 67:16 Expected identifier but found whitespace
Line 67:18 Unexpected "{"
Line 67:28 Expected ":"
Line 67:55 Expected identifier but found ","

**/
/* START_SECTION:main-page (INDEX:34) */
.lr-wrap {
    --lr-ink: #2b2333;
    --lr-ivory: #fbf7ee;
    --lr-panel: #f3ece0;
    --lr-gold: #a9793a;
    --lr-gold-light: #ddc79a;
    --lr-wine: #5c2233;
    --lr-wine-dark: #431322;
    --lr-error: #a12a2a;

    max-width: 920px;
    margin: 0 auto;
    padding: 32px 20px 64px;
    font-family: {{ settings.type_body_font.family }}, sans-serif;
    color: var(--lr-ink);
    background: var(--lr-ivory);
  }

  .lr-header {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding-bottom: 20px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--lr-gold-light);
  }

  .lr-flame {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--lr-gold);
    margin-top: 2px;
  }

  .lr-intro {
    font-size: 13.5px;
    color: #5a5060;
    margin: 0;
  }

  .lr-card {
    background: var(--lr-panel);
    border: 1px solid var(--lr-gold-light);
    border-radius: 3px;
    padding: 26px 24px;
    margin: 22px 0;
  }

  .lr-card-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: {{ settings.type_header_font.family }}, serif;
    font-style: italic;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.01em;
    color: var(--lr-wine);
    margin: 0 0 20px;
  }

  .lr-title-icon {
    width: 16px;
    height: 16px;
    color: var(--lr-gold);
    flex-shrink: 0;
  }

  .lr-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 26px;
  }

  .lr-field {
    display: flex;
    flex-direction: column;
  }

  .lr-field--full {
    grid-column: 1 / -1;
  }

  .lr-field label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 7px;
    color: #4a4152;
  }

  .req {
    color: var(--lr-error);
    margin-left: 2px;
  }

  .lr-field input,
  .lr-field select,
  .lr-field textarea {
    font-size: 13.5px;
    padding: 10px 12px;
    border: 1px solid var(--lr-gold-light);
    border-radius: 3px;
    background: #fff;
    color: var(--lr-ink);
    font-family: inherit;
  }

  .lr-field input:read-only {
    background: #ece4d4;
    color: #7a6f60;
  }

  .lr-field input:focus,
  .lr-field select:focus,
  .lr-field textarea:focus {
    outline: none;
    border-color: var(--lr-gold);
    box-shadow: 0 0 0 3px rgba(169, 121, 58, 0.18);
  }

  .lr-field textarea {
    resize: vertical;
  }

  .lr-field select:disabled {
    background: #ece4d4;
    color: #8a8078;
    cursor: not-allowed;
  }

  .lr-invalid {
    border-color: var(--lr-error) !important;
  }

  .lr-hint {
    display: none;
    font-size: 11.5px;
    color: var(--lr-error);
    margin-top: 5px;
  }

  .lr-invalid + .lr-hint {
    display: block;
  }

  .lr-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 12.5px;
    color: #4a4152;
    margin: 6px 2px 22px;
  }

  .lr-checkbox input {
    margin-top: 3px;
    accent-color: var(--lr-wine);
  }

  .lr-checkbox a {
    color: var(--lr-wine);
    text-decoration: underline;
  }

  .lr-legal {
    background: var(--lr-panel);
    border: 1px solid var(--lr-gold-light);
    border-radius: 3px;
    padding: 22px 24px;
    font-size: 12px;
    line-height: 1.65;
    color: #4a4152;
  }

  .lr-legal p {
    margin: 0 0 12px;
  }

  .lr-legal p:last-child {
    margin-bottom: 0;
  }

  .lr-submit-row {
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }

  .lr-submit {
    background: var(--lr-wine);
    color: #fbf7ee;
    border: none;
    padding: 14px 44px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.15s ease;
  }

  .lr-submit:hover {
    background: var(--lr-wine-dark);
  }

  .lr-success {
    background: #eaf1e6;
    color: #385c2b;
    border: 1px solid #c3d9b8;
    padding: 12px 16px;
    border-radius: 3px;
    font-size: 13px;
    margin-bottom: 16px;
  }

  .lr-error-banner {
    background: #f7e9e6;
    color: var(--lr-error);
    border: 1px solid #e5c1ba;
    padding: 12px 16px;
    border-radius: 3px;
    font-size: 13px;
    margin-bottom: 16px;
  }

  @media screen and (max-width: 749px) {
    .lr-grid {
      grid-template-columns: 1fr;
    }
  }
/* END_SECTION:main-page */
