/** Shopify CDN: Minification failed

Line 241:0 All "@import" rules must come first

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:collection-header (INDEX:15) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

.influencer-tabs-header{
  width: 100%;
  background: #ffffff;
  padding: 48px 20px 32px;
  font-family: 'Inter', sans-serif;
  text-align: center;
}
/* 圆形头像+在线绿色状态点 */
.influencer-avatar{
  position: relative;
  width: 128px;
  height: 128px;
  margin: 0 auto 20px;
}
.influencer-avatar img{
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.online-dot{
  width: 18px;
  height: 18px;
  background: #39b54a;
  border: 3px solid #fff;
  border-radius: 50%;
  position: absolute;
  right: 4px;
  bottom: 4px;
}
/* 达人标题样式 */
.influencer-name{
  font-size: 32px;
  font-weight: 600;
  margin: 0 0 12px;
  color: #000;
}
/* 社交图标容器 */
.influencer-social{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}
.influencer-social a{
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: #000;
  text-decoration: none;
}
/* 粉丝数据文案 */
.influencer-meta{
  font-size: 14px;
  color: #444;
  margin-bottom: 16px;
}
/* 优惠码组件 */
.coupon-box{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 8px 16px;
  margin-bottom: 24px;
}
.coupon-text{
  font-size: 13px;
  color: #555;
}
.coupon-code{
  background: #000;
  color: #fff;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
}
/* Tab选项卡导航 */
.tabs-nav{
  display: flex;
  justify-content: center;
  gap: 60px;
  border-bottom: 1px solid #eee;
  max-width: 760px;
  margin: 0 auto;
}
.tab-button{
  background: transparent;
  border: none;
  font-size: 16px;
  padding: 12px 0;
  color: #000;
  cursor: pointer;
  position: relative;
}
.tab-button.active::after{
  content: "";
  width: 100%;
  height: 2px;
  background: #000;
  position: absolute;
  left: 0;
  bottom: -1px;
}
/* Tab内容容器、收紧顶部留白 */
.tabs-content{
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 24px;
}
.tab-panel{
  display: none;
}
.tab-panel.active{
  display: block;
}
/* 三模块统一网格：桌面端4列、移动端自适应 */
.product-grid, .posts-grid, .videos-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
/* 商品卡片布局 */
.product-card{
  text-align: left;
}
.product-image img{
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
}
.product-title{
  margin: 12px 0 4px;
  font-size: 14px;
  color: #000;
}
.product-price{
  font-size: 13px;
  color: #666;
}
/* 帖子图集样式 */
.post-item img{
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
}
/* ========== 视频封面核心样式（封面固定置顶不被播放器遮挡） ========== */
.video-item {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
}
.video-cover {
  position: absolute;
  inset: 0;
  cursor: pointer;
  z-index: 2;
}
.video-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.play-button {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 48px;
  height: 48px;
  color: #fff;
  background: rgba(0, 0, 0, 0.65);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.play-button svg {
  width: 24px;
  height: 24px;
  margin-left: 2px;
}
.video-item video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
  z-index: 3;
}
/* 点击后切换显示状态 */
.video-item.video-open .video-cover {
  display: none;
}
.video-item.video-open video {
  display: block;
}
/* 移动端适配规则 */
@media screen and (max-width:768px){
  .influencer-tabs-header{
    padding: 32px 16px 24px;
  }
  .influencer-avatar{
    width: 100px;
    height: 100px;
  }
  .influencer-name{
    font-size: 24px;
  }
  .tabs-nav{
    gap: 32px;
  }
  .product-grid, .posts-grid, .videos-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
/* END_SECTION:collection-header */

/* START_SECTION:influencer-slider (INDEX:27) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400&family=Playfair+Display:wght@400&display=swap');
.influencer-section{
  width: 100%;
  overflow: hidden;
  background: #ffffff;
  padding: 60px clamp(20px,4vw,60px);
  padding-bottom: 0 !important; /* 清除区块最底部空白 */
}
/* Header Text */
.influencer-header h2{
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px,4vw,48px);
  font-weight: 400;
  margin: 0 0 16px;
  color: #000000;
  white-space: normal;
  word-wrap: break-word;
}
.influencer-header p{
  font-family: 'Inter', sans-serif;
  font-size: clamp(16px,2vw,18px);
  font-weight: 300;
  color: #222222;
  line-height: 1.7;
  margin: 0 0 32px;
  white-space: normal;
  word-wrap: break-word;
}
.divider-line{
  width: 100%;
  height: 1px;
  background: #dddddd;
  margin-bottom: 40px;
}
/* Scroll Wrapper - Pure CSS Auto Scroll Slow 40s */
.influencer-scroll-wrap{
  width: 100%;
  overflow: hidden;
}
.influencer-row{
  display: flex;
  gap: clamp(32px,5vw,48px);
  width: max-content;
  animation: autoSlide 40s linear infinite;
}
/* Pause scroll on hover */
.influencer-scroll-wrap:hover .influencer-row{
  animation-play-state: paused;
}
/* Infinite scroll animation keyframe */
@keyframes autoSlide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* Hide native scrollbar */
.influencer-scroll-wrap::-webkit-scrollbar{
  display: none;
}
.influencer-scroll-wrap{
  scrollbar-width: none;
}
/* Single Influencer Card */
.influencer-card{
  scroll-snap-align: start;
  text-align: center;
  width: 180px;
}
/* 头像链接 去除默认下划线 */
.influencer-card a{
  text-decoration: none;
  display: block;
}
/* Circular Avatar */
.avatar-circle{
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  position: relative;
}
.avatar-circle.active{
  padding: 6px;
  background: #ff7722;
}
.avatar-circle img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.influencer-name{
  font-family: 'Inter', sans-serif;
  font-size: 19px;
  color: #111111;
  margin: 0;
  font-weight: 300;
}
/* Bottom Link 清除顶部外边距，消除底部空白 */
.more-influencer{
  margin-top: 0 !important;
  text-align: left;
}
.more-influencer a{
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  color: #000000;
  text-decoration: none;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 0;
}
/* 隐藏链接右侧箭头 &rsaquo; */
.more-influencer a::after {
  content: "" !important;
  display: none !important;
}
.more-influencer a:hover{
  text-decoration: underline;
}
/* Mobile Responsive */
@media screen and (max-width:768px){
  .influencer-card{
    width: 140px;
  }
  .avatar-circle{
    width: 130px;
    height: 130px;
  }
  .influencer-row{
    gap: 32px;
  }
  .influencer-section{
    padding: 40px 16px;
    padding-bottom: 0 !important;
  }
  .influencer-header h2{
    font-size: 28px;
  }
  .influencer-header p{
    font-size: 15px;
  }
  .more-influencer{
    margin-top: 0 !important;
  }
}
/* END_SECTION:influencer-slider */