/** Shopify CDN: Minification failed

Line 68:29 Expected ")" to end URL token
Line 108:14 Expected identifier but found whitespace
Line 108:16 Unexpected "{"
Line 108:25 Expected ":"
Line 108:59 Expected ":"

**/


/* CSS from section stylesheet tags */
.why-choose-section {
  position: relative;
  background-size: cover;
  background-position: center;
  width: 100%;
}

.why-choose-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 0rem 4rem 0rem 3rem;
  gap: 80px;
}

.why-choose-text {
  flex: 1 1 50%;
  max-width: 600px;
}

.why-choose-features {
  flex: 1 1 50%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14px, 1fr));
  gap: 20px;
}

.why-choose-block {
  border: 1px solid rgba(255,255,255,0.2);
  padding: 20px;
  text-align: center;
  color: #fff;
}

.why-choose-block img {
  width: 56px;
  height: 56px;
  margin-bottom: 10px;
}

.mobile-bottom-image {
  display: none;
  margin-top: 20px;
  text-align: center;
}

.mobile-bottom-image img {
  max-width: 100%;
  height: auto;
}

/* 📱 Mobile Fixes */
@media (max-width: 768px) {
  .why-choose-section {
    background-image: url({{ section.settings.background_image_mobile | image_url }}) !important;
  }

  .why-choose-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0px 20px 0px 20px;
    gap: 0;
  }

  .why-choose-text {
    width: 100%;
    margin-bottom: 20px;
  }

  .why-choose-features {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    gap: 15px;
    margin-top:0px;
  }

  .why-choose-block {
    margin: 0 auto;
  }

  /* ✅ Last block spans full row */
  .why-choose-features .why-choose-block:last-child {
    grid-column: span 2;
  }

  .mobile-bottom-image {
    display: block;
  }

  /* ✅ Mobile Heading Size Override */
  .why-choose-section .why-choose-text h2 {
    font-size: {{ section.settings.heading_size_mobile }}px !important;
  }
}