.products-list .product--list .product__name {
  flex-grow: 0;
} 
@media (min-width: 768px) {
  .header__action .locale-selector:first-child {
    margin-left: 0.25rem;
    margin-right: 0;
  }
}
.locale-selector:first-child {
  margin-right: 0;
}
.cart-summary__info--line-total {
  white-space: nowrap;
}

/* Hide floating bar on desktop, show only on mobile */
.floating-bar {
  display: none;
}
@media (max-width: 991px) {
  .floating-bar {
    background-color: #fff;
    border-top: 1px solid #e0e0e0;
    bottom: 0;
    display: block;
    left: 0;
    opacity: 1;
    pointer-events: auto;
    position: fixed;
    transform: translateY(0);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    width: 100%;
    z-index: 1030;
    padding: 12px 0;
  }
}

.floating-bar__heading {
  display: none;
}
.floating-bar__category-name {
  display: none;
}
.floating-bar__quantity .input-group input {
  max-width: 3rem;
  padding: 0.5rem;
}
.floating-bar__quantity .btn {
  padding: 0.5rem;
}
.floating-bar__actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-shrink: 0;
}

/* Add to cart button */
.floating-bar__actions .btn-primary,
.floating-bar__btn-add-to-cart {
  background: #39383a !important;
  color: #fff !important;
  border: 1px solid #39383a !important;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 14px 28px;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.floating-bar__wrapper {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px;
  width: 100%;
  gap: 16px;
}
.floating-bar__wrapper .btn {
  font-size: 16px;
}
.floating-bar__product-image,
.floating-bar__product-image-wrapper {
  height: 100%;
  width: auto;
}
.floating-bar__product-image-wrapper {
  flex-shrink: 0;
}
.floating-bar__product-image {
  max-width: 5rem;
  -o-object-fit: contain;
  object-fit: contain;
}

/* Price styling - gold underline */
.floating-bar__product-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 8px;
  border-bottom: 2px solid #c9a96e;
  flex-shrink: 0;
}
.floating-bar__product-price .product-summary__info--price-row {
  margin: 0;
  line-height: 1.1;
}
.floating-bar__product-price .product-summary__info--price-gross {
  font-size: 22px;
  font-weight: 700;
  margin-right: 0;
  color: #39383a;
}
.floating-bar__product-price .product-summary__info--price-old {
  font-size: 13px;
  margin-right: 0;
  line-height: 1.1;
  color: #999;
}
