/** Shopify CDN: Minification failed

Line 407:138 Expected identifier but found bad string token
Line 407:139 Unterminated string token
Line 519:6 Unexpected "/"
Line 689:5 Expected "}" to go with "{"

**/
*
/* 倒数模块 */
/* ............................................ */
.christmas-calendar-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 20px 50px;
  position: relative;
}

.christmas-calendar-wrapper {
  position: relative;
  padding: 0 10px;
}
#calendarContainer {
  scroll-margin-top: 50px; /* 与导航栏高度相同 */
}
/* 日历标题区域 */
.calendar-header {
  text-align: center;
  margin-bottom: 30px;
  padding: 0 20px;
}

.calendar-main-title {
  font-size: 32px;
  font-weight: 600;
  color: #000000;
  margin-top: 40px;
  margin-bottom:15px;
  font-family: "Helvetica Neue", Arial, sans-serif;

}

.calendar-subtitle {
font-size: 20px;
font-weight: 700;
color: #000;
margin-top: 15px;
/* margin-bottom: 10px; */
}

.calendar-description {
  margin-bottom: 20px;
}

.calendar-description p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 10px;
  line-height: 1.5;
}

.terms-link {
  color: #adadad;
font-size: 16px;
transition: color .3s ease;
text-decoration: underline;
text-underline-offset: 3px;
text-decoration-thickness: 1px;
margin: 10px 0;
}


/* 订阅按钮容器 */
.subscribe-button-container {
  margin: 20px 0;
}

.subscribe-btn {
  background: #000000;
  color: white;
  border: none;
  padding: 11px 18px;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  width: fit-content;
  border: 1px solid transparent;
}

.subscribe-btn:hover {
  /* transform: translateY(0); */
  background-color: white;
  color:#000000;
  text-decoration: none;
  border: 1px solid #000;
}

/* 已订阅状态的按钮样式 */
.subscribe-btn.subscribed,
.Onclick-1:disabled {
  background: #cccccc;
  color: #666666;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  border: 1px solid transparent;
}

.subscribe-btn.subscribed:hover,
.Onclick-1:disabled:hover {
  background: #cccccc;
  transform: none;
  box-shadow: none;
  color: #666666;
  border: 1px solid transparent;
}

.subscribe-btn:disabled {
  background: #cccccc;
  color: #666666;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  
}


.subscribe-btn:disabled:hover {
  background: #cccccc;
  transform: none;
  box-shadow: none;
  color: #666666;
}
/* 加载状态的按钮样式 */
.subscribe-btn.loading {
  background: #cccccc !important;
  color: #666666 !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
}
   #adventCalendar-pc {
        display: grid;
        z-index:1;
    }
    #adventCalendar-h5 {
        display: none;
        z-index:1;
    }
/* 日历网格布局 - 3行5列 */
.christmas-calendar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(3, 1fr);
  row-gap: 14px;
  column-gap: 18px;
  background: #FFFFFF;
  padding: 20px;
}

/* 基础日期方块样式 */
.day {
  font-family: 'K2D', "Helvetica Neue", Arial, sans-serif;
  background: #F2F0EE;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  font-weight: 500;
  color: #84695C;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 80px;
  position: relative;
  overflow: hidden;
}


.day:hover {
  transform: translateY(-5px);
}

/* 特殊样式：占据两行一列（竖长方形） */
.day.tall,
.day.tall-w{
  grid-row: span 2;
  /* font-size: 2.2rem; */
}

.day.tall {
  font-size: 38px;
 color: #D14543;
}


/* 特殊样式：占据一行两列（横长方形） */
.day.wide {
  grid-column: span 2;
  /* background: linear-gradient(145deg, #daa520, #b8860b); */
  /* font-size: 2.2rem; */
}

.lock-overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  display: flex;
  align-items: center !important;
  justify-content: center !important;
  /* 移除背景色和模糊效果 */
  /* background: rgba(0, 0, 0, 0.5) !important; */
  /* backdrop-filter: blur(5px) !important; */
  border-radius: 15px !important;
  z-index: 2 !important; /* 提高层级确保在最上面 */
  pointer-events: auto !important; /* 确保可以点击 */
}


