/** Shopify CDN: Minification failed

Line 163:0 Unexpected "<"
Line 241:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
.custom-feature-icons {
  background: #1e66ff;
  padding: 50px 20px;
  text-align: center;
  color: white;
}
.custom-feature-icons .container {
  max-width: 1200px;
  margin: 0 auto;
}
.custom-feature-icons .main-heading {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #ffffff;
}
.custom-feature-icons .sub-text {
  font-size: 18px;
  margin-bottom: 40px;
  color: #f0f0f0;
}
.custom-feature-icons .features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}
.custom-feature-icons .feature-block img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}
.custom-feature-icons .feature-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #ffffff;
}
.custom-feature-icons .feature-desc {
  font-size: 15px;
  color: #eaeaea;
  line-height: 1.4;
}
.comparison-section {
  padding: 4rem 0;
  text-align: center;
}

.comparison-heading {
  font-size: 2rem;
  font-weight: 800;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.comparison-subtitle {
  margin-top: 0.5rem;
  font-size: 1.125rem;
  color: #6b7280; /* gray-500 */
}

.comparison-cards {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .comparison-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.comparison-card {
  border-radius: 1rem;
  padding: 2rem;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  text-align: left;
  position: relative;
}

.comparison-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.875rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-weight: 600;
}

.comparison-card-header {
  text-align: center;
  margin-bottom: 1rem;
}

.comparison-card-icon {
  font-size: 2rem;
}

.comparison-card-logo {
  width: 60px;
  height: auto;
  margin: 0.5rem auto;
  display: block;
}

.comparison-card-heading {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 0.5rem;
}

.comparison-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}

.comparison-points {
  margin-top: 1rem;
  list-style: none;
  padding: 0;
}

.comparison-points li {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.comparison-points li span {
  margin-left: 0.5rem;
}

.comparison-stats {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.comparison-stat {
  background: #f3f4f6; /* gray-100 */
  padding: 1rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}
<style>
  .pet-section {
    background: #fff;
    padding: 50px 20px;
    text-align: center;
  }
  .pet-section h2 {
    font-size: 32px;
    font-weight: bold;
    color: #111;
    text-align: center;
  }
  .pet-section h2 span {
    color: #a855f7; /* Purple highlight for brand */
  }
  .pet-section p.subtitle {
    color: #555;
    font-size: 18px;
    margin-top: 8px;
    text-align: center;
  }
  .pet-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  @media (max-width: 991px) {
    .pet-cards {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 640px) {
    .pet-cards {
      grid-template-columns: 1fr;
    }
  }
  .pet-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .pet-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  }
  .pet-card .icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 15px;
  }
  .pet-card .icon-wrapper img {
    width: 40px;
    height: 40px;
    object-fit: contain;
  }
  .pet-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  .pet-card p {
    color: #666;
    font-size: 14px;
  }
</style>