/** Shopify CDN: Minification failed

Line 202:12 Expected identifier but found whitespace
Line 202:14 Unexpected "{"
Line 202:23 Expected ":"
Line 202:47 Expected ":"
Line 209:13 Expected identifier but found whitespace
Line 209:15 Unexpected "{"
Line 209:24 Expected ":"
Line 209:48 Expected ":"
Line 221:8 Expected identifier but found whitespace
Line 221:10 Unexpected "{"
... and 19 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:contact-us (INDEX:18) */
.contact-section {
  background: var(--bg-color, #fff);
  color: var(--text-color, #1a1a1a);
  font-family: var(--font-body-family, sans-serif);
}

.contact-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  max-width: 1400px;
  margin: 0 auto;
}

.contact-section__form-col {
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-section__image-col {
  overflow: hidden;
  position: relative;
}

.contact-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-section__image--placeholder {
  background: #f5f5f0;
}

.contact-section__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #999;
  margin: 0 0 12px;
}

.contact-section__title {
  font-family: var(--font-heading-family, serif);
  font-size: 38px;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin: 0 0 32px;
  color: var(--text-color, #1a1a1a);
}

.contact-section__divider {
  width: 40px;
  height: 1px;
  background: #ccc;
  margin-bottom: 32px;
}

.contact-section__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-section__field {
  margin-bottom: 20px;
}

.contact-section__field label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 8px;
}

.contact-section__field input,
.contact-section__field select,
.contact-section__field textarea {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid #ddd;
  font-family: inherit;
  font-size: 14px;
  font-weight: 300;
  color: var(--text-color, #1a1a1a);
  background: transparent;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
  border-radius: 0;
}

.contact-section__field input:focus,
.contact-section__field select:focus,
.contact-section__field textarea:focus {
  border-bottom-color: var(--accent-color, #1a1a1a);
}

.contact-section__field textarea {
  resize: none;
  line-height: 1.6;
}

.contact-section__submit {
  margin-top: 12px;
  background: var(--accent-color, #1a1a1a);
  color: #fff;
  border: none;
  padding: 16px 48px;
  font-family: inherit;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.contact-section__submit:hover {
  opacity: 0.8;
}

.contact-section__success {
  background: #f5f5f0;
  border-left: 2px solid var(--accent-color, #1a1a1a);
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: #555;
}

.contact-section__errors {
  color: #c0392b;
  font-size: 13px;
  margin-bottom: 16px;
}

@media screen and (max-width: 768px) {
  .contact-section__inner {
    grid-template-columns: 1fr;
  }

  .contact-section__image-col {
    min-height: 300px;
    order: -1;
  }

  .contact-section__form-col {
    padding: 40px 24px;
  }

  .contact-section__form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-section__title {
    font-size: 28px;
  }
}
/* END_SECTION:contact-us */

/* START_SECTION:trust-badges (INDEX:110) */
.trust-badges-section {
  background-color: #F4FAFF;
  width: 100%;
  box-sizing: border-box;
}

.trust-badges-wrapper {
  max-width: {{ section.settings.max_width }}px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  column-gap: {{ section.settings.badge_gap }}px;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  padding: 72px 32px 72px 32px;
}

.trust-badge-icon {
  width: {{ section.settings.icon_size }}px;
  height: {{ section.settings.icon_size }}px;
  color: {{ section.settings.icon_color }};
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-badge-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.trust-badge-icon--default svg {
  width: 100%;
  height: 100%;
}

.trust-badge-label {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: {{ section.settings.font_size }}px;
  font-weight: {{ section.settings.font_weight }};
  letter-spacing: 0.01em;
  color: {{ section.settings.text_color }};
}

@media screen and (max-width: 900px) {
  .trust-badges-wrapper {
    gap: 16px;
  }
  .trust-badge-divider {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .trust-badges-section {
    background: none;
    width: 100%;
    box-sizing: border-box;
  }

  .trust-badges-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 16px;
  }

  .trust-badge-item {
    background-color: #F4FAFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    gap: 10px;
    white-space: normal;
    text-align: center;
    flex: unset;
    height: 108px;   /* ← ADD THIS */
    box-sizing: border-box;  /* ← ADD THIS */
  }

  /* 5th badge full width */
  .trust-badge-item:last-child {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .trust-badge-label {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    white-space: normal;
  }

  .trust-badge-icon {
    width: 32px;
    height: 32px;
  }
}
/* END_SECTION:trust-badges */