.lock-icon {
  text-align: center;
  background-color: #fff;
  width: 220px;    /* 稍微增大确保内容合适 */
  height: 220px;   /* 稍微增大确保内容合适 */
  border-radius: 50%; 
  cursor: pointer;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 85px;
  box-sizing: border-box;
  margin: 0 auto; /* 确保水平居中 */
  box-shadow: 0px 5.87015px 29.3507px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5.87015px 29.3507px color(display-p3 0.000 0.000 0.000 / 0.1);
}

.lock-icon img{
  /* width: 40px; */
  height: 45px;
  display: block; /* 确保图片是块级元素 */
}
/* 当锁层显示时，禁用日历的交互 */
.lock-overlay[style*="display: flex"] ~ .christmas-calendar {
  pointer-events: none;
  user-select: none;
}
/* 确保锁层链接样式正常 */
.lock-overlay a.lock-icon {
  text-decoration: none !important;
  color: inherit !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* width: 100%; */
  /* height: 100%; */
}

.lock-overlay a.lock-icon:hover {
  text-decoration: none !important;
  color: inherit !important;
}

.lock-icon:hover {
  transform: scale(1.1);
  /* background-color: #f0f0f0; */
}

/* 弹窗样式 */
.modal {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
 background: #ffffff;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    color: #000000;
    position: relative;
    /* 以下是居中核心代码 */
    position: absolute; /* 脱离文档流，基于 .modal 定位 */
    left: 50%; /* 水平方向移到父容器（.modal）中间 */
    top: 50%; /* 垂直方向移到父容器（.modal）中间 */
    transform: translate(-50%, -50%);
}
#rewardDisplay h2{
  font-size:32px;
  margin:20px 0 10px
}
/* #rewardDisplay p{
  font-size:16px;
} */
.reward-tab-title{
  color:#454545;
  font-size:20px;
  font-weight:700;
  margin:0;
}
.reward-content {
  max-width: 700px;
}


.close {
  color: #D3D3D3;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
  margin: 15px 15px 0 0;
}

.close:hover {
  color: #fff;
}

/* 奖励显示样式 */
.reward-image, .reward-discount, .reward-fragment, .reward-special {
  text-align: center;
  padding: 40px 30px;
}

.reward-background {
  height: 70vh; 
  border-radius: 15px;
}

.reward-image img {
  max-width: 100%;
  border-radius: 10px;
  margin: 15px 0;
}

.discount-code {
  font-size: 1.8rem;
  font-weight: bold;
  /* padding: 15px; */
  margin: 15px 0;
}

.fragment-emoji {
  font-size: 4rem;
  margin: 15px 0;
}

.copy-btn, .contact-btn {
  background: #D3D3D3;
  border: none;
  border-radius: 25px;
  padding: 12px 30px;
  font-size: 14px;
  cursor: pointer;
  margin: 10px 0;
  transition: transform 0.3s ease;
}

.gift-btn {
    background: #ffffff;
    border-radius: 25px;
    padding: 8px 12px;
    font-size: 16px;
    margin: 25vh auto 0;
    transition: transform 0.3s ease;
    color: #484848;
    /* margin-top: 20vh; */
    width: 60vh;
}

.copy-btn:hover, .contact-btn:hover {
  transform: translateY(-2px);
}

.discount-tab{
  background: rgba(255,255,255,0.1); 
  padding: 25px; 
  text-align: center; 
  min-width: 150px;
}
.discount-p{
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}
.discount-btn-card{
  background: #D3D3D3; border: none; padding: 10px 20px; border-radius: 25px; cursor: pointer; width: 100%; font-size: 14px; min-height: 44px; transition: all 0.3s ease;
}
.discount-btn-choose{
  background: #D3D3D3; border: none; padding: 10px 20px; border-radius: 25px; width: 100%; font-size: 14px; min-height: 44px; opacity: 0.6;
}
.discount-btn-unchoose{
 background: #D3D3D3; border: none; padding: 10px 20px; border-radius: 25px; width: 100%; font-size: 14px; min-height: 44px; opacity: 0.6;"
}

@media (max-width: 768px) {
#rewardDisplay h2{
  font-size:24px;
  margin:10px;
}
.reward-tab-title{
  font-size:16px;
}
#rewardDisplay p{
  font-size:14px;
}
.gift-btn {
    background: #ffffff;
    border-radius: 25px;
    padding: 3px 9px;
    font-size: 12px;
    margin: 100px auto 0;
    transition: transform 0.3s ease;
    color: #484848;
    width: auto;
}
/* 奖励显示样式 */
.reward-image, .reward-discount, .reward-fragment, .reward-special {
  text-align: center;
  padding: 20px;
}

