/** Shopify CDN: Minification failed

Line 3519:0 Unexpected "}"

**/


/* for atc button and popup upsell */
.product-popup {
  display: none;
  position: fixed;
  bottom: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
  max-width: 500px;
  width: 100%;
  right: 20px;
}

@media (max-width: 767px) {
  .product-popup {
    display: none;
    position: fixed;
    bottom: 0%;
    /* left: 50%; */
    /* transform: translate(-50%, -50%); */
    background: white;
    /* padding: 20px; */
    border-radius: 15px 15px 0px 0px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    max-width: max-content;
    width: 100%;
    right: 0px;
  }

}


  .product-popup__overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    cursor: pointer; /* Enable pointer cursor by default */
  /* cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='white' stroke='black'%3E%3Ccircle cx='16' cy='16' r='15' stroke-width='2'/%3E%3Cline x1='10' y1='10' x2='22' y2='22' stroke-width='2'/%3E%3Cline x1='10' y1='22' x2='22' y2='10' stroke-width='2'/%3E%3C/svg%3E") 16 16, pointer; */
    cursor:var(--cursor-close-svg-url) 28 28,auto; 
}

  .product-popup__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin-bottom: 20px; */
    /* border-bottom: 1px solid #bbbbbb85; */
    padding: 10px 18px;
    background-color: #f6f6f6;
    border-radius: 15px 15px 0px 0px;
  }

.upsell-featured-image img.rounded-xs {
    border: 1px solid #f6f6f6;
    border-radius: 8px;
}
.product-popup__close {
  font-size: 30px;
  cursor: pointer;
  width: 24px; /* Set fixed width and height */
  height: 24px; /* Set fixed width and height */
  /* border: 1px solid #ababab; */
  border-radius: 50%; /* Use 50% instead of 100% */
  padding: 15px; /* Remove any padding */
  display: flex; /* Use flex to center the × symbol */
  align-items: center;
  justify-content: center;
  background: none; /* Add transparent background */
  line-height: 1; /* Reset line height */
  margin-left: auto; /* Push to right */
}

  .product-popup__content {
    text-align: center;
  }
  
  .upsell-product-title{
    font-size:14px;
    font-weight:bold;
    line-height:1.4;
    padding-right:0.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    
  }
  
  .upsell-featured-image{
   width:25%; 
    margin-right: 10px;
  }

  .upsell-details{
    width:65%;
  }

  form.upsell-atc {
    margin: 10px 18px;
    background-color: #000000;
    color: #ffffff;
    border-radius: 10px;
    position:relative;
}

.upsell-atc {
      position: relative;
    }

    .selected-count-upsell {
      display: inline-block;
      margin-left: 1px;
      font-size: 14px;
      color: inherit;
    }

button.quick-add__add-to-cart-button.button.button--primary.button--full-width.upsell {
    width: 100%;
    border-radius: 10px !important;
    padding: 12px;
    font-size: 14px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

button.quick-add__add-to-cart-button.button.button--primary.button--full-width.upsell:before {
        content: "";
        position: static;
        width: 24px;
        height: 24px;
        background-image: url(/cdn/shop/files/cart.svg?v=1732538444);
        background-size: contain;
        background-repeat: no-repeat;
}

 button.button.button--lg.w-full.upsell {
    height: 48.4px;
   letter-spacing: 0.5px;
}

  .loader-upsell {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.1);
  }

  .loader__spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    margin-left: -10px;
    border: 2px solid #ffffff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  #custom-add-to-cart.loading {
    visibility: hidden;
  }

  .complementary-products-section {
  margin-top: 20px;
}

.complementary-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.complementary-product-item {
  background: #fff;
  border: 1px solid #e1e1e1;
  padding: 10px;
  text-align: center;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.complementary-product-link {
  text-decoration: none;
  color: inherit;
}

.complementary-product-image img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.complementary-product-title {
  font-size: 1rem;
  font-weight: bold;
  margin-top: 10px;
}

.complementary-product-price {
  font-size: 1.2rem;
  margin-top: 5px;
}

.complementary-product-price .original-price {
  text-decoration: line-through;
  color: #999;
}

.complementary-product-price .discounted-price {
  color: #e63946;
  font-weight: bold;
}

.complementary-product-price .price {
  color: #333;
}

  .complementary-products-upsell {
    font-family: 'proxima-nova';
    background-color: #f9fafb;
    padding: 24px;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
  }

  .complementary-products-upsell .title-upsell {
    font-size: 20px;
    font-weight: bold;
    padding-bottom: 20px;
    text-align: left;
  }

  .complementary-products-upsell .subtitle-upsell {
    font-size: 14px;
    color: #6b7280;
    margin-top: 0;
    margin-bottom: 16px;
  }

  .product-list-upsell {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .product-item-upsell {
    display: flex;
    align-items: center;
    background-color: white;
    padding: 16px;
    border-radius: 10px;
    border: 1px solid #e0e0e0c2;
    /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); */
  }

  .product-image-upsell {
    width: 25%;
    /* height: 80px; */
    margin-right: 16px;
    border: 1px solid #f6f6f6;
    border-radius: 8px;
  }

  .most-ordered-upsell .product-image-upsell {
    width: 25%;
    /* height: 80px; */
    margin-right: 16px;
    border: 1px solid #f6f6f6;
    border-radius: 8px;
    margin-left: 10px;
  }

  .product-image-upsell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* border-radius: 4px; */
  }

  .product-info-upsell {
    /* flex-grow: 1; */
    width: 60%;
    text-align: left;
  }

.header-variant{
 font-size: 12px;
 color: #757575;
 letter-spacing: .5px; 
}

  .product-info-upsell .product-title-upsell {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 4px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    /* padding-right: 0.8rem; */
  }

  .product-info-upsell .price-upsell {
    font-size: 14px;
    font-weight: bold;
    margin: 0;
  }

  .product-select-upsell {
    /* display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px; */
    width: 15%;
  }

  .badge-upsell.new{
  position: relative;
    background-color: #10B981;
    color: white;
    padding: 0.8rem 0.25rem;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0px 08px 05px 0px;
    transform: rotate(180deg);
}

  .checkbox-upsell {
    display: inline-block;
    position: relative;
    cursor: pointer;
    user-select: none;
    width: 24px;
    height: 24px;
  }

  .checkbox-upsell input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }

  .checkmark-upsell {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 1.5px solid #d1d5db;
    border-radius: 4px;
  }
 .most-ordered-upsell .checkmark-upsell {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
     background-color: #fff;
    border: 1.5px solid #009951;
    border-radius: 4px;
  }

  .checkbox-upsell input:checked ~ .checkmark-upsell {
    background-color: #000;
    border-color: #000;
  }

  .most-ordered-upsell .checkbox-upsell input:checked ~ .checkmark-upsell {
    background-color: #009951;
    border-color: #009951;
  }

  .checkmark-upsell:after {
    content: "";
    position: absolute;
    display: none;
  }

  .checkbox-upsell input:checked ~ .checkmark-upsell:after {
    display: block;
  }

  .checkbox-upsell .checkmark-upsell:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }

  .product-list-container {
      max-height: 300px; /* Adjust this value as needed */
      overflow-y: auto;
      /* padding-right: 10px; Add some padding for the scrollbar  */
    }

    .product-list-upsell {
      display: flex;
      flex-direction: column;
      gap: 10px; /* Adds space between items */
    }

    .product-item-upsell {
      display: flex;
      align-items: center;
      padding: 10px;
      border-bottom: 1px solid #e0e0e0;
    }

  .variant-details {
    line-height: 1.4 !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    /* padding-bottom: 0.8rem; */
    margin-bottom: 7px;
    font-size: 12px;
    color: #757575;
    letter-spacing: 0.5px;
}

    /* Ensure the last item doesn't have a border */
    .product-item-upsell:last-child {
      border-bottom: none;}

    .complementary-products-upsell {
      padding: 16px;
    }

    .product-image-upsell {
      width: 25%;
      /* height: 60px; */
    }

    .product-info-upsell .product-title-upsell {
      font-size: 14px;
      text-align: left;
      margin-bottom: 0px;
      font-weight: 600;
      line-height: 1.4;
      display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    /* padding-right: 0.8rem; */
    }

    .product-info-upsell .price-upsell {
      font-size: 14px;
      text-align: left;
      margin-top: 5px;
      font-weight:600;
    }

compare-at-price.price-upsell.compare {
    text-decoration: line-through;
    color: #525252;
  font-size: 12px;
}

sale-price.price-upsell {
    font-weight: 600;
  padding-right: 5px;
  color: black;
}

