.product-detail__attributes {
  width: 100%;
}

.product-attributes__top {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  width: 100%;
  text-align: center;
}

.product-attributes__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.product-attributes__item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  padding: 0.75rem 1rem;
  color: #1a1a1a;
  background-color: #f5f5f5;
}

.product-attributes__top .product-attributes__item {
  flex-direction: column;
  height: 100%;
}

.product-attributes__bottom .product-attributes__item {
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin-top: 0.5rem;
  text-align: center;
}

.product-attributes__icon {
  display: inline-flex;
  flex: 0 0 auto;
}

.product-attributes__bottom .product-attributes__icon {
  margin-inline-end: 0.5rem;
}

.product-attributes__label,
.product-attributes__value {
  overflow-wrap: anywhere;
}

.product-attributes__bottom .product-attributes__label {
  margin-inline-end: 0.25rem;
}

.product-attributes__value {
  font-weight: 700;
}

@media (max-width: 768px) {
  .product-attributes__item {
    padding: 0.5rem;
  }

  .product-attributes__icon svg {
    width: 20px;
    height: 20px;
  }
}
