/** Shopify CDN: Minification failed

Line 191:0 Unexpected "<"

**/
.product__section.main__section {
  margin-top: 0 !important;
}

.product__section--app {
  margin-top: 15px !important;
}

.product__section-title.product-title {
  font-weight: bold;
}

.AirReviews-Widget.AirReviews-Widget--Stars {
  margin-top: -20px !important;
}

@media screen and (max-width: 741px) {
  .product__section-contentWrapper .product__section-content {
    padding-top: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-top: 0;
  }

  .product__section-contentWrapper .product-title {
    display: inline !important;
    margin-top: 0 !important;
    font-size: 18px !important;
  }

  .product__section-contentWrapper .product__section--sku {
    display: inline !important;
    margin-bottom: 5px !important;
    padding-left: 5px;
  }

  .product__section-container .product__section-images {
    height: 40vh;
    overflow: hidden;
  }
}

.product-fixed-width {
    max-width: 370px;
}

.product-title {
    font-family: futura-pt,sans-serif;
    font-size: 22px;
    margin: 8px 0;
    font-weight: 600;
    color: #58595b;
}

.sku {
    margin-top: 0px;
    margin-bottom: 15px;
}

.variant_sku {
    color: #44598a;
    font-family: futura-pt,sans-serif;
    font-weight: 600;
    font-size: 16px;
}

#product-price {
    font-family: futura-pt,sans-serif;
    padding-bottom: 0px;
    border-bottom: 0px;
    margin-bottom: 10px;
    margin-top: 10px;
}

.price-item {
    color: #44598a;
    font-family: futura-pt,sans-serif;
    font-weight: 600;
    font-size: 20px;
}

.product__policies {
    display: none;
}

.qty-selection {
    display: flex;
    align-items: center;
    max-width: 100px;
    border-top: 1px solid;
    border-bottom: 1px solid;
    padding: 5px 15px;
    color: #44598a;
}

@media screen and (max-width: 741px) {
    .qty-selection {
        margin: 20px auto;
    }
}

.qty-selection input {
    border: 0px;
    font-weight: 700;
    color: #44598a;
    height: unset!important;
    line-height: 2;
    padding: 3px;
    width: 30px !important;
}

.qty-selection input:focus {
    outline: none !important;
    -webkit-box-shadow: 0 0 0px rgb(0 0 0 / 0%);
}

.qty-selection .down, .qty-selection .up {
    border: none;
    font-weight: 700;
    color: #44598a;
    height: unset!important;
    line-height: 2;
    padding: 3px;
    width: unset;
    display: inline-block;
    vertical-align: top;
    line-height: 38px;
    padding: 0 8px;
    width: 30px;
    border: 1px solid #f0f0f0;
    text-align: center;
    background: #fff;
    border: 0px;
}

@media screen and (max-width: 741px) {
    .product__section--buttons {
        margin: 20px auto;
    }
}

.addToCart-wrapper {
    display: flex;
    flex-direction: column;
}

#pw_cart_button {
    background-color: #f17b84!important;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #fff;
    border: 0px;
}

#addToCart.main-add {
    background-color: #44598a !important;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #fff;
    border: 0px;
}

.swatches__option-name strong {
    color: #44598a;
    font-family: futura-pt,sans-serif;
    font-weight: 500;
    font-size: 16px;
}

.swatches__option-name span {
    color: #f17b84;
    font-family: futura-pt,sans-serif;
    font-weight: 600;
    font-size: 16px;
}

.swatches__form--input:checked + .swatches__form--label {
    background: #44598a !important;
}

.swatches__form--input:not(:checked) + .swatches__form--label {
    color: #58595b
}
<style>
.open-candles-modal {
  background-color: #44557D;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  line-height: 1.5;
  cursor: pointer;
}

#candles-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

#candles-modal {
  background: white;
  padding: 20px;
  border-radius: 8px;
  max-width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

#candles-modal h2 {
  margin-top: 0;
  text-align: center;
}
.candles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns by default (mobile) */
  gap: 20px;
  justify-content: center;
  padding: 10px;
}

@media screen and (min-width: 768px) {
  .candles-grid {
    grid-template-columns: repeat(4, 1fr); /* 4 columns on tablets and up */
  }
}

@media screen and (min-width: 1200px) {
  .candles-grid {
    grid-template-columns: repeat(6, 1fr); /* 6 columns on large desktop screens */
  }
}


/* Optional: style individual product cards */
.candle-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  background: white;
  padding: 10px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
  border-radius: 8px;
}

.candle-card p {
  text-align: center;
  margin: 5px 0;
}

.candle-card form {
  margin-top: auto;
  display: flex;
  justify-content: center;
}

.candle-card button {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  background-color: #44557D;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  line-height: 1.2;
}


.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  background: none;
  border: none;
  color: #444;
  cursor: pointer;
}
.candles-modal-block .open-candles-modal {
  background-color: #e26e6e;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 4px;
  font-size: 16px;
  line-height: 1.4;
  width: 100%;
  margin-top: 16px;
  display: inline-block;
  text-align: center;
  font-family: inherit;
  box-sizing: border-box;
}

/* Breadcrumb */

@media screen and (max-width: 741px) {
  nav#breadcrumb {
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 0;
    font-size: 10px;
  }

  nav#breadcrumb a {
    font-size: 10px;
  }
}