span.price-upsell-sale-list {
    font-weight: 600;
    padding-right: 5px;
}

span.price-upsell-compare-list {
    color: #525252;
    text-decoration: line-through;
    font-size: 12px;
}

button.quick-add__add-to-cart-button.button.button--primary.button--full-width.info.upsell {
    font-size: 120%;
    border-radius: 5px !important;
}

button.quick-add__add-to-cart-button.button.button--primary.button--full-width.info.upsell:before {
    content: unset;
}

button.quick-add__add-to-cart-button.button.button--primary.button--full-width.desktop.upsell {
    font-size: 120%;
    border-radius: 5px !important;
  padding: 10px 24px;
}

button.quick-add__add-to-cart-button.button.button--primary.button--full-width.desktop.upsell:before {
    content: unset;
}

/* .product-popup::part(outside-close-button) {
  width: 24px;
  height: 24px;
  background: #ffffff;
  color: #000000;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: absolute;
  top: -12px;
  right: -12px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 1001;
  cursor: pointer;
  border: none;
  padding: 0;
}

.product-popup::part(outside-close-button)::before {
  content: '×';
  font-size: 20px;
  line-height: 1;
}

@media screen and (max-width: 699px) {
  .product-popup::part(outside-close-button) {
    display: grid;
  }
} */
@media (min-width: 768px) {
  .default_atc_pdp {
    display: flex !important;
}}

.total-order-value {
    padding: 10px;
    /* background-color: #f8f8f8; */
    border-radius: 5px;
    font-size: 16px;
    /* text-align: right; */
    width: 35%;
  display:none;

}

.total-order-value strong {
  margin-right: 10px;
}

.popup-footer {
    display: flex;
    align-items: center;
}

.popup-atc-button {
    width: 100%;
}

h2#totalOrderValue {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1;
}

variant-media.comp-header-image {
    width: 25% !important;
}

.comp-btn {
  width:100%;
}

.crazy-btn {
  width:100%;
}
.product-item-upsell.most-ordered-upsell {
    padding: 0;
  border: 1px solid #10b981;
}

/* Hide uniware json detail in line-item */
  /* li.text-sm.text-subdued:nth-child(2) {
    display: none;
} */

.atc-for-pdp {
    background: #0C0C0DF2;
    width: 100%;
}

/* Sticky atc button on pdp page */
@media (max-width: 699px) {
div#custom-add-to-cart-pdp {
    display: flex;
    justify-content: space-evenly;
    margin: 0 2rem;
}


  .atc-btn-pipe {
    font-size: 15px;
  }

  .atc-btn-cp {
    color: #b3b3b3;
    font-weight: 400;
    text-decoration: line-through;
  }

   #pdpStickyCart {
     width:100%;
   }
  
  .pdp-stickybar .cart-btn button.btn {
        width: 100%;
        text-transform: uppercase;
    }

  /* sold out sticky btn */
  .sticky-soldout-pdp {
      text-transform: uppercase;
    }
}

@media (min-width: 700px) {
.atc-btn-pipe {
    display:none;
  }

  .atc-btn-sp {
    display:none;
  }

  .atc-btn-cp {
    display:none;
  }

  button.btn.upsell {
    font-size: 16px;
    text-transform: uppercase;
    border-radius: unset;
}

buy-buttons.crazy-btn {
    padding-block-start: var(--spacing-3-5);
    padding-block-end: var(--spacing-3-5);
    padding-inline-start: var(--spacing-8);
    padding-inline-end: var(--spacing-8);
}
}

/* spin the wheel */
@media (max-width: 768px) {
.sticky-spin {
    position: fixed;
    right: 0;
    bottom: 20%;
    z-index: 1;
    display: grid;
    background: linear-gradient(to right, rgba(6, 6, 6, 0.9), rgba(71, 71, 71, 0.9));
    color: #fff;
    border-radius: 16px 0 0 16px;
    padding: 10px 23px;
    line-height: 1;
}
.sticky-spin span {
    line-height: 1;
    margin-top: 10px;
    font-size: 125%;
    font-weight:500;
}
.rotate-svg {
    animation: rotate 6s linear infinite;
}    
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
.spin-popup__overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(3px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    z-index: 998;
}

.spin-popup {
    position: fixed;
    bottom: -130%; /*before it was -100%*/
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 600px;
    background: #fff;
    padding: 30px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px 10px 0 0;
    transition: bottom 0.4s ease-in-out;
    z-index: 999;
}

.spin-popup.show {
    bottom: 0;
    background-color: black;
}

/* .spin-popup__close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
} */
.spin-popup__close {
    height: 50px;
    width: 50px;
    background-color: #00000090;
    font-size: 40px;
    cursor: pointer;
    border-radius: 50%;
    padding: 0;
    position: absolute;
    top: -60px;
    left: 45%;
    color: #fff;
    text-align: center;
    line-height: 1;
}
.spin-the-wheel-container {
  display: none;
}

.congrats-banner img {
  border-radius: 10px 10px 0 0;
}
.popup-content {
  padding: 10px 20px 20px;
}

@keyframes zoomInOut {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.congrats-popup {
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  z-index: 1002;
  width: 90%;
  max-width: 320px;
  padding: 0;
  text-align: center;
  opacity: 0;
  transition: all 0.5s ease-out;
}

.congrats-popup.show {
  display: block;
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  animation: zoomInOut 0.5s ease-out;
}

.coin-container {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
}

.coin-gnc {
  position: absolute;
  width: 80px;
  height: 80px;
  background: #FFD700;
  border-radius: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #B8860B;
}

.coin-gnc::before {
  content: "G";
  font-weight: bold;
}

.rays {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: repeating-conic-gradient(from 0deg, 
    #FFD70000 0deg 20deg,
    #FFD700 20deg 40deg);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.congrats-popup h2 {
  font-size: 20px;
  margin: 0 0 8px;
  color: #1a1a1a;
  font-weight: 600;
}

.congrats-popup p {
  font-size: 15px;
  color: #757575;
  margin: 0 0 15px;
  line-height: 1.5;
}

.earn-more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: #1a1a1a;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 16px;
}

.earn-more-btn span {
  margin-left: 3px;
}

.start-shopping {
  color: #1E1E1E;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  display: block;
  line-height: 1;
}

.congrats-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(3px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  z-index: 1000;
}

.congrats-overlay.show {
  display: block;
  animation: fadeIn 0.3s ease-out;
}

.extra-popup {
  position: fixed;
  /* Start fully offscreen below the viewport */
  bottom: -100%;
  left: 50%;
  transform: translateX(-50%);
  
  /* Sizing/styling */
  width: 100%;
  max-width: 100%;
  background: white;
  padding: 15px;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: bottom 0.5s ease-in-out;
  z-index: 1004; 
}

.extra-popup-close {
  position: absolute;
  left: 50%;
  top: -63px;
  background-color: rgba(0,0,0,0.5);
  border-radius: 50%;
  height: 50px;
  width: 50px;
  color: #fff;
  text-align: center;
  font-size: 35px;
  line-height: 1;
  transform: translateX(-50%);
}

.extra-popup.open {
  bottom: 0;
}

.extra-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(3px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  z-index: 1003;
}

.extra-overlay.open {
  display: block;
}

.extra-popup h2 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 5px;
    color: #1E1E1E;
    font-weight: 700;
}

.extra-popup p {
    text-align: center;
    color: #757575;
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.5;
}

.extra-input-group {
    position: relative;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.label-container{
  position:relative;
  width:100%;
}
.earn-more-label {
  position: absolute;
    top: -12px;
    left: 12px;
    background: #fff;
    padding: 0 2px;
    z-index: 10;
}

.extra-input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    color: #0c0c0d;
}

.extra-input-group input::placeholder {    
    color: #b3b3b3;
}

.extra-points {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #1E1E1E;
    margin-left: 5px;
    font-weight: 600;
}

.extra-coin {
    background: #FFB800;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.extra-gender-group {
    display: flex;
    gap: 0;
    margin-bottom: 15px;
}

.extra-gender-btn {
    flex: 1;
    padding: 12px;
    border: 1px solid #D9D9D9;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #B3B3B3;
    font-size: 16px;
    font-weight: 600;
}

/* Active (Selected) Button */
.extra-gender-btn.active {
    background-color: #F5F5F5;
    border-color: black;
    color: black;
}

.extra-gender-group .extra-gender-btn:first-of-type {
  margin-right: 6px;
}

.extra-gender-group .extra-gender-btn:last-of-type {
  margin-left: 6px;
}

.extra-claim-btn {
    width: 100%;
    padding: 15px;
    background: #D9D9D9;
    border: none;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    color: #fff;
}

/* Active state */
.extra-claim-btn.active {
    background-color: #0C0C0DF2;
}

.extra-earned {
    display: flex;
    align-items: center;
    gap: 8px;
  font-weight: 600;
    font-size: 16px;
}

span.claim-text {
    font-weight: 600;
    font-size: 16px;
}

.wheel-stand {
  position: relative;
  margin-bottom: 140px !important;
}
img.wheel-stand-img.img1 {
    position: absolute;
    max-width: 310px;
    left: -22px;
    top: -24px;
}

img.wheel-stand-img.img2 {
    position: absolute;
    max-width: 310px;
    left: -22px;
    top: -24px;
}

/* 2nd congrats popup */

  .second-congrats-banner img {
  border-radius: 10px 10px 0 0;
}
.second-popup-content {
  padding: 10px 20px 20px;
}
.second-congrats-popup {
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  z-index: 1007;
  width: 90%;
  max-width: 320px;
  padding: 0;
  text-align: center;
  opacity: 0;
  transition: all 0.5s ease-out;
}

.second-congrats-popup.show {
  display: block;
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  animation: zoomInOut 0.5s ease-out;
}

.second-congrats-popup h2 {
  font-size: 20px;
  margin: 0 0 8px;
  color: #1a1a1a;
  font-weight: 700;
}

.second-congrats-popup p {
  font-size: 15px;
  color: #757575;
  margin: 0 0 15px;
  line-height: 1.5;
}

.second-earn-more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: #1a1a1a;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 16px;
}

