/** Shopify CDN: Minification failed

Line 219:0 Unexpected "}"

**/
/* ===============================
   BASE BUTTON STYLES
================================ */
button#checkout,
button.button.submit-button.size-style.button,
button.sticky-add-to-cart__button.add-to-cart-button.button,
.product-form-buttons button,
button#BuyButtons-ProductSubmitButton-AVFlvclFZalk1YVdCZ__add-to-cart,
.add-to-cart,
.checkout-btn,
a.button.cart-items__empty-button {
  position: relative;
  padding: 12px 48px;
  border-radius: 35px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;

  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-transform: capitalize;
  color: #FDFDFC;

  background: linear-gradient(
    180deg,
    #0B0B0B 0%,
    rgb(48, 19, 19) 40%,
    #0F0F0F 100%
  );

  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.25),
    0 12px 28px rgba(0, 0, 0, 0.18);

  transition:
    transform 0.25s ease,
    box-shadow 0.35s ease,
    color 0.3s ease;
}

/* ===============================
   GOLD BACKGROUND LAYER
================================ */
button#checkout::before,
button.button.submit-button.size-style.button::before,
button.sticky-add-to-cart__button.add-to-cart-button.button::before,
.product-form-buttons button::before,
button#BuyButtons-ProductSubmitButton-AVFlvclFZalk1YVdCZ__add-to-cart::before,
.add-to-cart::before,
.checkout-btn::before,
a.button.cart-items__empty-button::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 0%;
  border-radius: 35px;
  z-index: -1;

  background: linear-gradient(
    135deg,
    #FFD700,
    #FFC107,
    #FFEB3B,
    #FFD54F,
    #FFB300
  );

  background-size: 200% 200%;

  transition: width 0.45s ease;
  will-change: width;
}

/* ===============================
   HOVER EFFECT
================================ */
button#checkout:hover::before,
button.button.submit-button.size-style.button:hover::before,
button.sticky-add-to-cart__button.add-to-cart-button.button:hover::before,
.product-form-buttons button:hover::before,
button#BuyButtons-ProductSubmitButton-AVFlvclFZalk1YVdCZ__add-to-cart:hover::before,
.add-to-cart:hover::before,
.checkout-btn:hover::before,
a.button.cart-items__empty-button:hover::before {
  width: 100%;
  animation: goldFlash 0.8s ease forwards;
}
button#checkout:hover,
button.button.submit-button.size-style.button:hover,
button.sticky-add-to-cart__button.add-to-cart-button.button:hover,
.product-form-buttons button:hover,
.add-to-cart:hover,
.checkout-btn:hover,
a.button.cart-items__empty-button:hover {
  color: #000000;
  transform: translateY(-2px);

  box-shadow:
    0 6px 12px rgba(0, 0, 0, 0.12),
    0 12px 28px rgba(0, 0, 0, 0.10);
}

/* ===============================
   GOLD ANIMATION
================================ */
@keyframes goldFlash {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* ===============================
   MOBILE SHAKE ANIMATION
================================ */
@keyframes shake-mobile-pulse {
  0%, 10% { transform: translateX(0); }
  15%, 25% { transform: translateX(-6px); }
  20%, 30% { transform: translateX(6px); }
  35%, 100% { transform: translateX(0); }
}

/* ===============================
   TABLET (≤768px)
================================ */
@media screen and (max-width: 768px) {
    button.sticky-add-to-cart__button.add-to-cart-button.button,
    product-form-buttons button,
    button#BuyButtons-ProductSubmitButton-AVFlvclFZalk1YVdCZ__add-to-cart,
  .add-to-cart,
  .checkout-btn,
  a.button.cart-items__empty-button {
    width: 100%;
    padding: 14px 20px;
    font-size: 14px;
    letter-spacing: 0.1px;
  }
}

/* ===============================
   MOBILE (≤576px)
================================ */
@media screen and (max-width: 576px) {
    button.sticky-add-to-cart__button.add-to-cart-button.button,
    product-form-buttons button,
    button#BuyButtons-ProductSubmitButton-AVFlvclFZalk1YVdCZ__add-to-cart,
  .add-to-cart,
  .checkout-btn,
  a.button.cart-items__empty-button {
    width: 100%;
    padding: 12px 16px;
    font-size: 13px;
  }

  /* Only animate main CTA */
  .add-to-cart {
    animation: shake-mobile-pulse 2s ease-in-out infinite;
  }
}

/* ===============================
   EXTRA SMALL (≤400px)
================================ */
@media screen and (max-width: 400px) {
    button.sticky-add-to-cart__button.add-to-cart-button.button,
    product-form-buttons button,
    button#BuyButtons-ProductSubmitButton-AVFlvclFZalk1YVdCZ__add-to-cart,
  .add-to-cart,
  .checkout-btn,
  a.button.cart-items__empty-button {
    padding: 10px 14px;
    font-size: 12px;
  }
}

.product-badges__badge.product-badges__badge--rectangle.color-scheme-1 {
    padding: 5px 12px;
  background-color: #555555; /* dark background */
  color: #FDFDFC; /* gold text */
  font-size: 14px;
  font-weight: 700;
  border-radius: 30px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4); /* subtle black shadow */
  white-space: nowrap;
}
.product-badges__badge.product-badges__badge--rectangle.color-scheme-1::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.3),   /* Bright Gold, semi-transparent */
    rgba(255, 193, 7, 0.3),   /* Golden Amber, semi-transparent */
    rgba(255, 235, 59, 0.3),  /* Light Gold, semi-transparent */
    rgba(255, 213, 79, 0.3),  /* Medium Gold, semi-transparent */
    rgba(255, 179, 0, 0.3)    /* Deep Gold, semi-transparent */
  );
  transform: skewX(-20deg);
  animation: flashSweep 2s infinite;
  background-size: 100% 100%;
}

/* Sweep animation */
@keyframes flashSweep {
  0% { left: -75%; }
  100% { left: 125%; }
}
}