/** Shopify CDN: Minification failed

Line 351:26 Expected "{" but found "}"
Line 351:101 Unexpected "}"

**/
.bon-header-content p {text-shadow: 5px 5px 5px #353535;}

.waspricenotice {color:#ec0101; font-size:18px; font-weight: 600;}
.wasprice {font-size:18px; font-weight: 500;}

.hallowdiv { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; background-color:#000; }
.pumpkin { width: 75px; height: 75px; display: flex; align-items: center; justify-content: center; padding: 5px; }
.hallowbtn { background-color:#000; color:#fff; padding-right:5px; font-size:22px; line-height:24px; }
.hallowbtn:hover {background-color:#000; color:#ffcc01}

/* PRODUCT PRICING */

.t4s-product__info-container .t4s-product-price del {
  color: var(--text-color);
  font-size: 24px;
  display: block;
  padding-left: 7px;
}

/* PDP Buy & Qty */
.t4s-product-form__buttons .t4s-product-form__submit {
  padding: 20px 0px 20px;
}
.t4s-product-form__buttons .t4s-quantity-wrapper {
  height: 55px;
}
.t4s-product-form__buttons
  .t4s-quantity-wrapper
  input.t4s-quantity-input[type="number"] {
  height: 48px;
  font-size: 22px;
  font-weight: 400;
}
.t4s-product-form__buttons .t4s-quantity-wrapper button {
  padding: 8px;
}
h1,
h2,
h3,
h4 {
  color: #0053a0;
}
.t4s-tabs-pr-ul a {
  border-radius: 10px;
}

/* PDP PRODUCT FORM */
.t4s-product-form__variants {
  background-color: #f7f7f7;
  padding: 1px 15px 15px 15px;
  border: solid 1px #dddddd;
}
.t4s-swatch__item {
  background-color: #fff;
}

.t4s-swatch__title:before {
  content: "SELECT ";
}

.t4s-product-form__buttons .t4s-quantity-wrapper {
  background-color:#fff;
}
.t4s-product__info-container .t4s-product-price ins {
  font-weight: 600;
}
.t4s-product__info-container .t4s-product-price ins:after {
  content: " "; font-size:16px;
}
.t4s-badge-price {
  font-size: 22px;
  font-weight: 400;
  margin-top: 2px;
}

.t4s-product__info-container .t4s-price-from {
  color: var(--price-sale-color);
}

.t4s-product__info-container .t4s-product-price del {font-weight:400; font-size: 20px;}

/* END PRODUCT PRICING */

/* Black Friday Promotion Styles */

.bf-promotion-container {
  margin: 15px 0;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bf-promotion-container:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.bf-upper-section {
  background: #a0020a;
}

.bf-lower-section {
  background: #000;
}

.price-message {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  margin-bottom: 0;
}

.price-message__logo {
  height: 30px;
  width: auto;
}

.price-message p {
  margin: 0;
  color: #fff;
  font-weight: 500;
  flex: 1;
  text-align: center;
}

.bf-boxes-image {
  width: 100%;
  height: auto;
  display: block;
}

.bf-disclaimer {
  text-align: center;
  margin: 8px 0 0 0;
  padding: 0 10px 10px;
  font-size: 12px;
  color: #fff;
  font-style: italic;
}

/* Countdown Timer Styles */
.bf-countdown-timer {
  padding: 15px 10px 5px;
  text-align: center;
}

.bf-countdown-title {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.bf-countdown-units {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.bf-countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bf-countdown-circle {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 5px;
}

.bf-countdown-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.bf-countdown-circle-bg {
  fill: none;
  stroke: #373737;
  stroke-width: 2;
}

.bf-countdown-circle-progress {
  fill: none;
  stroke: #fcc917;
  stroke-width: 2;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.1s linear;
}

.bf-countdown-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.bf-countdown-label {
  font-size: 11px;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
}

.bf-countdown-ended {
  font-size: 14px;
  font-weight: 600;
  color: #ff4444;
  padding: 10px;
}

/* Popup Modal Styles */
.bf-popup-modal {
  position: fixed;
  z-index: 9999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.bf-popup-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 0;
  border-radius: 8px;
  width: 90%;
  max-width: 800px;
  max-height: 80vh;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.bf-popup-close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
  padding: 10px 15px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.bf-popup-close:hover {
  color: #000;
}

.bf-popup-body {
  padding: 20px;
  overflow-y: auto;
  flex: 1;
}

.bf-popup-footer {
  padding: 15px 20px;
  text-align: center;
  border-top: 1px solid #e1e1e1;
  background: #f9f9f9;
}

.bf-popup-close-btn {
  background: #333;
  color: white;
  border: none;
  padding: 10px 30px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.bf-popup-close-btn:hover {
  background: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .bf-popup-content {
    margin: 10% auto;
    width: 95%;
  }
  
  .bf-popup-body {
    padding: 15px;
  }
  
  .bf-popup-footer {
    padding: 12px 15px;
  }
  
  .bf-countdown-units {
    gap: 10px;
  }
  
  .bf-countdown-circle {
    width: 70px;
    height: 70px;
  }
  
  .bf-countdown-value {
    font-size: 14px;
  }
  
  .bf-countdown-label {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .bf-countdown-units {
    gap: 8px;
  }
  
  .bf-countdown-circle {
    width: 60px;
    height: 60px;
  }
  
  .bf-countdown-value {
    font-size: 16px;
  }
  
  .bf-countdown-label {
    font-size: 12px;
  }
}@media (min-width:1025px)}@media (max-width:1024px)button[is="lz_popup_btn"] {bottom:65px!important}}@media (min-width:768px) and (max-width:1024px)}@media (max-width:767px)}