.second-earn-more-btn span {
  margin-left: 3px;
}

.second-congrats-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(3px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  z-index: 1005;
}

.second-congrats-overlay.show {
  display: block;
  animation: fadeIn 0.3s ease-out;
}


.second-congrats-heading{
  font-size: 20px;
  margin: 0 0 8px;
  color: #1a1a1a;
  font-weight: 600;
}

.earned-value{
  font-size: 20px;
    margin: 0 0 8px;
    color: #1a1a1a;
}

.wheel-stand-img {
    transition: opacity 0.2s ease-in-out;
}

.numInputWrapper span {
  opacity:1 !important;
}

.extra-input-group input#dob {
    width: 100%;
      background: transparent;
      height: 50px;
}
    /* White Glossy Stripes */
/* @keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.front::after {
  content: "";
  position: absolute;
  top: 0;
  right: 22%;
  width: 20px;
  height: 100%;
  background: white;
  box-shadow: 26px 0 rgba(255, 255, 255, 0.7);
  opacity: 0.8;
  transform: skewX(14deg);
  animation: shimmer 2s linear infinite;
} 

 */

 /* Ensure the pushable button's front element is properly positioned */
.pushable .front {
  position: relative;
  overflow: hidden;  /* Hide parts of the shimmer that move outside */
}

/* Remove the existing static pseudo-element styling and replace with this */
.pushable .front::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;  /* Start completely off the left side */
  width: 20px;  /* Cover the full width of the button */
  height: 100%;
  background: white;
  box-shadow: 26px 0 rgba(255, 255, 255, 0.7);
  opacity: 0.8;
  transform: skewX(-25deg);
  animation: shimmer 2s linear infinite;
}

/* Define the keyframes for the shimmer animation */
@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
}

/* apply coupon button in side cart */
.apply-coupon-btn {
  border-radius: 0.5rem;
  border: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 10px 0;
}
.apply-coupon-btn >span {
  display: flex;
  align-items: center;
}
.apply-coupon-popup .modal-content {
  padding: 15px;
}
@media (min-width: 499px) {
  .apply-coupon-popup .modal-content {
    position: absolute;
    right: 0;
  }
}
.apply-coupon-popup .apply-coupon-header {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  margin-bottom: 8px;
  padding: 0;
  border: none;
  font-weight: 700;
}
.apply-coupon-popup .apply-coupon-header button.back-button {
  padding: 0
}
.apply-coupon-popup .apply-coupon-header h2 {
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
}
.apply-coupon-popup .coupon-info {
  padding: 0;
  margin-bottom: 8px;
}
.apply-coupon-popup .coupon-info p {
  margin: 0;
}
.apply-coupon-popup .coupon-input {
  padding: 0;
}
.apply-coupon-popup .coupon-input .input-group {
  gap: 0;
}
.apply-coupon-popup .coupon-input .input-group input {
  flex: 1;
  padding: 8px 10px;
  border: 1px solid #ddd;
  border-radius: 4px 0 0 4px;
}
.apply-coupon-popup .coupon-input .input-group input:focus-visible {  
  box-shadow: none;
  outline: none;
}
.apply-coupon-popup .coupon-input .input-group .apply-btn {
  border-radius: 0 4px 4px 0;
  padding: 9px 20px;
  text-align: center;
}
.apply-coupon-popup .coupon-list {
  margin-top: 20px;
}
.apply-coupon-popup .coupon-list .coupon-card {
  margin: 13px 0;
}
.apply-coupon-popup .coupon-list .coupon-card .coupon-sidebar {
  background: #27a844;
  font-size: 16px;
  letter-spacing: 1px;
}
.apply-coupon-popup .coupon-list .coupon-card .coupon-sidebar::before {
  content: ''; 
  position: absolute;
  left: 0; 
  height: 10px; 
  width: 100%; 
  background: rgb(255 255 255 / 17%);
  bottom: -40px; 
  animation: shine 4s infinite; 
}
@keyframes shine {
  0% {
    transform: skewY(30deg) translateY(70px); /* Start from below */
  }
  50% {
    transform: skewY(30deg) translateY(-300px); /* Move to the top */
  }
  100% {
    transform: skewY(30deg) translateY(70px); /* Return to start */
  }
}
.apply-coupon-popup .coupon-list .coupon-card .coupon-sidebar::after {
  content: ''; 
  position: absolute;
  left: 0; 
  height: 30px; 
  width: 100%; 
  background: rgb(255 255 255 / 17%);
  bottom: -20px; 
  animation: shine 4s infinite; 
}
.apply-coupon-popup .coupon-list .coupon-card .coupon-content {
  padding: 11px 10px;
}
.apply-coupon-popup .coupon-list .coupon-card .coupon-content .coupon-header {
  padding: 0;
  border: none;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
}
.apply-coupon-popup .coupon-list .coupon-card .coupon-content .coupon-header .apply-link {
  color: #27a844;
  font-weight: bold;
}
.apply-coupon-popup .coupon-list .coupon-card .coupon-content p.coupon-code {
  margin: 0 0 8px 0; 
  border-bottom: 1px dashed #ddd;
  padding-bottom: 8px;
}
.apply-coupon-popup .coupon-list .coupon-card .coupon-content .coupon-desc { 
  margin: 4px 0 0;
  line-height: 1.5;
}

/* .sticky-spin{
  display:none !important;
} */


  /* Loader styles to be placed inside the claim button */
.claim-loader {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  width: 18px;
  height: 18px;
  border: 3px solid #fff;  /* Change color if needed */
  border-top-color: #00BFFF;
  border-radius: 50%;
  animation: spinl 1s linear infinite;
}

@keyframes spinl {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* SKU on pdp page */
variant-sku.product-info__sku.text-xs.text-subdued {
    font-size: 14px;
    line-height: 1.7;
    font-weight: 500;
}
@media (max-width: 768px) {
 variant-sku.product-info__sku.text-xs.text-subdued {
    padding-left: 16px;
} 
}

@media only screen and (max-width: 699px) {
    .footer_section ul.footerlistlick li {
        max-width: unset;
        width: 100% !important;
    }
}
.footer_section ul.footerlistlick li {
    line-height: 1;
    width: 100%;
    max-width: 100% !important;
}



iframe#preview-bar-iframe {
    display: none;
}

/* clearance sale - expiry date */
.product .product-info variant-barcode.product-info__barcode {
  background: rgba(255, 0, 0, 0.1);
  padding: 2px 8px;
  font-size: 15px;
  font-weight: bold;
  color: #232323;
  position: relative;
  top: 12px;
  border: 1px solid #ff9f9f;
}

@media only screen and (max-width: 699px) {
.product .product-info variant-barcode.product-info__barcode {
  margin: 0 16px;
}  
}

/* PDP Reviews Desktop */
.product-info span.reviews.star.start-text {
    margin: 0 5px;
}

.product-info .reviews-icon-div {
    display: flex;
    float: left;
    align-items: center;
}

.product-info span.reviews.verified.verified-text {
    margin-left: 5px;
}

