/** Shopify CDN: Minification failed

Line 214:2 Expected "}" to go with "{"

**/
/* === Sales Badge to Top-Left Corner with No Space === */

.product-badges--top-left {
  top: 0 !important;
  left: 0 !important;
}

.product-badges__badge {
  font-size: 0.75rem !important;
}
/*toaste message*/
.wishlist-toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 20px;
  border-radius: 8px;
  max-width: 90%;
  font-size: 16px;
  font-weight: 600;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  color: white;
   opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateX(-50%) translateY(20px);
}

.wishlist-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.wishlist-toast.hidden {
  
  pointer-events: none;
}
@media (max-width: 480px) {
  #wishlist-toast {
    font-size: 16px;
    font-weight: 600;
    padding: 10px 16px;
    text-align: center;
  }
}
/* Wishlist Card styling */
.card-wishlist-button {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
}

.card-wishlist-button svg {
  width: 24px;
  height: 24px;
  transition: transform 0.2s ease;
}

.card-wishlist-button .heart-filled {
  display: none;
}

.card-wishlist-button.is-active .heart-outline {
  display: none;
}

.card-wishlist-button.is-active .heart-filled {
  display: inline;
}
/*title + wishlist*/
.product-title-wrapper {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center;
  width: 100%;
  gap: 0.5rem;
}

.product-title-text {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
}

.product-title-text p {
  margin: 0;
  word-break: break-word;
  white-space: normal; 
  overflow: visible;   
  text-overflow: unset;
}

.wishlist-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  
}
.card-wishlist-button .heart-outline path {
  stroke: var(--color-foreground);
}


/* styling for size guide button wrapper */
.size-label-wrapper {
  display: flex;
  justify-content: space-between; /* pushes items to left & right ends */
  align-items: center;
  gap: 12px;
  width: 100%; 
}
.sizeguide-button {
  font-size: 14px;
  color: #0074bd;
  text-decoration: underline;
  cursor: pointer;
  white-space: nowrap;
}
/* styling for wishlist-icon header*/

.header-actions__wishlist-icon {
  position: relative;
  --wishlist-bubble-size: 20px;
  --wishlist-bubble-top: 4.5px;
  --wishlist-bubble-right: 2.5px;
}

.header-actions__wishlist-icon .wishlist-count-bubble {
  position: absolute;
  width: var(--wishlist-bubble-size);
  top: var(--wishlist-bubble-top);
  right: var(--wishlist-bubble-right);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wishlist-bubble__background {
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background-color: var(--color-primary-button-background);
}

.wishlist-bubble__text {
  position: relative;
  z-index: 1;
  font-size: var(--font-size--xs);
  font-family: var(--font-paragraph--family);
  font-weight: var(--font-paragraph--weight);
  color: var(--color-primary-button-text);
}

.header-actions__wishlist-icon--has-items svg {
  mask: radial-gradient(
    calc(var(--wishlist-bubble-size) + 2px) at calc(100% - var(--wishlist-bubble-right)) var(--wishlist-bubble-top),
    transparent 45.45%,
    white 45.45%,
    white 100%
  );
}
 /*slideshow mobile image */
.slide__image--mobile {
  display: none;
}
.slide__image--desktop {
  display: block;
}

@media screen and (max-width: 767px) {
  .slide__image--mobile {
    width: 100%;
      display: block;
  }
  .slide__image--desktop {
    display: none;
  }
}
/*cart drawer animation*/
.dialog-drawer[open] {
  animation-name: slideInRightCustom !important;
  animation-duration: 0.5s !important;
  animation-timing-function: ease-in-out !important;
  animation-fill-mode: forwards !important;
}

@keyframes slideInRightCustom {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0%);
  }
}

/*slide height for large*/
@media screen and (max-width: 768px) {
  slideshow-slides[size=large] {
    min-height: 40rem !important;
     }

  /*slideshow pause button display */
 .slideshow-control:is(.icon-pause, .icon-play) {
  display: none !important;
}

  