/** Shopify CDN: Minification failed

Line 97:1 Expected "}" to go with "{"

**/
/*-----------------------------------------------------------------------------/
/ Custom Theme CSS
/-----------------------------------------------------------------------------*/
/*---------------- Global Custom CSS -------------------*/
/* ==========================================
   将 Font Family #2 应用于全站所有按钮
   ========================================== */
button, 
input[type="submit"], 
input[type="button"], 
.btn, 
.t4s-btn, 
.shopify-payment-button__button, 
#checkout,
.checkout-btn {
  font-family: var(--font-family-2) !important;
}
/* ==========================================
   强制将 Font Family #2 应用于产品网格/列表中的加购按钮
   ========================================== */
.t4s-product-btns .t4s-pr-item-btn,
.t4s-product-btns .t4s-pr-item-btn .t4s-text-pr,
.t4s-product-btns2 .t4s-pr-item-btn,
.t4s-product-btns2 .t4s-pr-item-btn .t4s-text-pr {
  font-family: var(--font-family-2) !important;
}
/* ==========================================
   强制修改第三方弹窗字体 (使用 Shopify 内置字体)
   ========================================== */

/* 1. 弹窗标题应用 Font Family #2 (Sour Gummy) */
.modal-hero-container h1,
.modal-hero-container h1 span,
.modal-hero-container .text-block h1 span {
  font-family: 'Sour Gummy', sans-serif !important;
}

/* 2. 弹窗正文、副标题应用 Font Family #1 (Archivo Narrow) */
.modal-hero-container p,
.modal-hero-container p span,
.modal-hero-container .text-block p span {
  font-family: 'Archivo Narrow', sans-serif !important;
}

/* 3. 弹窗内的输入框和按钮也统一应用 Font Family #1 (Archivo Narrow) */
.modal-hero-container input,
.modal-hero-container button,
.modal-hero-container .form-block-submit-button {
  font-family: 'Archivo Narrow', sans-serif !important;
}
/* ==========================================
   仅调整底部左侧 Logo 列，使其顶部与右侧标题平齐
   ========================================== */
@media (min-width: 1025px) {
  /* 清除第一列默认的 30px 顶部内边距 */
  .t4s-footer-wrap .bl-footer-0 .t4s-col-inner {
    padding-top: 0 !important;
  }
}
/* ==========================================
   终极覆盖：强制 SHOP NOW 按钮使用字体2
   ========================================== */
a#b_custom_button_9pGhRn.t4s-btn.t4s-fnt-fm-1 {
  font-family: var(--font-family-2) !important;
}
/* ==========================================
   强制右下角悬浮 20% OFF 按钮使用 Font Family #2
   ========================================== */
.custom-floating-widget .custom-gradient-btn {
  font-family: var(--font-family-2), 'Sour Gummy', sans-serif !important;
  letter-spacing: 1px !important; /* 
}

/*---------------- Custom CSS for only desktop -------------------*/
@media (min-width: 1025px) {
  
}

/*---------------- Custom CSS for tablet, mobile -------------------*/
@media (max-width: 1024px) {
  
}

/*---------------- Custom CSS for only tablet -------------------*/
@media (min-width: 768px) and (max-width: 1024px) {
  
}

/*---------------- Custom CSS for only mobile -------------------*/
@media (max-width: 767px){
  
}