.product-info .reviews.new-review-layout {
    display: block;
    margin: 0;
    cursor: pointer;
}
.product-info  svg.icon.icon-star-verified {
    width: 20px;
    height: 20px;
}
.product-info svg.icon.icon-verified {
    width: 20px;
    height: 20px;
}
.product-info span.review-pipe.pipe {
    padding: 0rem 0.5rem;
}

/* PDP Reviews Mobile */
.shopify-section--main-product span.reviews.star.start-text {
    margin: 0 5px;
}

.shopify-section--main-product .reviews-icon-div {
    display: flex;
    float: left;
    align-items: center;
}

.shopify-section--main-product span.reviews.verified.verified-text {
    margin-left: 5px;
}

.shopify-section--main-product .reviews.new-review-layout {
    display: block;
    margin: 0;
    cursor: pointer;
    padding: 10px 0px;
}
.shopify-section--main-product  svg.icon.icon-star-verified {
    width: 20px;
    height: 20px;
}
.shopify-section--main-product svg.icon.icon-verified {
    width: 20px;
    height: 20px;
}
.shopify-section--main-product span.review-pipe.pipe {
    padding: 0rem 0.5rem;
}

@media (min-width:601px) {
  .reviews.new-review-layout.mobile-vw {
    display: none;
}
}
@media (max-width:600px) {
  .reviews.new-review-layout.desktop-vw {
    display: none;
}
.shopify-section--main-product .reviews.new-review-layout {
    margin: 0;
    cursor: pointer;
    padding: 0px 16px 10px 16px;
}
}

/* Product card reviews */
@media (max-width:600px) {
.reviews-icon-div.review-pc {
    display: flex;
    float: left;
    align-items: center;
    padding:10px 0px;
    gap: 0.15rem;
    font-size: 0.65rem;
}
}
@media (min-width:601px) {
.reviews-icon-div.review-pc {
    display: flex;
    float: left;
    align-items: center;
    padding:10px 0px;
    gap: 0.5rem;
    font-size: 1rem;
}
}
/* My profile button in hamburger menu */
.customer-details a.button {
    margin-top: 1rem;
}
.Online-Store-UI-AppProvider_17wto {
    display: none;
}

.mobile-sortby-button {
  display:none;
}

.customer-details a.button::before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  background-color: currentColor;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" fill="currentColor" viewBox="0 0 14 18"><path fill="currentColor" d="M7.34497 10.0933C4.03126 10.0933 1.34497 12.611 1.34497 15.7169C1.34497 16.4934 1.97442 17.1228 2.75088 17.1228H11.9391C12.7155 17.1228 13.345 16.4934 13.345 15.7169C13.345 12.611 10.6587 10.0933 7.34497 10.0933ZM7.34503 1.51318C5.14151 1.51318 3.34503 3.2285 3.34503 5.40526C3.34503 7.58202 5.14151 9.29734 7.34503 9.29734C9.54855 9.29734 11.345 7.58202 11.345 5.40526C11.345 3.2285 9.54855 1.51318 7.34503 1.51318Z"></path></svg>');
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  margin-right: 5px;
  position: relative;
  top: 2px;
}
.customer-details-wrapper .login_signup_btn a::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 16px;
  background-color: currentColor;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" fill="currentColor" viewBox="0 0 14 18"><path fill="currentColor" d="M7.34497 10.0933C4.03126 10.0933 1.34497 12.611 1.34497 15.7169C1.34497 16.4934 1.97442 17.1228 2.75088 17.1228H11.9391C12.7155 17.1228 13.345 16.4934 13.345 15.7169C13.345 12.611 10.6587 10.0933 7.34497 10.0933ZM7.34503 1.51318C5.14151 1.51318 3.34503 3.2285 3.34503 5.40526C3.34503 7.58202 5.14151 9.29734 7.34503 9.29734C9.54855 9.29734 11.345 7.58202 11.345 5.40526C11.345 3.2285 9.54855 1.51318 7.34503 1.51318Z"></path></svg>');
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  margin-right: 2px;
  position: relative;
  top: 2px;
}

/* PDP review section */
a.jdgm-ask-question-btn {
  display: none !important;
}

/* badges and tags */
.product-list .product-card__badge-list .product_tag-badge.new-arrivals {
  background-color: rgba(0, 128, 0, 0.2);
  color: rgb(0 128 0);
}
.product-list .product-card__badge-list .product_tag-badge.top-rated {
  background-color: rgba(255, 165, 0, 0.2);
  color: rgb(255 165 0);
}
.product-list .product-card__badge-list .product_tag-badge.multi-vitamin {
  background-color: rgba(65, 105, 225, 0.2);
  color: rgb(65 105 225);
}

/* home page see all collection */
@media screen and (min-width: 480px) {
  a.text-with-icon.group {
    border: 1px solid #ccc;
    padding-left: 2px;
    border-radius: 50%;
    height: 28px;
    width: 28px;
  }
}

/* list page alignment */
@media screen and (min-width: 1000px) {
  .template-collection .collection {
    margin-block-start: var(--spacing-3);
  }
}

/* Product Authentication Verify your GNC Product Purchase */
.verify .form-group.international_container {
  display: flex;
  max-width: 400px;
  margin: 0;
}
.verify .form-group.international_container select {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin: 0 5px 15px 0;
  padding: 5px 8px;
}

/*Sitemap*/
h1.sitemap-heading {
  font-size: var(--text-h1);
  font-weight: bold;
  text-align: center;
  line-height: 1.1;
}
.gnc-sitemap {
  display: flex;
  margin-top: 30px !important
}
.gnc-sitemap > div.col-md-4 {
  margin-top: 0
}
.gnc-sitemap > div h3 {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 10px !important;
}
.gnc-sitemap ul {
  list-style: none
}
.gnc-sitempa-ul > li > ul {
  margin-top: 1.5rem
}
.gnc-sitemap ul {
  list-style: none
}
.gnc-sitemap ul li {
  line-height: 1.5rem;
  vertical-align: top;
  position: relative
}
.gnc-sitemap ul li a {
  text-decoration: none;
  display: inline-block;
  background: none !important
}
.gnc-sitemap ul.sitemap-nodrop {
  display: grid;
  row-gap: 0.8rem;
  padding-left: 12px;
  margin-bottom: 20px;
}
.gnc-sitemap ul ul {
  margin-top: 1.5rem;  
  margin-bottom: 1.5rem;
  margin-left: 1.5rem;
}
.gnc-sitemap ul ul li {
  position: relative
}

.gnc-sitemap ul ul li::before {
  content: "";
  display: inline-block;
  width: 3rem;
  height: 100%;
  border-left: 1px #000 solid;
  position: absolute;
  top: -0.75rem
}
.gnc-sitemap ul ul li::before {
  content: "";
  display: inline-block;
  width: 3rem;
  height: 1.5rem;
  border-bottom: 1px #000 solid;
  position: absolute;
  top: -0.75rem
}
.gnc-sitemap ul ul li a {
  margin-left: 3.75rem
}
@media (max-width: 767px) {
  .gnc-sitemap {
    display: grid;
  }
  .gnc-sitemap > div.col-md-4 {
    margin-bottom: 30px;
  }
}
@media (min-width: 768px) {
  .gnc-sitemap .col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}
.no-scroll {
  overflow: hidden !important;
  height: 100%;
}

@media (min-width:769px) {
.sticky-spin, .sticky-spin-button, .spin-popup__overlay, .spin-popup, .spin-the-wheel-container, .congrats-popup, .congrats-overlay, .extra-popup, .extra-overlay, .second-congrats-container, .second-congrats-overlay {
  display:none;
 }
}

/* @media (max-width: 699px) {
    .product-hero-section .product-selected-item.main-slider .selected-media-wrap.swiper-wrapper {
        height: 300px !important;
    }
} */

