:root {
  --header-height: 6.7rem;
}
@media (width > 768px) {
  :root {
    --header-height: 11.2rem;
  }
}

.product-info-list-section .feature-title {
  color: var(--black-main, #333032);
  text-align: right;
  font-family: Simpler;
  font-size: 2rem;
  font-style: normal;
  font-weight: 900;
  line-height: 120%;
  margin-bottom: 1.4rem;
  margin-top: 3.2rem;
}
@media (width > 768px) {
  .product-info-list-section .feature-title {
    margin-top: 3.8rem;
    font-size: 2.2rem;
  }
}
.product-info-list-section .product-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  margin-top: 1.4rem;
  padding-top: 1.3rem;
  padding-bottom: 1.3rem;
  border-top: 0.1rem solid var(--red-10, #f4b2c1);
  border-bottom: 0.1rem solid var(--red-10, #f4b2c1);
}
.product-info-list-section .product-info-item {
  display: flex;
  flex-direction: row;
  gap: 3.2rem;
  text-align: right;
  padding-bottom: 1.3rem;
  border-bottom: 0.1rem solid var(--red-10, #f4b2c1);
  align-items: flex-start;
}
@media (width > 768px) {
  .product-info-list-section .product-info-item {
    gap: 7.2rem;
  }
}
.product-info-list-section .product-info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.product-info-list-section .product-info-item .info-label {
  color: var(--black-main, #333032);
  font-family: Simpler;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 130%;
  flex-shrink: 0;
  min-width: 7.2rem;
}
@media (width > 768px) {
  .product-info-list-section .product-info-item .info-label {
    min-width: 10rem;
  }
}
.product-info-list-section .product-info-item .info-value {
  color: var(--black-main, #333032);
  font-family: Simpler;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 130%;
}
@media (width > 768px) {
  .product-info-list-section .product-info-item .info-value {
    padding-inline-end: 2rem;
  }
}
