.product-bottom-bar {
  position: fixed;
  bottom: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  background-color: var(--color-white);
  box-shadow: var(--shadow-base);
  padding: 12px;
}

.product-bottom-bar .product-card__pre-sale-price,
.product-bottom-bar .product-card__sale-price {
  font-size: var(--font-size-base);
  line-height: var(--font-line-height-base);
}

.product-bottom-bar__actions {
  display: flex;
  gap: 12px;
}

.product-bottom-bar__best-price {
  color: var(--color-gray3);
  display: inline-block;
  margin-top: 6px;
}

.product-bottom-bar__details {
  flex-wrap: wrap;
  gap: 2px;
  justify-content: space-between;
  margin-right: 20px;
}

.product-bottom-bar__discount {
  display: flex;
  gap: 8px;
}

.product-bottom-bar__primary-button {
  width: 100%;
}

/* Touch-screen device */
@media (pointer:coarse) {
  .product-bottom-bar {
    padding-bottom: 40px;
  }
}
