/** Shopify CDN: Minification failed

Line 425:3 Expected "}" to go with "{"

**/
[tab-item]:not([tab-selected]) {
    display: none;
  }
  .hdt-type-tab .hdt-product-tab__wrap{
    border: 0.1rem solid rgb(var(--color-line-border));
    border-radius:var(--rounded-sm);
  }
  .hdt-product-tab__main{
    gap: 1rem 2.5rem;
    padding: 0 1.5rem;
  }
  .hdt-product-tab__main button{
    padding: 1.2rem 0;
    line-height: 1.8rem;
    font-size: var(--text-base);
    white-space: nowrap;
    text-align: start;
    background:transparent;
    outline: none;
    transition: all .3s ease;
  }
  .hdt-product-tab__main button:after{
    content: "";
    position: absolute;
    width: 0;
    height: 0.2rem;
    left: 0;
    bottom: 0;
    transition: all .3s ease;
    background-color: rgb(var(--color-foreground));
  }
  .dir--rtl .hdt-product-tab__main button:after{
    left:auto;
    right:0;
  }
  .hdt-product-tab__main button[aria-current="true"]:after{
    width: 100%;
  }
  .hdt-product-tab--default .hdt-product-tab__content{
    border-top: 0.1rem solid rgb(var(--color-line-border));
    margin-top: -0.1rem;
  }
  .hdt-product-tab__content{
    padding:2rem 1.5rem;
  }
  .hdt-product-tab__wrap.hdt-product-tab--vertical{
    border:none;
  }
  .hdt-product-tab--vertical .hdt-product-tab__main{padding:0}
  .hdt-product-tab--vertical .hdt-product-tab__content{
    border: 0.1rem solid rgb(var(--color-line-border));
    border-radius: var(--rounded-sm);
    margin-top:2rem;
  }
  table.hdt-pr_attrs{
    border-spacing: 0;
    border-collapse: collapse;
    width: 100%;
    border-radius: var(--rounded-sm);
    border-style: hidden;
    box-shadow: 0 0 0 0.1rem rgb(var(--color-line-border)); 
  }
  table.hdt-pr_attrs tr, table.hdt-pr_attrs th{
    border: 0.1rem solid rgb(var(--color-line-border));
    vertical-align: middle;
  }
  table.hdt-pr_attrs tr, table.hdt-pr_attrs th{
    border-inline-end-width: 0.1rem;
    border-bottom-width: 0.1rem;
    text-align: start;
  }
  table.hdt-pr_attrs td, table.hdt-pr_attrs th{
    padding: 1rem;
  }
  
  /* product description accordion */
  .hdt-product-accordion__item {
    margin-bottom: 0;
    border-bottom: 0.1rem solid rgb(var(--color-line-border));
  }
  
  .hdt-product-accordion__item:first-child {
    border-top: 0.1rem solid rgb(var(--color-line-border));
  }
  
  .hdt-product-accordion__item summary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: transparent;
    cursor: pointer;
    padding: 2rem 0;
    border-radius: 0;
  }
  
  .hdt-product-accordion__icon {
    width: 2rem;
    height: 2rem;
    background-color: transparent;
    color: rgb(var(--color-foreground) / .8);
    position: relative;
    display: block;
    flex: 0 0 auto;
    margin-inline-start: 0;
  }
  
  .hdt-product-accordion__icon:before,
  .hdt-product-accordion__icon:after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(-90deg);
    background-color: currentColor;
    transition: transform .35s ease-in-out,opacity .35s ease-in-out;
    width: 1.4rem;
    height: 0.2rem;
    opacity: 1;
    border-radius: var(--rounded-full);
  }
  
  .hdt-product-accordion__icon:after {
    height: 1.4rem;
    width: 0.2rem;
  }
  
  .hdt-product-accordion__text {
    padding: 0;
    transition: all .3s ease;
  }
  
  [aria-expanded="true"] .hdt-product-accordion__icon:before,
  [aria-expanded="true"] .hdt-product-accordion__icon:after {
    transform: translate(-50%,-50%) rotate(90deg);
  }
  
  [aria-expanded="true"] .hdt-product-accordion__icon:before {
    opacity: 0;
  }
  
  .hdt-product-accordion__content {
    border: none;
    padding: 0 0 2rem 0;
    border-radius: 0;
    margin-top: 0;
  }
  
  /* tab design list */
  .hdt-type-list .hdt-product-tab__item{margin-bottom:2rem;}
  .hdt-type-list .hdt-product-tab__item-title{
    padding: 1.5rem 0;
    line-height:2rem;
    border-bottom: 0.1rem solid rgb(var(--color-line-border));
  }
  .hdt-type-list .hdt-product-tab__item-content{
    padding: 2rem 0;
  }
  
  @media(min-width:1150px){
    .hdt-product-tab__main{
      gap: 1rem 5rem;
      padding: 0 3.8rem;
    }
    .hdt-product-tab__content{
      padding:3.5rem;
    }
    .hdt-product-tab__main button{
      padding: 1.5rem 0;
      line-height:3rem;
      font-size: var(--text-xl);
    }
    .hdt-product-tab__wrap.hdt-product-tab--vertical{
      display: grid;
      grid-template-columns: 3fr 9fr;
      gap: 3rem;
    }
    .hdt-product-tab--vertical .hdt-product-tab__main{
      flex-direction:column;
      overflow: unset;
      gap:0;
      max-width: 30rem;
    }
    .hdt-product-tab--vertical .hdt-product-tab__content{
      margin-top: 0;
    }
    .hdt-product-tab--vertical .hdt-product-tab__main button{
      padding-inline-start:2rem;
      padding-top: 1.4rem;
      padding-bottom: 1.4rem;
      line-height: 2rem;
      white-space: break-spaces;
      border-inline-start: 0.2rem solid rgb(var(--color-foreground) / .09);
    }
    .hdt-product-tab--vertical .hdt-product-tab__main button:after{
      width:0.2rem;
      height: 0;
      left: -0.2rem;
      top:0;
      bottom: unset;
    }
    .dir--rtl .hdt-product-tab--vertical .hdt-product-tab__main button:after{
      left:auto;
      right: -0.2rem;
    }
    .hdt-product-tab--vertical .hdt-product-tab__main button[aria-current="true"]:after{
      height:100%;
    }
  
    .hdt-type-list .hdt-product-tab__item-content{
      padding: 3rem 0;
    }
    .hdt-product-accordion__text,
    .hdt-type-list .hdt-product-tab__item-title{
      font-size: var(--text-xl);
    }
  }
  
  @media (-moz-touch-enabled: 0), (hover: hover) and (min-width: 1150px){
    .hdt-product-accordion__item summary:hover .hdt-product-accordion__text,
    .hdt-product-tab__main button:hover{
      color: rgb(var(--color-accent))!important;
    }
  }
  
   @media screen and (max-width: 480px) {
        details[aria-expanded=true], details[aria-expanded=true] ul {
            background: #ffffff !important;
        }
    }
  
  
  
  
  /* Service Features Styles */
