/** Shopify CDN: Minification failed

Line 220:0 Unexpected "}"

**/
body {
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  margin: 0;
  overflow-x: hidden;
}

.comparison-section {
  text-align: center;
  padding: 100px 20px;
  max-width: 90%;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.packages {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  padding: 20px;
  box-sizing: border-box;
  width: 100%;
  scroll-snap-align: start;
}

.package {
  background-color: white;
  color: black;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 100%;
  max-width: 400px;
  text-align: center;
  transition: transform 0.3s ease-in-out;
  scroll-snap-align: start;
  flex: 0 0 90%;
  max-height: 600px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.package:hover {
  transform: scale(1.05);
}

.package h3 {
  background-color: #000;
  color: white;
  padding: 10px;
  border-radius: 10px;
  margin: 0 0 15px 0;
  width: 100%;
}

.price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #000;
  margin: 10px 0 20px 0;
  text-align: center;
}

.add-to-cart {
  background-color: #000;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: auto;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}

.add-to-cart:hover {
  background-color: #38B6FF;
  color: black;
}

.package ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin: 0;
  padding: 0 10px;
  flex-grow: 1;
}

.package li {
  margin: 10px 0;
  line-height: 1.6;
  font-size: 1rem;
  display: flex;
  align-items: flex-start;
  word-wrap: break-word;
  white-space: normal;
  width: 100%;
}

.package li::before {
  content: '\2713';
  color: green;
  margin-right: 10px;
  font-weight: bold;
  align-self: flex-start;
}

.growth {
  background-color: #38B6FF;
  color: white;
  transform: scale(1.05);
  border: 2px solid #A2DBFC;
  padding: 40px 20px;
  box-sizing: border-box;
}

.growth h3, .growth li {
  color: white !important;
}

@media (min-width: 768px) {
  .packages {
    display: flex;
    justify-content: center;
    gap: 20px;
    overflow: hidden;
  }

  .package {
    max-height: none;
    overflow: visible;
    flex: 1 1 30%;
  }
}

@media (max-width: 767px) {
  .packages {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 0px;
  }

  .package {
    min-width: 90%;
    max-width: 90%;
    scroll-snap-align: start;
    max-height: 500px;
    overflow-y: auto;
    width: auto;
  }

  .price {
    font-size: 1.2rem;
  }

  .package.starter::before,
  .package.growth::before,
  .package.scale::before {
    display: none;
  }
}

/* Adding Starter image */
.package.starter::before {
  content: '';
  display: block;
  background: url('/cdn/shop/files/Stater.png?v=1738654131') no-repeat center center;
  background-size: contain;
  width: 150px;
  height: 150px;
  margin: 0 auto 10px auto;
}

/* Adding Growth image */
.package.growth::before {
  content: '';
  display: block;
  background: url('/cdn/shop/files/Growth.png?v=1738654131') no-repeat center center;
  background-size: contain;
  width: 150px;
  height: 150px;
  margin: 0 auto 10px auto;
}

/* Adding Scale image */
.package.scale::before {
  content: '';
  display: block;
  background: url('/cdn/shop/files/Scale.png?v=1738654132') no-repeat center center;
  background-size: contain;
  width: 150px;
  height: 150px;
  margin: 0 auto 10px auto;
}

}

document.addEventListener('DOMContentLoaded', () => {
  const container = document.querySelector('.packages');
  if (window.innerWidth < 768) {
    container.scrollTo({
      left: 0,
      behavior: 'instant'
    });
  }
});
