.section-sub-collections {
  margin: 40px 0 0;

  .sub-collections-title {
    margin: 0 0 16px;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.2;
    font-family: var(--font-body-family);
    color: #2f4858;
  }

  .sub-collections-list {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    padding-bottom: 10px;

    &::-webkit-scrollbar {
      height: 4px;
    }

    &::-webkit-scrollbar-thumb {
      background: #c7c7c7;
    }
  }

  .sub-collection-card {
    min-width: 150px;
    border: 1px solid #8fa2b0;
    background: #f7f7f7;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
    flex-shrink: 0;

    &:hover {
      background: #fff;
      border-color: #5c7485;
    }
  }

  .sub-collection-icon {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border-radius: 50%;
    overflow: hidden;
    background: #d9d9d9;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
  }

  .sub-collection-title {
    font-size: 14px;
    font-weight: 400;
    color: #355266;
    white-space: nowrap;
  }

  .sub-collection-placeholder {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #d9d9d9;
  }
}