/* Hide MSRP / RRP price but keep You Save visible */
.price-section--withoutTax.rrp-price--withoutTax {
  display: none !important; }

/* Default / Was price text and price color */
.price-section--withoutTax.non-sale-price--withoutTax,
.price-section--withoutTax.rrp-price--withoutTax {
  color: #B2B2B2;
  /* light gray for container text */ }

.price--non-sale,
.price--rrp {
  color: #B2B2B2 !important;
  /* light gray for price */ }

/* You Save text and price color */
.price-section--saving .price {
  color: #012369;
  /* navy blue for all text and amount */ }

/* Container holding Was and Sale price */
.productView .productView-price {
  display: flex;
  justify-content: space-between;
  /* Default price left, Sale price right */
  align-items: flex-start;
  /* align top */ }

/* Was / Default Price stays on left */
.price-section--withoutTax.non-sale-price--withoutTax {
  margin: 0;
  /* remove extra spacing */ }

/* Sale Price container floats right */
.price-section--saving.price {
  text-align: right;
  /* Sale price right-aligned */
  display: flex;
  flex-direction: column;
  /* makes "You Save" go below Sale price */
  align-items: flex-end;
  /* right-align both Sale and You Save */
  margin: 0; }

/* Optional spacing between Sale Price and You Save */
.price--saving {
  margin-top: 2px;
  /* space below Sale price */ }

.default-reviews {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #333;
  margin-top: 4px; }

.default-reviews .stars i {
  color: #ffb400;
  /* gold */
  font-size: 16px; }

.default-reviews .rating-text {
  font-weight: 500;
  color: #555; }