/* GNC India Coupons */
main.page-gnc-india-coupons > section:first-child {
  background-color: rgb(247, 247, 247);
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 0px;
}
main.page-gnc-india-coupons > section:first-child .container .page-spacer {
  margin: 0 !important;
}
main.page-gnc-india-coupons section .container .page-spacer .page h1 {
  text-align: center !important;
}
main.page-gnc-india-coupons section .section.section-blends {
  padding-top: 0;
  padding-bottom: 0;
  max-width: 1199px;
  margin: 0 auto;
}
.coupon-item {
  display: flex;
  align-items: flex-start;
  padding-block-start: 40px;
  padding-block-end: 40px;
  border-bottom: 1px solid #e9e9e9;
}
.coupon-item:last-of-type {
  border-bottom: none;
}
.coupon-item .coupon-code {
  display: inline-block;
  width: 25%;
  float: left;
  border: 1px dashed #d3d4d5;
  position: relative;
}
.coupon-item .coupon-code::before {
  content: "";
  background: url(/cdn/shop/files/cut-icon.svg?v=1723013138);
  position: absolute;
  right: 15px;
  top: -7px;
  display: inline-block;
  width: 22px;
  height: 14px;
}
.coupon-item .coupon-code .coupon-code-text {
  display: block;
  color: #e31837;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  padding: 20px 0;
  width: 100%;
  margin: 0 auto;
}
.coupon-item .coupon-code .copy-code-button {
  background: #f4f4f4;
  color: #333;
  text-align: center;
  display: block;
  padding: 5px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-top: 1px dashed #d3d4d5;
  font-weight: 600;
  cursor: pointer;
}
.coupon-item .coupon-details {
  display: inline-block;
  width: 75%;
  padding-left: 30px;
}
.coupon-item .coupon-details h3 {
  font-size: 22px;
  color: #25292b;
  line-height: 35px;
  font-weight: 400;
  margin: 0;
}
.coupon-item .coupon-details .coupon-terms {
  margin-top: 5px;
  color: #777;
}
.coupon-item .coupon-details .coupon-para {
  margin-top: 10px;
  color: #000;
}
.coupon-item .coupon-details .coupon-terms a img {
  max-width: 160px;
  margin-top: 10px;
}
@media screen and (max-width: 600px){
  .coupon-code.coupon-code-mob {
    display: block !important;
    width: 100% !important;
    margin-top: 20px;
  }
  .coupon-code.coupon-code-desk {
    display: none !important;
  }
  .coupon-item {
    display: grid !important;
  }
  .coupon-item .coupon-code .coupon-code-text {
    padding: 10px 0 !important;
  }
  .coupon-item .coupon-details {
    width: 100%;
    padding-left: 0;
  }
}
@media screen and (min-width: 600px){
  .coupon-code.coupon-code-desk {
    display: block !important;
  }
  .coupon-code.coupon-code-mob {
    display: none !important;
  }
}
.coupon-item-seo {
  display: block;
  padding-block-start: 40px;
  padding-block-end: 40px;
  color: #141516;
}
.coupon-item-seo .coupon-seo-content {
  margin-bottom: 20px;
}
.coupon-item-seo .coupon-seo-content:last-of-type {
  margin-bottom: 0;
}
.coupon-item-seo .coupon-seo-content h2 {
  font-weight: bold;
  font-size: 18px;
  font-family: var(--text-font-family);
}
.coupon-item-seo .coupon-seo-content p {
  font-size: 15px;
  line-height: 1.6;
}
.coupon-item-seo .coupon-seo-content p a {
  line-height: 2;
}
.coupon-item-seo .coupon-seo-content p span {
  margin: 0 5px;
  color: #999;
}
/* product certification hub */
.prod-cert-hub img {
  border: 1px solid #ccc;
  margin: 30px auto;
}
.prod-cert-hub h2 {
  text-transform: uppercase;
  font-family: var(--heading-font-family);
  font-weight: var(--heading-font-weight);
  font-style: var(--heading-font-style);
  letter-spacing: var(--heading-letter-spacing);
  margin-block-start: var(--spacing-6);
  line-height: 1.1;
}
.prod-cert-hub h2 strong {
  font-size: 30px;
  color: #e31837
}
.prod-cert-hub h3 strong {
  font-size: 25px;
  color: #000
}
.prod-cert-hub h2 + h2 {
  margin-top: 10px;
}
.prod-cert-hub h2 + div.table-responsive {
  margin-top: 0.75rem;
}
.prod-cert-hub h2 + div.table-responsive {
  margin-top: 0.75rem;
}
.prod-cert-hub p {
  margin-top: 5px !important
}
.prod-cert-hub p.mb-15 {
  margin-bottom: 20px !important
}
.prod-cert-hub ul {
  margin-top: 5px !important;
  row-gap: 0.5em;
  list-style-position: outside;
  padding-left: 15px
}
.prod-cert-hub p a {  
  background: none !important;
  color: #e31837;
}
.prod-cert-hub p a:hover {  
  background: none !important;  
}
.prod-cert-hub P > a + span {
  margin: 0 5px;
  line-height: 2;
}
.prod-cert-hub h3 {
  margin-block-start: var(--spacing-6)
}
/*category content and combo content toggle*/
#gnc_foot_desc_link {
  text-align: center;
  background-color: #f7f7f7;
  padding: 10px 0;
  color: #e31837;
  text-decoration: underline;
  cursor: pointer;
  font-weight: 600
}
#gnc_foot_desc_link span {
  align-items: center;
  display: inline-flex
}
#gnc_foot_desc_link span::after {
  content: url('/cdn/shop/files/touch-click-icon.gif?v=1687243950');
  right: -10px;
  position: relative;
}
.gnc_foot_desc_toggle {
  margin: 0 !important;
}
.rich-text__wrapper, 
.prose.justify-items-start > div {
  width: 100%;
}
/*combo product content*/
.combo-prod-cont {
  background-color: #f7f7f7;
  padding: 20px 20px 40px;
  text-align: left
}
.combo-prod-cont h2 {
  text-transform: capitalize;
  margin-block-start: var(--spacing-6);
}
.combo-prod-cont h2 strong {
  font-size: 24px;
  color: #e31837
}
.combo-prod-cont h3 strong {
  font-size: 22px;
  color: #000
}
.combo-prod-cont h2 + h2 {
  margin-top: 10px;
}
.combo-prod-cont h2 + h2 {
  margin-top: 10px;
}
.combo-prod-cont h2 + div.table-responsive {
  margin-top: 0.75rem;
}
.combo-prod-cont h2 + div.table-responsive {
  margin-top: 0.75rem;
}
.combo-prod-cont h2 + p, 
.combo-prod-cont h3 + p {
  margin-top: 0 !important
}
.combo-prod-cont p {
  margin-top: 6px !important
}
.combo-prod-cont p.mb-15 {
  margin-bottom: 20px !important
}
.combo-prod-cont ul {
  display: grid;
  row-gap: 0.5em;
  list-style-position: outside;
  list-style-type: disc;
  margin-top: 5px !important;
  padding-left: 15px
}
.combo-prod-cont p a {  
  background: none !important;
  color: #e31837;
}
.combo-prod-cont p a:hover {  
  background: none !important;  
}
.combo-prod-cont P > a + span {
  margin: 0 5px;
  line-height: 2;
}
.combo-prod-cont h3 {
  margin-block-start: var(--spacing-6)
}
/*category content table css*/
.table-responsive table thead th {
  padding: 0.5rem !important;
}
.table-responsive table tbody tr + tr > *, .table-responsive table thead + tbody tr > * {  
  padding: 0.5rem !important;
}
.table-responsive table {
  width: 100%;
  max-width: 800px;
}
.table-responsive table .tbl-subhead-padd {
  position: relative;
  left: 20px;
}

/* kg/lbs toggle */
.option-lbs {
  display: inline;
}
.option-kgs {
  display: none;
}
.unit-kgs .option-lbs {
  display: none;
}
.unit-kgs .option-kgs {
  display: inline;
}

.toggleContainer {
   position: relative;
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   width: 100px;
   border: 2px solid #0C0C0DF2;
   border-radius: 6px;
   background: #0C0C0DF2;
   font-weight: bold;
   color: #343434;
   cursor: pointer;
 }
 .toggleContainer::before {
   content: '';
   position: absolute;
   width: 50%;
   height: 100%;
   left: 0%;
   border-radius:6px;
   background: white;
   transition: all 0.3s;
 }
 .toggleCheckbox:checked + .toggleContainer::before {
    left: 50%;
 }
 .toggleContainer span {
   padding: 4px;
   text-align: center;
   z-index: 1;
 }
 .toggleCheckbox {
   display: none;
 }
 .toggleCheckbox:checked + .toggleContainer span:first-child{
   color: white;
   transition: color 0.3s;
 }
 .toggleCheckbox:checked + .toggleContainer span:last-child{
   color: #343434;
   transition: color 0.3s;
 }
 .toggleCheckbox + .toggleContainer span:first-child{
   color: #343434;
   transition: color 0.3s;
 }
 .toggleCheckbox + .toggleContainer span:last-child{
   color: white;
   transition: color 0.3s;
 }
