/** Shopify CDN: Minification failed

Line 16:0 Unexpected "<"
Line 43:7 Expected identifier but found "%"
Line 45:8 Unexpected "<"
Line 51:7 Expected identifier but found "%"
Line 53:4 Unexpected "<"
Line 236:0 Unexpected "<"
Line 238:1 Expected identifier but found "%"
Line 239:0 Unexpected "{"
Line 240:2 Expected identifier but found "\"name\""
Line 254:0 Unexpected "{"
... and 1 more hidden warnings

**/
<section class="our-promise">

  <div class="promise-container">

    <div class="promise-content">

      <span>OUR PROMISE</span>

      <h2>
        Crafted with care.<br>
        Designed to last.
      </h2>

      <div class="promise-line"></div>

      <p>
        At Wylkin, every product is thoughtfully designed with premium materials,
        refined craftsmanship, and timeless aesthetics. We believe clothing
        should not only look exceptional but also feel comfortable and last for years.
      </p>

      <a href="#">EXPLORE COLLECTION →</a>

    </div>

    <div class="promise-image">

      {% if section.settings.promise_image != blank %}

        <img
          src="{{ section.settings.promise_image | image_url: width: 1200 }}"
          alt="Our Promise"
          class="promise-placeholder"
        >

      {% endif %}

    </div>

  </div>

</section>

<style>
/* MAIN SECTION */
.our-promise {
  width: 100% !important;
  max-width: none !important;
  height: 520px !important;
  min-height: 520px !important;
  margin: 0 !important;
  padding: 35px 4% !important;
  box-sizing: border-box !important;
  background: #000000 !important;
  overflow: hidden !important;
}

/* CONTAINER */
.promise-container {
  width: 100% !important;
  max-width: 1200px !important;
  height: 450px !important;
  margin: 0 auto !important;

  display: grid !important;
  grid-template-columns: 50% 50% !important;

  background: #000000 !important;
}

/* LEFT SIDE */
.promise-content {
  width: 100% !important;
  height: 450px !important;

  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;

  padding: 40px 55px !important;
  box-sizing: border-box !important;

  background: #000000 !important;
}

/* SMALL TITLE */
.promise-content > span {
  display: block !important;
  margin: 0 0 16px !important;

  color: #b98a55 !important;
  font-size: 12px !important;
  letter-spacing: 4px !important;
  line-height: 1.2 !important;
}

/* MAIN HEADING */
.promise-content h2 {
  margin: 0 !important;

  color: #ffffff !important;
  font-size: 54px !important;
  line-height: 0.98 !important;
  letter-spacing: -2px !important;
  font-weight: 600 !important;
}

/* LINE */
.promise-line {
  width: 50px !important;
  height: 1px !important;

  margin: 20px 0 17px !important;

  background: #b98a55 !important;
}

/* DESCRIPTION */
.promise-content p {
  max-width: 420px !important;

  margin: 0 !important;

  color: #999999 !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
}

/* BUTTON */
.promise-content a {
  display: inline-block !important;
  width: fit-content !important;

  margin-top: 22px !important;
  padding: 12px 20px !important;

  border: 1px solid #ffffff !important;

  color: #ffffff !important;
  background: transparent !important;

  text-decoration: none !important;

  font-size: 11px !important;
  line-height: 1 !important;
  letter-spacing: 1px !important;
}

/* RIGHT IMAGE */
.promise-image {
  width: 100% !important;
  height: 450px !important;

  overflow: hidden !important;

  background: #151619 !important;
}

.promise-placeholder {
  width: 100% !important;
  height: 100% !important;

  display: block !important;

  object-fit: cover !important;
  object-position: center !important;
}


/* TABLET */
@media screen and (max-width: 900px) {

  .our-promise {
    height: auto !important;
    min-height: 0 !important;
    padding: 30px 4% !important;
  }

  .promise-container {
    height: auto !important;
    grid-template-columns: 1fr !important;
  }

  .promise-content {
    height: auto !important;
    min-height: 420px !important;
    padding: 45px 40px !important;
  }

  .promise-image {
    height: 380px !important;
  }

  .promise-content h2 {
    font-size: 48px !important;
  }
}


/* MOBILE */
@media screen and (max-width: 600px) {

  .our-promise {
    padding: 20px !important;
  }

  .promise-content {
    min-height: 400px !important;
    padding: 35px 25px !important;
  }

  .promise-content h2 {
    font-size: 40px !important;
    letter-spacing: -1px !important;
  }

  .promise-image {
    height: 300px !important;
  }
}
</style>

{% schema %}
{
  "name": "Our Promise",
  "settings": [
    {
      "type": "image_picker",
      "id": "promise_image",
      "label": "Promise Image"
    }
  ],
  "presets": [
    {
      "name": "Our Promise"
    }
  ]
}
{% endschema %}