
/* Remove list bullets caused by inserting this custom module inside product description lists */
ul:has(.yj002-creator-section),
li:has(.yj002-creator-section) {
  list-style: none !important;
  list-style-type: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

li:has(.yj002-creator-section)::marker {
  content: "" !important;
}
  .yj002-creator-section {
    width: 100%;
    padding: 64px 20px;
    background: #f5f5f2;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
  }

  .yj002-creator-container {
    max-width: 1220px;
    margin: 0 auto;
  }

  .yj002-creator-header {
    text-align: center;
    margin-bottom: 38px;
  }

  .yj002-creator-header h2 {
    margin: 0 0 12px;
    font-size: 36px;
    line-height: 1.18;
    font-weight: 700;
    color: #1f1f1f;
    letter-spacing: -0.4px;
  }

  .yj002-creator-header p {
    margin: 0 auto;
    max-width: 720px;
    font-size: 16px;
    line-height: 1.7;
    color: #666;
  }

  .yj002-creator-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .yj002-creator-card {
    display: grid;
    grid-template-columns: 42% 58%;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .yj002-creator-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
  }

  .yj002-video-preview {
    position: relative;
    width: 100%;
    min-height: 390px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .yj002-video-preview::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.12);
    transition: background 0.25s ease;
  }

  .yj002-video-preview:hover::before {
    background: rgba(0, 0, 0, 0.28);
  }

  .yj002-center-play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 5;
    width: 76px;
    height: 76px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  }

  .yj002-center-play::after {
    content: "";
    width: 0;
    height: 0;
    margin-left: 5px;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-left: 20px solid #111;
  }

  .yj002-video-preview:hover .yj002-center-play {
    transform: translate(-50%, -50%) scale(1.08);
    background: #fff;
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.42);
  }

  .yj002-review-content {
    padding: 28px 26px 24px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
  }

  .yj002-creator-profile {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 16px;
  }

  .yj002-creator-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    flex: 0 0 auto;
    border: 2px solid #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
    background: #eee;
  }

  .yj002-creator-info h3 {
    margin: 0 0 4px;
    font-size: 17px;
    line-height: 1.25;
    font-weight: 700;
    color: #1d1d1d;
  }

  .yj002-creator-info span {
    display: inline-flex;
    font-size: 12px;
    line-height: 1;
    color: #7a6a52;
    background: #f0e7d8;
    padding: 6px 9px;
    border-radius: 999px;
  }

  .yj002-quote-mark {
    margin: 2px 0 8px;
    font-size: 36px;
    line-height: 1;
    color: #d8c7aa;
    font-family: Georgia, serif;
  }

  .yj002-review-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.72;
    color: #4f4f4f;
  }

  .yj002-stars {
    margin-top: auto;
    padding-top: 18px;
    color: #c69b42;
    font-size: 15px;
    letter-spacing: 2px;
  }

  /* Video Modal */
  .yj002-video-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.78);
    box-sizing: border-box;
  }

  .yj002-video-modal.is-active {
    display: flex;
  }

  .yj002-modal-stage {
    position: relative;
    width: min(420px, 94vw);
    max-height: 90vh;
  }

  .yj002-modal-close {
    position: absolute;
    right: -14px;
    top: -14px;
    z-index: 30;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: #111;
    color: #fff;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  }

  .yj002-modal-video {
    display: block;
    width: 100%;
    max-height: 88vh;
    background: #000;
    border-radius: 18px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
    object-fit: contain;
  }

  body.yj002-modal-open {
    overflow: hidden;
  }

  @media (max-width: 1024px) {
    .yj002-creator-card {
      grid-template-columns: 40% 60%;
    }

    .yj002-review-content {
      padding: 24px 22px;
    }

    .yj002-review-text {
      font-size: 13px;
      line-height: 1.68;
    }
  }

  @media (max-width: 768px) {
    .yj002-creator-section {
      padding: 42px 14px;
    }

    .yj002-creator-header {
      margin-bottom: 26px;
    }

    .yj002-creator-header h2 {
      font-size: 27px;
    }

    .yj002-creator-header p {
      font-size: 14px;
      line-height: 1.65;
    }

    .yj002-creator-grid {
      grid-template-columns: 1fr;
      gap: 22px;
    }

    .yj002-creator-card {
      grid-template-columns: 1fr;
      border-radius: 18px;
    }

    .yj002-video-preview {
      min-height: 430px;
    }

    .yj002-center-play {
      width: 68px;
      height: 68px;
    }

    .yj002-review-content {
      padding: 24px 20px 22px;
    }

    .yj002-review-text {
      font-size: 14px;
      line-height: 1.7;
    }

    .yj002-modal-stage {
      width: 94vw;
    }

    .yj002-modal-close {
      right: 4px;
      top: -46px;
    }

    .yj002-modal-video {
      max-height: 82vh;
      border-radius: 16px;
    }
  }
