/** Shopify CDN: Minification failed

Line 174:1 Expected "}" to go with "{"

**/
/* --- 360Grills Custom Pricing Styles --- */

.price {
  font-size: 1.6rem;
  letter-spacing: 0.1rem;
  line-height: calc(1 + 0.5 / var(--font-body-scale));
  color: rgb(var(--color-foreground));
  
  /* Pill Shape Base */
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border-radius: 50px;
  padding: 0.6rem 1.8rem;
  background-color: #20202B; /* Brand Dark Navy */
  margin-top: 5px;
  margin-bottom: 5px;
}

/* Ensure all text inside the pill is Cream */
.price .price-item,
.price s.price-item,
.price .price__regular .price-item--regular {
  color: #FFF9E1 !important; /* Brand Cream */
}

/* Force container layout */
.price > * {
  display: block;
}

.price .price__container {
  display: flex;
  align-items: center;
  gap: 8px; /* Space between regular and sale price */
}

/* Hide unavailable */
.price.price--unavailable {
  visibility: hidden;
}

/* Layout helpers */
.price--end {
  text-align: right;
}

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

/* STYLING FOR "SALE" VIEW (Crossed out price + New Price) */

/* The wrapper for sale prices */
.price--on-sale .price__sale {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  gap: 10px; /* Gap between $3000 and $2000 */
}

/* The Old Price (Crossed Out) */
.price--on-sale .price-item--regular {
  text-decoration: line-through;
  color: #FFF9E1 !important;
  opacity: 0.7; /* Dim the old price slightly */
  font-size: 1.3rem; /* Smaller than current price */
  font-weight: 400;
  margin: 0;
}

/* The New Active Price */
.price .price-item--sale,
.price__regular .price-item--regular {
  font-weight: 700; /* Bold */
  font-size: 1.6rem;
  color: #FFF9E1 !important;
}

@media screen and (min-width: 750px) {
  .price .price-item--sale,
  .price__regular .price-item--regular {
    font-size: 1.8rem;
  }
}

/* Default Visibility Toggles */
.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;
}

/* Fix badges if used outside */
.price--sold-out .price__badge-sold-out,
.price--on-sale .price__badge-sale,
.volume-pricing--sale-badge .price__badge-sale {
  display: inline-block;
  margin-left: 1rem;
}

/* Unit pricing small text */
.unit-price {
  display: block;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: rgba(255, 249, 225, 0.7); /* Cream with opacity */
}
/* 360Grills: Match Price Pill Width to Product Image */
@media screen and (max-width: 749px) {
  /* 1. Ensure the card container is the master boundary */
  .card__content {
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100%;
  }

 /* 360Grills: Low-Profile Price Pill Optimization */
@media screen and (max-width: 749px) {
  /* Reduce the overall container height and remove extra margins */
  .price--pill {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    border-radius: 0 !important; /* Squaring the edges to match the image precisely */
    min-height: auto !important;
  }

  /* Force the internal price container to be slim */
  .price--pill .price__container {
    padding: 4px 0 !important; /* Minimal vertical padding */
    margin: 0 !important;
    display: flex !important;
    justify-content: center !important;
    gap: 5px; /* Space between old and new price */
  }

  /* Shrink the text to a refined, professional size */
  .price--pill .price-item {
    font-size: 1.1rem !important; /* Smaller, more sophisticated scale */
    line-height: 1 !important;
    margin: 0 !important;
    letter-spacing: 0 !important;
  }

  /* Ensure the sale price uses our brand red for focus */
  .price--pill .price-item--sale {
    color: #89212E !important; 
    font-weight: 700 !important;
  }

  /* Dim the 'Compare At' price so it doesn't compete for space */
  .price--pill .price__sale s.price-item--regular {
    font-size: 0.9rem !important;
    opacity: 0.6;
  }
}