/** Shopify CDN: Minification failed

Line 38:8 Expected identifier but found whitespace
Line 38:10 Unexpected "{"
Line 38:19 Expected ":"
Line 38:42 Expected ":"
Line 78:21 Expected identifier but found whitespace
Line 78:23 Unexpected "{"
Line 78:32 Expected ":"
Line 84:11 Expected identifier but found whitespace
Line 84:12 Unexpected "3px"
Line 84:23 Unexpected "{"
... and 7 more hidden warnings

**/


/* CSS from section stylesheet tags */
.super-advantage-section {
    padding: 40px 20px;
  }

  .super-advantage-container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .super-advantage-title {
    font-size: 28px;
    text-align: left;
    margin-top:0px;
    margin-bottom: 30px;
  }

  .super-advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: {{ section.settings.grid_gap }}px;
    max-width: 100%;
  }

  .advantage-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    animation: slideInUp 0.6s ease-out backwards;
    padding: 0 20px;
    position: relative;
  }

  /* .advantage-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 1px;
    background-color: {{ section.settings.divider_color }};
  } */

  /* .advantage-item:nth-child(1) { animation-delay: 0.1s; }
  .advantage-item:nth-child(2) { animation-delay: 0.2s; }
  .advantage-item:nth-child(3) { animation-delay: 0.3s; }
  .advantage-item:nth-child(4) { animation-delay: 0.4s; }
  .advantage-item:nth-child(5) { animation-delay: 0.5s; }

  .advantage-item:hover {
    transform: translateY(-8px);
  } */

  .advantage-icon {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: {{ section.settings.icon_bg_color }};
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
    border: 3px solid {{ section.settings.icon_border_color }};
    flex-shrink: 0;
    position: relative;
  }

  .advantage-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .advantage-text {
    font-size: 16px;
    color: black;
    font-weight: {{ section.settings.text_weight }};
    line-height: 1.5;
    max-width: 180px;
    text-transform: {{ section.settings.text_transform }};
    letter-spacing: 0.5px;
  }

  @media (max-width: 768px) {
    .super-advantage-grid {
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      gap: 20px;
    }

    .super-advantage-title {
      font-size: 28px;
      margin-top:0px;
    text-align: center;
      margin-bottom: 40px;
    }

    .advantage-icon {
      width: 100px;
      height: 100px;
    }

    .advantage-text {
      font-size: 14px;
      max-width: 110px;
    }

    .advantage-item:not(:last-child)::after {
      height: 50%;
    }
  }

  @media (max-width: 480px) {
    .super-advantage-section {
      padding: 30px 15px;
    }

    .super-advantage-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
    }

    .super-advantage-title {
      font-size: 22px;
      margin-top:0px;
      text-align: center;
      margin-bottom: 30px;
    }

    .advantage-icon {
      width: 80px;
      height: 80px;
      border-width: 2px;
    }

    .advantage-text {
      font-size: 14px;
      max-width: 90px;
    }

    .advantage-item:not(:last-child)::after {
      display: none;
    }

    /* Center the 5th item on mobile */
    .advantage-item:nth-child(5) {
      grid-column: 1 / -1;
      justify-self: center;
      max-width: 150px;
    }
  }

  /* @keyframes slideInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  } */