/** Shopify CDN: Minification failed

Line 130:0 Unexpected "<"
Line 140:2 Comments in CSS use "/* ... */" instead of "//"
Line 141:25 Unexpected "{"
Line 141:34 Expected ":"
Line 141:61 Unexpected ";"

**/
.price {
  font-size: 1.6rem;
  letter-spacing: 0.1rem;
  line-height: calc(1 + 0.5 / var(--font-body-scale));
  color: rgb(var(--color-foreground));
}

.price > * {
  display: inline-block;
  vertical-align: top;
}

.price.price--unavailable {
  visibility: hidden;
}

.price--end {
  text-align: right;
}

.price .price-item {
  display: inline-block;
  margin: 0 1rem 0 0;
}

.price__regular .price-item--regular {
  margin-right: 0;
}

.price:not(.price--show-badge) .price-item--last:last-of-type {
  margin: 0;
}

@media screen and (min-width: 750px) {
  .price {
    margin-bottom: 0;
  }
}

.price--large {
  font-size: 1.6rem;
  line-height: calc(1 + 0.5 / var(--font-body-scale));
  letter-spacing: 0.13rem;
}

@media screen and (min-width: 750px) {
  .price--large {
    font-size: 1.8rem;
  }
}

.price--sold-out .price__availability,
.price__regular {
  display: block;
}

.price__sale,
.price__availability,
.price .price__badge-sale,
.price .price__badge-sold-out,
.price--on-sale .price__regular,
.price--on-sale .price__availability {
  display: none;
}

.price--sold-out .price__badge-sold-out,
.price--on-sale .price__badge-sale,
.volume-pricing--sale-badge .price__badge-sale {
  display: inline-block;
}

.volume-pricing--sale-badge .price__badge-sale {
  margin-left: 0.5rem;
}

/* When on sale, stack the compare-at (regular) price above the sale price */
.price--on-sale .price__sale {
  /* Use grid so every direct child becomes its own row, ensuring vertical stacking */
  display: grid;
  grid-auto-flow: row;
  align-content: start;
}

/* Ensure any direct children inside the sale container (including wrapper spans) break onto new lines */
.price--on-sale .price__sale > * {
  display: block;
}

/* Ensure typed price items are block-level as well (covers older markup) */
.price--on-sale .price__sale .price-item {
  display: block;
}

/* Add a small gap between original and sale price when stacked */
.price--on-sale .price__sale .price-item--sale {
  margin-top: 0.2rem;
}

.price--center {
  display: initial;
  justify-content: center;
}

.price--on-sale .price-item--regular {
  text-decoration: line-through;
  color: rgba(var(--color-foreground), 0.75);
  /* Match sale price size/typography for consistent hierarchy */
  font-size: 1.6rem;
}

.unit-price {
  display: block;
  font-size: 1.1rem;
  letter-spacing: 0.04rem;
  line-height: calc(1 + 0.2 / var(--font-body-scale));
  margin-top: 0.2rem;
  text-transform: uppercase;
  color: rgba(var(--color-foreground), 0.7);
}

<div id="product-free-shipping-wrapper" class="free-shipping-wrapper animate-in" style="display:none">
  <div id="product-free-shipping-text" class="free-shipping-text">
    👀 Almost there! Add <span id="product-remaining-value">4000</span> EGP to get <strong>FREE SHIPPING</strong>
  </div>
  <div class="free-shipping-bar">
    <div id="product-free-shipping-bar-fill" class="free-shipping-bar-fill" style="width:0%;"></div>
  </div>
</div>

<script>
  // Assign product price to JS
  window.productPrice = {{ product.price | divided_by: 100 }};
</script>
