/* Extremely specific + important */
body .theme-product-name h1[data-zs-product-name],
body .theme-product-name [data-zs-product-name] {
  font-size: 26px !important;
  color: #004aad !important;
}
/* Product Image Hover Zoom - Fixed for product pages only */
.main-zoom-wrapper {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    margin: 0 auto;
    max-width: 100% !important;
}

.main-zoom-wrapper img {
    transition: none !important;
    display: block;
    width: 100%;
    height: auto;
}

/* Corrected 70px lens */
.main-zoom-wrapper .lens {
    position: absolute;
    width: 70px;
    height: 70px;
    border: 2.2px solid rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(5px);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: 10;
    box-shadow: 0 0 20px rgba(0,0,0,0.5), inset 0 0 15px rgba(255,255,255,0.4);
}

/* Mobile: full disable + no enlargement/overflow */
@media (max-width: 1024px) {
    .main-zoom-wrapper {
        overflow: visible !important;
        position: static !important;
    }
    .main-zoom-wrapper img {
        transform: none !important;
        max-width: 100% !important;
        height: auto !important;
        position: relative !important;
        z-index: auto !important; /* Reset any forced z-index */
    }
    .main-zoom-wrapper .lens {
        display: none !important;
    }
}
/* Back-to-Top Button – matches your lens style */
#btt-btn {
    position: fixed;
    right: 20px;
    bottom: 30px;
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.18);
    border: 2.5px solid #004aad;
    border-radius: 14px;                    /* rounded square */
    backdrop-filter: blur(6px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35),
                inset 0 0 15px rgba(255, 255, 255, 0.3);
    color: #004aad;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
    z-index: 9997;
}

#btt-btn:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

#btt-btn.visible {
    opacity: 1;
    visibility: visible;
}

/* Arrow inside */
#btt-btn::after {
    content: "↑";
    font-weight: bold;
}

/* Spark theme – remove gradient background behind product images (style 18) - SP*/
.theme-product-list-style-18 
.theme-product-box-content 
.theme-product-image-area::after {
    content: none !important;
    display: none !important;
    background: none !important;
    background-image: none !important;
}

/* Make the quote container the positioning anchor */
.theme-quote-container{
  position: relative;
}

/* Tooltip bubble (hidden by default) */
.theme-quote-container::after{
  content: "My Quote";
  position: absolute;
  top: 130%;                 /* below the icon */
  left: 50%;
  transform: translateX(-50%);
  background: #222;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease;
  z-index: 99999;
  pointer-events: none;
}

/* Tooltip arrow (hidden by default) */
.theme-quote-container::before{
  content: "";
  position: absolute;
  top: 118%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #222;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease;
  z-index: 99999;
  pointer-events: none;
}

/* Show tooltip on hover */
.theme-quote-container:hover::after,
.theme-quote-container:hover::before{
  opacity: 1;
  visibility: visible;
}

