.aqu-product-meta__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 768px) {
  .aqu-product-meta__list {
    grid-template-columns: max-content minmax(0, max-content);
  }
}
.aqu-product-meta__single {
  display: contents;
}
.aqu-product-meta__value {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-border);
}
.aqu-product-meta__value--label {
  padding-right: 2rem;
}
.aqu-product-meta__single:first-child .aqu-product-meta__value {
  padding-top: 0;
}

.aqu-product-meta__single:last-child .aqu-product-meta__value {
  padding-bottom: 0;
  border-bottom: none;
}

.aqu-product__stock {
  max-width: 168px;
  height: 1rem;
  color: var(--color-correct);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.aqu-product-card--simple .aqu-product__stock {
  justify-content: center;
  text-align: left;
}

.aqu-product__stock--small {
  font-size: var(--font-size-s);
}
.aqu-product__stock--small svg {
  width: 0.9rem;
}
.aqu-product__stock--out_of_stock {
  color: var(--color-wrong);
}
.aqu-product__stock--out_of_stock svg path {
  fill: var(--color-wrong);
}
.aqu-product-add_to_cart {
  display: flex;
  gap: 0.5rem;
  align-items: normal;
  flex-wrap: wrap;
}
.aqu-product-add_to_cart__measurement_unit {
  align-self: center;
  margin-right: 0.5rem;
}
.aqu-product-add_to_cart__wrap {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.aqu-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  border: 1px solid var(--color-border);
  transition: box-shadow 0.2s;
}
.aqu-product-card:has(a:hover), .aqu-product-card:has(button:hover) {
  box-shadow: var(--box-shadow-hover);
}
.aqu-carousel__slide .aqu-product-card {
  height: 100%;
}

.aqu-product-card__link {
  width: 100%;
}
.aqu-product-card--simple {
  text-align: center;
  align-items: center;
  border: 0;
}
.aqu-product-card--simple:hover {
  box-shadow: var(--box-shadow-hover);
}
.aqu-product-card__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0.75rem;
  height: 100%;
  justify-content: space-between;
  container-type: inline-size;
}
.aqu-product-card--simple .aqu-product-card__content {
  align-items: center;
}

.aqu-product-card__image {
  aspect-ratio: var(--product-image-aspect-ratio);
  object-fit: cover;
  width: 100%;
}
.aqu-product-card__meta_list {
  font-size: var(--font-size-s);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.aqu-product-card__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 0.5rem;
  row-gap: 0.7rem;
  justify-content: space-between;
}
@container (max-width: 180px) {
  .aqu-product-card__bottom {
    flex-direction: column;
    align-items: start;
  }
}