.product-feature {
  --pf-bg: #37185f;
  --pf-bg-2: #2b134d;
  --pf-text: #f2eafc;
  --pf-heading: #ffffff;
  --pf-muted: rgba(255, 255, 255, 0.75);
  --pf-divider: rgba(255, 255, 255, 0.28);
  --pf-btn-bg: #ffffff;
  --pf-btn-text: #2f1660;
  --pf-radius: 18px;
}
.product-feature .pf-grid {
  gap: clamp(16px, 2vw, 24px);
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}
.product-feature .pf-grid:active {
  cursor: pointer;
}
.product-feature .pf-grid > * {
  scroll-snap-align: start;
}
@media (min-width: 1024px) {
  .product-feature .pf-grid {
    justify-content: center;
  }
}
@media (min-width: 768px) {
  .product-feature .pf-grid--2-items {
    justify-content: center;
  }
}
@media (min-width: 768px) {
  .product-feature .pf-grid--2-items .pf-card {
    min-width: unset;
    max-width: 570px;
  }
}
@media (min-width: 1200px) {
  .product-feature .pf-grid--2-items .pf-card {
    padding: 40px 35px;
  }
}
.product-feature .pf-grid--2-items .pf-card__icon img {
  min-width: 48px;
  min-height: 48px;
}
@media (min-width: 1024px) {
  .product-feature .pf-grid--4-items {
    justify-content: unset;
  }
}
@media (min-width: 1300px) {
  .product-feature .pf-grid--4-items {
    justify-content: center;
  }
}
.product-feature .pf-card {
  overflow: hidden;
  padding: clamp(22px, 4vw, 32px);
  border-radius: var(--pf-radius);
  height: 100%;
  height: unset;
  min-height: 100%;
  width: 100%;
  min-width: 300px;
}
@media (min-width: 768px) {
  .product-feature .pf-card {
    min-width: 320px;
  }
}
@media (min-width: 1024px) {
  .product-feature .pf-card {
    max-width: 570px;
  }
}
.product-feature .pf-card__icon {
  margin-bottom: 14px;
}
.product-feature .pf-card__icon img {
  display: block;
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
}
.product-feature .pf-card__title {
  margin: 0 0 12px;
  font-weight: 800;
  font-size: clamp(26px, 5vw, 34px);
  line-height: 1.1;
  letter-spacing: 0.2px;
}
.product-feature .pf-card__content p {
  margin: 0 0 10px;
}
.product-feature .pf-card__divider {
  margin: clamp(1.5rem, 4vw, 2rem) 0;
  border: 0;
  height: 1px;
  background: var(--pf-divider);
}
.product-feature .pf-card__feature-title {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 400;
}
.product-feature .pf-card__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.product-feature .pf-card__feature {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  column-gap: 10px;
  font-size: 15px;
  line-height: 1.45;
  opacity: 0.95;
}
.product-feature .pf-card__feature-text {
  width: calc(100% - 32px);
}
.product-feature .pf-card__feature-inner {
  padding-left: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-feature .pf-card__feature-inner ul {
  padding-left: 1.2rem;
  line-height: 1.6;
}
.product-feature .pf-card__feature-inner ul li {
  list-style: disc;
}
.product-feature .pf-card__feature-inner ol {
  padding-left: 1.2rem;
  line-height: 1.6;
}
.product-feature .pf-card__check {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background-color: var(--bs-heading-color);
  color: #0c0c0c;
  flex-shrink: 0;
  color: #ffffff;
}
.product-feature .pf-card__check svg {
  width: 14px;
  height: 14px;
}
.product-feature .bg-White .pf-card__divider, .product-feature .bg-Light-Periwinkle .pf-card__divider {
  background: var(--bs-heading-color);
}
.product-feature .bg-Indigo .pf-card__check {
  background: #ffffff;
  color: #2b134d;
}
