/** Shopify CDN: Minification failed

Line 65:3 Unexpected "/"
Line 71:44 Expected identifier but found "/"
Line 72:44 Expected identifier but found "/"

**/
/*-----------------------------------------------------------------------------/
/ Custom Theme CSS
/-----------------------------------------------------------------------------*/
/*---------------- Global Custom CSS -------------------*/


/*---------------- Custom CSS for only desktop -------------------*/
@media (min-width: 1025px) {
  #ShopifyChat {
    bottom: 10px !important;
    left: 10px !important;
  }
}

/*---------------- Custom CSS for tablet, mobile -------------------*/
@media (min-width: 768px) and (max-width: 1024px) {
  #ShopifyChat {
    bottom: 55px !important;
    left: 0px !important;
  }
}

/*---------------- Custom CSS for only mobile -------------------*/
@media (max-width: 767px){
  #ShopifyChat[is-open="false"] {
    bottom: 55px !important;
    left: 0px !important;
  }
}

/* Override to make wishlist icon more visible */
.t4s-product .t4s-pr-wishlist {
    background-color: #ffffff !important;
    color: #d770bdff !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    width: 36px !important;
    height: 36px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
    z-index: 5;
}

.t4s-product .t4s-pr-wishlist:hover {
    background-color: #bc8a63 !important; 
    color: #ffffff !important;
    transform: scale(1.1);
}

.t4s-product .t4s-pr-wishlist .t4s-svg-pr-icon svg {
    width: 20px !important;
    height: 20px !important;
    stroke-width: 2.2px !important;
}

   / --- Search Button Hover Color Change --- /
  .t4s-search-header__submit {
      transition: background-color 0.3s ease, color 0.3s ease !important;
  }

  .t4s-search-header__submit:hover {
      background-color: #bc8a63 !important; / Your theme accent colour /
      color: #ffffff !important;            / Text turns white /
  }


  
  