/*popular searches footer*/
.popular-search h4 {
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 5px;
  overflow: hidden;
}
.popular-search h4:after{
  content: "";
  display: inline-block;
  height: 0.4em;
  vertical-align: middle;
  width: 100%;
  margin-right: -100%;
  margin-left: 10px;
  border-top: 1px solid #ddd;
}
.popular-search ul {
  color: #666;
}
.popular-search ul li {
  display: inline;
}
.popular-search ul span {
  margin: 0 5px;
  font-size: 20px;
}
.popular-search ul li a {
  transition: color .5s ease-out;
}
.popular-search ul li a:hover{
  color: #000000;
}
/* footer live well SEO content */
.footer__gnc-live-well {
  margin: 30px 0;
}
#livewell-part1 {
  text-decoration: underline;
  color: #e31837;
  cursor: pointer
}
#livewell-part2 h3 {
  margin-top: 40px;  
  font-size: 28px;
  font-weight: 700;
  font-family: var(--custom_blod);
  color: #1E1E1E;
}
.footer__gnc-live-well .h2 {
  font-size: 28px;
  font-weight: 700;
  font-family: var(--custom_blod);
  color: #1E1E1E;
}
.footer__gnc-live-well p {
  margin-top: 10px;
  color: #4c4c4c
}
.footer__gnc-live-well p strong {
  color: #000000
}
.footer__gnc-live-well p a {
  color: #e31837;
  text-decoration: underline
}
/* about us new design */ 
@media only screen and (max-width: 699px) {
  .show-mob {
    display: block;
  }
  .show-desk {
    display: none;
  }
  body.template-about-us .section.section-blends.section-full.text-custom {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-bottom: 4px;
  }
  .about-us-img-left {
    margin-bottom: 30px;
  }
  .about-us-text-section {
    margin-top: 15px;
  }
  .section:has(.about-us-footer) {
    background: linear-gradient(to bottom, #fff 80%, #f5f5f5 50%);
    margin: 0 16px;
  }
}
@media only screen and (min-width: 700px) {
  .show-mob {
    display: none;
  }
  .show-desk {
    display: block;
  }
  body.template-about-us .section.section-blends.section-full.text-custom {
    padding: 0 !important;
    margin-bottom: 24px;
  }
  body.template-about-us .section.section-blends.section-full.text-custom image-banner {
    margin: 0;
  }
  .about-us-img-left {
    display: flex;
    align-items: center;
    gap: 0px;
    padding: 0px;
  }
  .about-us-img-left > div {
    flex: 1;
  }
  .about-us-img-section img {
    max-width: 500px;
    margin: 0 auto;
  }
  .section:has(.about-us-footer) {
    background: linear-gradient(to bottom, #fff 70%, #f5f5f5 50%);
    margin: 0 16px;
  }
  .about-us-footer-img .show-desk {
    max-width: 1100px;
    margin: 0 auto;
  }
}
.about-us-para {
  margin-bottom: 15px;
}
.about-us-text-section h2 {
  font-size: 25px;
  line-height: 120%;
  font-weight: 700;
  margin-bottom: 12px;
}
.about-us-text-section h2 span {
  color: #E31837;
}
.about-us-text-section p, 
.about-us-para p {
  color: #444;
}
.section:has(.diagonal-bg) {
  background: transparent; /* Background handled by ::before */
  color: #000;
  position: relative;
  z-index: 1; /* Ensure content is above the pseudo-element */
}
.section:has(.diagonal-bg)::before {
  content: '';
  position: absolute;
  top: -200px; /* Extend further upward to overlap section-1 */
  left: 0;
  width: 100%;
  height: calc(100% + 400px); /* Extend to overlap both section-1 and section-3 */
  background: #C00F0C08; /* Light gray background matching the design */
  z-index: -1; /* Behind the content */
  clip-path: polygon(0% 400px,108% 110px,100% calc(117% - 288px),-90px 54%); /* Steeper diagonal */
}
.section:has(.diagonal-bg) > * {
  position: relative;
  z-index: 2; /* Ensure content stays above the background */
}

/* contact us new design */
body.template-contact .section .prose p.subheading {
  color: #E31837;
  font-size: 22px;
  font-weight: 600;
  margin-top: 5px;
}
body.template-contact .section .prose h2.h2 {
  color: #1E1E1E;
  font-size: 25px;
  margin-top: 0px;
}
body.template-contact .section .prose p a {
  color: #E31837;
  background: none;
}
body.template-contact .section .section-stack__main form input, 
body.template-contact .section .section-stack__main form textarea {
  background-color: #fff;
}
body.template-contact .section .section-stack__main form button {
  padding: 12px 65px;
  background-color: #1e1e1e;
}
@media only screen and (min-width: 700px) {
  body.template-contact #main section .section {
    padding-top: 60px;
    padding-bottom: 60px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1149px) {
  .custom-contact-section {
    margin-top: 20px !important;
  }
  .contact-form-athlete {
    margin-top: -150px;
  }
  .contact-form-athlete img {
    max-width: 120px;
    position: relative;
    bottom: 0;
    float: right;
  }
  .contact-footer-bg {
    background: transparent;
    height: 170px;
    position: relative;
    z-index: 1;
    margin: -120px 16px 0 16px;
  }
  .contact-footer-bg::before {
    content: "";
    position: absolute;
    top: -196px;
    left: 0;
    width: 100%;
    height: calc(100% + 404px);
    background: #c00f0c08;
    z-index: -1;
    clip-path: polygon(0% 300px,200% 150px,100% calc(100% - 207px),0 64%);
  }
}
@media screen and (min-width: 1150px) {
  body.template-contact .section .section-stack--horizontal {
    align-items: center;
  }
  .contact-form-athlete img {
    max-width: 250px;
    position: relative;
    bottom: -60px;
  }
  .contact-footer-bg {
    background: transparent;
    height: 170px;
    position: relative;
    z-index: 1;
    margin: -80px 16px 0 16px;
  }
  .contact-footer-bg::before {
    content: "";
    position: absolute;
    top: -196px;
    left: 0;
    width: 100%;
    height: calc(100% + 404px);
    background: #c00f0c08;
    z-index: -1;
    clip-path: polygon(0% 300px,200% 150px,100% calc(100% - 207px),0 64%);
  }
}
.custom-contact-section {
  color: #333;
  width: 100%;
  margin-top: 40px;
}
.custom-contact-item {
  margin-bottom: 14px;
}
.custom-contact-icon {
  position: relative;
  top: 5px;
}
.custom-contact-link {
  color: #1a73e8; /* Same blue as shown */
  text-decoration: none;
}
.custom-contact-link:hover {
  text-decoration: underline;
}
.custom-contact-bold {
  font-weight: 600;
  margin-left: 5px;
}
.custom-contact-subtext {
  color: #B2B2B2;
  font-size: 13px;
  margin-left: 28px;
  margin-top: -2px;
}
.custom-contact-help {
  margin-top: 30px;
}
.custom-contact-help.show-mob {
  margin-top: 0px;
}
.custom-contact-track {
  color: #E31837; /* Red for 'Track Order' */
  text-decoration: underline;
  margin-left: 5px;
}
.custom-contact-help.show-mob .custom-contact-track {
  margin-left: 0px;
}
.custom-contact-track:hover {
  text-decoration: underline;
}
.product-info__product-picker a.block-swatch.is-selected {
    background: #434343;
    color: #fff;
}

/* free consultation page */
@media only screen and (max-width: 699px) {
  #main section .section:has(.free-consult-wrapper), 
  #main section .section:has(.expert-section-wrapper), 
  #main section .section:has(.testimonial-sec__wrapper), 
  #main section .section:has(.benefits-sec__wrapper) {
    padding-top: 16px;
    padding-bottom: 0;
  }
  .free-consult-card, 
  .expert-section-card, 
  .testimonial-sec__wrapper {
    padding: 15px;
  }
}
@media only screen and (min-width: 700px) {
  #main section .section:has(.free-consult-wrapper), 
  #main section .section:has(.expert-section-wrapper), 
  #main section .section:has(.testimonial-sec__wrapper), 
  #main section .section:has(.benefits-sec__wrapper) {
    padding-top: 24px;
    padding-bottom: 0;
  }
  .free-consult-card, 
  .expert-section-card, 
  .testimonial-sec__wrapper {
    padding: 24px;
  }  
}
.template-gnc-free-consultation main > section.shopify-section--custom-html {
  background-color: #F5F5F5;
}
.free-consult-wrapper {
  width: 100%;
}
.free-consult-card {
  background: #ffffff;
  border-radius: 8px;
  width: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}
