/** Shopify CDN: Minification failed

Line 116:0 Unexpected "}"

**/
/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: auto;
  max-width: 200px; /* Restrict maximum width */
  background-color: #555;
  color: #fff;
  text-align: center;
  padding: 8px;
  border-radius: 6px;
  

  /* Initial positioning */
  position: absolute; 
  z-index: 9999; /* Reset any conflicting z-index values */
  bottom: 125%; /* Tooltip appears above */
  left: 50%;
  transform: translateX(-50%);

  /* Fade-in effect */
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

/* Tooltip arrow */
.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Show tooltip on hover */
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.parent-container {
  overflow: visible !important;
}


/* Default State - Solid Dark Background with Transparent Border */
.btn--secondary {
    background: #0c0c1d !important; /* Dark blue solid background */
    color: white !important;
    border: 2px solid transparent !important; /* Fully transparent border */
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 12px;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

/* Hover State - Gradient Appears at Bottom Corners */
.btn--secondary:hover {
    background: #0c0c1d !important; /* Keep the main background dark */
    border-color: transparent !important; /* Keep the border transparent */
}

/* Add the Gradient in Bottom Left & Bottom Right Corners */
.btn--secondary:hover::before {
    content: "";
    position: absolute;
    bottom: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle at bottom left, rgba(242, 165, 68, 0.5) 0%, rgba(0, 0, 0, 0) 40%),
                radial-gradient(circle at bottom right, rgba(238, 129, 75, 1) 0%, rgba(0, 0, 0, 0) 50%);
    transition: all 0.3s ease-in-out;
    z-index: 0;
}

/* Ensure Text is Always Visible */
.btn--secondary span {
    position: relative;
    z-index: 1;
}

/* 1) 大圖鋪到最頂,墊在整個 header(含 logo/圖示列)後面 */
.template-index #pageheader.pageheader--transparent{ background: transparent !important; }
.template-index #content .section-slideshow{ margin-top: -112px; }

/* 2) 大圖頂部淡淡深色,白色 logo/圖示/選單才看得見(取代灰底) */
.template-index .section-slideshow .image-overlay__image::after{
  content:"";
  position:absolute; top:0; left:0; right:0;
  height:260px;
  background:linear-gradient(to bottom, rgba(10,15,25,0.55) 0%, rgba(10,15,25,0) 100%);
  z-index:2; pointer-events:none;
}
@media (max-width:767.98px){
  .template-index #content .section-slideshow{ margin-top: -70px; }
  .template-index .section-slideshow .image-overlay__image::after{ height:150px; }
}
}