/** Shopify CDN: Minification failed

Line 53:12 Expected identifier but found whitespace
Line 53:13 Unexpected "450px"

**/
.contact img {
  max-width: 100%;
}

/* Form message spacing */
.contact .form__message {
  align-items: flex-start;
}

.contact .icon-success {
  margin-top: 0.2rem;
}

/* Field spacing */
.contact .field {
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 750px) {
  .contact .field {
    margin-bottom: 2rem;
  }
}

/* Send button spacing */
.contact__button {
  margin-top: 3rem;
  text-align: center; /* Center send button */
}

@media screen and (min-width: 750px) {
  .contact__button {
    margin-top: 4rem;
  }
}

/* Two-column form layout */
@media screen and (min-width: 750px) {
  .contact__fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 2rem;
  }
}

  /* Center the entire SMS container inside the form */
  max-width: 450px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center; /* perfect paragraph centering */
}

/* Center the checkbox + label horizontally */
.sms-optin--premium .checkbox {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

/* Legal text below checkbox */
.sms-optin--premium .sms-legal {
  font-size: 0.85rem;
  color: #444;
  margin-top: 8px;
  line-height: 1.5;
}
/* Center + enlarge SMS checkbox */
.sms-optin--premium .checkbox {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px; /* more space between box and text */
  margin-bottom: 10px; /* separates from paragraph */
}

/* Make the actual checkbox bigger */
.sms-optin--premium .checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  cursor: pointer;
  transform: scale(1.2); /* visually larger */
}

/* Improve label appearance */
.sms-optin--premium .checkbox label {
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  line-height: 1.4;
}

/* Make sure SMS paragraph stays centered + spaced */
.sms-optin--premium .sms-legal {
  margin-top: 14px; /* cleaner spacing from checkbox */
  font-size: 0.9rem;
}
/* Remove the box around the SMS legal text and center it */
.sms-optin--premium .sms-legal {
  font-size: 0.9rem;      /* slightly larger for readability */
  color: #444;
  margin-top: 14px;       /* spacing from checkbox/paragraph */
  line-height: 1.5;
  text-align: center;     /* center the text */
  background: none;       /* remove any box background */
  border: none;           /* remove border if it exists */
  padding: 0;             /* remove padding from box */
  box-shadow: none;       /* remove shadow if any */
}
/* Hide the label when input is focused or has content */
.field__input:focus + .field__label,
.field__input:not(:placeholder-shown) + .field__label {
  display: none;
}