.free-consult-banner img {
  width: 100%;
  border-radius: 6px;
}
.free-consult-content-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  flex-wrap: wrap;
  gap: 16px;
}
.free-consult-content-left {
  flex: 1;
  min-width: 250px;
}
.free-consult-subtext {
  color: #757575;
}
.free-consult-name {
  font-size: 22px;
  font-weight: 600;  
  color: #111827;
  margin-bottom: 0px;
}
.free-consult-rating {
  color: #1E1E1E;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.free-consult-divider {
  margin: 0px 7px;
  color: #B3B3B3;
  font-size: 14px;
}
.free-consult-star {
  color: #fbbf24;
  line-height: 0;
}
.free-consult-verified {
  color: #1d4ed8;
  line-height: 0;
}
.free-consult-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.free-consult-tag {
  background-color: #f3f4f6;
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 6px;
  color: #374151;
}
.free-consult-content-right {
  text-align: right;
  min-width: 100px;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: #059669;
}
.free-consult-price-strike {
  text-decoration: line-through;
  color: #9ca3af;
  margin-left: 10px;
  font-weight: 400;
}
/* expert section */
.expert-section-wrapper {
  width: 100%;
}
.expert-section-card {
  background-color: #ffffff;
  border-radius: 8px;
  width: 100%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  box-sizing: border-box;
}
.expert-section-title {
  font-size: 20px;
  font-weight: 700;
  color: #1E1E1E;
  margin-bottom: 10px;
}
.expert-section-description {
  color: #757575;
  line-height: 1.6;
  margin-bottom: 20px;
}
.expert-section-review-box {
  border: 1px solid #D9D9D9;
  border-radius: 4px;
  padding: 12px;
}
.expert-section-review-header {
  margin-bottom: 12px;
}
.expert-section-review-title {
  font-weight: 700;
  font-size: 15px;
  color: #1E1E1E;
}
.expert-section-review-content {
  margin-bottom: 16px;
}
.expert-section-review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.expert-section-reviewer-name {
  font-weight: 600;
  color: #1E1E1E;
  font-size: 15px;
}
.expert-section-verified {
  position: relative;
  top: 2px;
}
.expert-section-review-rating {
  font-size: 13px;
  font-weight: 500;
  color: #1E1E1E;
  display: flex;
}
.expert-section-review-rating svg {
  margin-right: 3px;
}
.expert-section-review-text {
  font-size: 15px;
  color: #757575;
  line-height: 1.5;
}
.expert-section-review-footer {
  text-align: left;
}
.expert-section-see-reviews {
  font-size: 15px;
  font-weight: 600;
  color: #1E1E1E;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.expert-section-see-reviews svg {
  margin-left: 5px;
}
/* testimonial slider */
.testimonial-sec__wrapper {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px #0000000a;
  box-sizing: border-box;
}
.testimonial-sec__heading {
  font-size: 20px;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 10px;
}
.testimonial-sec__carousel {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.testimonial-sec__card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  flex: 0 0 calc(33.333% - 11px);
  scroll-snap-align: start;
  padding: 16px;
  box-sizing: border-box;
}
.testimonial-sec__images {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.testimonial-sec__images img {
  width: 100%;
  height: auto;
}
.testimonial-sec__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.testimonial-sec__name {
  font-size: 14px;
  color: #757575;
  display: flex;
  align-items: center;
  gap: 4px;
}
.testimonial-sec__verified {
  width: 12px;
  height: 12px;
}
.testimonial-sec__title {
  font-weight: 700;
  color: #1e1e1e;
}
.testimonial-sec__label {
  font-weight: 600;
  font-size: 15px;
  color: #1e1e1e;
  margin-top: 10px;
  line-height: 1;
}
.testimonial-sec__desc {
  font-size: 14px;
  color: #757575;
}
/* Mobile responsive */
@media (max-width: 768px) {
  .testimonial-sec__card {
    flex: 0 0 80%;
    min-width: 80%;
  }
}
/* benefits uspsection */
.benefits-sec__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 16px;
  background-color: #f7f7f7;
}

.benefits-sec__item {
  background: #ffffff;
  padding: 15px 10px;
  border-radius: 8px;
  text-align: center;
}

.benefits-sec__item svg {
  display: block;
  margin: 0 auto 12px;
}

.benefits-sec__text {
  color: black;
  font-weight: 600;
}

/* Responsive gap adjustment for smaller screens */
@media (max-width: 600px) {
  .benefits-sec__wrapper {
    gap: 12px;
  }
}

@media (max-width: 767px) {
.product-info__product-picker .variant-picker__option-values.wrap.gap-2 {
    width: 370px;
    overflow-x: auto;
    white-space: nowrap;
    display: flex;
    /* gap: 10px; */
    /* padding: 10px; */
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding-right: 2rem;
}
}
@media (min-width: 768px) {
.product-info__product-picker .variant-picker__option-values.wrap.gap-2 {
    flex-wrap:wrap !important;
}}

