/** Shopify CDN: Minification failed

Line 153:1 Unexpected "{"

**/
:root {
    --watt-yellow-bright: #f3d938;  /* 明黄 */
    --watt-yellow-light: #ffe783;   /* 浅黄 */

    /* 新UI */
    --watt-primary-color: #0e46d1;

    --watt-white: #ffffff;
    --watt-black: #000000;

    --watt-gray-dark: #666666;
    --watt-gray-light: #999999;


    --watt-black-font: #000000;
    --watt-white-font: #ffffff;

    --watt-gray-dark-font: #666666;
    --watt-gray-light-font: #999999;
    
    --watt-black-bg: #000000;
    --watt-white-bg: #ffffff;

    --watt-black-rbg: 0,0,0;
    --watt-white-rbg: 255,255,255;

    --watt-gray-bg: #f6f6f6;
    --watt-gray-border: #d9d9d9;

    --watt-d9-bg: #d9d9d9;

    --left-right-padding: 2.5em;
}

@media screen and (max-width: 1280px) {
    .watt-em-container {
        font-size: 1.25vw;
    }
}

@media screen and (max-width: 900px) {
    :root {
        --left-right-padding: 1.875em;
    }
    .watt-em-container {
        font-size: 1.7777778vw;
    }
}

@media screen and (min-width: 1280px) {
    .watt-em-container {
        font-size: 16px;
    }
}

.watt-em-max-width {
    max-width: 1280px;
    width: 100%;
    padding-left: var(--left-right-padding);
    padding-right: var(--left-right-padding);
}
.watt-em-full-width {
    width: 100%;
    padding-left: var(--left-right-padding);
    padding-right: var(--left-right-padding);
}

/* 垂直居中 */
.watt-center-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 禁止复制 */
.watt-no-copy {
  user-select: none;         
  -webkit-user-select: none; 
  -moz-user-select: none;    
  -ms-user-select: none;     
}

/* 工具css */
.watt-hidden {
	display: none!important
}

.watt-pc-hidden {
	display: none!important
}

.watt-section__title {
    display: flex;
    width: 100%;
    font-size: 3em;
    font-weight: 600;
    color: var(--watt-balck-font);
}
.watt-section__description {
    font-size: 1.5em;
    font-weight: 500;
    color: var(--watt-gray-dark-font);
    margin-top: 0.625em;
}

.watt-one-line-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 无障碍隐藏 */
.watt-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


@media (max-width:900px) {
	.watt-m-hidden {
		display: none!important
	}
	.watt-pc-hidden {
		display: flex!important
	}

    .watt-section__title {
        font-size: 3.75em;
        font-weight: 700;
    }
    .watt-section__description {
        font-size: 2em;
        margin-top: 0.75em;
    }
}

/* 隐藏shopify侧边验证按钮 */
#shop-hcaptcha-badge-container { display: none !important;}

.watt-global-btn--effect,
 {
    position: relative;
    cursor: pointer;
    transition: transform 120ms ease, box-shadow 120ms ease, opacity 120ms ease;
}

.watt-global-btn--effect:hover,
.watt-global-btn--effect:focus-visible {
    outline: none;
    transform: translateY(-2px);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
    color: var(--watt-yellow-bright);
}

/* loading */
.watt-global-btn--loading {
    position: relative;
}

/* loading 状态下禁用点击 */
.watt-global-btn--loading.watt-loading {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.8;
}

/* 文字保持在中间不变，也可以选择淡出 */
.watt-global-btn--loading.watt-loading > span,
.watt-global-btn--loading.watt-loading div[data-loading-wrap] {
  opacity: 0;
}

.watt-global-btn--loading.watt-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.4);  /* 底圈 */
  border-top-color: #ffffff;                /* 上边高亮，形成缺口 */
  box-sizing: border-box;
  transform: translate(-50%, -50%) rotate(0);
  animation: watt-spinner-rotate 0.6s linear infinite;
}

/* 如果按钮是浅色背景，可以把颜色换成深色 */
.watt-global-btn--loading.watt-light-mark.watt-loading::after {
  border-color: rgba(15,23,42,0.2);
  border-top-color: #111827;
}

/* 旋转动画 */
@keyframes watt-spinner-rotate {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

#PBarNextFrameWrapper {
    display: none!important;
}