.etl-home-kol-recommend {
    padding: 10px 0;
    background-color: var(--etl-kol-bg-color);
    font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
    overflow: hidden;
    content-visibility: auto;
    contain-intrinsic-size: 1400px;
  }

  .etl-home-kol-recommend .ins-container {
    max-width: 1720px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
  }

  .etl-home-kol-recommend .ins-header {
    text-align: center;
    margin-bottom: 24px;
  }

  .etl-home-kol-recommend .ins-header h2 {
    font-size: 32px;
    color: var(--etl-kol-title-color);
    margin: 0 0 8px;
    font-weight: 800;
    letter-spacing: 0.01em;
    line-height: 1.3;
  }

  .etl-home-kol-recommend .ins-header .subtitle {
    display: inline-block;
    color: #6B6256;
    font-size: 13px;
    background: var(--etl-kol-bg-color);
    padding: 0;
    font-weight: 500;
    letter-spacing: 0.04em;
  }

  .etl-home-kol-recommend .ins-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    width: 100%;
  }

  .etl-home-kol-recommend .ins-grid[data-layout="carousel"] {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    flex-wrap: nowrap;
  }

  .etl-home-kol-recommend .ins-grid[data-layout="carousel"]::-webkit-scrollbar {
    display: none;
  }

  .etl-home-kol-recommend .ins-grid[data-layout="carousel"] .ins-card {
    flex: 0 0 calc(22% - 16px);
    scroll-snap-align: start;
    min-width: 260px;
  }

  .etl-home-kol-recommend .ins-nav-btn {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
  }

  .etl-home-kol-recommend .ins-container[data-show-nav="true"] .ins-nav-btn {
    opacity: 1;
    pointer-events: auto;
  }

  .etl-home-kol-recommend .ins-nav-btn:hover {
    background: var(--etl-kol-accent-color);
    transform: translateY(-50%) scale(1.1);
  }

  /* 首/尾卡片时按钮变淡禁用 */
  .etl-home-kol-recommend .ins-nav-btn.is-disabled {
    opacity: 0.35 !important;
    pointer-events: none !important;
    cursor: not-allowed;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  }
  .etl-home-kol-recommend .ins-nav-btn.is-disabled:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-50%);
  }

  .etl-home-kol-recommend .ins-nav-btn.prev { left: 15px; }
  .etl-home-kol-recommend .ins-nav-btn.next { right: 15px; }

  .etl-home-kol-recommend .ins-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 9 / 16;
    background: #e5e5e5;
    transition: transform 0.4s;
    text-decoration: none;
    display: block;
  }

  .etl-home-kol-recommend .ins-card:hover {
    transform: translateY(-8px);
  }

  .etl-home-kol-recommend .ins-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .etl-home-kol-recommend .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    border: 1px solid rgba(255,255,255,0.5);
  }

  .etl-home-kol-recommend .play-icon::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 10px;
    border-color: transparent transparent transparent #F4ECE0;
    margin-left: 3px;
  }

  .etl-home-kol-recommend .ins-card.is-playing .play-icon {
    opacity: 0;
  }

  .etl-home-kol-recommend .ins-kol-info {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    align-items: center;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(4px);
    padding: 4px 10px 4px 4px;
    border-radius: 30px;
    z-index: 2;
  }

  .etl-home-kol-recommend .kol-avatar,
  .etl-home-kol-recommend .kol-avatar-placeholder {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #F4ECE0;
    margin-right: 8px;
    object-fit: cover;
    flex: 0 0 32px;
  }

  .etl-home-kol-recommend .kol-avatar-placeholder {
    background: rgba(255,255,255,0.35);
  }

  .etl-home-kol-recommend .kol-name {
    color: #F4ECE0;
    font-size: 11px;
    font-weight: 600;
  }

  .etl-home-kol-recommend .ins-glass-card {
    position: absolute;
    bottom: 15px;
    left: 12px;
    right: 12px;
    background: rgba(255,255,255,0.9);
    padding: 10px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
  }

  .etl-home-kol-recommend .product-name {
    font-size: 12px;
    color: #2E2A26;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* ETL_HOME_KOL_VIEW_MORE_20260717_STYLE */
  .etl-home-kol-recommend .etl-kol-view-more {
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }

  .etl-home-kol-recommend .etl-kol-view-more a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-width: 192px;
    min-height: 52px;
    padding: 0 28px;
    border: 1px solid #2E2A26;
    border-radius: 999px;
    background: transparent;
    color: #2E2A26;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: border-color .2s ease, color .2s ease, transform .2s ease;
  }

  .etl-home-kol-recommend .etl-kol-view-more a:hover {
    border-color: #C8A165;
    color: #C8A165;
    transform: translateY(-1px);
  }

  @media (max-width: 768px) {
    .etl-home-kol-recommend { padding: 10px 0; }
    .etl-home-kol-recommend .ins-container { padding: 0 16px; }
    .etl-home-kol-recommend .ins-header {
      margin-bottom: 18px;
      text-align: center;
    }
    .etl-home-kol-recommend .ins-header h2 {
      font-size: 28px;
      font-weight: 800;
    }
    .etl-home-kol-recommend .ins-header .subtitle {
      font-size: 12px;
    }
    /* grid 限制在 container 内（container 已经给左右 16px），cards 在内部滚动，两侧自然各保留 16px */
    .etl-home-kol-recommend .ins-grid {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      padding-bottom: 16px;
      gap: 12px;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }
    .etl-home-kol-recommend .ins-grid::-webkit-scrollbar { display: none; }
    .etl-home-kol-recommend .ins-card {
      flex: 0 0 80%;
      scroll-snap-align: start;
      min-width: unset;
      border-radius: 12px;
    }
    .etl-home-kol-recommend .ins-kol-info {
      top: 12px;
      left: 12px;
      padding: 3px 9px 3px 3px;
    }
    .etl-home-kol-recommend .kol-avatar,
    .etl-home-kol-recommend .kol-avatar-placeholder {
      width: 28px;
      height: 28px;
      flex: 0 0 28px;
      margin-right: 6px;
    }
    .etl-home-kol-recommend .kol-name { font-size: 11px; }
    .etl-home-kol-recommend .ins-glass-card {
      bottom: 12px;
      left: 10px;
      right: 10px;
      padding: 9px;
    }
    .etl-home-kol-recommend .product-name { font-size: 12px; }
    .etl-home-kol-recommend .ins-nav-btn {
      display: none;
    }
  }