.cart-drawer .drawercart-button-w {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background-color: #0C0C0DF2;
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 1;
    cursor: pointer;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-drawer .drawercart-button-w[disabled] {
  cursor:not-allowed;
  background-color: #6c6c6c;
}
.cart-drawer .drawercart-button-w svg {
    max-width: 14px;
    max-height: 14px;
    width: auto;
    height: auto;
}

@media (max-width:767px) {
.variant-title-mobile {
    width: 100%;
    display: block;
    margin: -5px 0px 10px 16px;
    font-weight: 700;
    font-style: normal;
    color: #272727;
}
.product .product-info .variant-title {
    display: none;
}
}
@media (min-width:768px) {
.product .product-info .variant-title {
    width: 100%;
    display: block;
    margin: -20px 0 10px;
    font-weight: 700;
    font-style: normal;
    color: #272727;
}
.variant-title-mobile {
    display: none;
}
}  
h2.cbb-frequently-bought-title.translatable {
    font-size: 2rem;
    font-weight: 500;
    text-transform: capitalize !important;
}
@media (max-width:768px) {
h2.cbb-frequently-bought-title.translatable {
    font-size: 21px !important;
}
.filter-accordian .price-range .input-group {
    column-gap: 12px;
}

.filter-accordian .price-range .input-prefix {
    padding: 7px 7px;
}
}
cart-drawer {
    & .price-list {
        compare-at-price {
            display: none;
        }
    }
}
.line-item__info .badge {
  margin-top: 10px;
}

@media (min-width:768px) and (max-width:1023px) {
  .product-gallery{
    position:unset !important;
  }
}

.quick-buy-drawer__info .toggleContainer {
  display:none;
}

.variant-picker__option-info .h-stack.gap-2.variant_option_label {
    align-items: baseline;
}

@media (max-width: 768px) {
.quick-buy-drawer__info fieldset.variant-picker__option {
    overflow: unset !important;
}}

/* Shilajit Honey Stick */
.power-stick-container {
  margin: 0px auto;
  padding: 40px 20px;
  border-radius: 10px;
  background-color: #FFF9F3;
  text-align: center;
  position: relative;
  max-width: 1000px;
}

.top-banner-elem {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 200px;
}

.top-banner-elem2 {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 200px;
  transform: rotate(180deg);
}

.top-banner-elem3 {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100px;
}

.power-stick-title {
  font-size: 20px;
  font-weight: 700;
  color: #1E1E1E;
  margin-bottom: 30px;
}

.power-stick-features {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}

.power-stick-feature {
  padding: 5px;
  flex: 1;
}

.power-stick-icon {
  margin-bottom: 15px;
  text-align: center;
}

.power-stick-icon img {
  margin: 0 auto;
  width: 100%;
  max-width: 150px;
}

.power-stick-text {
  font-size: 16px;
  color: #0D0C0C;
  line-height: 1.2;
  margin: 0;
  font-weight: 500;
}

@media (max-width: 768px) {
  .power-stick-title {
    font-size: 17px;
  }
  .power-stick-text {
    font-size: 15px;
  }
}

/* video section */
.preworkout-section {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0px auto;
  max-width: 1000px;
}

.preworkout-video,
.preworkout-benefits {
  flex: 1 1 400px;
  min-width: 300px;
}

.preworkout-video h3,
.preworkout-benefits h3 {
  font-size: 20px;
  color: #0D0C0C;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 10px;
}

.video-wrapper {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.preworkout-video-element {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.benefit-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #D9D9D9;
  text-align: left;
  font-size: 14px;
}

.benefit-card img {
  width: 100%;
  height: 116px;
  display: block;
}

.benefit-card p {
  padding: 10px;
  margin: 0;
  color: #1E1E1E;
  line-height: 1.4;
  display: flex;
  align-items: center;
}

.benefit-card p span.ben-icon img {
  width: 36px;
  height: auto;
}

.benefit-card p span.ben-icon-sep {
  background-color: #915F46;
  width: 1px;
  height: 30px;
  margin: 0 7px;
}

.benefit-card b {
  font-weight: 600;
}

/* Mobile responsiveness */
@media (min-width: 880px) {
  .benefit-card p span.ben-icon img.prot-jar {
    width: 27px;
    height: auto;
  }
}
@media (max-width: 879px) {
  .benefit-card p span.ben-icon img {
    width: 28px;
    max-width: 28px;
    height: auto;
  }
  .benefits-grid {
    gap: 5px;
  }
  .benefit-card p {
    font-size: 90%;
    line-height: 1.2;
  }
  .benefit-card img {
    height: auto;
  }
}
@media (max-width: 768px) {
  .preworkout-section {
    flex-direction: row;
  }

  .benefits-grid {
    /* grid-template-columns: 1fr; */
    grid-template-columns: repeat(2,1fr)
  }  
}
/* ingrediant section */
.ingredients-section {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0px auto;
  gap: 15px;
}

.ingredients-left,
.ingredients-right {
  flex: 0 0 49%;
  max-width: 50%;
  box-sizing: border-box;
  padding: 0px;
}

.ingredients-left h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #0D0C0C;
}

.ingredient-cards {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ingredient-card {
  background: #fff;
  border: 1px solid #757575;
  border-radius: 10px;
  padding: 0px;
  width: 100%;
  max-width: 180px;
  text-align: center;
  flex: 1 1 30%;
}

.ashwa-cards .ingredient-card {
  max-width: 240px;
  flex: 1 1 50%;
}

.ingredient-card img {
  width: 100%;
  height: auto;
  margin-bottom: 0px;
  padding: 5px;
}

.ashwa-cards .ingredient-card img {
  width: 100%;
  max-width: 150px;
  height: auto;  
  margin: 0 auto;
}

.ingredient-text {
  background-color: #fcb42320;
  padding: 15px 10px;
  border-top: 1px solid #757575;
  border-radius: 10px;
}

.ashwa-cards .ingredient-text {
  min-height: 103px;
}

.show-mob .ingredient-text {
  padding: 5px;  
}

@media (max-width: 450px) {
  .ingredient-text {
    min-height: 119px;
  }
  .show-mob .ingredient-text {
    min-height: 89px;
  }
}

.ingredient-text strong {
  font-size: 16px;
  display: block;
  margin-bottom: 2px;
  color: #222;
}

.ingredient-text p {
  font-size: 14px;
  color: #1E1E1E;
  margin: 0;
  line-height: 1.2;
}

.ingredients-right img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .ingredients-left,
  .ingredients-right {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .ingredient-cards {
    justify-content: center;
  }

  .ingredient-card {
    max-width: 240px;
  }

  .ingredient-text p {
    font-size: 13px;
  }
}
/* naturally boost and daily intake */
.boost-intake-section {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0px auto;
  gap: 15px;
}

.boost-left,
.boost-right {
  flex: 0 0 49%;
  max-width: 50%;
  box-sizing: border-box;
  padding: 0px;
}

.boost-left h3,
.boost-right h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0D0C0C;
  margin-bottom: 10px;
}

.boost-cards {
  display: flex;
  gap: 15px;
  background: #FFF9F3;
  padding: 20px;
  border-radius: 10px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.boost-card {
  flex: 1 1 30%;
  text-align: center;
}

.boost-card img {
  width: 100%;
  border-radius: 12px;
  display: block;
  margin-bottom: 8px;
}

.boost-card p {
  color: #000;
  margin: 0;
  font-weight: 500;
}

/* Right Side Styling */
.intake-wrapper {
  padding: 0px;
  text-align: center;
}

.intake-top-label {
  font-size: 16px !important;
  font-weight: 700;
}

.intake-top-label,
.intake-bottom-label {
  background: #FFF9F3;
  padding: 10px 15px;
  font-size: 14px;
  border-radius: 8px;
  margin-bottom: 0;
  display: inline-block;
  width: 100%;
}

.intake-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.intake-content img {
  width: 100%;
  max-width: 100%;
  display: block;
  margin: 8px 0;
}

.intake-box {
  background: #fff7e2;
  border-radius: 12px;
  padding: 12px 16px;
  min-width: 140px;
  text-align: center;
}

.intake-heading {
  font-weight: 600;
  font-size: 14px;
  margin: 0;
}

.intake-text {
  font-size: 14px;
  margin: 4px 0 0;
  color: #333;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .boost-left,
  .boost-right {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0px;
  }

  .boost-cards {
    justify-content: center;
  }

  .boost-card {
    max-width: 160px;
  }

  .intake-content {
    flex-direction: column;
  }
}
/* footer banners */
.shilajit-highlight-section {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0px auto;
  gap: 15px;
}

.highlight-left,
.highlight-right {
  flex: 0 0 49%;
  max-width: 50%;
  box-sizing: border-box;
}

.highlight-left img,
.highlight-right img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

/* Mobile View */
@media (max-width: 768px) {
  .highlight-left,
  .highlight-right {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
/* naturally boost section */
.badge-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  text-align: center;
  background: #fff9f3;
  padding: 40px;
  border-radius: 10px;
}

.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.badge-number {
  font-weight: 600;
  font-size: 24px;
  color: #915F46;
  margin: 0px;
  position: absolute;
  left: 20px;
}

.badge-item img {
  max-width: 75px;
  height: auto;
  width: 100%;
  margin-bottom: 5px;
}

.badge-item p {
  font-size: 16px;
  color: #000;
  margin: 0;
  font-weight: 500;
}
@media (max-width: 879px) {
  .badge-grid {
    padding: 20px;
  }
  .badge-number {
    font-size: 20px;
    left: 0;
  }
  .badge-item p {
    font-size: 14px;
  }
}

@media (min-width: 768px) {
    .product-info__price .flashsale-toppricebox .metafiled-price {
        font-size: 24px !important;
        color: #1e1e1e !important;
        font-weight: 600;
    }
}

@media (min-width: 768px) {
    .product-info__price .flashsale-toppricebox .compareat-price {
        font-size: 24px !important;
        color: #757575 !important;
        font-weight: 500;
    }
  .flashsale-priceblox .flashsale-toppricebox {
    gap: 15px;
}

.product-info .flashsalebox-text span {
        font-size: 24px;
        margin-right: 15px;
    }
}

@media (max-width: 767px) {
    .product-info__price .flashsale-priceblox .flashsale-toppricebox {
        margin-bottom: 15px;
      gap: 1rem;
    }
  .product-card__info .flashsale-priceblox .flashsale-bottompricebox .discountPercentage, .flashsale-priceblox .flashsalebox-text span {
        font-size: 12px;
    }
}
}

@media (max-width: 767px) {
    .product-info__price .flashsale-toppricebox .metafiled-price {
        font-size: 20px !important;
        color: #1e1e1e !important;
        font-weight: 600;
    }
}

@media (max-width: 767px) {
    .product-info__price .flashsale-toppricebox .compareat-price {
        font-size: 16px !important;
        color: #757575 !important;
        font-weight: 500;
    }
}

@media only screen and (max-width: 699px) {
    .flashsale-priceblox .flashsale-bottompricebox .discountPercentage, .flashsale-priceblox .flashsalebox-text span {
        font-size: 14px;
    }
}

@media only screen and (max-width: 699px) {
    .flashsale-priceblox .flashsale-bottompricebox .discountPercentage, .flashsale-priceblox .flashsalebox-text span {
        margin-right: 15px;
    }
  .product-card__info .flashsale-priceblox .flashsale-bottompricebox .discountPercentage, .flashsale-priceblox .flashsalebox-text span {
        margin-right: 0px;
    }
    .product-card__info .flashsalebox-text span {
        font-size: 12px;
    }
  .product-info .flashsalebox-text span {
        font-size: 20px;
        margin-right: 10px;
    }
  .product-info .flashsale-priceblox .flashsale-toppricebox span {
        font-size: 19px;
    }
  .product-info .product-info__price .flashsale-toppricebox .compareat-price {
        font-size: 19px !important;
    }
}
.product-hero-section .product-info__block-item[data-block-type="delivery-options"] {
    display:none;
}

.cashback-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px; /* py-1 px-3 */
    border-radius: 0.375rem; /* rounded-full */
    font-size: 14px; /* text-sm */
    font-weight: 500; /* font-medium */
    border: 1px solid #bbf7d0; /* border-green-200 */
    background-color: #f0fdf4; /* bg-green-50 */
    color: #15803d; /* text-green-700 */
    width: fit-content; /* w-fit */
    margin-top:1rem;
    gap: 3px;
}
.cashback-badge svg {
    width: 16px; /* w-4 */
    height: 16px; /* h-4 */
    margin-right: 4px; /* mr-1 */
    fill: currentColor;
}