/** Shopify CDN: Minification failed

Line 131:0 Unexpected "{"
Line 131:1 Expected identifier but found "%"
Line 133:2 Unexpected "{"
Line 133:3 Expected identifier but found "%"
Line 134:2 Unexpected "{"
Line 134:3 Expected identifier but found "%"
Line 136:2 Unexpected "<"
Line 139:12 Unexpected "{"
Line 139:26 Expected ":"
Line 139:38 Unexpected "("
... and 1 more hidden warnings

**/
.price {
  font-size: 1.4rem;
/*   letter-spacing: 0.1rem; */
  line-height: normal;
  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 {
  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.8rem;
  line-height: calc(1 + 0.5 / var(--font-body-scale));
  letter-spacing: 0.13rem;
   font-weight: 700;
}

@media screen and (min-width: 750px) {
  .price--large {
    font-size: 2.4rem;
  }
}
/* .price--on-sale .price-item--regular{ display:none;} */
.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 {
  display: inline-block;
}

.price--on-sale .price__sale {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: var(--card-text-alignment);
}

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

.price--on-sale .price-item--regular {
  text-decoration: line-through;
  color: var(--gradient-base-accent-1);
  font-size: 1.4rem;
  transition:all 0.3s linear;
}

.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);
}

.card-information .price {
    font-family: var(--font-additional-family);
    font-size: 1.8rem;
    font-weight: 300;
}
.quick-add-modal {
    display: none;
}
price-item.price-item--sale.price-item--last{
  transition:all 0.3s linear;
}
.widget.product-sidebar-type-collection .product-list-style  span.price-item.price-item--sale.price-item--last {
    display: block;
}
span.price-item.price-item--sale.price-item--last{display:block;}

{% if product.compare_at_price > product.price %}

  {% assign saved_amount = product.compare_at_price | minus: product.price %}
  {% assign saved_percent = saved_amount | times: 100 | divided_by: product.compare_at_price %}

  <div class="kavishri-price-extra">

    <div class="kavishri-save">
      Save {{ saved_amount | money }} ({{ saved_percent }}% OFF)
    </div>

    <div class="kavishri-tax">
      ✓ Inclusive of all Taxes
    </div>


  </div>

{% endif %}
/* ===== Kavishri Premium Price ===== */

.price{
    margin:12px 0 5px;
}

.price__sale{
    display:flex;
    align-items:flex-end;
    gap:14px;
}

.main-product-template .price-item--sale{
    font-size:46px;
    font-weight:700;
    color:#1b1b1b;
    line-height:1;
}

.main-product-template .price-item--regular{
    font-size:22px;
    color:#9a9a9a;
    text-decoration:line-through;
    font-weight:500;
}

.kavishri-price-extra{
    margin-top:18px;
}

.kavishri-save{
    display:inline-block;
    padding:8px 16px;
    background:#edf8ee;
    color:#0b8b38;
    border-radius:30px;
    font-size:15px;
    font-weight:600;
    margin-bottom:12px;
}

.kavishri-tax,
.kavishri-shipping{
    font-size:15px;
    color:#666;
    margin-top:6px;
}
.price__sale{

display:flex;

flex-direction:column;

align-items:flex-start;

gap:8px;

}

.kavishri-old-price{

font-size:18px;

color:#8c8c8c;

}

.kavishri-old-price s{

color:#8c8c8c;

}

.main-product-template .price-item--sale{
font-size:25px !important;
font-weight:900 !important;
}
.kavishri-price-saving{

font-size:18px;

font-weight:600;

color:#1d8f42;

}

.kavishri-tax-text{

font-size:15px;

color:#666;

}