/** Shopify CDN: Minification failed

Line 7:0 Unexpected "<"
Line 168:0 Unexpected "<"

**/
<style>
  .new-models-section {
    padding: 60px 0;
    text-align: center;
  }

  .models-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Always 4 blocks per row */
    gap: 20px;
  }

  .new-models-section .section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 40px;
    word-wrap: break-word;
  }

  .model-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid lightgray;
    justify-content: space-between;
  }

  .model-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.12);
  }

  .model-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 15px;
  }

  .model-title {
    font-weight: 600;
    font-size: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid lightgray;
    width: 100%;
    margin: 0;
  }

  .model-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    width: 100%;
  }

  .model-buttons .btn {
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 132px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .btn--primary {
    color: #F36D21 !important;
    background: #FFEEE0 !important;
  }

  .btn--primary:hover {
    background: #F36D21 !important;
    color: #fff !important;
  }

  .btn--secondary {
    color: #666665;
    border: 1px solid lightgray;
  }

  .btn--secondary:hover {
    color: #F36D21;
    border: 1px solid #F36D21;
  }

  /* Responsive adjustments */
  @media (max-width: 1024px) {
    .models-grid {
      grid-template-columns: repeat(3, 1fr); /* 3 items per row for medium screens */
    }

    .new-models-section .section-title {
      font-size: 36px;
      margin-bottom: 30px;
    }

    .model-title {
      font-size: 20px;
    }

    .model-buttons .btn {
      width: 100%; /* Slightly smaller button on medium screens */
      height: 35px;
    }
  }

  @media (max-width: 768px) {
    .models-grid {
      grid-template-columns: repeat(2, 1fr); /* 2 items per row for smaller screens */
      gap: 15px;
    }

    .new-models-section {
      padding: 40px 0;
    }

    .new-models-section .section-title {
      font-size: 28px; /* Smaller title font size */
      margin-bottom: 25px;
    }

    .model-title {
      font-size: 18px; /* Smaller title font size for model cards */
    }

    .model-buttons .btn {
      width: 100%; /* Full-width buttons on small screens */
      height: 40px;
      font-size: 16px;
    }
  }

  @media (max-width: 480px) {
    .models-grid {
      grid-template-columns: 1fr; /* Single column for very small screens */
    }

    .new-models-section .section-title {
      font-size: 24px; /* Smaller title on the smallest screens */
      margin-bottom: 20px;
    }

    .model-title {
      font-size: 16px; /* Even smaller model card titles */
    }

    .model-buttons .btn {
      font-size: 14px; /* Smaller button text */
      padding: 10px 12px;
    }
  }
</style>