.reward-background {
  height: 40vh; 
  border-radius: 15px;
}

.discount-tab{
  padding: 0; 
  min-width: 110px;
  font-size:12px;
  margin-top:10px;
}
.discount-p{
  font-size: 12px;
  margin-bottom: 10px;
}
.discount-btn-card,
.discount-btn-choose,
.discount-btn-unchoose{
   padding: 10px 5px; border-radius: 25px; min-height:auto;font-size:10px;
}
}

/* 提前解锁信息样式 */
/* .early-unlock-info {
  background: rgba(255, 107, 0, 0.1);
  padding: 15px;
  border-radius: 10px;
  border: 2px solid #ff6b00;
  margin: 20px 0;
  text-align: center;
  color: #ff6b00;
}

.early-unlock-info strong {
  color: #ff6b00;
  font-size: 1.1em;
}

.early-unlock-badge {
  background: #ff6b00;
  color: white;
  padding: 5px 10px;
  border-radius: 12px;
  font-size: 0.8rem;
  margin-bottom: 10px;
  display: inline-block;
}

/* 碎片收集进度 */
/* .fragment-progress {
  text-align: center;
  margin-top: 30px;
  padding: 20px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 10px;
  border: 2px solid #ffd700;
}

.fragments-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.fragment-slot {
  width: 60px;
  height: 60px;
  border: 2px solid #ffd700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
}

.fragment-slot.collected {
  background: linear-gradient(145deg, #ffd700, #daa520);
  color: #1a5f1a;
  transform: scale(1.1);
} */ */

.day.claimed {
  opacity: 0.8;
  position: relative;
  cursor: not-allowed;
}

/* 禁用状态的日期样式 测试暂时不禁用*/
.day.disabled {
  /* cursor: not-allowed; */
}




/* 点击后的两种样式 */
.day.claimed.reward-type-1 {
  background-color: #A69187!important;
}

/* .day.claimed.reward-type-1::before {
  content: '🎁';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  color: white;
} */

.day.claimed.reward-type-2 {
  background-color: #AC2625 !important;
}

.day.claimed.reward-type-1::before,
.day.claimed.reward-type-2::before {
  content: ''; /* 清空emoji内容 */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px; /* SVG宽度 */
  height: 30px; /* SVG高度 */
  background-image: url("/cdn/shop/files/gift.svg?v=1764064553");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* 确保点击后数字隐藏 */
.day.claimed {
  color: transparent !important;
}



@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(255, 107, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0); }
}

/* 通知样式 */
 .calendar-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #1a5f1a;
  color: #ffd700;
  padding: 15px 20px;
  border-radius: 8px;
  border: 2px solid #ffd700;
  z-index: 1000;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  animation: slideIn 0.3s ease;
} 

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
} 

/* 响应式设计 */
@media (max-width: 768px) {
     #adventCalendar-pc {
            display: none;
        }
    #adventCalendar-h5 {
            display: grid;
        }
    .christmas-calendar {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(5, 1fr);
    row-gap: 12px;
    column-gap: 16px;
    padding: 10px;
  }
  
  .day {
    min-height: 50px;
    font-size: 30px;
  }
  
  .day.tall {
    grid-row: span 2;
  }
  
  .day.wide,
  .day.tall-w {
    grid-column: span 2;
    grid-row: span 1;
  }
  
  .lock-icon {
    width: 160px;
    height: 160px;
    padding: 30px 60px;

  }
  
  .lock-icon img {
    width: 40px;
    height: 40px;
  }
  
  .lock-text {
    font-size: 12px;
  }
  
  .early-unlock-info {
    padding: 10px;
    margin: 15px 0;
  }
    
  .calendar-main-title{
    font-size:24px;
    margin-top: 30px;
    margin-bottom: 0px;
  }
  .calendar-subtitle{
   font-size: 16px;
   margin: 7px 0 10px;
  }
  .calendar-description{
     font-size:11px;
     margin-bottom:0;
  }
  .subscribe-button-containe{
    margin:15px 0;
  }
  .calendar-header{
    padding:0 10px;
  }
  .terms-link {
   font-size: 12px;
   margin: 10px 0;
    }

    .day.claimed.reward-type-1::before,
.day.claimed.reward-type-2::before {
  width: 20px; /* SVG宽度 */
  height: 20px; /* SVG高度 */
    }