/* ETL_HOME_OTHER_SECTION_TITLE_DECOR_20260827_SHARED_START */
.etl-home-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  gap: 14px;
  overflow: visible;
}

.etl-home-title-row > h2 {
  position: relative;
  z-index: 1;
  display: inline-block;
  flex: 0 0 auto;
  margin: 0 !important;
  padding: 0 !important;
  white-space: nowrap;
}

.etl-home-title-row__decoration {
  position: relative;
  display: flex;
  flex: 1 1 120px;
  align-items: center;
  min-width: 54px;
  max-width: 140px;
  height: 28px;
}

.etl-home-title-row__decoration::before {
  width: 100%;
  height: 2px;
  background: #b79a69 !important;
  content: "";
  opacity: 1;
}

.etl-home-title-row__decoration--left { justify-content: flex-end; }
.etl-home-title-row__decoration--right { justify-content: flex-start; }
.etl-home-title-row__decoration--left::before { margin-right: 23px; }
.etl-home-title-row__decoration--right::before { margin-left: 23px; }

.etl-home-title-row__gift {
  position: absolute;
  top: 50%;
  width: 18px;
  height: 14px;
  border: 1.2px solid #711d25;
  border-radius: 2px 2px 3px 3px;
  background: linear-gradient(90deg, transparent 42%, #711d25 42% 58%, transparent 58%), #f8f4ec;
  transform: translateY(-50%);
}

.etl-home-title-row__gift::before {
  position: absolute;
  top: -5px;
  left: -2px;
  width: 20px;
  height: 5px;
  border: 1.2px solid #711d25;
  border-radius: 2px;
  background: #d8c49c;
  content: "";
}

.etl-home-title-row__gift::after {
  position: absolute;
  top: -10px;
  left: 5px;
  width: 5px;
  height: 4px;
  border: 1.2px solid #711d25;
  border-radius: 5px 5px 1px 5px;
  content: "";
  transform: rotate(-28deg);
  box-shadow: 5px 1px 0 -1px #711d25;
}

.etl-home-title-row__decoration--left .etl-home-title-row__gift { right: 0; }
.etl-home-title-row__decoration--right .etl-home-title-row__gift { left: 0; transform: translateY(-50%) scaleX(-1); }

.etl-home-title-row--ribbon .etl-home-title-row__gift { display: none; }
.etl-home-title-row--ribbon .etl-home-title-row__decoration::after {
  position: absolute;
  top: 50%;
  color: #711d25;
  content: "〰";
  font-size: 22px;
  line-height: 1;
  transform: translateY(-50%);
}
.etl-home-title-row--ribbon .etl-home-title-row__decoration--left::after { right: 0; }
.etl-home-title-row--ribbon .etl-home-title-row__decoration--right::after { left: 0; }

/* The title system intentionally keeps secondary labels out of the title row. */
.etl-home-kol-recommend .ins-header .subtitle,
.etl-home-kol-recommend .voice-header .en-title { display: none !important; }

@media (max-width: 700px) {
  .etl-home-title-row { min-height: 44px; gap: 6px; }
  .etl-home-title-row__decoration { flex: 0 0 45px; min-width: 40px; max-width: 50px; height: 22px; }
  .etl-home-title-row__decoration--left::before { margin-right: 18px; }
  .etl-home-title-row__decoration--right::before { margin-left: 18px; }
  .etl-home-title-row__gift { width: 16px; height: 12px; }
  .etl-home-title-row__gift::before { width: 18px; height: 4px; }
  .etl-home-title-row__gift::after { top: -9px; left: 4px; }
  .etl-home-title-row--ribbon .etl-home-title-row__decoration::after { font-size: 18px; }
}
/* ETL_HOME_OTHER_SECTION_TITLE_DECOR_20260827_SHARED_END */



/* ETL_HOME_TITLE_MOTIF_V2_20260827_ROW_START */
/* Long titles use the same visible diamond/star motif as the reference image. */
.etl-home-title-row__decoration {
  min-width: 62px;
  max-width: 160px;
}
.etl-home-title-row__decoration::before {
  height: 2px !important;
  background: #b79a69 !important;
  opacity: 1 !important;
}
.etl-home-title-row--star .etl-home-title-row__gift { display: none !important; }
.etl-home-title-row--star .etl-home-title-row__decoration::after {
  position: absolute;
  top: 50%;
  color: #711d25;
  content: "✦";
  font-size: 18px;
  line-height: 1;
  transform: translateY(-50%);
}
.etl-home-title-row--star .etl-home-title-row__decoration--left::after { right: 0; }
.etl-home-title-row--star .etl-home-title-row__decoration--right::after { left: 0; }

@media (max-width: 700px) {
  .etl-home-title-row { gap: 6px; }
  .etl-home-title-row__decoration { flex: 0 0 52px; min-width: 48px; max-width: 58px; }
  .etl-home-title-row__decoration--left::before { margin-right: 12px; }
  .etl-home-title-row__decoration--right::before { margin-left: 12px; }
  .etl-home-title-row--star .etl-home-title-row__decoration::after { font-size: 15px; }
}
/* ETL_HOME_TITLE_MOTIF_V2_20260827_ROW_END */



/* ETL_HOME_TITLE_MOTIF_V3_20260827_MOBILE_START */
/* Keep long mobile headings on one line; stars and lines stay inside the viewport. */
@media (max-width: 700px) {
  .etl-home-title-row { gap: 4px; overflow: visible; }
  .etl-home-title-row h2 { flex: 0 1 auto; min-width: 0; white-space: nowrap; font-size: 22px !important; }
  .etl-home-title-row__decoration { flex: 0 0 40px; min-width: 40px; max-width: 40px; }
  .etl-home-title-row__decoration--left::before { margin-right: 8px; }
  .etl-home-title-row__decoration--right::before { margin-left: 8px; }
  .etl-home-title-row--star .etl-home-title-row__decoration::after { font-size: 15px; }
}
/* ETL_HOME_TITLE_MOTIF_V3_20260827_MOBILE_END */


/* ETL_HOME_TITLE_LINE_FADE_V5_20260827_HTML_START */
.etl-home-title-row__decoration::before,
.etl-rk-title-row .etl-rk-decoration::before {
  height: 1px !important;
  opacity: 1 !important;
}
.etl-home-title-row__decoration--left::before,
.etl-rk-title-row .etl-rk-decoration--left::before {
  background: linear-gradient(90deg, transparent, rgba(183,154,105,.62)) !important;
}
.etl-home-title-row__decoration--right::before,
.etl-rk-title-row .etl-rk-decoration--right::before {
  background: linear-gradient(90deg, rgba(183,154,105,.62), transparent) !important;
}
/* ETL_HOME_TITLE_LINE_FADE_V5_20260827_HTML_END */


/* ETL_HOME_TITLE_LINE_LENGTH_V6_20260827_HTML_START */
/* Keep desktop title rules visually consistent across every section. Mobile rules are unchanged. */
@media (min-width: 701px) {
  .etl-home-title-row__decoration,
  .etl-rk-title-row .etl-rk-decoration {
    flex: 0 0 120px !important;
    width: 120px !important;
    min-width: 120px !important;
    max-width: 120px !important;
  }
}
/* ETL_HOME_TITLE_LINE_LENGTH_V6_20260827_HTML_END */


/* ETL_HOME_TITLE_MOBILE_LINE_LENGTH_V7_20260827_HTML_START */
@media (max-width: 700px) {
  /* Slightly longer mobile lines; keep every long heading within 390px. */
  .etl-home-title-row__decoration { flex: 0 0 44px !important; min-width: 44px !important; max-width: 44px !important; }
  .etl-rk-title-row .etl-rk-decoration { flex: 0 0 54px !important; min-width: 54px !important; max-width: 54px !important; }
}
/* ETL_HOME_TITLE_MOBILE_LINE_LENGTH_V7_20260827_HTML_END */


/* ETL_HOME_TITLE_MOBILE_LINE_EXTEND_V8_20260827_HTML_START */
@media (max-width: 700px) {
  /* Extend the visible line outward without widening the title row. */
  .etl-home-title-row__decoration::before,
  .etl-rk-title-row .etl-rk-decoration::before { width: calc(100% + 14px) !important; }
}
/* ETL_HOME_TITLE_MOBILE_LINE_EXTEND_V8_20260827_HTML_END */


/* ETL_HOME_TITLE_MOBILE_LINE_EXTEND_V9_20260827_HTML_START */
@media (max-width: 700px) {
  /* The line is a flex child; lock its basis so the extra length is visible instead of shrinking back. */
  .etl-home-title-row__decoration::before,
  .etl-rk-title-row .etl-rk-decoration::before {
    flex: 0 0 calc(100% + 14px) !important;
    width: calc(100% + 14px) !important;
  }
}
/* ETL_HOME_TITLE_MOBILE_LINE_EXTEND_V9_20260827_HTML_END */
