.pr-long-card .pr-image {
  aspect-ratio: var(--pr-image-aspect-ratio, 3/4);
  transition-duration: 450ms;
}

.pr-long-card .pr-image:hover {
  transform: scale(1.07);
}

@media screen and (max-width: 480px) {
  .product-list {
    gap: var(--sm_product_gap);
  }
}
@media screen and (max-width: 1280px) {
  .product-list {
    gap: var(--md_product_gap);
  }
}
@media screen and (min-width: 1281px) {
  .product-list {
    gap: var(--lg_product_gap);
  }
}

@media screen and (max-width: 480px) {
  .product-card {
    width: calc(100% / var(--sm_product_in_row));
  }
}
@media screen and (max-width: 1280px) {
  .product-card {
    width: calc(100% / var(--md_product_in_row));
  }
}
@media screen and (min-width: 1281px) {
  .product-card {
    width: calc(100% / var(--lg_product_in_row));
  }
}

.section-heading-container {
  margin: 36px 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.section-heading {
  font-weight: 600;
  font-size: 24px;
  color: var(--section-heading-color, #1a1a1a);
  display: block;
  margin: 0px;
}

.section-heading::after {
  content: "";
  background: var(--section-heading-color, #1a1a1a);
  width: 90%;
  height: 1px;
  display: block;
  margin: auto;
  margin-top: 6px;
}

.section-description {
  font-size: 18px;
  color: var(--section-heading-color, #1a1a1a);
  margin: 8px 0px 0px;
}

.section-heading-viewall {
  position: absolute;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--section-heading-color, #1a1a1a);
}

.section-heading-viewall:hover {
  text-decoration: underline;
}

@media screen and (max-width: 640px) {
  .section-heading-container {
    margin: 16px 0px;
  }
  .section-heading {
    font-weight: 600;
    font-size: 18px;
  }

  .section-description {
    font-size: 14px;
    color: #1a1a1a;
    margin: 6px 0px 0px;
  }

  .section-heading-viewall {
    display: none;
  }
}

.loader-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-left: 0;
  margin-top: 30px;
}

.loader-two-col-img {
  width: 100%;
  height: 288px;
  border-radius: 0;
  transform: none;
}

.loader-name {
  transform: none;
  height: 18px;
  margin-top: 16px;
  width: 100%;
}

.loader-price {
  transform: none;
  height: 18px;
  margin-top: 16px;
  width: 40%;
}

@media screen and (max-width: 600px) {
  .loader-container {
    width: calc(100vw - 20px);
    margin-left: -8px;
    justify-content: space-between;
  }
}

.features-heading {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: #1a1a1a;
  display: block;
  margin-bottom: 0px;
  margin-top: 16px;
  text-align: left;
}
.features-table-name {
  color: #666666;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.02em;
}
.features-table-value {
  color: #222222;
  font-size: 14px;
  margin-top: 16px;
  font-weight: 400;
  padding-left: 40px;
}
.features-view-more {
  color: var(--color);
  cursor: pointer;
  font-size: 14px;
  margin-top: 4px;
  margin-bottom: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 600px) {
  .features-heading {
    font-size: 18px;
  }
  .features-table-name {
    color: #666666;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0.02em;
  }
  .features-table-value {
    color: #222222;
    font-size: 14px;
    margin-top: 16px;
    font-weight: 400;
    padding-left: 40px;
  }
  .features-view-more {
    color: var(--color);
    cursor: pointer;
    font-size: 14px;
    margin-top: 4px;
    margin-bottom: 16px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0.02em;
  }
}