.service-features {
    padding: 4rem 2rem;
  }
  
  .service-features__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
/* Service Features Styles */
.service-feature {
    display: flex;
    flex-direction: row;
    align-items: center; /* 默认居中对齐(桌面端) */
    text-align: left;
    gap: 1rem;
  }
  
  .service-feature__icon {
    width: 2.6rem; /* 26px */
    height: 2.6rem;
    flex-shrink: 0;
  }
  
  
  .service-feature__icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1px; /* 将线条改为1px */
  }
  
  .service-feature__title {
    font-size: 1.4rem;
    line-height: 1.2;
    margin: 0;
    font-weight: 400; /* 调整字重 */
  }
  
/* 移动端样式 */
@media screen and (max-width: 767px) {
    .service-features__grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem 1.5rem;
    }
    
    .service-feature {
      align-items: flex-start; /* 移动端改为顶部对齐 */
    }
    
    .service-feature__icon {
      margin-top: 0.2rem; /* 移动端微调图标位置 */
    }
    
    .service-feature__title {
      font-size: 1.3rem;
    }
  }
  
  @media screen and (max-width: 479px) {
    .service-features {
      padding: 3rem 1.5rem;
    }
    
    .service-feature__icon {
      width: 2.4rem;
      height: 2.4rem;
    }
  }
  
  /* Gift List Styles 开箱视频 */
.gift-list-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .gift-items {
    list-style: disc;
    padding-left: 0rem;
    margin-bottom: 2rem;
  }
  
  .gift-item {
    font-size: 1.4rem;
    line-height: 2;
    color: rgb(var(--color-foreground));
  }
  
  .gift-tag {
    color: rgb(var(--color-accent));
  }
  
  .gift-note {
    font-size: 1.2rem;
    color: rgb(var(--color-foreground) / 0.75);
    font-style: italic;
    margin-bottom: rem;
  }
  
  .gift-video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    margin-top: 0rem;
  }
  
  .gift-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--rounded-sm);
  }
  
  @media screen and (max-width: 767px) {
    .gift-items {
      padding-left: 0rem;
    }
    
    .gift-item {
      font-size: 1.3rem;
      line-height: 1.8;
    }
    
    .gift-note {
      font-size: 1.1rem;
    }
  }

.video-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--rounded-sm);
}

.play-button {
  background: rgba(0, 0, 0, 0.7);
  border: none;
  border-radius: 50%;
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s;
}

.play-button:hover {
  background: rgba(0, 0, 0, 0.9);
}

.play-icon {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent #ffffff;
  margin-left: 4px;
}

@media screen and (max-width: 767px) {
  .play-button {
    width: 48px;
    height: 48px;
  }
  
  .play-icon {
    border-width: 8px 0 8px 14px;
    margin-left: 2px;
  }